.page-home {
  --home-gap: 14px;
  --home-pad: clamp(16px, 2.4vw, 26px);
  --home-radius: 4px;
  --home-section-pad: clamp(46px, 7vw, 92px);
}

/* ---------- 首屏 ---------- */
.page-home .home-top {
  padding-top: clamp(22px, 3.4vw, 40px);
}

.page-home .home-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(14px, 2vw, 22px);
}

.page-home .home-title {
  margin: 0 0 16px;
  max-width: 24ch;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(29px, 5.1vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.page-home .home-lead {
  max-width: 62ch;
  margin: 0 0 clamp(16px, 2.4vw, 24px);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.75;
  color: var(--ink-soft);
}

.page-home .home-jump {
  margin-bottom: clamp(18px, 3vw, 32px);
}

/* ---------- Bento 信息板 ---------- */
.page-home .home-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-gap);
}

.page-home .home-tile {
  position: relative;
  padding: var(--home-pad);
  border: var(--rule);
  border-radius: var(--home-radius);
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.page-home .home-tile-title {
  margin: 22px 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page-home .home-tile-label {
  margin: 26px 0 4px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.page-home .home-big {
  margin: 0 0 6px;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1;
  font-weight: 700;
  color: var(--c-red);
}

/* 主锚点：主场地图 */
.page-home .home-tile--map {
  position: relative;
  min-height: 380px;
  padding: 0;
  border-color: var(--c-navy);
  background: var(--c-navy);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-home .home-map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-home .home-map-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(20, 198, 164, 0.55);
  stroke-width: 0.45;
  fill: none;
  vector-effect: non-scaling-stroke;
}

.page-home .home-pins {
  position: absolute;
  inset: 0;
}

.page-home .home-pin {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--c-teal);
  box-shadow: 0 0 0 5px rgba(20, 198, 164, 0.22);
  transform: translate(-50%, -50%);
  cursor: pointer;
  animation: homePinPulse 2s ease-out infinite;
}

.page-home .home-pin:focus-visible {
  outline: 2px solid var(--c-amber);
  outline-offset: 3px;
}

.page-home .home-pin--a { left: 22%; top: 62%; }
.page-home .home-pin--b { left: 40%; top: 26%; animation-delay: .3s; }
.page-home .home-pin--c { left: 68%; top: 34%; animation-delay: .6s; }
.page-home .home-pin--d { left: 79%; top: 60%; animation-delay: .9s; }
.page-home .home-pin--e { left: 54%; top: 79%; animation-delay: 1.2s; }

.page-home .home-pin-card {
  position: absolute;
  left: 50%;
  bottom: 150%;
  width: min(210px, 58vw);
  padding: 9px 11px;
  border: 1.5px solid var(--c-fog);
  border-radius: 3px;
  background: var(--c-paper);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  text-align: left;
  box-shadow: var(--shadow-card);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-fast), visibility var(--t-fast);
  z-index: 5;
}

.page-home .home-pin:hover .home-pin-card,
.page-home .home-pin:focus-visible .home-pin-card {
  opacity: 1;
  visibility: visible;
}

.page-home .home-map-foot {
  position: relative;
  z-index: 3;
  padding: clamp(18px, 2.6vw, 28px);
  background: linear-gradient(180deg, rgba(13, 27, 42, 0) 0%, rgba(13, 27, 42, 0.88) 46%, rgba(13, 27, 42, 0.97) 100%);
  color: var(--c-paper);
}

.page-home .home-map-tag {
  display: inline-block;
  padding: 4px 9px;
  margin-bottom: 10px;
  border-radius: 2px;
  background: var(--c-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .home-map-lede {
  margin: 0 0 14px;
  max-width: 30ch;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* 赛程批次卡 */
.page-home .home-batch-list {
  list-style: none;
  margin: 16px 0 18px;
  padding: 0;
}

.page-home .home-batch-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--c-fog);
  font-size: 15px;
  color: var(--ink);
}

.page-home .home-batch-list li:last-child {
  border-bottom: 0;
}

.page-home .home-batch-time {
  flex: 0 0 auto;
  min-width: 92px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-orange);
}

@keyframes homePinPulse {
  0%   { box-shadow: 0 0 0 4px rgba(20, 198, 164, 0.30); }
  70%  { box-shadow: 0 0 0 12px rgba(20, 198, 164, 0); }
  100% { box-shadow: 0 0 0 4px rgba(20, 198, 164, 0); }
}

/* ---------- 通用区块头 ---------- */
.page-home .home-head {
  max-width: 62ch;
  margin-bottom: clamp(22px, 3.4vw, 40px);
}

.page-home .home-head h2 {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.018em;
}

.page-home .home-head-lede {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: rgba(247, 244, 238, 0.78);
}

.page-home .home-head--dark h2 {
  color: var(--c-paper);
}

/* ---------- 本周赛程 ---------- */
.page-home .home-schedule {
  padding-block: var(--home-section-pad);
}

.page-home .home-schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.page-home .home-timeline {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.page-home .home-timeline .timeline-item {
  flex: 0 0 min(250px, 74vw);
  scroll-snap-align: start;
  padding: var(--home-pad);
  border: var(--rule);
  border-radius: var(--home-radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.page-home .home-slot-time {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: -0.01em;
}

.page-home .home-slot-title {
  margin: 10px 0 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.28;
}

.page-home .home-slot-meta {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--ink-soft);
}

.page-home .home-schedule-figure {
  margin: 0;
}

/* ---------- 主场分布 ---------- */
.page-home .home-venue {
  padding-block: var(--home-section-pad);
}

.page-home .home-venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3.4vw, 42px);
  align-items: center;
}

.page-home .home-venue-text h2 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.018em;
}

.page-home .home-venue-text > p {
  margin: 0 0 18px;
  max-width: 54ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: var(--ink-soft);
}

.page-home .home-venue-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.page-home .home-venue-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-bottom: 1px dashed var(--c-fog);
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink);
}

.page-home .home-venue-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-grass);
}

.page-home .home-venue-list li:last-child {
  border-bottom: 0;
}

.page-home .home-venue-list b {
  color: var(--c-grass);
}

.page-home .home-venue-figure {
  margin: 0;
}

/* ---------- 赛季数据 ---------- */
.page-home .home-stats {
  padding-block: var(--home-section-pad);
}

.page-home .home-stats-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.page-home .home-chart-label {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(247, 244, 238, 0.72);
}

.page-home .home-bars {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-bars li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
}

.page-home .home-bar-name {
  font-size: 13px;
  color: rgba(247, 244, 238, 0.7);
}

.page-home .home-bar-track {
  display: block;
  height: 12px;
  border-radius: 2px;
  background: rgba(247, 244, 238, 0.12);
  overflow: hidden;
}

.page-home .home-bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-red), var(--c-orange));
}

.page-home .home-bar-fill--b { width: 86%; }
.page-home .home-bar-fill--c { width: 79%; }
.page-home .home-bar-fill--d { width: 71%; }
.page-home .home-bar-fill--e { width: 64%; }

.page-home .home-bar-val {
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-orange);
}

.page-home .home-stats-figure {
  margin: 0;
}

.page-home .home-stats-notes {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.page-home .home-note {
  padding: 16px 18px;
  border-left: 3px solid var(--c-teal);
  background: rgba(247, 244, 238, 0.06);
  border-radius: 0 var(--home-radius) var(--home-radius) 0;
}

.page-home .home-note h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--c-paper);
}

.page-home .home-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(247, 244, 238, 0.74);
}

/* ---------- 赛后战报 ---------- */
.page-home .home-reports {
  padding-block: var(--home-section-pad);
}

.page-home .home-report-grid {
  gap: 14px;
}

.page-home .home-report-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 18px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.page-home .home-report-card:hover,
.page-home .home-report-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -24px rgba(13, 27, 42, 0.55);
}

.page-home .home-report-league {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-home .home-report-line {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.page-home .home-report-go {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-red);
}

.page-home .home-report-foot {
  margin: clamp(22px, 3vw, 34px) 0 0;
  max-width: 74ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  padding-left: 16px;
  border-left: 3px solid var(--c-violet);
}

/* ---------- 比分区间 ---------- */
.page-home .home-archive {
  padding-block: var(--home-section-pad);
}

.page-home .home-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3.4vw, 44px);
  align-items: center;
}

.page-home .home-archive-text h2 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.018em;
}

.page-home .home-archive-text > p {
  margin: 0 0 18px;
  max-width: 56ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: var(--ink-soft);
}

.page-home .home-archive-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.page-home .home-archive-list li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}

.page-home .home-archive-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 18px;
  width: 10px;
  height: 2px;
  background: var(--c-violet);
}

.page-home .home-archive-chart {
  margin: 0;
  padding: var(--home-pad);
}

.page-home .home-archive-chart .home-chart-label {
  color: var(--ink-soft);
}

.page-home .home-archive-svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-archive-gridlines line {
  stroke: var(--c-fog);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}

.page-home .home-archive-band {
  fill: url(#homeBandFill);
}

.page-home .home-archive-line {
  fill: none;
  stroke: var(--c-violet);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .home-archive-dots circle {
  fill: var(--c-teal);
  stroke: #fff;
  stroke-width: 1.5;
}

.page-home .home-archive-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}

/* ---------- 为什么选择 ---------- */
.page-home .home-why {
  padding-block: var(--home-section-pad);
  background:
    linear-gradient(180deg, rgba(226, 56, 44, 0.05), rgba(242, 112, 26, 0.03) 42%, rgba(247, 244, 238, 0) 100%);
}

.page-home .home-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: clamp(24px, 3.4vw, 40px);
}

.page-home .home-why-item {
  padding: 20px 18px;
  border: var(--rule);
  border-radius: var(--home-radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.page-home .home-why-item .stat-value {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-navy);
}

.page-home .home-why-item .stat-label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.68;
  color: var(--ink-soft);
}

.page-home .home-why-proof {
  padding: clamp(22px, 3vw, 34px);
  border: 1.5px solid var(--c-navy);
  border-radius: var(--home-radius);
  background: var(--c-navy);
  color: var(--c-paper);
}

.page-home .home-why-proof h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(19px, 2.3vw, 25px);
}

.page-home .home-why-proof > p {
  margin: 0 0 18px;
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247, 244, 238, 0.78);
}

.page-home .home-why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-why-tags .tag {
  background: rgba(247, 244, 238, 0.1);
  border-color: rgba(247, 244, 238, 0.28);
  color: var(--c-paper);
}

/* ---------- 反馈与联系 ---------- */
.page-home .home-contact {
  padding-block: var(--home-section-pad);
}

.page-home .home-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3.4vw, 42px);
  align-items: start;
}

.page-home .home-contact-text h2 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(23px, 3.2vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.018em;
}

.page-home .home-contact-text > p {
  margin: 0 0 20px;
  max-width: 52ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: var(--ink-soft);
}

.page-home .home-contact-card {
  padding: var(--home-pad);
  border-top: 4px solid var(--c-red);
}

.page-home .home-contact-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
}

.page-home .home-contact-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--c-fog);
}

/* ---------- 响应式 ---------- */
@media (min-width: 700px) {
  .page-home .home-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-tile--map {
    grid-column: span 2;
  }

  .page-home .home-stats-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-home .home-board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(170px, auto);
  }

  .page-home .home-tile--map {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    min-height: 430px;
  }

  .page-home .home-tile--batch {
    grid-column: 3 / span 2;
    grid-row: 1;
  }

  .page-home .home-tile--stats {
    grid-column: 3;
    grid-row: 2;
  }

  .page-home .home-tile--report {
    grid-column: 4;
    grid-row: 2;
  }

  .page-home .home-schedule-grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.75fr);
  }

  .page-home .home-venue-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }

  .page-home .home-venue-figure {
    order: 2;
  }

  .page-home .home-venue-text {
    order: 1;
  }

  .page-home .home-stats-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    grid-template-areas:
      "chart figure"
      "notes figure";
    gap: clamp(20px, 2.6vw, 32px);
  }

  .page-home .home-stats-chart { grid-area: chart; }
  .page-home .home-stats-figure { grid-area: figure; }
  .page-home .home-stats-notes { grid-area: notes; }

  .page-home .home-archive-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .page-home .home-contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-pin {
    animation: none;
  }

  .page-home .home-report-card {
    transition: none;
  }

  .page-home .home-report-card:hover,
  .page-home .home-report-card:focus-visible {
    transform: none;
  }
}
<<<END>>>


.page-home {
  --home-gap: 14px;
  --home-pad: clamp(16px, 2.4vw, 26px);
  --home-radius: 4px;
  --home-section-pad: clamp(46px, 7vw, 92px);
}

.page-home .home-top {
  padding-top: clamp(22px, 3.4vw, 40px);
}

.page-home .home-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(14px, 2vw, 22px);
}

.page-home .home-title {
  margin: 0 0 16px;
  max-width: 24ch;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(29px, 5.1vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.page-home .home-lead {
  max-width: 62ch;
  margin: 0 0 clamp(16px, 2.4vw, 24px);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.75;
  color: var(--ink-soft);
}

.page-home .home-jump {
  margin-bottom: clamp(18px, 3vw, 32px);
}

.page-home .home-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--home-gap);
}

.page-home .home-tile {
  position: relative;
  padding: var(--home-pad);
  border: var(--rule);
  border-radius: var(--home-radius);
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.page-home .home-tile-title {
  margin: 22px 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page-home .home-tile-label {
  margin: 26px 0 4px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.page-home .home-big {
  margin: 0 0 6px;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1;
  font-weight: 700;
  color: var(--c-red);
}

.page-home .home-tile--map {
  position: relative;
  min-height: 380px;
  padding: 0;
  border-color: var(--c-navy);
  background: var(--c-navy);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-home .home-map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-home .home-map-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(20, 198, 164, 0.55);
  stroke-width: 0.45;
  fill: none;
  vector-effect: non-scaling-stroke;
}

.page-home .home-pins {
  position: absolute;
  inset: 0;
}

.page-home .home-pin {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--c-teal);
  box-shadow: 0 0 0 5px rgba(20, 198, 164, 0.22);
  transform: translate(-50%, -50%);
  cursor: pointer;
  animation: homePinPulse 2s ease-out infinite;
}

.page-home .home-pin:focus-visible {
  outline: 2px solid var(--c-amber);
  outline-offset: 3px;
}

.page-home .home-pin--a { left: 22%; top: 62%; }
.page-home .home-pin--b { left: 40%; top: 26%; animation-delay: .3s; }
.page-home .home-pin--c { left: 68%; top: 34%; animation-delay: .6s; }
.page-home .home-pin--d { left: 79%; top: 60%; animation-delay: .9s; }
.page-home .home-pin--e { left: 54%; top: 79%; animation-delay: 1.2s; }

.page-home .home-pin-card {
  position: absolute;
  left: 50%;
  bottom: 150%;
  width: min(210px, 58vw);
  padding: 9px 11px;
  border: 1.5px solid var(--c-fog);
  border-radius: 3px;
  background: var(--c-paper);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  text-align: left;
  box-shadow: var(--shadow-card);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-fast), visibility var(--t-fast);
  z-index: 5;
}

.page-home .home-pin:hover .home-pin-card,
.page-home .home-pin:focus-visible .home-pin-card {
  opacity: 1;
  visibility: visible;
}

.page-home .home-map-foot {
  position: relative;
  z-index: 3;
  padding: clamp(18px, 2.6vw, 28px);
  background: linear-gradient(180deg, rgba(13, 27, 42, 0) 0%, rgba(13, 27, 42, 0.88) 46%, rgba(13, 27, 42, 0.97) 100%);
  color: var(--c-paper);
}

.page-home .home-map-tag {
  display: inline-block;
  padding: 4px 9px;
  margin-bottom: 10px;
  border-radius: 2px;
  background: var(--c-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .home-map-lede {
  margin: 0 0 14px;
  max-width: 30ch;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.page-home .home-batch-list {
  list-style: none;
  margin: 16px 0 18px;
  padding: 0;
}

.page-home .home-batch-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--c-fog);
  font-size: 15px;
  color: var(--ink);
}

.page-home .home-batch-list li:last-child {
  border-bottom: 0;
}

.page-home .home-batch-time {
  flex: 0 0 auto;
  min-width: 92px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-orange);
}

@keyframes homePinPulse {
  0%   { box-shadow: 0 0 0 4px rgba(20, 198, 164, 0.30); }
  70%  { box-shadow: 0 0 0 12px rgba(20, 198, 164, 0); }
  100% { box-shadow: 0 0 0 4px rgba(20, 198, 164, 0); }
}

.page-home .home-head {
  max-width: 62ch;
  margin-bottom: clamp(22px, 3.4vw, 40px);
}

.page-home .home-head h2 {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.018em;
}

.page-home .home-head-lede {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: rgba(247, 244, 238, 0.78);
}

.page-home .home-head--dark h2 {
  color: var(--c-paper);
}

.page-home .home-schedule {
  padding-block: var(--home-section-pad);
}

.page-home .home-schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.page-home .home-timeline {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.page-home .home-timeline .timeline-item {
  flex: 0 0 min(250px, 74vw);
  scroll-snap-align: start;
  padding: var(--home-pad);
  border: var(--rule);
  border-radius: var(--home-radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.page-home .home-slot-time {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: -0.01em;
}

.page-home .home-slot-title {
  margin: 10px 0 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.28;
}

.page-home .home-slot-meta {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--ink-soft);
}

.page-home .home-schedule-figure {
  margin: 0;
}

.page-home .home-venue {
  padding-block: var(--home-section-pad);
}

.page-home .home-venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3.4vw, 42px);
  align-items: center;
}

.page-home .home-venue-text h2 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.018em;
}

.page-home .home-venue-text > p {
  margin: 0 0 18px;
  max-width: 54ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: var(--ink-soft);
}

.page-home .home-venue-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.page-home .home-venue-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-bottom: 1px dashed var(--c-fog);
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink);
}

.page-home .home-venue-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-grass);
}

.page-home .home-venue-list li:last-child {
  border-bottom: 0;
}

.page-home .home-venue-list b {
  color: var(--c-grass);
}

.page-home .home-venue-figure {
  margin: 0;
}

.page-home .home-stats {
  padding-block: var(--home-section-pad);
}

.page-home .home-stats-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.page-home .home-chart-label {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(247, 244, 238, 0.72);
}

.page-home .home-bars {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-bars li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
}

.page-home .home-bar-name {
  font-size: 13px;
  color: rgba(247, 244, 238, 0.7);
}

.page-home .home-bar-track {
  display: block;
  height: 12px;
  border-radius: 2px;
  background: rgba(247, 244, 238, 0.12);
  overflow: hidden;
}

.page-home .home-bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-red), var(--c-orange));
}

.page-home .home-bar-fill--b { width: 86%; }
.page-home .home-bar-fill--c { width: 79%; }
.page-home .home-bar-fill--d { width: 71%; }
.page-home .home-bar-fill--e { width: 64%; }

.page-home .home-bar-val {
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-orange);
}

.page-home .home-stats-figure {
  margin: 0;
}

.page-home .home-stats-notes {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.page-home .home-note {
  padding: 16px 18px;
  border-left: 3px solid var(--c-teal);
  background: rgba(247, 244, 238, 0.06);
  border-radius: 0 var(--home-radius) var(--home-radius) 0;
}

.page-home .home-note h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--c-paper);
}

.page-home .home-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(247, 244, 238, 0.74);
}

.page-home .home-reports {
  padding-block: var(--home-section-pad);
}

.page-home .home-report-grid {
  gap: 14px;
}

.page-home .home-report-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 18px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.page-home .home-report-card:hover,
.page-home .home-report-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -24px rgba(13, 27, 42, 0.55);
}

.page-home .home-report-league {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-home .home-report-line {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.page-home .home-report-go {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-red);
}

.page-home .home-report-foot {
  margin: clamp(22px, 3vw, 34px) 0 0;
  max-width: 74ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  padding-left: 16px;
  border-left: 3px solid var(--c-violet);
}

.page-home .home-archive {
  padding-block: var(--home-section-pad);
}

.page-home .home-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3.4vw, 44px);
  align-items: center;
}

.page-home .home-archive-text h2 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.018em;
}

.page-home .home-archive-text > p {
  margin: 0 0 18px;
  max-width: 56ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: var(--ink-soft);
}

.page-home .home-archive-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.page-home .home-archive-list li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}

.page-home .home-archive-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 18px;
  width: 10px;
  height: 2px;
  background: var(--c-violet);
}

.page-home .home-archive-chart {
  margin: 0;
  padding: var(--home-pad);
}

.page-home .home-archive-chart .home-chart-label {
  color: var(--ink-soft);
}

.page-home .home-archive-svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-archive-gridlines line {
  stroke: var(--c-fog);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}

.page-home .home-archive-band {
  fill: url(#homeBandFill);
}

.page-home .home-archive-line {
  fill: none;
  stroke: var(--c-violet);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .home-archive-dots circle {
  fill: var(--c-teal);
  stroke: #fff;
  stroke-width: 1.5;
}

.page-home .home-archive-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
}

.page-home .home-why {
  padding-block: var(--home-section-pad);
  background: linear-gradient(180deg, rgba(226, 56, 44, 0.05), rgba(242, 112, 26, 0.03) 42%, rgba(247, 244, 238, 0) 100%);
}

.page-home .home-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: clamp(24px, 3.4vw, 40px);
}

.page-home .home-why-item {
  padding: 20px 18px;
  border: var(--rule);
  border-radius: var(--home-radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.page-home .home-why-item .stat-value {
  display: block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-navy);
}

.page-home .home-why-item .stat-label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.68;
  color: var(--ink-soft);
}

.page-home .home-why-proof {
  padding: clamp(22px, 3vw, 34px);
  border: 1.5px solid var(--c-navy);
  border-radius: var(--home-radius);
  background: var(--c-navy);
  color: var(--c-paper);
}

.page-home .home-why-proof h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(19px, 2.3vw, 25px);
}

.page-home .home-why-proof > p {
  margin: 0 0 18px;
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247, 244, 238, 0.78);
}

.page-home .home-why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-why-tags .tag {
  background: rgba(247, 244, 238, 0.1);
  border-color: rgba(247, 244, 238, 0.28);
  color: var(--c-paper);
}

.page-home .home-contact {
  padding-block: var(--home-section-pad);
}

.page-home .home-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3.4vw, 42px);
  align-items: start;
}

.page-home .home-contact-text h2 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(23px, 3.2vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.018em;
}

.page-home .home-contact-text > p {
  margin: 0 0 20px;
  max-width: 52ch;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.78;
  color: var(--ink-soft);
}

.page-home .home-contact-card {
  padding: var(--home-pad);
  border-top: 4px solid var(--c-red);
}

.page-home .home-contact-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
}

.page-home .home-contact-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--c-fog);
}

@media (min-width: 700px) {
  .page-home .home-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .home-tile--map {
    grid-column: span 2;
  }

  .page-home .home-stats-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-home .home-board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(170px, auto);
  }

  .page-home .home-tile--map {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    min-height: 430px;
  }

  .page-home .home-tile--batch {
    grid-column: 3 / span 2;
    grid-row: 1;
  }

  .page-home .home-tile--stats {
    grid-column: 3;
    grid-row: 2;
  }

  .page-home .home-tile--report {
    grid-column: 4;
    grid-row: 2;
  }

  .page-home .home-schedule-grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.75fr);
  }

  .page-home .home-venue-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }

  .page-home .home-venue-figure { order: 2; }
  .page-home .home-venue-text { order: 1; }

  .page-home .home-stats-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    grid-template-areas:
      "chart figure"
      "notes figure";
    gap: clamp(20px, 2.6vw, 32px);
  }

  .page-home .home-stats-chart { grid-area: chart; }
  .page-home .home-stats-figure { grid-area: figure; }
  .page-home .home-stats-notes { grid-area: notes; }

  .page-home .home-archive-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .page-home .home-contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-pin {
    animation: none;
  }

  .page-home .home-report-card {
    transition: none;
  }

  .page-home .home-report-card:hover,
  .page-home .home-report-card:focus-visible {
    transform: none;
  }
}
<<<END>>>
