.page-home {
  --home-violet-glow: rgba(122, 46, 255, .32);
  --home-neon-glow: rgba(0, 255, 136, .18);
  --home-grid-lines: rgba(154, 168, 198, .1);
  --home-radius-lg: 22px;
  --home-radius-md: 16px;
  --home-radius-sm: 10px;
  position: relative;
  background: var(--color-deep-space);
  color: var(--color-star);
  overflow-x: hidden;
  font-family: var(--font-mono);
  line-height: 1.6;
}

.page-home .container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.page-home a {
  color: var(--color-star);
  text-decoration: none;
  transition: color .2s ease;
}

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

.page-home .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--color-mist);
  margin: 0 0 1.5rem;
  letter-spacing: .02em;
}

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

.page-home .crumb-sep {
  color: var(--color-line);
}

.page-home .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-neon);
  margin: 0 0 .6rem;
}

.page-home .section-kicker::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: var(--color-neon);
  border-radius: 2px;
}

.page-home .lead {
  font-size: .95rem;
  color: var(--color-mist);
  max-width: 46rem;
  margin: .75rem 0 0;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.page-home .btn-accent {
  background: var(--color-violet);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(122,46,255,.4), 0 8px 30px rgba(122,46,255,.25);
}

.page-home .btn-accent:hover {
  background: #8b45ff;
  box-shadow: 0 0 0 1px rgba(122,46,255,.55), 0 10px 36px rgba(122,46,255,.35);
  transform: translateY(-2px);
  color: #fff;
}

.page-home .btn-outline {
  background: transparent;
  border-color: var(--color-line);
  color: var(--color-star);
}

.page-home .btn-outline:hover {
  border-color: var(--color-neon);
  color: var(--color-neon);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

/* 首屏 */
.page-home .hero-zone {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(122,46,255,.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(0,255,136,.06), transparent 55%),
    var(--color-deep-space);
}

.page-home .hero-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--home-grid-lines) 1px, transparent 1px),
    linear-gradient(90deg, var(--home-grid-lines) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}

.page-home .hero-zone::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 68px;
  background: var(--color-data);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
  z-index: 1;
}

.page-home .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-home .hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-neon);
  margin: 0 0 .9rem;
  font-weight: 700;
}

.page-home .hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 1.4rem;
  color: var(--color-star);
  text-wrap: balance;
}

.page-home .hero-mission {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--color-mist);
  max-width: 34rem;
  margin: 0 0 2rem;
}

.page-home .hero-mission strong {
  color: var(--color-neon);
  font-weight: 700;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 1.6rem;
}

.page-home .hero-facts {
  font-size: .8rem;
  color: var(--color-mist);
  background: rgba(27, 42, 74, .65);
  display: inline-block;
  padding: .45rem .95rem;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  margin: 0;
}

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

.page-home .hero-frame {
  position: relative;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  background: var(--color-data);
  box-shadow: 0 0 0 1px rgba(122,46,255,.2), 0 18px 50px rgba(0,0,0,.35);
  transform: rotate(.6deg);
  transition: transform .35s ease, box-shadow .35s ease;
}

.page-home .hero-frame:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 0 0 1px rgba(122,46,255,.4), 0 24px 60px rgba(0,0,0,.45);
}

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

.page-home .float-card {
  position: absolute;
  background: rgba(8, 18, 42, .78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 136, .3);
  border-radius: var(--home-radius-md);
  padding: .65rem 1rem;
  box-shadow: var(--shadow-green);
  display: flex;
  flex-direction: column;
  gap: .1rem;
  font-size: .72rem;
  color: var(--color-mist);
  pointer-events: none;
  line-height: 1.3;
}

.page-home .float-card-live {
  top: 7%;
  right: -4%;
  border-color: rgba(0, 255, 136, .35);
  animation: home-float-a 5.2s ease-in-out infinite alternate;
}

.page-home .float-card-latency {
  bottom: 10%;
  left: -3%;
  border-color: rgba(122, 46, 255, .4);
  box-shadow: var(--shadow-purple);
  animation: home-float-b 4.6s ease-in-out infinite alternate;
}

.page-home .float-label {
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-mist);
}

.page-home .float-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-neon);
  line-height: 1.1;
}

.page-home .float-card-latency .float-value {
  color: var(--color-violet);
}

.page-home .float-unit {
  font-size: .68rem;
  color: var(--color-mist);
}

.page-home .float-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 0 0 rgba(0,255,136,.6);
  animation: home-pulse 1.8s ease-out infinite;
  margin-bottom: .15rem;
}

.page-home .hero-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0, 255, 136, .025) 3px,
    rgba(0, 255, 136, .025) 4px
  );
  pointer-events: none;
  z-index: 1;
}

@keyframes home-float-a {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes home-float-b {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(10px) rotate(-1deg); }
}

@keyframes home-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,255,136,.55); }
  70% { box-shadow: 0 0 0 10px rgba(0,255,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,136,0); }
}

@keyframes home-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.page-home [data-reveal].is-visible {
  animation: home-rise .45s ease-out both;
}

/* 分类索引地图 */
.page-home .index-map {
  position: relative;
  background: var(--color-data);
  padding: var(--space-section) 0;
}

.page-home .index-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,.4), transparent);
}

.page-home .index-map .section-head {
  margin-bottom: 2.25rem;
}

.page-home .index-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-home .index-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.35rem 1.25rem 1.15rem;
  background: rgba(11, 27, 59, .72);
  border-radius: var(--home-radius-md);
  border: 1px solid var(--color-line);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background .25s ease;
  overflow: hidden;
}

.page-home .index-card::after {
  content: "";
  position: absolute;
  right: -40%;
  top: -120%;
  width: 70%;
  height: 200%;
  background: linear-gradient(100deg, transparent 20%, rgba(122,46,255,.09) 50%, transparent 80%);
  transform: rotate(15deg);
  transition: right .4s ease;
  pointer-events: none;
}

.page-home .index-card:hover {
  border-color: rgba(122, 46, 255, .55);
  background: rgba(11, 27, 59, .95);
  box-shadow: var(--shadow-purple);
  transform: translateY(-3px);
}

.page-home .index-card:hover::after {
  right: 20%;
}

.page-home .index-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .4rem;
}

.page-home .index-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--home-radius-sm);
  background: rgba(122, 46, 255, .12);
  color: var(--color-violet);
  border: 1px solid rgba(122, 46, 255, .2);
}

.page-home .index-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.page-home .index-card:hover .index-icon {
  background: var(--color-violet);
  color: #fff;
  box-shadow: 0 0 20px rgba(122,46,255,.4);
}

.page-home .index-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-line);
  letter-spacing: .02em;
}

.page-home .index-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-star);
  line-height: 1.3;
}

.page-home .index-desc {
  font-size: .78rem;
  line-height: 1.5;
  color: var(--color-mist);
}

.page-home .index-route {
  display: inline-block;
  font-size: .7rem;
  color: var(--color-link);
  border: 1px solid rgba(77, 159, 255, .2);
  background: rgba(77, 159, 255, .06);
  padding: .18rem .55rem;
  border-radius: 999px;
  width: fit-content;
  margin-top: .25rem;
}

/* 版本查询高亮 */
.page-home .version-highlight {
  position: relative;
  padding: var(--space-section) 0;
  background: var(--color-deep-space);
  overflow: hidden;
}

.page-home .version-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(120deg, rgba(122,46,255,.09) 0%, transparent 40%, rgba(0,255,136,.04) 100%);
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.page-home .version-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}

.page-home .version-media {
  position: relative;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  background: var(--color-data);
  box-shadow: 0 16px 46px rgba(0,0,0,.4);
  border: 1px solid rgba(0,255,136,.12);
}

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

.page-home .version-stamp {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  background: var(--color-violet);
  padding: .35rem .85rem;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(122,46,255,.5);
  letter-spacing: .02em;
}

.page-home .version-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.page-home .version-lead {
  font-size: .92rem;
  color: var(--color-mist);
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 0 1.6rem;
}

.page-home .version-list {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.page-home .version-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .7rem;
  background: rgba(27, 42, 74, .65);
  border: 1px solid var(--color-line);
  border-radius: var(--home-radius-sm);
  padding: .7rem .9rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.page-home .version-item:hover {
  border-color: rgba(0, 255, 136, .3);
  box-shadow: var(--shadow-green);
}

.page-home .game-name {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-star);
  white-space: nowrap;
}

.page-home .game-change {
  font-size: .8rem;
  color: var(--color-mist);
  line-height: 1.4;
}

.page-home .game-status {
  font-size: .68rem;
  color: var(--color-neon);
  background: rgba(0, 255, 136, .08);
  border: 1px solid rgba(0, 255, 136, .2);
  padding: .18rem .5rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* 数据统计概览 */
.page-home .stats-overview {
  position: relative;
  padding: var(--space-section) 0;
  background: var(--color-abyss);
  overflow: hidden;
}

.page-home .stats-bg-wrap {
  position: absolute;
  inset: 0;
}

.page-home .stats-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .22;
  display: block;
}

.page-home .stats-bg-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-abyss) 0%, rgba(8,18,42,.55) 50%, var(--color-abyss) 100%);
}

.page-home .stats-overview .container {
  position: relative;
  z-index: 2;
}

.page-home .stats-overview .section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-home .stats-overview .section-kicker {
  justify-content: center;
}

.page-home .stats-overview .section-kicker::before {
  display: none;
}

.page-home .stats-overview .section-kicker::after {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: var(--color-neon);
  border-radius: 2px;
}

.page-home .stats-overview h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  margin: 0;
}

.page-home .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.page-home .stat-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding: 1.5rem 1rem;
  background: rgba(11, 27, 59, .68);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--home-radius-md);
  text-align: center;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.page-home .stat-item:hover {
  border-color: rgba(0, 255, 136, .28);
  box-shadow: var(--shadow-green);
}

.page-home .stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-neon);
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(0,255,136,.3);
}

.page-home .stat-suffix {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-neon);
  margin-left: .15rem;
}

.page-home .stat-label {
  font-size: .78rem;
  color: var(--color-mist);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.page-home .stats-note {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  font-size: .82rem;
  color: var(--color-mist);
  line-height: 1.7;
  padding: .9rem 1.1rem;
  background: rgba(27, 42, 74, .5);
  border-radius: var(--home-radius-md);
  border-left: 3px solid var(--color-neon);
}

/* 最新动态 */
.page-home .latest-news {
  padding: var(--space-section) 0;
  background: var(--color-data);
}

.page-home .latest-news .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-home .latest-news .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin: 0;
}

.page-home .news-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--color-link);
  font-weight: 700;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(77, 159, 255, .2);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.page-home .news-more svg {
  width: 1rem;
  height: 1rem;
}

.page-home .news-more:hover {
  background: rgba(77, 159, 255, .1);
  border-color: rgba(77, 159, 255, .4);
  color: var(--color-link);
}

.page-home .news-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.page-home .news-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "chip title"
    "chip summary"
    "chip time";
  column-gap: 1rem;
  row-gap: .2rem;
  align-items: start;
  padding: 1.1rem 1.15rem;
  background: rgba(11, 27, 59, .65);
  border: 1px solid var(--color-line);
  border-radius: var(--home-radius-md);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.page-home .news-item:hover {
  border-color: rgba(122, 46, 255, .45);
  box-shadow: var(--shadow-purple);
  transform: translateX(4px);
}

.page-home .news-chip {
  grid-area: chip;
  font-size: .68rem;
  font-weight: 700;
  color: var(--color-neon);
  background: rgba(0, 255, 136, .07);
  border: 1px solid rgba(0, 255, 136, .18);
  padding: .28rem .6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.page-home .news-title-text {
  grid-area: title;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-star);
  line-height: 1.35;
}

.page-home .news-item:hover .news-title-text {
  color: var(--color-link);
}

.page-home .news-summary {
  grid-area: summary;
  font-size: .8rem;
  color: var(--color-mist);
  line-height: 1.5;
}

.page-home .news-time {
  grid-area: time;
  font-size: .7rem;
  color: var(--color-violet);
  letter-spacing: .03em;
}

/* 苹果导出引导 */
.page-home .export-guide {
  position: relative;
  padding: var(--space-section) 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 60%, rgba(122,46,255,.13), transparent 60%),
    linear-gradient(180deg, var(--color-deep-space) 0%, var(--color-data) 100%);
  overflow: hidden;
}

.page-home .export-guide::before {
  content: "";
  position: absolute;
  right: -5%;
  top: 10%;
  width: 45%;
  height: 120%;
  background: linear-gradient(115deg, transparent, rgba(0,255,136,.05), transparent);
  transform: rotate(-8deg);
  pointer-events: none;
}

.page-home .export-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-home .export-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.page-home .export-lead {
  font-size: .92rem;
  color: var(--color-mist);
  line-height: 1.7;
  max-width: 34rem;
  margin: 0 0 1.8rem;
}

.page-home .export-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  counter-reset: export-counter;
}

.page-home .export-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .95rem 1rem;
  background: rgba(11, 27, 59, .58);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--home-radius-md);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.page-home .export-steps li:hover {
  border-color: rgba(122, 46, 255, .3);
  box-shadow: var(--shadow-purple);
}

.page-home .step-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-violet);
  background: rgba(122, 46, 255, .1);
  border: 1px solid rgba(122, 46, 255, .2);
  min-width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.page-home .step-body {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.page-home .step-body strong {
  font-family: var(--font-heading);
  font-size: .95rem;
  color: var(--color-star);
}

.page-home .step-body span {
  font-size: .8rem;
  color: var(--color-mist);
  line-height: 1.55;
}

.page-home .export-media {
  position: relative;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  background: var(--color-data);
  border: 1px solid rgba(122, 46, 255, .2);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.page-home .export-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0, 255, 136, .018) 3px,
    rgba(0, 255, 136, .018) 4px
  );
  pointer-events: none;
}

.page-home .export-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 8 / 5;
}

/* 响应式 */
@media (min-width: 720px) {
  .page-home .index-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-home .news-item {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "chip title time"
      "chip summary summary";
    align-items: center;
  }

  .page-home .hero-grid {
    gap: 3rem;
  }

  .page-home .export-steps {
    gap: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  }

  .page-home .hero-zone::after {
    height: 80px;
  }

  .page-home .version-grid {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 3.5rem;
  }

  .page-home .index-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
  }

  .page-home .stats-grid {
    gap: 1.4rem;
  }

  .page-home .export-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .float-card,
  .page-home .float-dot,
  .page-home [data-reveal].is-visible {
    animation: none;
    transition: none;
  }
}
