.page-home {
  --home-hero-glow: rgba(255, 107, 53, 0.18);
  --home-line: rgba(255, 255, 255, 0.08);
  --home-navy-3: #1D3A67;
}

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

.page-home .home-hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 55%, var(--home-navy-3) 100%);
  color: var(--white);
  padding: 20px 0 48px;
  position: relative;
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(-45deg, transparent 0 14px, var(--home-line) 14px 28px);
}

.page-home .home-breadcrumb {
  margin-bottom: 18px;
  font-family: var(--font-data);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.page-home .home-breadcrumb a:hover {
  color: var(--yellow);
}

.page-home .home-breadcrumb-sep {
  margin: 0 6px;
  color: rgba(255, 255, 255, 0.4);
}

.page-home .home-hero-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.page-home .home-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.page-home .home-hero-title {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.22;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  max-width: 720px;
}

.page-home .home-hero-intro {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0;
}

.page-home .home-hero-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-hero-index-link {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.page-home .home-hero-index-link:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.page-home .home-hero-body {
  display: grid;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.page-home .home-stadium {
  position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  line-height: 0;
}

.page-home .home-stadium-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

.page-home .home-stadium-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  background: rgba(11, 27, 59, 0.78);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-family: var(--font-data);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-home .home-live-panel {
  background: var(--navy-2);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
}

.page-home .home-live-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 18px 14px;
  margin-top: 12px;
  color: var(--ink);
  position: relative;
}

.page-home .home-live-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(225deg, var(--orange) 0 50%, transparent 50%);
  border-radius: 0 var(--radius) 0 0;
}

.page-home .home-live-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.page-home .home-live-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-home .home-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 72px;
}

.page-home .home-team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.page-home .home-team-badge {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--muted);
  background: var(--gray);
  border-radius: 4px;
  padding: 2px 8px;
}

.page-home .home-score-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
  text-align: center;
  font-family: var(--font-data);
}

.page-home .home-live-foot {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  border-top: 1px dashed rgba(30, 42, 58, 0.15);
  padding-top: 10px;
}

.page-home .home-mini-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.page-home .home-mini-card {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
}

.page-home .home-mini-card strong {
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 600;
}

.page-home .home-data-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  padding: 16px;
  height: 100%;
  backdrop-filter: blur(4px);
}

.page-home .home-data-visual {
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
  margin-bottom: 16px;
}

.page-home .home-data-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .home-data-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.page-home .home-data-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.page-home .home-data-stats {
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.page-home .home-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px 14px;
}

.page-home .home-data-row dt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-data-row dd {
  margin: 0;
  font-size: 16px;
  color: var(--yellow);
}

.page-home .home-data-log {
  border-left: 2px solid rgba(255, 255, 255, 0.14);
  margin: 16px 0;
  padding-left: 14px;
  display: grid;
  gap: 12px;
}

.page-home .home-data-log-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.page-home .home-data-log-dot {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--home-hero-glow);
}

.page-home .home-data-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 107, 53, 0.1);
  border-left: 3px solid var(--orange);
  padding: 10px 12px;
  border-radius: 0 8px 8px 0;
}

.page-home .home-announce {
  padding: 40px 0;
  background: var(--white);
}

.page-home .home-announce-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-home .home-announce-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-data);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}

.page-home .home-announce-body {
  padding: 22px 20px 26px;
}

.page-home .home-announce-body h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
}

.page-home .home-announce-desc {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 72ch;
}

.page-home .home-announce-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.page-home .home-announce-link {
  font-size: 14px;
  color: var(--ink);
  text-underline-offset: 4px;
}

.page-home .home-schedule {
  padding: 48px 0;
  background: var(--gray);
}

.page-home .home-schedule .section-head {
  margin-bottom: 28px;
}

.page-home .home-schedule-timeline {
  margin: 0;
  padding-left: 24px;
}

.page-home .home-schedule-timeline .timeline-item {
  position: relative;
  padding: 0 0 20px 10px;
  border-left: 2px solid rgba(11, 27, 59, 0.12);
}

.page-home .home-schedule-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.page-home .home-schedule-timeline .timeline-dot {
  position: absolute;
  left: -7px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18);
}

.page-home .home-schedule-timeline .timeline-meta {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--muted);
}

.page-home .home-schedule-timeline .timeline-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin: 4px 0;
}

.page-home .home-schedule-timeline .timeline-desc {
  font-size: 13px;
  color: var(--muted);
}

.page-home .home-schedule-foot {
  margin-top: 24px;
  text-align: center;
}

.page-home .home-matchup {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 56px;
}

.page-home .home-matchup .section-head .index-label {
  color: var(--cyan);
}

.page-home .home-matchup .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-matchup-grid {
  display: grid;
  gap: 22px;
  align-items: start;
}

.page-home .home-matchup-main {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--home-line);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.page-home .home-matchup-tabs .tab-list {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 16px;
}

.page-home .home-matchup-tabs .tab-button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.page-home .home-matchup-tabs .tab-button[aria-selected="true"] {
  background: var(--orange);
  color: var(--white);
}

.page-home .home-matchup-record {
  display: grid;
  gap: 8px;
}

.page-home .home-matchup-record-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .home-matchup-league {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.08em;
}

.page-home .home-matchup-teams {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.page-home .home-matchup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 10px 14px;
}

.page-home .home-matchup-row .data-number {
  font-size: 18px;
  color: var(--yellow);
}

.page-home .home-matchup-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 14px;
  text-align: center;
}

.page-home .home-matchup-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.page-home .home-matchup-caption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.page-home .home-matchup-fav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.page-home .home-matchup-fav:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.page-home .home-matchup-fav .home-matchup-star {
  font-size: 16px;
  line-height: 1;
}

.page-home .home-matchup-cta {
  margin-top: 24px;
  text-align: center;
}

.page-home .home-access {
  background: var(--white);
  padding: 48px 0;
}

.page-home .home-access-grid {
  margin: 0;
}

.page-home .home-access-card {
  position: relative;
  padding: 22px;
  border: 1px solid #E4E8EF;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.page-home .home-access-card .card-title {
  margin: 10px 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.page-home .home-access-card .card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #5B6474;
  margin-bottom: 14px;
}

.page-home .home-access-tag {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

.page-home .home-access-featured {
  border: 2px solid var(--orange);
  box-shadow: 0 14px 36px rgba(255, 107, 53, 0.16);
}

.page-home .home-access-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.page-home .home-access-link {
  font-size: 14px;
  color: var(--ink);
  text-underline-offset: 4px;
}

.page-home .home-commute {
  background: var(--gray);
  padding: 48px 0;
}

.page-home .home-commute-grid {
  display: grid;
  gap: 24px;
}

.page-home .home-commute-content .section-head {
  margin-bottom: 20px;
}

.page-home .home-commute-tabs .tab-list {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #E4E8EF;
  margin-bottom: 14px;
}

.page-home .home-commute-tabs .tab-button {
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.page-home .home-commute-tabs .tab-button[aria-selected="true"] {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.page-home .home-commute-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.page-home .home-commute-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--white);
  border: 1px solid #E4E8EF;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  transition: box-shadow 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.page-home .home-commute-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

.page-home .home-commute-item .data-meta {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.page-home .home-commute-arrow {
  color: var(--orange);
  font-family: var(--font-data);
}

.page-home .home-commute-tag {
  font-family: var(--font-data);
  font-size: 11px;
  padding: 2px 10px;
}

.page-home .home-commute-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.page-home .home-commute-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  aspect-ratio: 7 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-home .home-trust {
  background: var(--navy);
  padding: 40px 0;
}

.page-home .home-trust-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  color: var(--white);
}

.page-home .home-trust-inner .trust-statement {
  margin: 0;
  max-width: 62ch;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .home-trust-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-data);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.page-home .home-trust-num-item {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.page-home .home-trust-num-item .data-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--yellow);
}

.page-home .home-trust-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .home-trust-disclaimer-label {
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.06em;
}

.page-home .home-trust-cta {
  margin-top: 4px;
}

@media (min-width: 720px) {
  .page-home .home-hero {
    padding: 28px 0 60px;
  }

  .page-home .home-hero-title {
    font-size: 40px;
  }

  .page-home .home-hero-intro {
    font-size: 17px;
  }

  .page-home .home-hero-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-home .home-hero-index {
    flex-shrink: 0;
    justify-content: flex-end;
  }

  .page-home .home-mini-strip {
    flex-direction: row;
  }

  .page-home .home-mini-card {
    flex: 1;
  }

  .page-home .home-announce-body {
    padding: 26px 32px 30px;
  }

  .page-home .home-schedule-timeline {
    padding-left: 32px;
  }

  .page-home .home-matchup-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 24px;
  }

  .page-home .home-commute-grid {
    grid-template-columns: 1fr 0.75fr;
    align-items: center;
    gap: 32px;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero-body {
    grid-template-columns: 1.14fr 0.86fr;
    gap: 26px;
  }

  .page-home .home-hero-title {
    font-size: 46px;
  }

  .page-home .home-live-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 12px;
    align-items: start;
  }

  .page-home .home-stadium {
    grid-row: span 2;
  }

  .page-home .home-live-card {
    margin-top: 0;
  }

  .page-home .home-mini-strip {
    flex-direction: column;
  }

  .page-home .home-mini-card {
    width: 100%;
  }

  .page-home .home-data-card {
    padding: 20px;
  }

  .page-home .home-announce-card {
    flex-direction: row;
  }

  .page-home .home-announce-flag {
    align-self: stretch;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), 0 100%);
    padding: 18px 12px;
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .page-home .home-announce-body {
    flex: 1;
    padding: 28px 36px;
  }

  .page-home .home-access-card {
    padding: 26px 24px;
  }

  .page-home .home-trust-inner {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    gap: 14px;
  }

  .page-home .home-trust-cta {
    margin-top: 0;
  }
}
