.page-home {
  scroll-behavior: smooth;
  background: var(--c-bg);
  color: var(--c-ink);
}

.page-home .eyebrow {
  color: var(--c-accent);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.page-home .section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.14;
  color: var(--c-primary);
  margin: 0 0 18px;
}

.page-home .lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-muted);
  margin: 0;
}

.page-home .display-title {
  font-size: clamp(2.75rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: .96;
  margin: 0 0 22px;
  color: var(--c-white);
  text-shadow: 0 10px 36px rgba(0, 0, 0, .28);
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  font-size: .75rem;
  line-height: 1;
}

.page-home .tag-accent {
  background: var(--c-accent);
  color: var(--c-white);
}

.page-home .tag-success {
  background: rgba(31, 168, 107, .12);
  color: var(--c-green);
  border: 1px solid rgba(31, 168, 107, .3);
}

.page-home .section {
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .page-home .section {
    padding: 96px 0;
  }
}

.page-home .home-hero {
  position: relative;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-soft) 100%);
  color: var(--c-white);
  padding: 88px 0 64px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), 0 100%);
}

.page-home .home-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 44, .24) 0%, rgba(255, 107, 44, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 44px;
}

.page-home .hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .16;
  pointer-events: none;
}

.page-home .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.page-home .hero-main {
  position: relative;
  z-index: 1;
}

.page-home .hero-main .eyebrow {
  color: var(--c-accent);
}

.page-home .hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .82);
  max-width: 580px;
  margin: 0 0 28px;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.page-home .btn {
  display: inline-block;
  padding: 13px 22px;
  font-weight: 700;
  font-size: .9375rem;
  text-decoration: none;
  transition: all .2s ease;
}

.page-home .btn-primary {
  background: var(--c-accent);
  border: 2px solid var(--c-accent);
  color: var(--c-white);
}

.page-home .btn-primary:hover {
  background: transparent;
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.page-home .hero-main .btn-outline {
  border: 2px solid rgba(255, 255, 255, .58);
  color: var(--c-white);
}

.page-home .hero-main .btn-outline:hover {
  border-color: var(--c-white);
  background: rgba(255, 255, 255, .08);
}

.page-home .hero-update-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.page-home .hero-update-accent {
  background: var(--c-accent);
  color: var(--c-white);
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .9375rem;
  clip-path: polygon(0 0, 92% 0, 100% 28%, 100% 100%, 8% 100%, 0 72%);
}

.page-home .hero-update-desc {
  font-size: .875rem;
  color: rgba(255, 255, 255, .78);
}

.page-home .hero-scoreboard {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.page-home .score-card {
  grid-column: 1 / -1;
  position: relative;
  background: rgba(16, 37, 77, .58);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  padding: 22px 18px;
  text-align: center;
}

.page-home .score-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  background: var(--c-accent);
}

.page-home .score-label {
  display: block;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 10px;
}

.page-home .score-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 12px;
}

.page-home .score-team {
  font-weight: 700;
  font-size: .9375rem;
  color: var(--c-white);
}

.page-home .score-val {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  white-space: nowrap;
}

.page-home .score-tag {
  display: inline-block;
}

.page-home .hero-data-badge {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 18px 12px;
  text-align: center;
}

.page-home .badge-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
}

.page-home .badge-label {
  display: block;
  margin-top: 6px;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .7);
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 120px 0 96px;
  }

  .page-home .home-hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: center;
    gap: 56px;
  }

  .page-home .hero-bg-media {
    opacity: .2;
  }
}

.page-home .home-quickstrip {
  background: var(--c-accent);
  padding: 12px 0;
  color: var(--c-white);
}

.page-home .quickstrip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-family: var(--font-mono);
}

.page-home .quickstrip-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .12em;
}

.page-home .quickstrip-link {
  color: var(--c-white);
  text-decoration: none;
  font-weight: 600;
  font-size: .9375rem;
  border-bottom: 2px solid transparent;
}

.page-home .quickstrip-link:hover {
  border-bottom-color: rgba(255, 255, 255, .82);
}

.page-home .quickstrip-sep {
  opacity: .5;
}

.page-home .entrance-section {
  background: var(--c-bg);
}

.page-home .section-head-row {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.page-home .home-entrance-grid {
  display: grid;
  gap: 18px;
}

.page-home .entrance-card {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--c-ink);
  transition: transform .25s ease, border-color .25s ease;
}

.page-home .entrance-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-accent);
}

.page-home .entrance-index {
  display: block;
  font-family: var(--font-mono);
  font-size: .875rem;
  letter-spacing: .1em;
  color: var(--c-accent);
  margin-bottom: 16px;
}

.page-home .entrance-title {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-home .entrance-desc {
  display: block;
  color: var(--c-muted);
  font-size: .9375rem;
  line-height: 1.75;
}

.page-home .entrance-meta {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 12px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  font-family: var(--font-mono);
  font-size: .8125rem;
  color: var(--c-primary);
}

.page-home .entrance-card-featured {
  background: var(--c-primary);
  border-color: var(--c-primary);
}

.page-home .entrance-card-featured .entrance-title,
.page-home .entrance-card-featured .entrance-desc {
  color: var(--c-white);
}

.page-home .entrance-card-featured .entrance-desc {
  color: rgba(255, 255, 255, .76);
}

.page-home .entrance-card-featured .entrance-meta {
  background: var(--c-primary-soft);
  border-color: rgba(255, 255, 255, .2);
  color: var(--c-white);
}

@media (min-width: 768px) {
  .page-home .home-entrance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .entrance-card-featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .page-home .section-head-row {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .page-home .home-entrance-grid {
    grid-template-columns: 1fr 1.16fr 1fr;
  }

  .page-home .entrance-card-featured {
    grid-column: auto;
  }
}

.page-home .highlights-section {
  background: var(--c-white);
}

.page-home .highlights-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.page-home .highlights-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-muted);
  font-family: var(--font-mono);
  font-size: .875rem;
}

.page-home .live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: homeLivePulse 2s infinite;
}

@keyframes homeLivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 44, .4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 44, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 44, 0);
  }
}

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

.page-home .match-board,
.page-home .injury-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  padding: 20px;
  height: 100%;
}

.page-home .board-title {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin: 0 0 12px;
}

.page-home .match-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
}

.page-home .match-row:last-child {
  border-bottom: none;
}

.page-home .match-team {
  min-width: 0;
  font-weight: 600;
  font-size: .875rem;
  color: var(--c-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .match-score {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--c-accent);
  font-size: 1.0625rem;
  white-space: nowrap;
}

.page-home .match-status {
  font-size: .75rem;
}

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

.page-home .injury-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
}

.page-home .injury-item:last-child {
  border-bottom: none;
}

.page-home .injury-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-red);
  flex-shrink: 0;
}

.page-home .injury-club {
  flex: 1;
  font-size: .875rem;
  font-weight: 600;
}

.page-home .injury-count {
  font-family: var(--font-mono);
  font-size: .8125rem;
  color: var(--c-red);
}

.page-home .injury-note {
  margin: 16px 0 0;
  padding: 8px 12px;
  background: var(--c-white);
  border-left: 3px solid var(--c-accent);
  font-size: .8125rem;
  color: var(--c-muted);
}

.page-home .highlight-visual {
  position: relative;
  overflow: hidden;
}

.page-home .athlete-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.page-home .stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  margin-top: 24px;
}

.page-home .data-stat {
  background: var(--c-bg);
  padding: 26px 16px;
  text-align: center;
}

.page-home .stat-num {
  display: block;
  line-height: 1;
}

.page-home .stat-value {
  font-family: var(--font-mono);
  font-size: 2.375rem;
  font-weight: 700;
  color: var(--c-primary);
}

.page-home .stat-suffix {
  font-family: var(--font-mono);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-left: 4px;
}

.page-home .stat-label {
  display: block;
  margin-top: 12px;
  font-size: .875rem;
  color: var(--c-muted);
}

.page-home .trend-block {
  margin-top: 40px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  padding: 20px;
}

.page-home .trend-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.page-home .trend-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--c-primary);
}

.page-home .trend-note {
  font-size: .75rem;
  font-family: var(--font-mono);
  color: var(--c-muted);
}

.page-home .trend-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
}

.page-home .trend-gridline {
  fill: none;
  stroke: var(--c-line);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.page-home .trend-line {
  fill: none;
  stroke: var(--c-accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.page-home .trend-dot {
  fill: var(--c-primary);
  stroke: var(--c-white);
  stroke-width: 2;
}

@media (min-width: 768px) {
  .page-home .highlights-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-home .stats-band {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-home .highlights-grid {
    grid-template-columns: 1.4fr 1fr 280px;
  }

  .page-home .highlight-visual {
    min-height: 320px;
  }

  .page-home .athlete-img {
    position: absolute;
    inset: 0;
    height: 100%;
  }
}

.page-home .commitment-section {
  position: relative;
  background: var(--c-primary);
  color: var(--c-white);
  overflow: hidden;
}

.page-home .commitment-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .18;
  pointer-events: none;
}

.page-home .commitment-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .commitment-panel {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 32px 24px;
  background: rgba(16, 37, 77, .78);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
}

.page-home .commitment-panel .eyebrow {
  color: var(--c-accent);
}

.page-home .commitment-panel .section-title,
.page-home .commitment-panel .commitment-label {
  color: var(--c-white);
}

.page-home .commitment-desc {
  color: rgba(255, 255, 255, .76);
  line-height: 1.8;
  margin: 0 0 26px;
}

.page-home .commitment-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 4px;
}

.page-home .commitment-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.page-home .commitment-item:last-child {
  border-bottom: none;
}

.page-home .commitment-time {
  min-width: 64px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--c-accent);
}

.page-home .commitment-label {
  font-size: .9375rem;
}

.page-home .commitment-panel .btn-outline {
  border: 2px solid rgba(255, 255, 255, .62);
  color: var(--c-white);
}

.page-home .commitment-panel .btn-outline:hover {
  border-color: var(--c-white);
  background: rgba(255, 255, 255, .08);
}

@media (min-width: 1024px) {
  .page-home .commitment-panel {
    padding: 44px 40px;
  }
}

.page-home .features-section {
  background: var(--c-bg);
}

.page-home .features-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.page-home .feature-item {
  position: relative;
  padding: 26px 22px 22px 22px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  transition: border-color .2s ease;
}

.page-home .feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  background: var(--c-accent);
}

.page-home .feature-item:hover {
  border-color: var(--c-accent);
}

.page-home .feature-num {
  display: block;
  font-family: var(--font-mono);
  font-size: .875rem;
  color: var(--c-accent);
  margin-bottom: 14px;
}

.page-home .feature-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--c-primary);
  margin: 0 0 10px;
}

.page-home .feature-desc {
  font-size: .875rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin: 0;
}

.page-home .keyword-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.page-home .keyword-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  color: var(--c-primary);
  font-size: .8125rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .page-home .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .page-home .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-home .region-section {
  background: var(--c-white);
  padding: 64px 0;
}

.page-home .region-inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .region-visual {
  position: relative;
}

.page-home .region-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 300px;
  border: 1px solid var(--c-line);
}

.page-home .region-text .section-title {
  margin-top: 6px;
}

.page-home .region-desc {
  color: var(--c-muted);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 0 26px;
}

.page-home .region-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .region-links .btn-outline {
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
}

.page-home .region-links .btn-outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

@media (min-width: 900px) {
  .page-home .region-inner {
    grid-template-columns: 300px 1fr;
  }

  .page-home .region-section {
    padding: 88px 0;
  }
}
