:root {
  --bg: #03070d;
  --bg-2: #07101a;
  --surface: rgba(12, 14, 28, 0.72);
  --surface-2: rgba(18, 20, 40, 0.88);
  --text: #f4f6ff;
  --muted: #8b93b3;
  --line: rgba(168, 85, 247, 0.18);
  --purple: #a855f7;
  --purple-2: #7c3aed;
  --cyan: #22d3ee;
  --gold: #e8c547;
  --gold-2: #b8860b;
  --nav-h: 76px;
  --preview-h: 0px;
  --max: 1320px;
  --radius: 10px;
  --font: "Outfit", "Noto Sans TC", system-ui, sans-serif;
  --display: "Orbitron", "Noto Sans TC", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 20%, rgba(82, 41, 155, .08), transparent 42%);
}
img { max-width: 100%; display: block; }
button, input, select { font-family: inherit; }
a { color: inherit; }
.page { display: none; }
.page.is-on { display: block; }

.preview-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--preview-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #1a1030;
  border-bottom: 1px solid rgba(168, 85, 247, 0.35);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #e9d5ff;
}
.preview-bar b { color: #f5d0fe; }
.preview-bar span { opacity: 0.7; }

.nav {
  position: sticky;
  top: var(--preview-h);
  z-index: 70;
  height: var(--nav-h);
  background: rgba(5, 6, 15, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: height .35s ease, background .35s ease, box-shadow .35s ease;
}
.nav.is-scrolled {
  background: rgba(5, 6, 15, .93);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .32);
}
.nav__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand svg { width: 34px; height: 34px; }
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name strong {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}
.brand__name small {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.nav__links {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 1.15rem;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.78rem;
  color: #c9cde3;
  font-weight: 500;
}
.nav__links a:hover,
.nav__links a.is-active { color: #fff; }
.nav__links a.is-active { color: #e9d5ff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, border-color .25s;
}
.btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.btn.is-rippling::before { animation: button-ripple .62s ease-out; }
.btn:hover { transform: translateY(-2px); }
.btn:hover i { transform: translateX(3px); }
.btn i { transition: transform .25s ease; }
.btn:active { transform: translateY(0) scale(.975); }
.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.btn--primary {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #fff;
  padding: 0.7rem 1.25rem;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.35);
}
.btn--primary:hover { box-shadow: 0 0 18px rgba(168,85,247,.45), 0 0 48px rgba(124,58,237,.3); }
.btn--ghost {
  background: transparent;
  color: #fff;
  padding: 0.68rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--gold {
  background: linear-gradient(90deg, #b8860b, #e8c547);
  color: #1a1200;
  padding: 0.65rem 1.1rem;
  font-weight: 800;
}
.btn--nav {
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
}
.menu-btn {
  margin-left: auto;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
@media (min-width: 980px) {
  .nav__links { display: flex; }
  .menu-btn { display: none; }
}

.drawer { display: none; }
.drawer.is-open { display: block; }
.drawer__panel {
  position: fixed;
  inset: calc(var(--preview-h) + var(--nav-h)) 0 auto 0;
  z-index: 65;
  background: #0b0c1a;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem 1.4rem;
  display: grid;
  gap: 0.7rem;
}
.drawer__panel a {
  text-decoration: none;
  color: #e5e7eb;
  padding: 0.45rem 0;
}

.shell { width: min(100% - 2rem, var(--max)); margin: 0 auto; }

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - var(--preview-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0 4rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 72% 42%, rgba(124, 58, 237, 0.32), transparent 62%),
    radial-gradient(ellipse 40% 40% at 18% 70%, rgba(34, 211, 238, 0.08), transparent 55%),
    linear-gradient(180deg, transparent 70%, var(--bg));
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 72%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}
@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr auto;
    align-items: center;
  }
}
.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1 span { display: block; }
.hero__lead {
  margin: 1rem 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
}
.hero__sub { margin: 0 0 1.6rem; color: var(--muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__art {
  justify-self: center;
  width: min(100%, 460px);
  filter: drop-shadow(0 0 48px rgba(168, 85, 247, 0.45));
}
.hero__art img {
  width: 100%;
  animation: hero-float 6s ease-in-out infinite;
  transform: translate3d(0, calc(var(--scroll-y, 0px) * .035), 0);
}
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 3.2rem;
  color: var(--muted);
  text-decoration: none;
  font-size: .62rem;
  letter-spacing: .2em;
}
.scroll-cue i {
  position: relative;
  display: block;
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}
.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: scan-line 1.8s ease-in-out infinite;
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.4rem;
  align-self: center;
}
@media (min-width: 960px) {
  .stats { grid-template-columns: 1fr; }
}
.stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: #fff;
}
.stats span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.sec {
  position: relative;
  padding: 4.2rem 0;
}
.sec-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.sec-num {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(168, 85, 247, 0.55);
  letter-spacing: 0.08em;
}
.sec h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.12em;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}
.sec p.lede { color: var(--muted); max-width: 38rem; line-height: 1.7; }

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.4rem;
}
.feat {
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.feat b { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.feat span { color: var(--muted); font-size: 0.8rem; }
.globe { justify-self: center; width: min(100%, 420px); }
.globe img { width: 100%; filter: drop-shadow(0 0 40px rgba(34,211,238,.25)); }
.globe__scene { animation: globe-breathe 7s ease-in-out infinite; }

.svc-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}
.svc {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 280px;
  border: 1px solid var(--line);
  background: #08091a;
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s;
}
.svc:hover {
  border-color: rgba(168,85,247,.48);
  box-shadow: 0 22px 55px rgba(0,0,0,.42), 0 0 30px rgba(124,58,237,.11);
}
.svc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}
.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,6,15,0.92) 85%);
}
.svc__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 1.15rem 1.15rem 1.25rem;
}
.svc h3 { margin: 0 0 0.3rem; font-size: 1.15rem; }
.svc p { margin: 0 0 0.85rem; color: #cbd5e1; font-size: 0.85rem; }
.svc .btn { padding: 0.45rem 0.9rem; font-size: 0.78rem; }

.steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  text-align: center;
  padding: 1.2rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.step i {
  width: 52px; height: 52px;
  margin: 0 auto 0.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(34,211,238,.4);
  color: var(--cyan);
  font-size: 1.15rem;
}
.step b { display: block; margin-bottom: 0.3rem; }
.step span { color: var(--muted); font-size: 0.82rem; line-height: 1.5; }

.games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 800px) {
  .games { grid-template-columns: repeat(3, 1fr); }
}
.game {
  display: grid;
  place-items: center;
  gap: 0.7rem;
  min-height: 140px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-decoration: none;
}
.game__mark {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--display);
}
.game b { font-size: 0.95rem; }
.game small { color: var(--muted); letter-spacing: 0.12em; font-size: 0.68rem; }

.why {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 800px) {
  .why { grid-template-columns: repeat(3, 1fr); }
}
.why article {
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}
.why i { color: var(--purple); margin-bottom: 0.45rem; }
.why b { display: block; margin-bottom: 0.25rem; }
.why span { color: var(--muted); font-size: 0.82rem; }

.cta {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 280px;
  display: grid;
  align-items: center;
  border: 1px solid var(--line);
}
.cta img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,6,15,0.88) 0%, rgba(5,6,15,0.35) 70%);
}
.cta__body { position: relative; z-index: 1; padding: 2.4rem; }
.cta h2 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.06em;
}
.cta p { color: #cbd5e1; margin: 0 0 1.2rem; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 2.6rem 0 2rem;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(124,58,237,0.28), transparent 60%),
    linear-gradient(180deg, rgba(5,6,15,0.2), var(--bg));
}
.page-hero .shell { position: relative; z-index: 1; }
.crumb { color: var(--muted); font-size: 0.78rem; margin: 0 0 0.8rem; }
.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.06em;
}
.page-hero .en {
  display: block;
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  margin-bottom: 0.4rem;
}

.price-hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .price-hero { grid-template-columns: 1fr 0.7fr 0.9fr; }
}
.price-q { justify-self: center; width: min(100%, 280px); filter: drop-shadow(0 0 36px rgba(168,85,247,.4)); }
.why-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 1.1rem 1.2rem;
}
.why-box h3 { margin: 0 0 0.9rem; font-size: 0.95rem; }
.why-box li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: #d1d5db;
}
.why-box i { color: var(--cyan); margin-top: 0.15rem; }

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.4rem 0 1.5rem;
}
.trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.75rem;
  color: #d6d8ee;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}
.tab {
  border: 1px solid var(--line);
  background: transparent;
  color: #c9cde3;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  font-size: 0.82rem;
}
.tab.is-active {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-color: transparent;
  color: #fff;
}

.pkg-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .pkg-grid { grid-template-columns: repeat(4, 1fr); }
}
.pkg {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(232, 197, 71, 0.28);
  background: linear-gradient(180deg, #16120a, #0c0b12);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s;
}
.pkg:hover { box-shadow: 0 20px 48px rgba(0,0,0,.38); }
.pkg--blue {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(180deg, #0c1524, #0a0d18);
}
.pkg__art {
  height: 168px;
  overflow: hidden;
  background: #000;
}
.pkg__art img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.pkg__body { padding: 0.95rem 0.95rem 1.05rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.pkg h3 { margin: 0; font-size: 1.15rem; }
.pkg .tag { color: var(--gold); font-size: 0.75rem; }
.pkg--blue .tag { color: var(--cyan); }
.rows { display: grid; gap: 0.35rem; margin: 0.35rem 0 0.6rem; }
.row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #d1d5db;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  padding-bottom: 0.28rem;
}
.row b { color: #fff; }
.pkg .btn { margin-top: auto; width: 100%; }

.info-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}
@media (min-width: 900px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
}
.info {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 1.1rem 1.15rem;
}
.info h3 { margin: 0 0 0.7rem; font-size: 0.95rem; }
.info p, .info li { color: #c5c9de; font-size: 0.82rem; line-height: 1.65; margin: 0 0 0.4rem; }
.info ol { margin: 0; padding-left: 1.1rem; }

.hitters-hero {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 3rem 0 2rem;
}
.hitters-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.hitters-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,6,15,0.25), rgba(5,6,15,0.92));
}
.hitters-hero .shell { position: relative; z-index: 1; }

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin: 1.2rem 0 1.3rem;
}
.search {
  position: relative;
  flex: 1 1 220px;
}
.search i {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
}
.search input {
  width: 100%;
  height: 42px;
  padding: 0 0.9rem 0 2.3rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: #fff;
  outline: none;
}
.select, .toggle {
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: #e5e7eb;
  padding: 0 0.8rem;
}
.toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}
.toggle input { accent-color: var(--purple); }

.hitter-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .hitter-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .hitter-grid { grid-template-columns: repeat(4, 1fr); }
}
.hitter {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s;
}
.hitter:hover { border-color: rgba(168,85,247,.48); box-shadow: 0 20px 48px rgba(0,0,0,.36); }
.hitter__cover {
  position: relative;
  height: 210px;
  background: #000;
}
.hitter__cover img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.online {
  position: absolute;
  top: 0.7rem; left: 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(16,185,129,0.2);
  color: #6ee7b7;
  border: 1px solid rgba(16,185,129,0.4);
}
.hitter__body { padding: 0.9rem 0.95rem 1rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.hitter h3 { margin: 0; font-size: 1rem; }
.meta { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.badge {
  font-size: 0.68rem;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: rgba(168,85,247,0.16);
  color: #e9d5ff;
}
.badge--gold { background: rgba(232,197,71,0.16); color: var(--gold); }
.nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  margin: 0.35rem 0 0.55rem;
  text-align: center;
}
.nums b { display: block; font-size: 0.9rem; }
.nums span { font-size: 0.65rem; color: var(--muted); }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.price-row strong { color: #e9d5ff; }
.hitter .btn { padding: 0.4rem 0.75rem; font-size: 0.75rem; }

.pager {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin: 1.6rem 0;
}
.pager button {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.pager button.is-active {
  background: var(--purple);
  border-color: transparent;
}

.join {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.3rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(124,58,237,0.18), rgba(5,6,15,0.4));
  margin-bottom: 2.5rem;
}
.join h3 { margin: 0 0 0.25rem; }
.join p { margin: 0; color: var(--muted); font-size: 0.85rem; }

.stub {
  min-height: 52vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}
.stub h1 { font-family: var(--display); letter-spacing: 0.08em; }
.stub p { color: var(--muted); }

.footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2rem;
  background: #070812;
}
.footer__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
}
.footer a { color: #c9cde3; text-decoration: none; }
.social { display: flex; gap: 0.8rem; }

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.9rem 1rem;
  margin-bottom: 0.6rem;
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin: 0.6rem 0 0; line-height: 1.65; }

/* Motion language shared by the preview pages. */
.scroll-progress {
  position: fixed;
  z-index: 120;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  box-shadow: 0 0 14px rgba(168,85,247,.7);
  pointer-events: none;
}
.pointer-glow {
  position: fixed;
  z-index: 2;
  left: -230px;
  top: -230px;
  width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,54,208,.09), transparent 66%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(7px);
  transition:
    opacity .75s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms),
    transform .75s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms),
    filter .75s ease var(--reveal-delay, 0ms);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
.reveal:not(.is-revealed) { transition-delay: 0ms; }

/* Remove the timeline offscreen; re-entry starts at the first frame. */
#page-home .is-art-idle img,
#page-home .is-art-idle .hero__halo,
#page-home .is-art-idle .hero__orbit,
#page-home .is-art-idle .globe__scene,
#page-home .is-art-idle .globe__electron {
  animation: none !important;
  transform: none !important;
}

/* A convenience deterrent, not a download/access-control boundary. */
#page-home img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
#page-home .hero__art,
#page-home .globe { -webkit-touch-callout: none; }
.svc.is-tilting,
.pkg.is-tilting,
.hitter.is-tilting,
.game.is-tilting {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-3px);
  transition-duration: .12s;
}
.svc:not(.is-tilting),
.pkg:not(.is-tilting),
.hitter:not(.is-tilting),
.game:not(.is-tilting) { --tilt-x: 0deg; --tilt-y: 0deg; }

@keyframes button-ripple {
  0% { opacity: .5; transform: translate(-50%, -50%) scale(0); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(35); }
}
@keyframes hero-float {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}
@keyframes globe-breathe {
  0%, 100% { transform: translateY(0) rotate(-1deg); filter: drop-shadow(0 0 34px rgba(34,211,238,.2)); }
  50% { transform: translateY(-10px) rotate(1deg); filter: drop-shadow(0 0 52px rgba(168,85,247,.28)); }
}
@keyframes scan-line {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .pointer-glow { display: none; }
}

@media (max-width: 680px) {
  .pointer-glow { display: none; }
  .scroll-cue { margin-top: 2rem; }
  .scroll-progress { top: var(--preview-h); }
}
/* === Quantum V2 — full homepage visual rebuild === */
body {
  background:
    linear-gradient(rgba(3,7,13,.96), rgba(3,7,13,.96)),
    url("img/qe-grid-texture-v2.webp?v=20260902") center top / 1200px auto repeat;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(94,234,255,.025) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(172,91,255,.025) 50%, transparent 50.1%);
  background-size: 92px 92px;
}
.nav {
  border-bottom-color: rgba(139,161,195,.1);
  background: linear-gradient(180deg, rgba(2,6,11,.96), rgba(2,6,11,.72));
}
.nav__inner { width: min(100% - 3.2rem, var(--max)); }
.brand svg { width: 39px; height: 39px; }
.brand__mark {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}
.brand__name strong { font-size: .83rem; letter-spacing: .24em; }
.brand__name small { margin-top: 4px; font-size: .5rem; letter-spacing: .28em; }
.nav__links { gap: clamp(.8rem, 1.7vw, 1.8rem); }
.nav__links a {
  position: relative;
  padding: .8rem 0;
  font-size: .76rem;
  letter-spacing: .06em;
  color: #d7ddea;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transition: left .25s ease, right .25s ease;
}
.nav__links a:not(.btn):hover::after,
.nav__links a:not(.btn).is-active::after { left: 0; right: 0; }
.btn { border-radius: 4px; letter-spacing: .04em; }
.btn--primary {
  background: linear-gradient(105deg, #6721d9, #8b2ef0 58%, #6534d8);
  border: 1px solid rgba(184,114,255,.38);
  box-shadow: 0 0 25px rgba(126,42,231,.28), inset 0 1px rgba(255,255,255,.12);
}
.btn--ghost {
  border-radius: 3px;
  border-color: rgba(150,170,200,.28);
  background: rgba(3,8,15,.42);
}
.btn--ghost:hover {
  border-color: rgba(173,94,255,.65);
  background: rgba(106,43,188,.12);
}
.hero {
  isolation: isolate;
  min-height: calc(100svh - var(--nav-h));
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid rgba(131,160,191,.16);
}
.hero::before {
  z-index: -3;
  background:
    radial-gradient(ellipse 52% 70% at 66% 42%, rgba(87,31,176,.3), transparent 66%),
    radial-gradient(ellipse 30% 42% at 76% 58%, rgba(28,101,235,.15), transparent 70%),
    radial-gradient(ellipse 38% 45% at 18% 58%, rgba(4,32,54,.42), transparent 72%),
    linear-gradient(180deg, #02060b 0%, #030912 70%, #04101a 100%);
}
.hero::after {
  z-index: -2;
  opacity: .75;
  background-image:
    linear-gradient(rgba(112,64,197,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69,123,196,.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent 2%, #000 28%, #000 92%, transparent);
}
.hero-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: .8;
  pointer-events: none;
}
.hero-scan {
  position: absolute;
  z-index: 0;
  left: 0; right: 0; bottom: 5.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(134,66,242,.2), rgba(88,212,255,.55), rgba(134,66,242,.2), transparent);
  box-shadow: 0 0 20px rgba(89,201,255,.25);
}
.hero-scan::after {
  content: "";
  position: absolute;
  left: 0; top: -90px;
  width: 23%;
  height: 180px;
  opacity: .35;
  background: linear-gradient(90deg, transparent, rgba(110,59,224,.16), transparent);
  animation: hero-sweep 8s linear infinite;
}
.hero__grid {
  min-height: min(780px, calc(100svh - 130px));
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) 160px;
  gap: clamp(24px, 2.5vw, 40px);
}
.hero__copy {
  position: relative;
  z-index: 4;
  align-self: center;
  width: 100%;
  min-width: 0;
  container-type: inline-size;
  padding-left: .45rem;
}
.eyebrow {
  color: #98a2b4;
  font-size: .72rem;
  letter-spacing: .38em;
}
.hero h1 {
  margin-left: -3px;
  font-size: clamp(3.15rem, 5.25vw, 5.65rem);
  line-height: .94;
  letter-spacing: .06em;
  text-shadow: 0 0 28px rgba(169,193,222,.08);
}
.hero h1 span:first-child {
  color: #e7edf3;
  background: linear-gradient(180deg, #fff, #afb9c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 span:last-child {
  margin-top: .18em;
  letter-spacing: .22em;
  background: linear-gradient(90deg, #ae3cff 5%, #713ee9 44%, #1b8ff5 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 13px rgba(118,47,236,.28));
}
.hero__lead { margin-top: 1.45rem; letter-spacing: .32em; }
.hero__sub { margin-top: .65rem; letter-spacing: .08em; }
.hero__actions { margin-top: 1.8rem; gap: 1.05rem; }
.hero__actions .btn { min-width: 152px; min-height: 48px; }
.hero__art {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  max-width: 100%;
  aspect-ratio: 1;
  margin: 0 auto;
  justify-self: center;
  filter: drop-shadow(0 0 64px rgba(122,48,237,.28));
}
.hero__art img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 620px);
  object-fit: contain;
  object-position: center;
  animation: hero-energy 6s ease-in-out infinite;
}
.hero__halo {
  position: absolute;
  z-index: 0;
  inset: 12%;
  border-radius: 50%;
  opacity: .7;
  background: conic-gradient(from 20deg, transparent, rgba(63,174,255,.28), transparent 26%, rgba(174,57,255,.28), transparent 58%, rgba(76,112,255,.2), transparent);
  filter: blur(24px);
  animation: halo-spin 14s linear infinite;
}
.hero__orbit {
  position: absolute;
  z-index: 3;
  inset: 15%;
  border: 1px solid rgba(120,105,255,.22);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}
.hero__orbit::before {
  content: "";
  position: absolute;
  width: 6px;
  aspect-ratio: 1;
  left: 12%; top: 10%;
  border-radius: 50%;
  background: #79e6ff;
  box-shadow: 0 0 14px #79e6ff;
}
.hero__orbit--one { animation: orbit-spin 12s linear infinite; }
.hero__orbit--two {
  inset: 23% 9%;
  border-color: rgba(197,74,255,.18);
  animation: orbit-spin-reverse 17s linear infinite;
}
.stats {
  position: relative;
  z-index: 5;
  grid-template-columns: 1fr;
  gap: 0;
  align-self: center;
  border-left: 1px solid rgba(131,160,191,.15);
}
.stats div {
  min-width: 140px;
  padding: 1.2rem 0 1.2rem 1.6rem;
  border-bottom: 1px solid rgba(131,160,191,.1);
}
.stats strong { font-size: clamp(1.1rem,1.55vw,1.55rem); letter-spacing: .03em; }
.stats small { display: block; margin-top: .45rem; color: #98a6bb; font-size: .65rem; line-height: 1.6; }
.stats .stats__service { font-size: .95rem; line-height: 1.6; }
.stats__sync { grid-column: 1 / -1; margin: .8rem 0 0; padding-left: 1.6rem; color: #98a6bb; font-size: .65rem; line-height: 1.6; }
.stats [data-stat] { display: inline-block; }
.stats__item--unavailable span i { background: #778296; animation: none; box-shadow: none; }
.stats span { display: flex; align-items: center; gap: .45rem; margin-top: .45rem; }
.stats span i {
  width: 5px; height: 5px; border-radius: 50%;
  background: #a33eff;
  box-shadow: 0 0 10px #a33eff;
  animation: status-pulse 1.8s ease-in-out infinite;
}
.scroll-cue { position: absolute; left: .45rem; bottom: -4.6rem; }
.sec {
  padding: 5.2rem 0;
  border-top: 1px solid rgba(126,153,181,.14);
  background: linear-gradient(90deg, rgba(4,12,20,.78), rgba(3,8,14,.42) 42%, rgba(6,15,24,.72));
}
.sec:nth-of-type(even) { background: linear-gradient(90deg, rgba(2,8,14,.9), rgba(5,13,21,.55), rgba(3,9,15,.88)); }
.sec::after {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  width: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,206,255,.62), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.sec:hover::after { opacity: 1; animation: section-scan 4s linear infinite; }
.sec-head { gap: 1.5rem; margin-bottom: 2.1rem; }
.sec-num {
  min-width: 72px;
  color: rgba(94,108,128,.15);
  -webkit-text-stroke: 1px rgba(108,132,162,.18);
  font-size: clamp(2.6rem,4vw,4rem);
}
.sec h2 { color: #dce7f2; font-size: clamp(1.35rem,2.4vw,2rem); }
.sec p.lede { color: #99a6b8; }
.about-grid { grid-template-columns: 1.04fr .96fr; min-height: 390px; }
.about-grid > div:first-child { padding-left: 5.8rem; }
.feat-row {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 2.2rem 0 0 -5.8rem;
}
.feat {
  min-height: 106px;
  padding: 1rem 1.25rem;
  border: 0;
  border-left: 1px solid rgba(139,161,195,.13);
  border-radius: 0;
  background: transparent;
}
.feat:first-child { border-left: 0; }
.feat > i { display: block; margin-bottom: .8rem; color: #a64eff; font-size: 1.28rem; filter: drop-shadow(0 0 10px rgba(166,78,255,.4)); }
.feat b { letter-spacing: .05em; }
.globe {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(300px, 42vw, 620px);
  max-width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0 auto;
  isolation: isolate;
}
.globe::before {
  content: "";
  position: absolute;
  inset: 14%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(75,54,213,.18);
  filter: blur(42px);
}
.globe img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
}
.globe__scene {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  transform-origin: 50% 50%;
}
.globe__orbits {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.globe__track {
  fill: none;
  stroke: rgba(102,216,255,.3);
  stroke-width: 1.5;
}
.globe__track--violet { stroke: rgba(175,119,255,.3); }
.globe__electron {
  fill: none;
  stroke: #b9f4ff;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: .08 99.92;
  filter: drop-shadow(0 0 8px #49cfff);
  animation: globe-electron-orbit 13s linear infinite;
}
.globe__electron--violet {
  stroke: #e3ccff;
  stroke-dashoffset: -50;
  filter: drop-shadow(0 0 8px #a968ff);
  animation: globe-electron-return 18s linear infinite;
}
@keyframes globe-electron-orbit { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -100; } }
@keyframes globe-electron-return { from { stroke-dashoffset: -50; } to { stroke-dashoffset: 50; } }
.svc-grid { gap: 1.2rem; padding-left: 4.5rem; }
.svc {
  min-height: 325px;
  border-radius: 9px;
  border-color: rgba(115,147,181,.18);
  background: #050b12;
}
.svc img { opacity: .88; transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.svc:hover img { transform: scale(1.055); filter: saturate(1.16) brightness(1.08); }
.svc::after { background: linear-gradient(180deg, rgba(2,7,12,.05) 18%, rgba(2,7,13,.97) 92%); }
.svc__body { padding: 1.3rem 1.35rem 1.45rem; }
.svc__icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  margin-bottom: .7rem;
  border: 1px solid rgba(150,69,255,.48);
  color: #a94fff;
  background: rgba(48,16,89,.3);
  box-shadow: 0 0 22px rgba(140,45,244,.18);
}
.svc:nth-child(2) .svc__icon { color: #418cff; border-color: rgba(65,140,255,.46); background: rgba(22,64,124,.25); }
.svc:nth-child(3) .svc__icon { color: #47ddff; border-color: rgba(71,221,255,.46); background: rgba(16,90,107,.2); }
.svc h3 { font-size: 1.2rem; letter-spacing: .06em; }
.steps {
  position: relative;
  grid-template-columns: repeat(4,1fr);
  gap: 2.4rem;
  padding: 0 4.5rem;
}
.steps::before {
  content: "";
  position: absolute;
  left: 12%; right: 12%; top: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(141,67,255,.62), rgba(62,154,255,.55), transparent);
}
.step {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: .25rem .8rem;
}
.step::after {
  content: "›";
  position: absolute;
  right: -1.65rem; top: 28px;
  color: #e5edf5;
  font-size: 1.4rem;
}
.step:last-child::after { display: none; }
.step i {
  position: relative;
  z-index: 1;
  width: 66px; height: 66px;
  border-radius: 20px;
  border-color: rgba(144,65,255,.65);
  color: #a64eff;
  background: #06101a;
  font-size: 1.45rem;
  box-shadow: 0 0 0 8px #040b12, 0 0 28px rgba(130,51,237,.16);
  transition: transform .3s, box-shadow .3s;
}
.step:hover i { transform: translateY(-5px); box-shadow: 0 0 0 8px #040b12, 0 0 35px rgba(127,65,246,.36); }
.games { gap: 1.2rem; padding-left: 4.5rem; }
.game {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 165px;
  gap: .38rem;
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(3,9,15,.5), rgba(2,7,13,.96)),
    url("img/qe-grid-texture-v2.webp?v=20260902") center / cover;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.game::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .14;
  background: radial-gradient(circle at 50% 50%, currentColor, transparent 56%);
}
.game:hover { border-color: rgba(124,162,202,.42); box-shadow: inset 0 0 30px rgba(56,111,174,.11), 0 14px 36px rgba(0,0,0,.32); }
.game__mark {
  width: 56px; height: 56px;
  font-size: 2.1rem;
  filter: drop-shadow(0 0 13px currentColor);
}
.game__mark--image { width: 64px; height: 64px; filter: none; }
.game__mark--image img { display: block; width: 100%; height: 100%; object-fit: contain; }
.why { grid-template-columns: repeat(6, 1fr); gap: 0; padding-left: 4.5rem; }
.why article {
  min-height: 108px;
  padding: .9rem 1rem;
  border: 0;
  border-left: 1px solid rgba(127,153,184,.13);
  border-radius: 0;
  background: transparent;
}
.why article:first-child { border-left: 0; }
.why i { font-size: 1.35rem; filter: drop-shadow(0 0 10px rgba(168,85,247,.35)); }
.cta {
  min-height: 330px;
  border-radius: 3px;
  border-color: rgba(119,149,181,.2);
}
.cta img { opacity: .8; object-position: center; transition: transform 8s ease; }
.cta:hover img { transform: scale(1.045); }
.cta::after { background: linear-gradient(90deg, rgba(3,8,14,.98) 0%, rgba(4,9,16,.88) 42%, rgba(3,8,14,.08) 78%); }
.cta__body { width: 54%; padding: 3.2rem 3.4rem; }
.cta h2 {
  line-height: 1.28;
  background: linear-gradient(90deg, #e7eff7 0 34%, #a640ff 58%, #4d83ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer { background: #02070c; }

@keyframes hero-sweep { from { transform: translateX(-25vw); } to { transform: translateX(125vw); } }
@keyframes hero-energy {
  0%, 100% { filter: brightness(.98) saturate(1); transform: translate3d(0,0,0) scale(1); }
  50% { filter: brightness(1.12) saturate(1.15); transform: translate3d(0,-7px,0) scale(1.008); }
}
@keyframes halo-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin { to { transform: rotate(342deg); } }
@keyframes orbit-spin-reverse { to { transform: rotate(-347deg); } }
@keyframes status-pulse { 50% { opacity: .3; transform: scale(.7); } }
@keyframes section-scan { from { transform: translateX(-20vw); } to { transform: translateX(110vw); } }

@media (max-width: 1060px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.5rem; }
  .stats { grid-column: 1 / -1; grid-template-columns: repeat(4,1fr); border-left: 0; border-top: 1px solid rgba(131,160,191,.15); }
  .stats div { min-width: 0; padding: 1rem; }
  .hero__art {
    width: min(48vw, 560px);
    max-width: 100%;
    margin: 0 auto;
  }
  .globe {
    width: min(48vw, 540px);
    max-width: 100%;
  }
  .about-grid > div:first-child { padding-left: 0; }
  .feat-row { margin-left: 0; }
  .svc-grid, .games, .why { padding-left: 0; }
  .why { grid-template-columns: repeat(3,1fr); row-gap: 1rem; }
}
@media (max-width: 760px) {
  .nav__inner { width: min(100% - 1.5rem, var(--max)); }
  .hero { padding: 2.5rem 0 2rem; }
  .hero__grid { display: flex; min-height: auto; flex-direction: column; }
  .hero__copy { order: 1; padding: 1.4rem 0 0; }
  .hero__art {
    order: 2;
    width: min(84vw, 500px);
    max-width: 100%;
    margin: .25rem auto 0;
  }
  .hero__art img { max-height: 48vh; }
  .stats { order: 3; width: 100%; grid-template-columns: repeat(2,1fr); }
  .hero h1 { font-size: clamp(2.55rem,13vw,4.2rem); }
  .hero h1 span:last-child { letter-spacing: .13em; }
  .hero__lead { margin-top: 1rem; }
  .scroll-cue { display: none; }
  .sec { padding: 3.5rem 0; }
  .sec-head { gap: .7rem; margin-bottom: 1.5rem; }
  .sec-num { min-width: 50px; font-size: 2.4rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid > div:first-child { padding-left: 0; }
  .feat-row { grid-template-columns: repeat(2,1fr); }
  .feat:nth-child(3) { border-left: 0; }
  .globe {
    width: min(90vw, 480px);
    max-width: 100%;
    margin: 0 auto;
  }
  .steps { grid-template-columns: 1fr 1fr; padding: 0; gap: 1.8rem .6rem; }
  .steps::before, .step::after { display: none; }
  .games { grid-template-columns: 1fr; }
  .why { grid-template-columns: repeat(2,1fr); }
  .why article:nth-child(odd) { border-left: 0; }
  .cta__body { width: 100%; padding: 2.2rem 1.5rem; }
  .cta::after { background: linear-gradient(90deg, rgba(3,8,14,.98), rgba(3,8,14,.72)); }
  .cta img { object-position: 70% center; opacity: .55; }
}
@media (max-width: 470px) {
  .hero__art {
    width: min(88vw, 390px);
  }
  .globe {
    width: min(92vw, 380px);
  }
  .hero__actions .btn { flex: 1; min-width: 130px; }
  .feat-row { grid-template-columns: 1fr; }
  .feat, .feat:nth-child(3) { border-left: 0; border-top: 1px solid rgba(139,161,195,.13); }
  .steps { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .why article { border-left: 0; border-top: 1px solid rgba(127,153,184,.13); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scan::after, .hero__halo, .hero__orbit, .globe__scene, .globe__electron { animation: none !important; }
  .hero__art img, .globe__scene { transform: none !important; }
  .hero-field { display: none; }
}

/* Size the headline against its own column, not the fullscreen viewport. */
.hero h1 { font-size: clamp(1.8rem, 3.6vw, 3.8rem); margin-left: 0; }
@supports (font-size: 1cqw) {
  .hero h1 { font-size: clamp(1.8rem, 11cqw, 4.2rem); }
}
@media (max-width: 760px) {
  .hero h1 { font-size: clamp(1.8rem, 10vw, 3.8rem); }
  @supports (font-size: 1cqw) {
    .hero h1 { font-size: clamp(1.8rem, 11cqw, 4.2rem); }
  }
}
