.page-home {
  overflow-x: hidden;
  background: var(--c-surface);
}

/* ===== Hero ===== */
.page-home .home-hero {
  position: relative;
  background: var(--c-bg-dark);
  color: var(--c-on-dark);
  overflow: hidden;
  padding: 56px 0 96px;
  isolation: isolate;
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: auto -20% -15% auto;
  width: 75%;
  height: 65%;
  background: linear-gradient(135deg, transparent 32%, rgba(255, 59, 47, 0.28));
  transform: skewX(-14deg);
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
  z-index: -1;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 55%;
  height: 80%;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.12), transparent 70%);
  transform: rotate(18deg);
  z-index: -1;
}
.page-home .hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
}
.page-home .hero-kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page-home .hero-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--grad-primary);
}
.page-home .hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 12vw, 80px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--c-on-dark);
  transform: rotate(-1deg) skewX(-3deg);
  transform-origin: left center;
}
.page-home .hero-copy h1 span {
  display: inline-block;
  background: var(--grad-primary);
  color: #fff;
  padding: 0 12px;
  transform: skewX(-6deg);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-left: -8px;
}
.page-home .hero-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-on-dark-muted);
  max-width: 34em;
  margin: 0 0 28px;
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.page-home .hero-checkpoints {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.page-home .hero-checkpoints a {
  color: var(--c-on-dark-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--trans);
  position: relative;
}
.page-home .hero-checkpoints a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width var(--trans);
}
.page-home .hero-checkpoints a:hover::after {
  width: 100%;
}
.page-home .hero-visual {
  position: relative;
}
.page-home .hero-visual-zone {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  transform: skewY(-2deg);
}
.page-home .hero-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .hero-data-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-home .data-stream-line {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 38%;
  background: linear-gradient(180deg, transparent, var(--c-accent), transparent);
  opacity: 0;
  animation: home-line-flow 2.6s ease-in-out infinite;
}
.page-home .line-a {
  left: 16%;
  animation-delay: 0s;
}
.page-home .line-b {
  left: 54%;
  animation-delay: 0.9s;
  height: 30%;
}
.page-home .line-c {
  left: 82%;
  animation-delay: 1.5s;
  height: 48%;
}
.page-home .data-pulse-dot {
  position: absolute;
  right: 18%;
  top: 20%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-data);
  box-shadow: 0 0 0 0 rgba(0, 227, 154, 0.5);
  animation: home-dot-pulse 1.8s ease-out infinite;
}
.page-home .hero-spark {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(18, 18, 26, 0.74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-home .spark-num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-data);
  white-space: nowrap;
}
.page-home .hero-spark svg {
  width: 100%;
  height: 44px;
  display: block;
}

/* ===== Metrics ===== */
.page-home .home-metrics {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 0 0 48px;
}
.page-home .metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.page-home .metric-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  border-radius: 14px;
  padding: 20px 16px;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.page-home .metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
}
.page-home .metric-card:nth-child(even)::before {
  background: linear-gradient(90deg, var(--c-accent), #4DC7FF);
}
.page-home .metric-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--c-text);
}
.page-home .metric-unit {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-text-light);
  margin-left: 3px;
}
.page-home .metric-label {
  display: block;
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 6px;
}

/* ===== Section base ===== */
.page-home .section {
  padding: 64px 0;
}
.page-home .section-heading {
  margin-bottom: 36px;
}
.page-home .section-label.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin: 0 0 8px;
}
.page-home .section-label.kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--grad-primary);
}
.page-home .section-heading h2 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--c-text);
  margin: 0 0 12px;
  transform: skewX(-2deg);
}
.page-home .section-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text-light);
  max-width: 38em;
  margin: 0;
}

/* ===== Benefits ===== */
.page-home .benefits-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}
.page-home .benefits-tabs {
  position: relative;
}
.page-home .benefit-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.page-home .benefit-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.page-home .benefit-tab {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-light);
  padding: 10px 18px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  transition: all var(--trans);
  background: var(--c-surface);
  display: inline-block;
  user-select: none;
  -webkit-user-select: none;
}
.page-home .benefit-tab:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.page-home #tab-filter:checked ~ .benefit-nav label[for="tab-filter"],
.page-home #tab-cards:checked ~ .benefit-nav label[for="tab-cards"],
.page-home #tab-league:checked ~ .benefit-nav label[for="tab-league"] {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(255, 59, 47, 0.3);
}
.page-home .benefit-panel {
  display: none;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-primary);
  border-radius: 12px;
  padding: 22px;
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
}
.page-home .benefit-panel h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--c-text);
}
.page-home .benefit-panel p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text-light);
  margin: 0 0 14px;
}
.page-home .benefit-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.page-home .benefit-panel li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  color: var(--c-text);
}
.page-home .benefit-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  border-radius: 2px;
  transform: skewX(-12deg);
}
.page-home #tab-filter:checked ~ .benefit-panel.panel-filter,
.page-home #tab-cards:checked ~ .benefit-panel.panel-cards,
.page-home #tab-league:checked ~ .benefit-panel.panel-league {
  display: block;
}
.page-home .benefits-media {
  margin: 0;
  position: relative;
}
.page-home .benefits-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}
.page-home .benefits-media figcaption {
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 8px;
  text-align: center;
}

/* ===== Schedule ===== */
.page-home .home-schedule {
  background: linear-gradient(160deg, var(--c-bg-dark) 0%, #17172A 50%, #1A1A2E 100%);
  color: var(--c-on-dark);
  position: relative;
  overflow: hidden;
}
.page-home .home-schedule::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 80%;
  background: rgba(0, 212, 255, 0.06);
  transform: rotate(22deg);
  pointer-events: none;
}
.page-home .home-schedule .section-heading h2 {
  color: var(--c-on-dark);
}
.page-home .home-schedule .section-lead {
  color: var(--c-on-dark-muted);
}
.page-home .schedule-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}
.page-home .schedule-board {
  background: rgba(18, 18, 26, 0.72);
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.page-home .schedule-board-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  border-bottom: 1px solid rgba(240, 240, 240, 0.1);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.page-home .board-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-data);
  box-shadow: 0 0 0 0 rgba(0, 227, 154, 0.4);
  animation: home-dot-pulse 1.8s ease-out infinite;
}
.page-home .schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.page-home .schedule-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  align-items: center;
  background: rgba(240, 240, 240, 0.04);
  border-radius: 10px;
  padding: 12px 14px;
  border-left: 2px solid var(--c-primary);
  transition: background var(--trans), transform var(--trans);
}
.page-home .schedule-item:nth-child(even) {
  border-left-color: var(--c-accent);
}
.page-home .schedule-round {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-on-dark-muted);
}
.page-home .schedule-match {
  font-weight: 600;
  font-size: 14px;
  color: var(--c-on-dark);
}
.page-home .schedule-status {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.page-home .schedule-status.is-synced {
  background: rgba(0, 227, 154, 0.14);
  color: var(--c-data);
}
.page-home .schedule-status.is-pending {
  background: rgba(0, 212, 255, 0.12);
  color: var(--c-accent);
}
.page-home .schedule-more {
  display: inline-block;
  margin-top: 14px;
  color: var(--c-accent);
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--trans);
}
.page-home .schedule-more:hover {
  color: var(--c-data);
}
.page-home .schedule-media {
  margin: 0;
}
.page-home .schedule-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}
.page-home .schedule-media figcaption {
  font-size: 13px;
  color: var(--c-on-dark-muted);
  text-align: center;
  margin-top: 8px;
}

/* ===== News ===== */
.page-home .news-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}
.page-home .news-feature {
  background: var(--c-bg-dark);
  color: var(--c-on-dark);
  border-radius: 16px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.page-home .news-feature::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, rgba(255, 59, 47, 0.42), rgba(255, 106, 61, 0.04));
  border-radius: 50%;
}
.page-home .news-feature .tag {
  background: var(--grad-primary);
  color: #fff;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  transform: skewX(-6deg);
}
.page-home .news-feature h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 14px 0 10px;
  line-height: 1.3;
  color: var(--c-on-dark);
}
.page-home .news-feature p {
  color: var(--c-on-dark-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.page-home .news-feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.page-home .news-link {
  color: var(--c-accent);
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color var(--trans);
}
.page-home .news-link:hover {
  color: var(--c-data);
}
.page-home .news-collapses {
  display: grid;
  gap: 12px;
}
.page-home .news-collapse {
  border: 1px solid var(--c-border);
  border-radius: 12px;
  background: var(--c-surface);
  overflow: hidden;
  transition: box-shadow var(--trans);
}
.page-home .news-collapse[open] {
  box-shadow: var(--shadow-sm);
}
.page-home .news-collapse summary {
  cursor: pointer;
  padding: 14px 40px 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  background: var(--c-surface);
  list-style: none;
  position: relative;
  transition: background var(--trans);
}
.page-home .news-collapse summary::-webkit-details-marker {
  display: none;
}
.page-home .news-collapse summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--c-primary);
  transition: transform var(--trans);
}
.page-home .news-collapse[open] summary::after {
  content: "−";
}
.page-home .news-collapse p {
  margin: 0;
  padding: 0 16px 14px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-text-light);
}
.page-home .news-media {
  margin: 0;
}
.page-home .news-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.page-home .news-media figcaption {
  font-size: 13px;
  color: var(--c-text-light);
  text-align: center;
  margin-top: 8px;
}

/* ===== Export ===== */
.page-home .home-export {
  background: var(--c-bg-dark);
  color: var(--c-on-dark);
  position: relative;
  overflow: hidden;
}
.page-home .home-export::before {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -30%;
  width: 55%;
  height: 55%;
  background: linear-gradient(135deg, rgba(255, 59, 47, 0.14), transparent 75%);
  transform: rotate(-14deg);
  pointer-events: none;
}
.page-home .home-export .section-label.kicker {
  color: var(--c-accent);
}
.page-home .home-export .section-label.kicker::before {
  background: var(--c-accent);
}
.page-home .export-container {
  display: grid;
  gap: 36px;
  align-items: center;
  position: relative;
}
.page-home .home-export h2 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--c-on-dark);
  margin: 0 0 12px;
  transform: skewX(-2deg);
}
.page-home .export-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-on-dark-muted);
  max-width: 36em;
  margin: 0 0 26px;
}
.page-home .export-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 18px;
}
.page-home .export-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.page-home .export-step-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-accent);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-home .export-step-copy strong {
  display: block;
  font-size: 15px;
  color: var(--c-on-dark);
  margin-bottom: 2px;
}
.page-home .export-step-copy p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-on-dark-muted);
  margin: 0;
}
.page-home .export-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-on-dark-muted);
  border: 1px solid rgba(240, 240, 240, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 18px;
}
.page-home .export-note-icon {
  color: var(--c-data);
  font-weight: 700;
}
.page-home .export-contact-btn {
  display: inline-block;
}
.page-home .export-visual {
  position: relative;
}
.page-home .export-table {
  border: 1px solid rgba(240, 240, 240, 0.14);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(18, 18, 26, 0.7);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.page-home .export-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 8px;
  padding: 13px 16px;
  font-size: 13px;
  border-bottom: 1px solid rgba(240, 240, 240, 0.06);
  align-items: center;
}
.page-home .export-row:last-child {
  border-bottom: 0;
}
.page-home .export-row-head {
  background: rgba(255, 59, 47, 0.12);
  color: var(--c-on-dark-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.page-home .export-ok {
  color: var(--c-data);
  font-family: var(--font-mono);
  font-size: 12px;
}
.page-home .export-wait {
  color: var(--c-accent);
  font-family: var(--font-mono);
  font-size: 12px;
}

/* ===== Animations ===== */
@keyframes home-line-flow {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 0.85;
  }
  70% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(280%);
    opacity: 0;
  }
}
@keyframes home-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 227, 154, 0.45);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(0, 227, 154, 0);
  }
}

/* ===== Tablet ===== */
@media (min-width: 768px) {
  .page-home .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .metric-card {
    padding: 24px 20px;
  }
  .page-home .metric-number {
    font-size: 34px;
  }
  .page-home .section {
    padding: 80px 0;
  }
  .page-home .section-heading h2 {
    font-size: 34px;
  }
  .page-home .home-export h2 {
    font-size: 34px;
  }
  .page-home .hero-copy h1 {
    font-size: clamp(56px, 7vw, 84px);
  }
  .page-home .benefits-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
  }
  .page-home .schedule-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }
  .page-home .news-layout {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .news-media {
    grid-column: 1 / -1;
  }
  .page-home .news-media img {
    max-height: 260px;
    object-fit: cover;
    width: 100%;
  }
  .page-home .export-container {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 88px 0 130px;
  }
  .page-home .hero-inner {
    grid-template-columns: 1fr 0.95fr;
    gap: 56px;
  }
  .page-home .hero-copy h1 {
    font-size: clamp(64px, 6.4vw, 92px);
  }
  .page-home .hero-lead {
    font-size: 17px;
  }
  .page-home .home-metrics {
    margin-top: -42px;
    padding-bottom: 72px;
  }
  .page-home .metric-card {
    padding: 28px 24px;
  }
  .page-home .metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(18, 18, 26, 0.14);
  }
  .page-home .section {
    padding: 100px 0;
  }
  .page-home .section-heading {
    margin-bottom: 48px;
  }
  .page-home .section-heading h2 {
    font-size: 42px;
  }
  .page-home .benefits-layout {
    gap: 56px;
  }
  .page-home .benefit-tab {
    font-size: 15px;
    padding: 11px 20px;
  }
  .page-home .schedule-layout {
    gap: 64px;
  }
  .page-home .schedule-board {
    padding: 26px;
  }
  .page-home .schedule-item {
    padding: 14px 16px;
  }
  .page-home .news-layout {
    grid-template-columns: 5fr 4fr 3fr;
    gap: 28px;
  }
  .page-home .news-media {
    grid-column: auto;
    margin-top: 16px;
  }
  .page-home .news-media img {
    max-height: none;
    object-fit: cover;
  }
  .page-home .news-feature {
    padding: 32px;
  }
  .page-home .news-feature h3 {
    font-size: 24px;
  }
  .page-home .export-container {
    gap: 72px;
  }
  .page-home .home-export h2 {
    font-size: 42px;
  }
  .page-home .export-table {
    border-radius: 18px;
  }
  .page-home .export-row {
    padding: 16px 20px;
    font-size: 14px;
  }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .page-home .data-stream-line,
  .page-home .data-pulse-dot,
  .page-home .board-live-dot {
    animation: none;
    opacity: 1;
  }
  .page-home .metric-card,
  .page-home .benefit-tab,
  .page-home .schedule-item,
  .page-home .news-collapse summary,
  .page-home .hero-checkpoints a::after {
    transition: none;
  }
  .page-home .hero-copy h1,
  .page-home .hero-copy h1 span,
  .page-home .hero-visual-zone {
    transform: none;
  }
}
