/* ========== 页面：home ========== */
.page-home {
  width: 100%;
  background: var(--navy);
  color: var(--gray);
  font-family: var(--font-body);
  overflow-x: clip;
  --page-gutter: clamp(16px, 3.6vw, 48px);
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home a {
  color: inherit;
}

.page-home .section {
  padding: 64px var(--page-gutter) 72px;
  max-width: var(--container);
  margin: 0 auto;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.page-home .section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.page-home .section-kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 6px;
}

.page-home .section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 0.95;
  color: var(--white);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.page-home .section-desc {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
  max-width: 42ch;
}

/* ---------- 首屏分屏 ---------- */
.page-home .hero-split {
  display: grid;
  grid-template-columns: 1fr;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-home .hero-copy {
  padding: clamp(44px, 7vw, 84px) var(--page-gutter) 40px;
  z-index: 2;
}

.page-home .hero-kicker {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  font-size: 16px;
  margin: 0 0 14px;
}

.page-home .hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: clamp(42px, 7.5vw, 78px);
  line-height: 0.92;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 12ch;
}

.page-home .hero-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 48ch;
  margin: 0 0 24px;
}

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

.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  max-width: 480px;
}

.page-home .hero-stat {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.page-home .hero-stat dt {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

.page-home .hero-stat dd {
  margin: 0;
  font-family: var(--font-head);
  color: var(--green);
  font-size: 30px;
  line-height: 1;
}

.page-home .hero-stat dd sup {
  color: var(--red);
  font-size: 0.5em;
  margin-left: 2px;
}

.page-home .hero-visual {
  position: relative;
  min-height: 420px;
  max-height: 560px;
  overflow: hidden;
  background: var(--navy-2);
  border-top: 2px solid rgba(255, 255, 255, 0.08);
}

.page-home .hero-media,
.page-home .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-home .hero-media img {
  object-fit: cover;
  object-position: center;
}

.page-home .hero-radar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.page-home .radar-sweep {
  stroke-dasharray: 6 10;
  animation: homeSweep 6s linear infinite;
}

.page-home .hero-float {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  background: rgba(10, 30, 63, 0.88);
  border: 1px solid rgba(57, 255, 20, 0.6);
  box-shadow: var(--shadow);
}

.page-home .hero-float-a {
  top: 18px;
  left: 18px;
}

.page-home .hero-float-b {
  right: 18px;
  bottom: 18px;
  border-color: rgba(255, 69, 0, 0.65);
}

.page-home .live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.6);
  animation: homePulse 1.6s ease-out infinite;
  display: inline-block;
  flex: 0 0 auto;
}

/* ---------- 实时比分仪表盘 ---------- */
.page-home .live-dashboard {
  padding-top: clamp(40px, 6vw, 68px);
}

.page-home .dashboard-banner {
  position: relative;
  margin: 14px 0 22px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-home .dashboard-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-home .banner-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .banner-caption span {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--green);
  background: rgba(10, 30, 63, 0.88);
  border: 1px solid rgba(57, 255, 20, 0.45);
  padding: 6px 10px;
}

.page-home .dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .match-card {
  position: relative;
  min-width: 0;
  background: var(--navy-2);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .match-card--focus {
  border-color: rgba(57, 255, 20, 0.5);
  background: linear-gradient(145deg, rgba(57, 255, 20, 0.08), var(--navy-2) 52%);
}

.page-home .match-card--wide {
  border-color: rgba(255, 255, 255, 0.16);
}

.page-home .match-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .match-league {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.page-home .status-pill.is-live {
  background: rgba(57, 255, 20, 0.14);
  border: 1px solid var(--green);
  color: var(--green);
}

.page-home .match-teams {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.page-home .team-home {
  text-align: right;
}

.page-home .team-away {
  text-align: left;
}

.page-home .team-name {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.page-home .team-label {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.page-home .match-core {
  text-align: center;
  min-width: 76px;
}

.page-home .match-phase {
  display: block;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.page-home .match-live .match-phase {
  color: var(--green);
  animation: homeGlow 2s ease-in-out infinite;
}

.page-home .vs-mark {
  display: block;
  margin-top: 6px;
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.page-home .ninety-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 6px;
}

.page-home .ninety-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(57, 255, 20, 0.25);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: homeSpin 1.8s linear infinite;
}

.page-home .ninety-ring i {
  font-style: normal;
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--green);
}

.page-home .match-card-foot {
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* ---------- 今日赛程时间轴 ---------- */
.page-home .timeline-section {
  padding-bottom: clamp(48px, 7vw, 88px);
}

.page-home .league-filter {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 6px;
  margin-bottom: 22px;
}

.page-home .tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  color: var(--green);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.5);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
}

.page-home .tag.is-active {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}

.page-home .timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .league-track {
  min-width: 0;
  border: 2px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(26, 45, 74, 0.7), rgba(10, 30, 63, 0.4));
  border-radius: var(--radius);
  padding: 18px 16px 10px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.page-home .track-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 4px;
}

.page-home .track-title span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.page-home .now-marker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 4px;
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--red);
}

.page-home .now-marker .live-dot {
  background: var(--red);
  animation: homePulse 1.8s ease-out infinite;
}

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

.page-home .time-slot {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.page-home .time-slot:last-child {
  border-bottom: 0;
}

.page-home .slot-clock {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--green);
  line-height: 1;
  padding-top: 3px;
}

.page-home .slot-match {
  min-width: 0;
  border-left: 2px solid rgba(57, 255, 20, 0.35);
  padding-left: 12px;
}

.page-home .slot-teams {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

.page-home .slot-teams b {
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
}

.page-home .slot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 5px;
}

.page-home .slot-league {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

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

.page-home .slot-status.is-live {
  color: var(--green);
}

/* ---------- V4赛事专题入口 ---------- */
.page-home .v4-block {
  padding-top: clamp(36px, 6vw, 64px);
}

.page-home .v4-card {
  display: grid;
  grid-template-columns: 1fr;
  border: 2px solid rgba(57, 255, 20, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-green);
  background: linear-gradient(150deg, rgba(57, 255, 20, 0.12), var(--navy-2) 58%);
  overflow: hidden;
}

.page-home .v4-copy {
  padding: 26px;
}

.page-home .v4-lead {
  color: var(--muted);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 38ch;
}

.page-home .v4-points {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.page-home .v4-point-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .v4-point-list li {
  position: relative;
  padding: 9px 12px 9px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 30, 63, 0.45);
  color: var(--gray);
  font-size: 14px;
}

.page-home .v4-point-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  background: var(--red);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.page-home .v4-detail {
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.page-home .v4-detail summary {
  cursor: pointer;
  padding: 10px 14px;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
}

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

.page-home .v4-showcase {
  position: relative;
  min-height: 280px;
  background:
    radial-gradient(circle at 30% 50%, rgba(57, 255, 20, 0.18), transparent 40%),
    rgba(10, 30, 63, 0.5);
}

.page-home .v4-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, var(--green), transparent 82%);
  opacity: 0.12;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  transition: all 0.3s ease;
}

.page-home .v4-card:hover .v4-showcase::before {
  opacity: 0.2;
}

.page-home .showcase-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 10px;
  padding: 28px;
}

.page-home .showcase-grid span {
  font-family: var(--font-head);
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-home .showcase-grid b {
  font-family: var(--font-head);
  color: var(--green);
  font-size: 40px;
  font-weight: 400;
  text-align: right;
  line-height: 1;
}

.page-home .showcase-ring {
  position: absolute;
  z-index: 1;
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  margin: -110px 0 0 -110px;
  border: 2px solid rgba(57, 255, 20, 0.3);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: homeSpin 14s linear infinite;
}

.page-home .showcase-ring::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

/* ---------- 近期战绩维度索引 ---------- */
.page-home .form-section {
  max-width: none;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

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

.page-home .form-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.32;
}

.page-home .form-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 30, 63, 0.97), rgba(10, 30, 63, 0.72));
}

.page-home .form-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 104px) var(--page-gutter);
}

.page-home .form-lead {
  color: var(--muted);
  max-width: 50ch;
  line-height: 1.75;
  margin: 16px 0 28px;
}

.page-home .dimension-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .dimension-card {
  position: relative;
  display: block;
  padding: 20px;
  background: rgba(10, 30, 63, 0.78);
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--gray);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  min-width: 0;
}

.page-home .dimension-card:hover,
.page-home .dimension-card:focus-visible {
  border-color: var(--red);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(255, 69, 0, 0.2);
}

.page-home .dimension-num {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--red);
  letter-spacing: 0.04em;
}

.page-home .dimension-card h3 {
  margin: 10px 0 8px;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
}

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

/* ---------- 伤停转会动态 ---------- */
.page-home .transfer-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-home .transfer-text {
  max-width: 44ch;
}

.page-home .transfer-text p {
  color: var(--muted);
  line-height: 1.75;
  margin: 16px 0 0;
}

.page-home .transfer-scroll-wrap {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  border-radius: var(--radius);
  max-height: 320px;
}

.page-home .transfer-track {
  list-style: none;
  margin: 0;
  padding: 0;
  animation: homeScrollUp 34s linear infinite;
}

.page-home .transfer-scroll-wrap:hover .transfer-track {
  animation-play-state: paused;
}

.page-home .transfer-track li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
}

.page-home .transfer-track li + li {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.page-home .transfer-track li span {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--green);
}

/* ---------- 个人中心订阅引导 ---------- */
.page-home .subscribe-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding-top: clamp(40px, 6vw, 72px);
}

.page-home .subscribe-visual {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.page-home .subscribe-visual img {
  display: block;
  width: 100%;
  max-height: 740px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid var(--green);
  box-shadow: var(--shadow-green);
}

.page-home .device-ring {
  position: absolute;
  top: 12%;
  right: -34px;
  width: 130px;
  height: 130px;
  border: 2px dashed var(--green);
  border-radius: 50%;
  opacity: 0.5;
  animation: homeSpin 18s linear infinite;
  pointer-events: none;
}

.page-home .device-tag {
  position: absolute;
  left: 12px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  border: 2px solid var(--green);
  color: var(--white);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

.page-home .subscribe-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin: 16px 0 0;
  max-width: 48ch;
}

.page-home .subscribe-steps {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .subscribe-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--gray);
  font-size: 15px;
}

.page-home .subscribe-steps li span {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--red);
  width: 42px;
}

.page-home .subscribe-demo {
  margin: 0 0 18px;
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: var(--radius);
}

.page-home .subscribe-demo summary {
  cursor: pointer;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
}

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

/* ---------- 底部更多页面链接 ---------- */
.page-home .home-links {
  max-width: none;
  margin: 0;
  padding: 0;
  background: var(--sky);
  color: var(--navy);
}

.page-home .link-panel {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px var(--page-gutter) 56px;
  display: grid;
  gap: 22px;
}

.page-home .link-intro .section-kicker {
  color: var(--red);
}

.page-home .link-intro .section-title {
  color: var(--navy);
}

.page-home .link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .link-list a {
  display: inline-block;
  padding: 9px 14px;
  border: 2px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-home .link-list a:hover,
.page-home .link-list a:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ---------- 动画 ---------- */
@keyframes homeSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes homeSweep {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -48;
  }
}

@keyframes homePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 69, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
  }
}

@keyframes homeGlow {
  0%,
  100% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
  }
}

@keyframes homeScrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.page-home [data-reveal].is-revealed {
  animation: homeRevealUp 0.6s var(--ease) both;
}

@keyframes homeRevealUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 媒体查询 ---------- */
@media (min-width: 720px) {
  .page-home .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .match-card--focus,
  .page-home .match-card--wide {
    grid-column: span 2;
  }

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

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

  .page-home .dashboard-banner img {
    height: 240px;
  }
}

@media (min-width: 820px) {
  .page-home .subscribe-section {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 6vw, 56px);
  }

  .page-home .transfer-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .page-home .link-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 860px) {
  .page-home .v4-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

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

  .page-home .hero-split {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    min-height: clamp(560px, 88vh, 780px);
  }

  .page-home .hero-copy {
    align-self: center;
    padding: clamp(48px, 7vw, 88px) clamp(28px, 4.6vw, 72px);
  }

  .page-home .hero-visual {
    height: 100%;
    min-height: 560px;
    max-height: none;
    border-top: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.08);
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home .radar-sweep,
  .page-home .ninety-ring::before,
  .page-home .showcase-ring,
  .page-home .device-ring,
  .page-home .transfer-track {
    animation: none;
  }

  .page-home .match-live .match-phase,
  .page-home .live-dot {
    animation: none;
  }
}
