.page-home {
  --home-blue: #1E40AF;
  --home-red: #DC2626;
  --home-gold: #F59E0B;
  --home-paper: #FDF6EC;
  --home-ink: #0F172A;
  --home-green: #059669;
  --home-muted: #64748B;
  --home-line: #E6DCCB;
  --home-blue-soft: #DBEAFE;
  --home-red-soft: #FEE2E2;
  --home-gold-soft: #FEF3C7;
  --home-green-soft: #D1FAE5;
}

.page-home .home-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 88px 0 84px;
  overflow: hidden;
  background: var(--home-ink);
  color: var(--color-white);
}

.page-home .home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 72px), 0 100%);
  background: var(--home-ink);
}

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

.page-home .home-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,23,42,.94) 0%, rgba(15,23,42,.76) 45%, rgba(30,64,175,.44) 100%);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-home .home-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 26px;
  font-size: 13px;
  color: rgba(255,255,255,.68);
}

.page-home .home-hero__crumb a {
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.32);
}

.page-home .home-hero__content {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-home .home-hero__eyebrow {
  margin-bottom: 14px;
  color: var(--home-gold);
  font-weight: 600;
}

.page-home .home-hero__title {
  margin: 0;
  font-size: clamp(40px, 9vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--color-white);
}

.page-home .home-hero__lead {
  margin: 14px 0 0;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--color-white);
  opacity: .88;
  font-weight: 500;
}

.page-home .home-hero__summary {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.8;
}

.page-home .home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-home .home-hero__ghost {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--color-white);
}

.page-home .home-hero__ghost:hover {
  background: rgba(255,255,255,.2);
}

.page-home .home-hero__stripe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  z-index: 2;
}

.page-home .home-board {
  position: relative;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 22px;
  overflow: hidden;
  color: var(--home-ink);
}

.page-home .home-board::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--home-blue), var(--home-red), var(--home-gold));
}

.page-home .home-board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-home .home-board__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--home-ink);
  line-height: 1.2;
}

.page-home .home-board__sync {
  margin: 12px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-muted);
}

.page-home .home-board__chart-wrap {
  margin-top: 16px;
  padding: 14px 10px 6px;
  background: var(--color-paper);
  border-radius: var(--radius-md);
}

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

@keyframes homeDrawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.page-home .home-board__line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: homeDrawLine 1.5s var(--ease) .4s forwards;
}

.page-home .home-board__matches {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-board__match {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  font-size: 13px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.page-home .home-board__match:hover {
  background: var(--home-blue-soft);
  border-color: var(--home-blue);
}

.page-home .home-board__match-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.page-home .home-board__match-score {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--home-ink);
}

.page-home .home-board__match-trend {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-green);
}

.page-home .home-board__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--color-line);
  font-size: 12px;
  color: var(--home-muted);
}

.page-home .home-features,
.page-home .home-news,
.page-home .home-start {
  padding: 80px 0;
}

.page-home .home-features {
  background: var(--home-paper);
}

.page-home .home-features__head,
.page-home .home-news__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.page-home .home-features__title,
.page-home .home-news__title,
.page-home .home-start__title {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--home-ink);
  letter-spacing: -0.01em;
}

.page-home .home-features__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .filter-btn {
  appearance: none;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  color: var(--home-ink);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 14px;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all .3s var(--ease);
}

.page-home .filter-btn:hover {
  border-color: var(--home-blue);
  color: var(--home-blue);
}

.page-home .filter-btn:focus-visible {
  outline: 3px solid var(--home-blue);
  outline-offset: 2px;
}

.page-home .filter-btn[aria-pressed="true"] {
  background: var(--home-blue);
  border-color: var(--home-blue);
  color: var(--color-white);
}

.page-home .home-features__grid {
  display: grid;
  gap: 20px;
}

.page-home .home-feature {
  padding: 24px;
  border-radius: var(--radius-lg);
  border-top: 5px solid transparent;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.page-home .home-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px -18px rgba(15,23,42,.28);
}

.page-home .home-feature[data-filter="live"] {
  border-top-color: var(--home-blue);
}

.page-home .home-feature[data-filter="alert"] {
  border-top-color: var(--home-red);
}

.page-home .home-feature[data-filter="report"] {
  border-top-color: var(--home-gold);
}

.page-home .home-feature[data-filter="index"] {
  border-top-color: var(--home-green);
}

.page-home .home-feature__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 16px;
  color: var(--home-blue);
  background: var(--home-blue-soft);
  margin-bottom: 18px;
}

.page-home .home-feature[data-filter="alert"] .home-feature__index {
  background: var(--home-red-soft);
  color: var(--home-red);
}

.page-home .home-feature[data-filter="report"] .home-feature__index {
  background: var(--home-gold-soft);
  color: #B45309;
}

.page-home .home-feature[data-filter="index"] .home-feature__index {
  background: var(--home-green-soft);
  color: #065F46;
}

.page-home .home-feature__title {
  margin: 0;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 800;
  color: var(--home-ink);
}

.page-home .home-feature__desc {
  margin: 12px 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-muted);
}

.page-home .home-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--home-blue);
  text-decoration: none;
}

.page-home .home-feature__link:hover {
  color: var(--home-red);
}

.page-home .home-news {
  background: var(--color-white);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.page-home .home-news__grid {
  display: grid;
  gap: 20px;
}

.page-home .home-news__card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}

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

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

.page-home .home-news__card h3 {
  margin: 16px 0 10px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  color: var(--home-ink);
}

.page-home .home-news__card p {
  flex: 1;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-muted);
}

.page-home .home-news__card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--home-red);
  text-decoration: none;
}

.page-home .home-news__card a:hover {
  color: var(--home-blue);
}

.page-home .home-coverage {
  background: var(--home-ink);
  color: var(--color-white);
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}

.page-home .home-coverage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--home-red), var(--home-gold), var(--home-blue));
}

.page-home .home-coverage__layout {
  display: grid;
  gap: 48px;
  align-items: center;
}

.page-home .home-coverage .eyebrow {
  color: var(--home-gold);
  margin-bottom: 12px;
}

.page-home .home-coverage__title {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.page-home .home-coverage__copy > p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 15px;
  line-height: 1.85;
  max-width: 620px;
}

.page-home .home-coverage__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.page-home .home-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
}

.page-home .home-stat__value {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.1;
  color: var(--home-gold);
}

.page-home .home-stat__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.62);
}

.page-home .home-coverage__foot {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.page-home .home-coverage__visual {
  position: relative;
  display: grid;
  gap: 18px;
  transform: rotate(-.8deg);
}

.page-home .home-coverage__media,
.page-home .home-coverage__mini {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  position: relative;
}

.page-home .home-coverage__media {
  aspect-ratio: 2 / 1;
}

.page-home .home-coverage__mini {
  aspect-ratio: 4 / 3;
}

.page-home .home-coverage__media img,
.page-home .home-coverage__mini img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-home .home-coverage__media figcaption,
.page-home .home-coverage__mini figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(15,23,42,.72);
  color: var(--color-white);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  backdrop-filter: blur(4px);
}

.page-home .home-start {
  background: var(--home-paper);
}

.page-home .home-start__head {
  margin-bottom: 36px;
}

.page-home .home-start__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-home .home-start__phone {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  background: var(--home-ink);
  box-shadow: var(--shadow-card);
  aspect-ratio: 3 / 4;
  position: relative;
}

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

.page-home .home-start__steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.page-home .home-start__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-line);
}

.page-home .home-start__list li:first-child {
  padding-top: 0;
}

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

.page-home .home-start__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--home-blue);
  color: var(--home-blue);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
}

.page-home .home-start__list h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--home-ink);
}

.page-home .home-start__list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-muted);
}

.page-home .home-start__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@keyframes homePulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(5,150,105,.5);
  }
  50% {
    opacity: .65;
    box-shadow: 0 0 0 7px rgba(5,150,105,0);
  }
}

.page-home .live-chip__dot {
  animation: homePulse 1.8s ease-in-out infinite;
}

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

@media (min-width: 900px) {
  .page-home .home-hero {
    min-height: 780px;
    padding: 120px 0 100px;
  }

  .page-home .home-hero__content {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: 52px;
  }

  .page-home .home-board {
    transform: translateY(18px);
  }

  .page-home .home-features,
  .page-home .home-news,
  .page-home .home-start {
    padding: 100px 0;
  }

  .page-home .home-features__head,
  .page-home .home-news__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-home .home-features__filter {
    margin-top: 0;
  }

  .page-home .home-features__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .home-news__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .home-coverage {
    padding: 110px 0 120px;
  }

  .page-home .home-coverage__layout {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: 64px;
  }

  .page-home .home-coverage__visual {
    display: block;
    min-height: 420px;
  }

  .page-home .home-coverage__media {
    width: 88%;
  }

  .page-home .home-coverage__mini {
    position: absolute;
    right: -8px;
    bottom: 14px;
    width: 58%;
    z-index: 2;
  }

  .page-home .home-start__grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-board__line,
  .page-home .live-chip__dot {
    animation: none;
  }
}
