.page-home{
  --hero-img-opacity: 0.22;
  --hero-veil-1: rgba(10,31,68,0.94);
  --hero-veil-2: rgba(10,31,68,0.78);
  --meter-fill: #FF6B35;
  --meter-track: #E8EBEF;
  --tick-color: rgba(168,176,184,0.5);
  --border-light: rgba(168,176,184,0.35);
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}

.page-home *,
.page-home *::before,
.page-home *::after{
  box-sizing: border-box;
}

.page-home img{
  max-width: 100%;
  height: auto;
}

.page-home .container-page{
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.page-home .label-tag{
  display: inline-block;
  padding: 4px 12px;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  border-radius: 0 12px 0 0;
}

.page-home .section-title{
  margin: 14px 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.page-home .section-desc{
  max-width: 640px;
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.page-home .btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0 16px 0 16px;
  transition: border-radius 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-home .btn-primary{
  background: var(--orange);
  color: #fff;
}

.page-home .btn-primary:hover{
  background: #E45A28;
  border-radius: 16px 0 16px 0;
  transform: translateY(-2px);
}

.page-home .btn-ghost{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

.page-home .btn-ghost:hover{
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  border-radius: 16px 0 16px 0;
}

.page-home .link-arrow{
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.page-home .link-arrow:hover{
  gap: 14px;
  color: var(--terracotta);
}

.page-home .link-arrow-mark{
  font-size: 18px;
  color: var(--orange);
}

/* ===== HERO 框景首屏 ===== */
.home-hero{
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 6px solid var(--orange);
}

.hero-img-wrap{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--hero-img-opacity);
  display: block;
}

.hero-img-veil{
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--hero-veil-1) 15%, var(--hero-veil-2) 60%, rgba(10,31,68,0.45) 100%);
}

.hero-grid-overlay{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero-route-line{
  position: absolute;
  right: -10%;
  top: -20%;
  width: 320px;
  height: 620px;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 14px,
    rgba(255,107,53,0.24) 14px,
    rgba(255,107,53,0.24) 18px
  );
  transform: rotate(12deg);
  pointer-events: none;
  opacity: 0.35;
}

.hero-frame{
  position: absolute;
  inset: 24px;
  z-index: 3;
  pointer-events: none;
}

.frame-corner{
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(255,255,255,0.8);
  border-style: solid;
  border-width: 0;
}

.fc-tl{ top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; border-radius: 16px 0 0 0; }
.fc-tr{ top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; border-radius: 0 16px 0 0; }
.fc-br{ bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 16px 0; }
.fc-bl{ bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; border-radius: 0 0 0 16px; }

.frame-ruler{
  position: absolute;
  left: 14px;
  right: 14px;
  height: 8px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.45) 0,
    rgba(255,255,255,0.45) 2px,
    transparent 2px,
    transparent 12px
  );
}

.ruler-top{ top: -6px; }
.ruler-bottom{ bottom: -6px; }

.hero-content-wrap{
  position: relative;
  z-index: 4;
  width: min(1200px, 100% - 96px);
  margin-inline: auto;
  padding-block: 80px 90px;
}

.hero-kicker{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-kicker-line{
  width: 56px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.hero-kicker-text{
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #fff;
  text-transform: uppercase;
}

.hero-version-tag{
  margin-left: 4px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px 12px 2px 12px;
  font-size: 12px;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.1em;
}

.hero-title{
  max-width: 900px;
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 5.2vw, 60px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.hero-desc{
  max-width: 680px;
  margin: 0 0 34px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 48px;
}

.hero-meta-strip{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.meta-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-body);
}

.meta-icon{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.15);
}

.meta-shield{
  width: 22px;
  height: 26px;
  background: radial-gradient(ellipse at center, rgba(122,139,90,0.8) 30%, rgba(122,139,90,0.2) 70%);
  clip-path: polygon(50% 0%, 100% 18%, 90% 75%, 50% 100%, 10% 75%, 0% 18%);
}

.meta-pulse{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.55; transform: scale(0.78); }
}

.hero-meta-divider{
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.22);
}

/* ===== 赛程中心 ===== */
.home-round-progress{
  padding: 80px 0 56px;
  background: var(--bg);
  position: relative;
}

.home-round-progress::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  background-image: repeating-linear-gradient(0deg, rgba(10,31,68,0.04) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.round-head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 42px;
}

.round-track-block{
  display: grid;
  grid-template-columns: 160px 1fr 260px;
  gap: 30px;
  align-items: stretch;
  padding: 34px;
  background: var(--white);
  border-radius: 0 28px 0 28px;
  box-shadow: 0 10px 40px rgba(10,31,68,0.06);
  border: 1px solid var(--border-light);
  position: relative;
}

.round-track-block::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.9;
}

.round-number-col{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 24px;
  border-right: 1px solid var(--border-light);
}

.round-label{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.round-value{
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
}

.round-value::after{
  content: "轮";
  margin-left: 4px;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
}

.round-unit{
  margin-top: 10px;
  font-size: 14px;
  color: var(--gray);
}

.round-bar-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 14px;
}

.round-bar-meta{
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gray);
}

.round-bar{
  position: relative;
  height: 34px;
  background: var(--meter-track);
  border-radius: 2px 14px 2px 14px;
  overflow: hidden;
}

.round-bar-fill{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--navy) 0%, #14336e 60%, var(--orange) 120%);
  border-radius: 2px 14px 2px 14px;
}

.round-bar-marker{
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 4px;
  background: var(--orange);
  left: 60.5%;
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.28);
}

.round-bar-ruler{
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0 49px, rgba(255,255,255,0.6) 49px 51px);
  pointer-events: none;
}

.round-legend-row{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray);
}

.round-snapshot-card{
  background: var(--navy);
  padding: 22px 20px;
  border-radius: 0 20px 0 20px;
  display: flex;
  align-items: center;
}

.ledger-item{
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ledger-item:last-child{ border-bottom: 0; }

.ledger-label{
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ledger-value{
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}

.ledger-item:first-child .ledger-value{
  color: var(--orange);
}

.round-img-block{
  position: relative;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: end;
}

.round-img{
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 0 26px 0 26px;
  display: block;
  box-shadow: 0 18px 50px rgba(10,31,68,0.22);
}

.round-img-caption{
  display: inline-block;
  font-size: 13px;
  color: var(--gray);
  border-left: 3px solid var(--orange);
  padding-left: 14px;
  margin-bottom: 20px;
}

.round-img-ticket{
  position: absolute;
  bottom: -16px;
  left: -12px;
  width: 90px;
  height: 90px;
  background: var(--terracotta);
  opacity: 0.5;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}

/* ===== 查询检索栏 ===== */
.home-search-zone{
  padding: 60px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.home-search-zone::before{
  content: "";
  position: absolute;
  left: -80px;
  top: 40px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,156,219,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.search-panel-cut{
  background: var(--white);
  border-radius: 0 36px 0 36px;
  box-shadow: 0 18px 60px rgba(10,31,68,0.08);
  border: 1px solid var(--border-light);
  position: relative;
}

.search-panel-cut::after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--navy);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.search-panel-inner{
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 0;
}

.search-info-col{
  padding: 52px 42px 36px;
}

.search-guide-list{
  margin: 26px 0 24px;
  padding: 0;
  list-style: none;
}

.guide-item{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

.guide-index{
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  color: var(--orange);
  background: rgba(255,107,53,0.1);
  border-radius: 4px;
  padding: 4px 8px;
  width: 34px;
  text-align: center;
}

.search-aux-img{
  width: 100%;
  max-width: 480px;
  border-radius: 0 20px 0 20px;
  object-fit: cover;
  margin-top: 10px;
  box-shadow: 0 8px 28px rgba(10,31,68,0.09);
}

.search-module-col{
  padding: 52px 42px 44px;
  background: var(--bg);
  border-left: 1px solid var(--border-light);
  border-radius: 0 0 36px 0;
}

.search-query-box{
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.search-sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.search-glyph-large{
  width: 22px;
  height: 22px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-60%);
  pointer-events: none;
}

.search-glyph-large::after{
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  width: 9px;
  height: 3px;
  background: var(--navy);
  transform: rotate(45deg);
  transform-origin: 0 0;
  border-radius: 2px;
}

.home-search-input{
  width: 100%;
  padding: 18px 20px 18px 52px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  border: 2px solid transparent;
  border-bottom: 3px solid var(--gray);
  border-radius: 0 18px 0 18px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-search-input:focus{
  border-bottom-color: var(--orange);
  box-shadow: 0 6px 22px rgba(255,107,53,0.12);
}

.search-filter-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}

.filter-label{
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.06em;
  margin-right: 4px;
}

.filter-chip{
  padding: 7px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--gray);
  border-radius: 0 12px 0 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-chip:hover{
  border-color: var(--orange);
  color: var(--orange);
}

.filter-chip.is-active{
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.search-result-list{
  display: flex;
  flex-direction: column;
}

.result-row{
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 1.6fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 15px 10px;
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.result-row:hover{
  background: var(--cream);
  padding-left: 16px;
}

.result-name{
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.result-sub{
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
}

.result-tag{
  justify-self: end;
  font-size: 12px;
  color: var(--terracotta);
  background: rgba(198,93,59,0.1);
  padding: 3px 10px;
  border-radius: 2px 10px 2px 10px;
  white-space: nowrap;
}

.result-arrow{
  justify-self: end;
  font-size: 20px;
  color: var(--orange);
  transform: translateX(-4px);
  transition: transform 0.2s ease;
}

.result-row:hover .result-arrow{
  transform: translateX(2px);
}

.search-note{
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  font-size: 13px;
  color: var(--gray);
}

.note-mark{
  width: 24px;
  height: 2px;
  background: var(--moss);
  display: inline-block;
  flex-shrink: 0;
}

/* ===== 反馈指引与套票费用 ===== */
.home-duo-section{
  padding: 80px 0 60px;
  background: var(--bg);
}

.duo-wrap{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
  align-items: stretch;
}

.feedback-card{
  position: relative;
  background: var(--cream);
  padding: 44px 36px 40px;
  border-radius: 0 32px 0 32px;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.card-corner-mark{
  position: absolute;
  right: -8px;
  top: 18px;
  font-family: var(--font-heading);
  font-size: 68px;
  font-weight: 900;
  color: rgba(10,31,68,0.04);
  line-height: 1;
  pointer-events: none;
}

.feedback-stripe{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 46px;
  background: var(--moss);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.feedback-card-inner{
  position: relative;
  z-index: 2;
}

.feedback-card-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.card-icon-wrap{
  width: 58px;
  height: 58px;
  background: var(--navy);
  border-radius: 0 16px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-people{
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
}

.icon-people::after{
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 15px solid #fff;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
}

.card-title{
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 900;
}

.card-lead{
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 22px;
}

.feedback-points{
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.feedback-points li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  border-bottom: 1px dashed rgba(168,176,184,0.35);
}

.feedback-points li:last-child{
  border-bottom: 0;
}

.point-dot{
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 7px;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.14);
}

.feedback-btn{
  border-color: var(--navy);
  color: var(--navy);
  padding: 12px 22px;
}

.feedback-btn:hover{
  background: var(--navy);
  color: #fff;
}

.btn-arrow{
  font-size: 18px;
  transition: transform 0.2s ease;
}

.feedback-btn:hover .btn-arrow{
  transform: translateX(6px);
}

.ticket-card{
  position: relative;
  background: var(--navy);
  border-radius: 0 32px 0 32px;
  padding: 44px 40px 40px;
  overflow: hidden;
}

.ticket-card-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 18px;
}

.ticket-card-head .card-title{
  color: #fff;
}

.ticket-sold{
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 0 12px 0 12px;
  white-space: nowrap;
}

.ticket-sold b{
  color: var(--orange);
  font-weight: 800;
}

.ticket-card .card-lead{
  color: rgba(255,255,255,0.68);
  max-width: 560px;
}

.ticket-tier-list{
  margin: 28px 0 24px;
}

.tier-row{
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 15px 18px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--orange);
  border-radius: 0 14px 0 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tier-row:hover{
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

.tier-label{
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--orange);
}

.tier-info{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tier-name{
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.tier-sub{
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.tier-price{
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}

.tier-unit{
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-weight: 400;
  margin-left: 2px;
}

.tier-pro{
  border-left-color: var(--blue);
}

.tier-plus{
  border-left-color: var(--moss);
}

.ticket-card-footer{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.ticket-extra-note{
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ext-mark{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--moss);
}

.ticket-link-more{
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,107,53,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.ticket-link-more:hover{
  border-color: var(--orange);
}

.ticket-img-bg{
  position: absolute;
  right: -60px;
  top: 60%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.12;
  transform: translateY(-30%);
  filter: grayscale(1) contrast(1.1);
  pointer-events: none;
}

.ticket-bg-text{
  position: absolute;
  bottom: -20px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.028);
  line-height: 1;
  pointer-events: none;
  letter-spacing: 0.06em;
}

/* ===== 变更说明归档 ===== */
.home-update-archive{
  padding: 80px 0 90px;
  background: var(--white);
}

.archive-head-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
}

.archive-stat{
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-large{
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-large::after{
  content: "年";
  font-size: 22px;
  color: var(--orange);
  margin-left: 4px;
}

.stat-caption{
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-timeline{
  position: relative;
  padding-left: 28px;
}

.archive-timeline::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: repeating-linear-gradient(0deg, var(--navy) 0 12px, transparent 12px 20px);
  border-radius: 2px;
}

.timeline-item{
  position: relative;
  margin-bottom: 28px;
  padding-left: 34px;
}

.timeline-item::before{
  content: "";
  position: absolute;
  left: -26px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.3);
}

.timeline-month{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.timeline-card{
  background: var(--bg);
  border-radius: 0 24px 0 24px;
  padding: 28px 30px;
  border-left: 4px solid var(--navy);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.timeline-card:hover{
  border-left-color: var(--orange);
  background: var(--cream);
}

.timeline-type{
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 2px 12px 2px 12px;
  margin-bottom: 12px;
}

.type-update{ background: rgba(45,156,219,0.1); color: var(--blue); }
.type-refine{ background: rgba(255,107,53,0.1); color: #D45020; }
.type-new{ background: rgba(122,139,90,0.14); color: var(--moss); }

.timeline-title{
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-body);
}

.timeline-desc{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

.timeline-toggle{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  border: 0;
  border-radius: 0 12px 0 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.timeline-toggle:hover{
  background: #16325f;
}

.timeline-detail{
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.65);
  border-left: 3px solid var(--orange);
  border-radius: 0 12px 0 12px;
}

.timeline-detail p{
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.timeline-detail p:last-child{
  margin-bottom: 0;
}

.timeline-notice{
  display: inline-block;
  font-size: 12px;
  color: var(--gray);
  border-bottom: 1px dashed var(--gray);
  padding-bottom: 2px;
}

.archive-btn{
  margin-top: 42px;
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.archive-btn:hover{
  background: #16325f;
  border-radius: 16px 0 16px 0;
}

/* ===== 底部信任区 ===== */
.home-bottom-trust{
  padding: 44px 0 70px;
  background: var(--bg);
  border-top: 4px solid var(--navy);
}

.bottom-trust-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.trust-seal{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.seal-symbol{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: var(--navy);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  border-radius: 0 18px 0 18px;
  box-shadow: 0 6px 20px rgba(10,31,68,0.18);
}

.trust-title{
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-body);
}

.trust-sub{
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--gray);
}

.trust-strip{
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: 0 18px 0 18px;
  border-left: 4px solid var(--moss);
}

.strip-line{
  width: 34px;
  height: 4px;
  background: var(--moss);
  border-radius: 2px;
  flex-shrink: 0;
}

.trust-strip p{
  flex: 1;
  min-width: 200px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.trust-link{
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  white-space: nowrap;
}

.trust-link:hover{
  color: var(--terracotta);
}

/* ===== 响应式 ===== */
@media (max-width: 1060px){
  .round-track-block{
    grid-template-columns: 1fr 2fr;
  }
  .round-snapshot-card{
    grid-column: 1 / -1;
  }
  .search-panel-inner{
    grid-template-columns: 1fr;
  }
  .search-module-col{
    border-left: 0;
    border-top: 1px solid var(--border-light);
    border-radius: 0 0 36px 0;
  }
  .duo-wrap{
    grid-template-columns: 1fr;
  }
  .round-img-block{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px){
  .hero-content-wrap{
    width: min(100% - 56px, 640px);
    padding-block: 70px 80px;
  }
  .home-hero{
    min-height: auto;
  }
  .hero-frame{
    inset: 14px;
  }
  .frame-corner{
    width: 22px;
    height: 22px;
  }
  .hero-title{
    font-size: clamp(28px, 7vw, 40px);
  }
  .hero-desc{
    font-size: 15px;
  }
  .hero-meta-strip{
    gap: 10px;
  }
  .round-track-block{
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .round-number-col{
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
    padding: 0 0 18px;
  }
  .round-bar-wrap{
    padding: 0;
  }
  .result-row{
    grid-template-columns: 1fr auto;
  }
  .result-sub{
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .result-tag{
    order: 3;
    grid-column: 2;
  }
  .result-arrow{
    order: 2;
    grid-column: 3;
  }
  .search-info-col,
  .search-module-col{
    padding: 36px 24px;
  }
  .ticket-card-head{
    flex-direction: column;
  }
  .tier-row{
    grid-template-columns: 1fr auto;
  }
  .tier-label{
    display: none;
  }
  .archive-timeline{
    padding-left: 22px;
  }
  .timeline-item{
    padding-left: 22px;
  }
  .trust-strip{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px){
  .page-home .container-page{
    width: min(100% - 28px, 1200px);
  }
  .home-round-progress,
  .home-search-zone,
  .home-duo-section,
  .home-update-archive{
    padding: 50px 0 44px;
  }
  .round-value{
    font-size: 56px;
  }
  .filter-chip{
    padding: 6px 10px;
    font-size: 12px;
  }
  .ticket-card{
    padding: 30px 22px;
  }
  .ticket-card-footer{
    flex-direction: column;
    align-items: flex-start;
  }
  .ticket-link-more{
    margin-left: 0;
  }
  .tier-row{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .tier-price{
    font-size: 20px;
  }
  .archive-stat{
    width: 100%;
  }
  .hero-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn{
    justify-content: center;
  }
}
