:root {
  --bg: #070516;
  --bg-soft: #0d0924;
  --panel: rgba(18, 12, 48, 0.72);
  --panel-strong: #15103a;
  --line: rgba(157, 120, 255, 0.18);
  --line-bright: rgba(145, 86, 255, 0.42);
  --text: #f7f5ff;
  --muted: #aaa1c8;
  --muted-2: #776e94;
  --violet: #7d3cff;
  --violet-2: #a058ff;
  --cyan: #42dcff;
  --pink: #f252c8;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%, rgba(94, 43, 210, 0.2), transparent 34%),
    linear-gradient(180deg, #070516 0%, #09061b 45%, #070516 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

::selection { background: rgba(125, 60, 255, 0.45); color: white; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 12px;
  background: white;
  color: #100832;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  width: 40vw;
  aspect-ratio: 1;
  z-index: -2;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .15;
  pointer-events: none;
}
.ambient-one { background: var(--violet); top: 12vh; left: -18vw; }
.ambient-two { background: var(--cyan); bottom: -26vw; right: -22vw; opacity: .08; }

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 5, 22, .78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(calc(100% - 40px), 1320px);
  height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 1.2rem;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand > span > span { color: var(--violet-2); }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.primary-nav a {
  color: #c3badb;
  font-size: .92rem;
  font-weight: 700;
  transition: color .2s ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: white; }
.nav-cta { justify-self: end; }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: white;
  font-size: .94rem;
  font-weight: 850;
  letter-spacing: -.015em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(66, 220, 255, .48); outline-offset: 3px; }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: .88rem; background: linear-gradient(135deg, #7d3cff, #5120be); box-shadow: 0 10px 30px rgba(94, 42, 215, .28); }
.button-primary { background: linear-gradient(135deg, #8a48ff 0%, #5b24d0 100%); box-shadow: 0 14px 34px rgba(103, 49, 223, .35); }
.button-primary:hover { box-shadow: 0 18px 44px rgba(103, 49, 223, .46); }
.button-ghost { border-color: rgba(150, 100, 255, .5); background: rgba(73, 38, 146, .13); }
.button-ghost:hover { border-color: rgba(178, 139, 255, .75); background: rgba(89, 49, 170, .2); }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 40px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 72% 35%, rgba(119, 57, 255, .18), transparent 24%),
    radial-gradient(circle at 23% 62%, rgba(66, 220, 255, .055), transparent 28%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  z-index: -2;
  background: linear-gradient(180deg, transparent, rgba(10, 7, 29, .92));
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 65%, transparent 95%);
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: center;
  gap: 70px;
  min-height: 620px;
}
.hero-copy { max-width: 670px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(138, 72, 255, .38);
  border-radius: 999px;
  background: rgba(91, 36, 208, .12);
  color: #c9a9ff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(66, 220, 255, .08), 0 0 18px rgba(66, 220, 255, .75);
}
.eyebrow {
  margin: 24px 0 12px;
  color: #a984ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 7.3vw, 7rem);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 950;
}
.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #b98cff 0%, #7f51ff 45%, #43dbff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted-2);
  font-size: .84rem;
}
.signal { display: inline-flex; align-items: end; gap: 3px; height: 14px; }
.signal i { display: block; width: 3px; border-radius: 4px; background: var(--cyan); }
.signal i:nth-child(1) { height: 5px; opacity: .5; }
.signal i:nth-child(2) { height: 9px; opacity: .75; }
.signal i:nth-child(3) { height: 14px; }

.hero-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(137, 92, 255, .2);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}
.orbit::before, .orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet-2);
  box-shadow: 0 0 18px rgba(160, 88, 255, .8);
}
.orbit::before { top: 8%; left: 20%; }
.orbit::after { bottom: 8%; right: 20%; background: var(--cyan); }
.orbit-outer { width: 500px; height: 500px; }
.orbit-middle { width: 410px; height: 410px; animation-direction: reverse; animation-duration: 22s; }
.orbit-inner { width: 330px; height: 330px; animation-duration: 18s; }
.world-card {
  position: relative;
  width: 360px;
  aspect-ratio: 1;
  border: 1px solid rgba(164, 123, 255, .32);
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(88, 38, 194, .3), rgba(8, 7, 29, .96) 67%),
    #0c0824;
  box-shadow: inset 0 0 70px rgba(125, 60, 255, .18), 0 0 80px rgba(83, 35, 197, .2), var(--shadow);
}
.world-card-glow {
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 0deg, transparent, rgba(125, 60, 255, .26), transparent, rgba(66, 220, 255, .13), transparent);
  animation: spin 18s linear infinite;
}
.world-map { position: absolute; inset: 11%; opacity: .58; }
.continent { position: absolute; display: block; background: linear-gradient(135deg, rgba(125,60,255,.5), rgba(66,220,255,.12)); filter: drop-shadow(0 0 18px rgba(125,60,255,.18)); }
.c1 { width: 42%; height: 34%; top: 14%; left: 10%; border-radius: 58% 42% 64% 36% / 42% 58% 42% 58%; transform: rotate(-14deg); }
.c2 { width: 35%; height: 48%; top: 36%; right: 10%; border-radius: 43% 57% 35% 65% / 62% 33% 67% 38%; transform: rotate(18deg); }
.c3 { width: 24%; height: 20%; bottom: 10%; left: 18%; border-radius: 60% 40% 45% 55%; transform: rotate(12deg); }
.route { position: absolute; height: 1px; transform-origin: left center; background: linear-gradient(90deg, var(--cyan), rgba(66,220,255,.08)); box-shadow: 0 0 8px rgba(66,220,255,.5); }
.r1 { width: 45%; left: 23%; top: 31%; transform: rotate(26deg); }
.r2 { width: 38%; left: 37%; top: 53%; transform: rotate(-24deg); }
.r3 { width: 29%; left: 23%; top: 67%; transform: rotate(7deg); }
.map-point { position: absolute; width: 9px; height: 9px; border: 2px solid white; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 5px rgba(125,60,255,.15), 0 0 16px rgba(125,60,255,.9); }
.p1 { left: 21%; top: 29%; }.p2 { right: 28%; top: 45%; }.p3 { left: 44%; bottom: 27%; }.p4 { right: 18%; bottom: 20%; }
.world-logo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 116px;
  height: 116px;
  transform: translate(-50%, -50%);
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(125, 60, 255, .45));
}
.world-card-label {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: max-content;
  text-align: center;
}
.world-card-label span { display: block; color: var(--muted-2); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; }
.world-card-label strong { font-size: .88rem; }
.mini-card {
  position: absolute;
  min-width: 148px;
  padding: 13px 16px;
  border: 1px solid rgba(155, 114, 255, .28);
  border-radius: 14px;
  background: rgba(13, 9, 36, .8);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}
.mini-card span { display: block; color: var(--cyan); font-size: .62rem; font-weight: 900; letter-spacing: .13em; }
.mini-card strong { font-size: .82rem; }
.mini-card-one { left: 2%; top: 20%; animation: float 5.4s ease-in-out infinite; }
.mini-card-two { right: -2%; bottom: 18%; animation: float 5.4s ease-in-out infinite reverse; }

.floating-glyph { position: absolute; color: rgba(125,60,255,.25); font-size: 3.4rem; font-weight: 900; filter: drop-shadow(0 0 28px rgba(125,60,255,.24)); }
.glyph-one { left: 7%; top: 24%; transform: rotate(18deg); }
.glyph-two { right: 6%; top: 22%; font-size: 2rem; }
.glyph-three { right: 16%; bottom: 12%; font-size: 2.5rem; }

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 9, 36, .55);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.hero-strip div { padding: 20px 24px; }
.hero-strip div + div { border-left: 1px solid var(--line); }
.hero-strip strong { display: block; margin-bottom: 2px; font-size: .9rem; }
.hero-strip span { color: var(--muted-2); font-size: .76rem; }

.section { position: relative; padding: 120px 0; }
.section-features { background: linear-gradient(180deg, rgba(16,11,42,.45), rgba(8,6,24,.22)); border-block: 1px solid rgba(144,100,255,.08); }
.split-intro { display: grid; grid-template-columns: 1.12fr .88fr; align-items: end; gap: 70px; margin-bottom: 56px; }
.split-intro .eyebrow, .section-heading .eyebrow, .roadmap-copy .eyebrow, .community-copy .eyebrow { margin-top: 0; }
h2 { margin-bottom: 0; font-size: clamp(2.3rem, 5vw, 4.5rem); line-height: 1.02; letter-spacing: -.055em; }
.split-intro > p, .section-heading > p, .roadmap-copy > p, .community-copy > p { color: var(--muted); font-size: 1.05rem; }

.world-showcase { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
.showcase-panel { border: 1px solid var(--line-bright); border-radius: var(--radius); background: linear-gradient(160deg, rgba(28,19,65,.9), rgba(10,7,28,.92)); box-shadow: var(--shadow); overflow: hidden; }
.panel-topbar, .panel-footer { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
.panel-topbar { border-bottom: 1px solid var(--line); color: var(--muted-2); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.panel-topbar span:first-child { display: flex; align-items: center; gap: 8px; }
.panel-topbar i { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 12px var(--cyan); }
.panel-topbar span:last-child { color: #91f6dd; }
.region-visual { position: relative; min-height: 390px; overflow: hidden; background: radial-gradient(circle at 68% 33%, rgba(125,60,255,.28), transparent 27%), linear-gradient(180deg, #181046, #0b0a26); }
.region-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 34px 34px; transform: perspective(500px) rotateX(52deg) scale(1.35); transform-origin: center bottom; opacity: .45; }
.terrain { position: absolute; background: linear-gradient(135deg, rgba(66,220,255,.12), rgba(125,60,255,.4)); filter: drop-shadow(0 22px 28px rgba(0,0,0,.25)); }
.terrain-a { width: 48%; height: 52%; left: -4%; bottom: 3%; clip-path: polygon(0 40%, 40% 5%, 100% 26%, 84% 78%, 28% 100%); }
.terrain-b { width: 45%; height: 58%; right: -5%; top: 7%; clip-path: polygon(28% 0, 100% 20%, 92% 80%, 42% 100%, 0 58%); }
.terrain-c { width: 34%; height: 30%; left: 36%; top: 27%; clip-path: polygon(50% 0, 100% 36%, 78% 100%, 8% 82%, 0 28%); opacity: .8; }
.path { position: absolute; height: 8px; border-radius: 99px; background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(159,109,255,.55), rgba(255,255,255,.08)); box-shadow: 0 0 18px rgba(125,60,255,.3); }
.path-a { width: 50%; left: 14%; top: 48%; transform: rotate(14deg); }
.path-b { width: 39%; right: 7%; top: 56%; transform: rotate(-25deg); }
.tower { position: absolute; width: 58px; height: 88px; left: 53%; top: 23%; transform: translateX(-50%); background: linear-gradient(90deg, #2d1b66, #a278ff 50%, #2d1b66); clip-path: polygon(27% 0, 73% 0, 100% 100%, 0 100%); box-shadow: 0 0 28px rgba(160,120,255,.5); }
.tower::before { content: ""; position: absolute; inset: 12px 12px auto; height: 10px; background: var(--cyan); box-shadow: 0 0 20px var(--cyan); }
.player-dot { position: absolute; left: 34%; bottom: 23%; width: 18px; height: 18px; border-radius: 50%; background: white; box-shadow: 0 0 0 7px rgba(66,220,255,.14), 0 0 28px rgba(66,220,255,.8); }
.player-dot span { position: absolute; inset: -22px; border: 1px solid rgba(66,220,255,.25); border-radius: 50%; animation: pulse 2.4s ease-out infinite; }
.panel-footer { border-top: 1px solid var(--line); gap: 30px; }
.panel-footer div { flex: 1; }
.panel-footer span { display: block; color: var(--muted-2); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.panel-footer strong { font-size: .82rem; }

.showcase-copy article { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.showcase-copy article:first-child { padding-top: 0; }
.showcase-copy article:last-child { border-bottom: 0; padding-bottom: 0; }
.feature-index { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line-bright); border-radius: 12px; color: #bfa3ff; font-size: .72rem; font-weight: 900; }
.showcase-copy h3 { margin-bottom: 8px; font-size: 1.22rem; letter-spacing: -.025em; }
.showcase-copy p { margin-bottom: 0; color: var(--muted); font-size: .95rem; }

.section-heading { max-width: 760px; text-align: center; }
.section-heading p { max-width: 650px; margin: 22px auto 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 54px; }
.feature-card { min-height: 286px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(25,17,59,.78), rgba(11,8,31,.88)); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-7px); border-color: var(--line-bright); box-shadow: 0 22px 50px rgba(0,0,0,.24); }
.icon-box { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 36px; border: 1px solid rgba(154,110,255,.38); border-radius: 14px; background: linear-gradient(145deg, rgba(125,60,255,.22), rgba(66,220,255,.07)); color: #c0a4ff; }
.icon-box svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.roadmap-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 100px; align-items: start; }
.roadmap-copy { position: sticky; top: 130px; }
.roadmap-copy h2 { margin-bottom: 24px; }
.roadmap-callout { display: flex; gap: 12px; margin-top: 28px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(20,13,49,.55); }
.roadmap-callout span { flex: 0 0 8px; width: 8px; height: 8px; margin-top: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.roadmap-callout p { margin: 0; color: var(--muted-2); font-size: .82rem; }
.roadmap-list { position: relative; }
.roadmap-list::before { content: ""; position: absolute; left: 11px; top: 22px; bottom: 24px; width: 1px; background: linear-gradient(var(--violet), var(--line), transparent); }
.roadmap-item { position: relative; padding: 0 0 42px 54px; }
.roadmap-item:last-child { padding-bottom: 0; }
.roadmap-marker { position: absolute; left: 0; top: 7px; width: 23px; height: 23px; border: 4px solid var(--bg); border-radius: 50%; background: #302354; box-shadow: 0 0 0 1px var(--line-bright); }
.roadmap-item.is-active .roadmap-marker { background: var(--violet-2); box-shadow: 0 0 0 1px var(--violet-2), 0 0 22px rgba(160,88,255,.65); }
.roadmap-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.roadmap-meta span { padding: 4px 8px; border-radius: 6px; background: rgba(125,60,255,.14); color: #b89aff; font-size: .6rem; font-weight: 900; letter-spacing: .12em; }
.roadmap-meta strong { font-size: 1.06rem; }
.roadmap-item p { margin: 0; color: var(--muted); font-size: .92rem; }

.community { padding-top: 70px; }
.community-card { position: relative; min-height: 420px; display: grid; grid-template-columns: 1fr .65fr; align-items: center; gap: 40px; padding: 68px; overflow: hidden; border: 1px solid var(--line-bright); border-radius: 30px; background: radial-gradient(circle at 82% 50%, rgba(125,60,255,.28), transparent 31%), linear-gradient(135deg, rgba(32,20,76,.94), rgba(10,7,29,.94)); box-shadow: var(--shadow); }
.community-card::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(90deg, transparent, black); }
.community-copy { position: relative; z-index: 2; }
.community-copy h2 { max-width: 680px; margin-bottom: 20px; }
.community-copy > p { max-width: 650px; }
.community-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.community-emblem { position: relative; display: grid; place-items: center; min-height: 280px; }
.community-emblem img { width: min(80%, 240px); filter: drop-shadow(0 0 42px rgba(125,60,255,.52)); animation: float 6s ease-in-out infinite; }
.emblem-ring { position: absolute; width: 320px; height: 320px; border: 1px solid rgba(160,120,255,.28); border-radius: 50%; box-shadow: inset 0 0 50px rgba(125,60,255,.1); }
.emblem-ring::before, .emblem-ring::after { content: ""; position: absolute; inset: 28px; border: 1px dashed rgba(66,220,255,.18); border-radius: inherit; animation: spin 24s linear infinite; }
.emblem-ring::after { inset: 62px; animation-direction: reverse; animation-duration: 18s; }

.site-footer { padding: 56px 0 26px; border-top: 1px solid var(--line); background: rgba(5,4,15,.45); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; align-items: center; gap: 30px; }
.brand-footer img { width: 40px; height: 40px; }
.footer-grid > p { margin: 0; color: var(--muted-2); font-size: .8rem; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(143,98,255,.1); color: #615978; font-size: .72rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.revealed { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .14s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0% { transform: scale(.55); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }

@media (max-width: 1060px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .primary-nav { position: fixed; top: 78px; left: 20px; right: 20px; display: grid; gap: 0; padding: 12px; border: 1px solid var(--line-bright); border-radius: 18px; background: rgba(10,7,29,.96); box-shadow: var(--shadow); backdrop-filter: blur(18px); opacity: 0; transform: translateY(-12px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .primary-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .primary-nav a { padding: 14px 16px; border-radius: 10px; }
  .primary-nav a:hover { background: rgba(125,60,255,.1); }
  .nav-toggle { display: grid; place-content: center; gap: 5px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px; background: rgba(17,11,43,.75); color: white; }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 2px; background: currentColor; border-radius: 4px; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta { display: none; }
  .hero-layout { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .status-pill { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-visual { min-height: 500px; }
  .split-intro, .world-showcase, .roadmap-layout { grid-template-columns: 1fr; }
  .split-intro { gap: 24px; }
  .world-showcase { gap: 50px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-layout { gap: 56px; }
  .roadmap-copy { position: static; }
  .community-card { grid-template-columns: 1fr; text-align: center; }
  .community-copy > p { margin-inline: auto; }
  .community-actions { justify-content: center; }
  .community-emblem { min-height: 230px; }
}

@media (max-width: 720px) {
  .section-shell, .nav-shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-shell { height: 70px; }
  .primary-nav { top: 70px; left: 14px; right: 14px; }
  .brand img { width: 38px; height: 38px; }
  .hero { padding-top: 125px; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 5.5rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-note { align-items: flex-start; text-align: left; }
  .hero-visual { min-height: 400px; transform: scale(.82); margin-inline: -50px; }
  .orbit-outer { width: 430px; height: 430px; }
  .orbit-middle { width: 350px; height: 350px; }
  .orbit-inner { width: 285px; height: 285px; }
  .world-card { width: 310px; }
  .mini-card-one { left: 6%; }.mini-card-two { right: 3%; }
  .hero-strip { grid-template-columns: 1fr; }
  .hero-strip div + div { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 88px 0; }
  h2 { font-size: clamp(2.25rem, 12vw, 3.4rem); }
  .region-visual { min-height: 300px; }
  .panel-footer { align-items: flex-start; flex-direction: column; gap: 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .roadmap-item { padding-left: 46px; }
  .community { padding-top: 30px; }
  .community-card { padding: 42px 22px; border-radius: 24px; }
  .community-actions .button { width: 100%; }
  .emblem-ring { width: 260px; height: 260px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .brand-footer { margin-inline: auto; }
  .footer-links { justify-content: center; }
  .footer-bottom { gap: 14px; flex-direction: column; align-items: center; }
  .floating-glyph { display: none; }
}

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