@charset "UTF-8";

:root {
  --ink: #070809;
  --ink-2: #0e1011;
  --paper: #f1f0e9;
  --white: #f8f8f3;
  --acid: #d8ff43;
  --cyan: #53e6ff;
  --violet: #806cff;
  --muted: #929792;
  --line: rgba(248, 248, 243, .18);
  --pad: clamp(22px, 4vw, 72px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { color: var(--ink); background: var(--acid); }

.skip-link {
  position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 14px;
  color: var(--ink); background: var(--acid); transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.boot {
  position: fixed; z-index: 999; inset: 0; display: grid; place-content: center; gap: 24px;
  color: var(--ink); background: var(--acid); transition: opacity .6s var(--ease), visibility .6s;
}
.boot.is-done { opacity: 0; visibility: hidden; }
.boot-mark { font-size: clamp(54px, 10vw, 130px); font-weight: 900; letter-spacing: -.08em; }
.boot-line { width: min(440px, 70vw); height: 2px; overflow: hidden; background: rgba(7, 8, 9, .22); }
.boot-line i { display: block; width: 100%; height: 100%; background: var(--ink); transform-origin: left; animation: boot 1.1s var(--ease) both; }
.boot p { margin: 0; font-size: 10px; font-weight: 800; letter-spacing: .28em; }
@keyframes boot { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.noise {
  position: fixed; z-index: 80; inset: 0; opacity: .045; 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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.cursor {
  position: fixed; z-index: 120; top: 0; left: 0; width: 40px; height: 40px; border: 1px solid rgba(216, 255, 67, .75);
  border-radius: 50%; pointer-events: none; opacity: 0; mix-blend-mode: difference; transition: width .25s, height .25s, opacity .3s;
  transform: translate3d(-100px, -100px, 0);
}
.cursor span { position: absolute; inset: 50% auto auto 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--acid); transform: translate(-50%, -50%); }
.cursor.is-over { width: 72px; height: 72px; }

.site-header {
  position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: 84px; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(to bottom, rgba(7,8,9,.75), rgba(7,8,9,0)); backdrop-filter: blur(8px); transition: transform .5s var(--ease);
}
.logo { display: inline-flex; align-items: center; gap: 12px; width: max-content; font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.logo svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.logo small { display: block; color: var(--acid); font-size: 7px; letter-spacing: .5em; line-height: 1.2; }
.site-header nav { display: flex; gap: clamp(22px, 3vw, 56px); font-size: 9px; font-weight: 700; letter-spacing: .22em; }
.site-header nav a { position: relative; color: rgba(248,248,243,.75); }
.site-header nav a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 1px; background: var(--acid); transform: scaleX(0); transition: transform .3s; }
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { transform: scaleX(1); }
.nav-cta { justify-self: end; display: inline-flex; align-items: center; gap: 22px; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.nav-cta i { display: grid; width: 34px; height: 34px; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; font-style: normal; transition: transform .3s; }
.nav-cta:hover i { transform: rotate(45deg); }

.progress { position: fixed; z-index: 90; top: 50%; right: 18px; width: 1px; height: 30vh; background: rgba(255,255,255,.16); transform: translateY(-50%); }
.progress i { position: absolute; top: 0; left: 0; width: 1px; height: 100%; background: var(--acid); transform: scaleY(0); transform-origin: top; }
.progress span { position: absolute; top: -25px; left: -8px; font: 700 8px/1 Arial; letter-spacing: .12em; }

.spatial-stage { position: fixed; z-index: 10; inset: 0; pointer-events: none; }
#webgl { width: 100%; height: 100%; display: block; opacity: 0; transition: opacity 1s; }
.webgl-ready #webgl { opacity: 1; }
.glasses-fallback { position: absolute; top: 50%; left: 50%; width: min(62vw, 680px); aspect-ratio: 2.5; transform: translate(-50%, -50%); opacity: .75; }
.glasses-fallback i { position: absolute; top: 12%; width: 45%; height: 76%; border: 11px solid #181c1d; border-radius: 45% 45% 50% 50% / 35% 35% 55% 55%; box-shadow: inset 0 0 35px rgba(83,230,255,.35), 0 0 45px rgba(128,108,255,.18); background: linear-gradient(135deg, rgba(83,230,255,.16), rgba(128,108,255,.12)); }
.glasses-fallback i:first-child { left: 0; }.glasses-fallback i:nth-child(2) { right: 0; }
.glasses-fallback b { position: absolute; top: 42%; left: 43%; width: 14%; height: 18%; border-top: 9px solid #181c1d; border-radius: 50%; }
.webgl-ready .glasses-fallback { display: none; }
.reticle { position: absolute; top: 50%; left: 50%; width: min(38vw, 470px); aspect-ratio: 1; opacity: .22; transform: translate(-50%, -50%); transition: opacity .5s; }
.reticle::before, .reticle::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(83,230,255,.55); border-radius: 50%; }
.reticle::after { inset: 18%; border-style: dashed; animation: rotate 30s linear infinite; }
.reticle i { position: absolute; top: 50%; left: 50%; width: 115%; height: 1px; background: rgba(83,230,255,.35); transform: translate(-50%, -50%); }
.reticle i:nth-child(2) { transform: translate(-50%, -50%) rotate(90deg); }
.reticle span { position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border: 1px solid var(--acid); transform: translate(-50%, -50%) rotate(45deg); }
@keyframes rotate { to { transform: rotate(360deg); } }
.stage-readout { position: absolute; top: 51%; display: flex; align-items: center; gap: 12px; color: rgba(248,248,243,.55); font: 700 7px/1 Arial; letter-spacing: .18em; transition: opacity .5s, transform .7s var(--ease); }
.stage-readout::before { content: ""; width: 42px; height: 1px; background: rgba(248,248,243,.32); }
.stage-readout b { color: var(--acid); font-size: 9px; }.stage-readout--left { left: 6%; }.stage-readout--right { right: 6%; flex-direction: row-reverse; }

.scene { position: relative; min-height: 100svh; }
.scene > *:not(.giant-orbit):not(.access-halo) { z-index: 20; }
.hero > *,
.manifesto h2,
.manifesto-note,
.interface-head,
.moments,
.spec-title-wrap,
.spec-grid,
.concept-note { position: relative; z-index: 20; }
.section-tag { display: flex; align-items: center; gap: 12px; color: rgba(248,248,243,.55); font-size: 8px; font-weight: 800; letter-spacing: .24em; }
.section-tag span { color: var(--acid); }
.overline { margin: 0 0 22px; color: var(--acid); font-size: 9px; font-weight: 800; letter-spacing: .3em; }

.hero { min-height: 112svh; padding: 130px var(--pad) 42px; display: grid; grid-template-rows: 1fr auto; overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 55% 45%, rgba(56,67,69,.32), transparent 35%), linear-gradient(115deg, #090b0c 0%, #070809 43%, #111315 100%); }
.hero-code { position: absolute; top: 107px; right: var(--pad); color: rgba(248,248,243,.38); font: 700 7px/1 Arial; letter-spacing: .2em; }
.hero-copy { align-self: center; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 28px; color: rgba(248,248,243,.6); font-size: 8px; font-weight: 800; letter-spacing: .24em; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 16px var(--acid); }
.hero h1 { margin: 0; width: min-content; font-size: clamp(55px, 10.7vw, 174px); font-weight: 900; line-height: .74; letter-spacing: -.085em; }
.hero h1 .line { display: block; white-space: nowrap; }
.hero h1 .line--outline { color: transparent; -webkit-text-stroke: 1px rgba(248,248,243,.6); }
.hero h1 .line--shift { position: relative; left: clamp(45px, 15vw, 250px); color: var(--acid); mix-blend-mode: screen; }
.hero-jp { position: absolute; top: 42%; right: var(--pad); margin: 0; font-size: clamp(15px, 1.6vw, 24px); font-weight: 600; line-height: 1.9; letter-spacing: .12em; writing-mode: vertical-rl; }
.hero-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 30px; border-top: 1px solid var(--line); padding-top: 24px; }
.edition { display: flex; align-items: center; gap: 16px; }.edition span { font-size: 40px; font-weight: 200; }.edition p { margin: 0; color: var(--muted); font-size: 7px; font-weight: 800; line-height: 1.7; letter-spacing: .18em; }
.hero-lead { margin: 0; color: rgba(248,248,243,.75); font-size: clamp(11px, 1vw, 14px); line-height: 1.9; letter-spacing: .09em; }
.scroll-cue { justify-self: end; display: flex; align-items: center; gap: 15px; font-size: 7px; font-weight: 800; letter-spacing: .18em; }
.scroll-cue i { position: relative; width: 46px; height: 46px; border: 1px solid rgba(248,248,243,.35); border-radius: 50%; }
.scroll-cue i::after { content: ""; position: absolute; top: 12px; left: 22px; width: 1px; height: 20px; background: var(--acid); animation: scroll 1.6s infinite; }
@keyframes scroll { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.manifesto { min-height: 145svh; padding: 18vh var(--pad); color: var(--ink); background: var(--paper); overflow: hidden; }
.manifesto-index { position: absolute; top: 8vh; right: var(--pad); font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.manifesto h2 { position: relative; z-index: 2; margin: 0; font-size: clamp(56px, 11.5vw, 176px); font-weight: 900; line-height: .78; letter-spacing: -.085em; }
.manifesto h2 em { color: transparent; -webkit-text-stroke: 1px var(--ink); font-style: normal; }
.manifesto-note { position: absolute; z-index: 3; right: var(--pad); bottom: 12vh; width: min(450px, 42vw); padding-top: 18px; border-top: 1px solid var(--ink); }
.manifesto-note span { font-size: 12px; font-weight: 800; letter-spacing: .16em; }.manifesto-note p { margin: 18px 0 0; font-size: clamp(12px, 1.2vw, 16px); line-height: 2; }
.giant-orbit { position: absolute; right: -11vw; bottom: -24vw; color: rgba(7,8,9,.035); font-size: 90vw; font-weight: 900; line-height: .7; }

.intelligence { min-height: 190svh; padding: 14vh var(--pad) 20vh; background: linear-gradient(90deg, #070809 0%, #070809 48%, rgba(7,8,9,.72) 68%, #070809 100%); }
.intelligence .section-tag { position: sticky; top: 110px; }
.chapter-copy { position: sticky; top: 27vh; width: min(430px, 34vw); }
.chapter-copy h2, .privacy h2 { margin: 0; font-size: clamp(52px, 7vw, 110px); font-weight: 700; line-height: .93; letter-spacing: -.075em; }
.chapter-copy > p:last-child, .privacy-copy > p { margin: 34px 0 0; color: rgba(248,248,243,.63); font-size: clamp(12px, 1.1vw, 16px); line-height: 2; letter-spacing: .06em; }
.optic-labels { position: absolute; right: var(--pad); bottom: 17vh; width: min(400px, 33vw); border-top: 1px solid var(--line); }
.optic-labels article { display: grid; grid-template-columns: 38px 1fr 1fr; gap: 12px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.optic-labels b { color: var(--acid); font-size: 9px; }.optic-labels span { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .15em; }.optic-labels strong { font-size: 10px; line-height: 1.5; letter-spacing: .08em; }

.interface { min-height: 130svh; padding: 14vh var(--pad); color: var(--ink); background: var(--acid); overflow: hidden; }
.interface .section-tag { color: rgba(7,8,9,.6); }.interface .section-tag span, .interface .overline { color: var(--ink); }
.interface-head { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 40px; }
.interface-head h2 { margin: 0; font-size: clamp(58px, 9vw, 142px); font-weight: 900; line-height: .82; letter-spacing: -.08em; }
.interface-head h2 i { color: transparent; -webkit-text-stroke: 1.2px var(--ink); font-style: normal; }
.moments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 11vh; background: rgba(7,8,9,.55); border: 1px solid rgba(7,8,9,.6); box-shadow: 0 40px 90px rgba(7,8,9,.22); }
.moment { min-height: 480px; padding: 22px; display: flex; flex-direction: column; color: var(--white); background: #0c0f10; overflow: hidden; }
.moment header { display: flex; justify-content: space-between; padding-bottom: 13px; border-bottom: 1px solid rgba(248,248,243,.16); color: var(--muted); font-size: 7px; letter-spacing: .17em; }
.moment header b { color: var(--acid); }.mini-map { margin: 35px -22px 0; height: 215px; }
.mini-map svg { width: 100%; height: 100%; fill: none; stroke: rgba(83,230,255,.55); stroke-width: 1; }.mini-map path:nth-child(2) { stroke: rgba(248,248,243,.16); }.mini-map circle { fill: var(--acid); stroke: none; filter: drop-shadow(0 0 8px var(--acid)); }
.moment-copy { margin-top: auto; }.moment-copy small { color: var(--muted); font-size: 7px; letter-spacing: .2em; }.moment-copy strong { display: block; margin: 6px 0 14px; font-size: 42px; font-weight: 300; letter-spacing: -.05em; }.moment-copy p, .moment--translate > p { color: rgba(248,248,243,.58); font-size: 10px; letter-spacing: .08em; }
.voice-wave { height: 90px; margin-top: 38px; display: flex; align-items: center; justify-content: center; gap: 7px; color: rgba(83,230,255,.35); font-size: 7px; }.voice-wave i { width: 1px; height: 18px; background: var(--cyan); animation: wave 1.3s ease-in-out infinite; }.voice-wave i:nth-child(2n) { animation-delay: -.2s; }.voice-wave i:nth-child(3n) { animation-delay: -.5s; }
@keyframes wave { 50% { height: 62px; opacity: .4; } }
.moment blockquote { margin: 40px 0 auto; font-size: clamp(20px, 2vw, 28px); font-weight: 300; line-height: 1.35; letter-spacing: -.025em; }
.memory-core { position: relative; height: 220px; display: grid; place-items: center; }.memory-core i { position: absolute; width: 150px; height: 150px; border: 1px solid rgba(128,108,255,.5); border-radius: 50%; box-shadow: inset 0 0 40px rgba(128,108,255,.2), 0 0 60px rgba(128,108,255,.12); }.memory-core i::before, .memory-core i::after { content: ""; position: absolute; inset: 14px; border: 1px dashed rgba(83,230,255,.35); border-radius: 50%; animation: rotate 14s linear infinite; }.memory-core i::after { inset: 40px; animation-direction: reverse; }.memory-core span { color: var(--acid); font-size: 62px; font-weight: 200; }

.privacy { min-height: 145svh; padding: 16vh var(--pad); display: flex; justify-content: flex-end; align-items: center; background: #08090a; }
.privacy::before { content: ""; position: absolute; inset: 0 50% 0 0; background: repeating-linear-gradient(0deg, transparent 0 55px, rgba(255,255,255,.035) 56px), repeating-linear-gradient(90deg, transparent 0 55px, rgba(255,255,255,.035) 56px); }
.privacy-copy { width: min(520px, 42vw); }.privacy h2 { margin-top: 35px; }.privacy ul { margin: 46px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }.privacy li { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 8px; letter-spacing: .15em; }.privacy li span { color: var(--muted); }.privacy li b { color: var(--acid); }
.privacy-signal { position: absolute; left: 24%; top: 50%; width: min(30vw, 390px); aspect-ratio: 1; transform: translate(-50%,-50%); display: grid; place-items: center; }
.privacy-signal span, .privacy-signal i { position: absolute; inset: 0; border: 1px solid rgba(216,255,67,.22); border-radius: 50%; }.privacy-signal i { inset: 18%; border-style: dashed; animation: rotate 20s linear infinite; }.privacy-signal::before { content: ""; width: 26%; height: 26%; border: 1px solid var(--acid); border-radius: 50%; box-shadow: 0 0 45px rgba(216,255,67,.22); }.privacy-signal b { position: absolute; color: var(--acid); font-size: 9px; letter-spacing: .25em; }

.specs { min-height: 145svh; padding: 14vh var(--pad); color: var(--ink); background: var(--paper); }
.specs .section-tag { color: rgba(7,8,9,.55); }.specs .section-tag span, .specs .overline { color: var(--ink); }
.spec-title-wrap { display: grid; grid-template-columns: .75fr 1.25fr; align-items: end; margin: 10vh 0 13vh; }.spec-title-wrap .overline { align-self: start; }.spec-title-wrap h2 { grid-column: 2; grid-row: 1 / span 2; margin: 0; font-size: clamp(170px, 31vw, 520px); font-weight: 900; line-height: .62; letter-spacing: -.1em; }.spec-title-wrap h2 sup { position: relative; top: -13vw; font-size: .18em; letter-spacing: 0; }.spec-title-wrap > p:last-child { margin: 0; font-size: clamp(12px, 1.2vw, 17px); line-height: 1.9; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }.spec-grid div { min-height: 190px; padding: 22px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }.spec-grid dt { margin-bottom: 55px; font-size: 8px; font-weight: 800; letter-spacing: .2em; }.spec-grid dd { margin: 0; font-size: clamp(16px, 1.7vw, 25px); line-height: 1.25; letter-spacing: -.03em; }.spec-grid b { font-weight: 800; }.concept-note { margin: 24px 0 0 auto; width: min(600px, 100%); color: rgba(7,8,9,.52); font-size: 8px; line-height: 1.8; }

.access { min-height: 140svh; padding: 16vh var(--pad) 10vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: radial-gradient(circle at 50% 48%, #1d2021 0, #0b0d0e 27%, #070809 60%); }
.access-halo { position: absolute; top: 50%; left: 50%; width: min(82vw, 1050px); aspect-ratio: 1; border: 1px solid rgba(216,255,67,.3); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: inset 0 0 130px rgba(83,230,255,.05), 0 0 90px rgba(216,255,67,.04); }.access-halo::before, .access-halo::after { content: ""; position: absolute; inset: 10%; border: 1px dashed rgba(248,248,243,.16); border-radius: 50%; animation: rotate 80s linear infinite; }.access-halo::after { inset: 33%; border-style: solid; animation-direction: reverse; }
.access > *:not(.access-halo) { position: relative; z-index: 20; }.access h2 { margin: 20px 0 30px; font-size: clamp(60px, 11.5vw, 175px); font-weight: 900; line-height: .78; letter-spacing: -.085em; }.access h2 i { color: var(--acid); font-style: normal; }.access > p:not(.overline) { color: var(--muted); font-size: 10px; line-height: 1.9; letter-spacing: .14em; }
.access-button { width: min(580px, 90vw); margin-top: 42px; padding: 8px 8px 8px 27px; display: flex; align-items: center; justify-content: space-between; color: var(--ink); background: var(--acid); text-align: left; transition: transform .35s var(--ease), box-shadow .35s; }.access-button:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(216,255,67,.2); }.access-button span { font-size: 11px; font-weight: 900; letter-spacing: .12em; }.access-button small { display: block; margin-top: 4px; font-size: 8px; font-weight: 600; letter-spacing: .08em; opacity: .65; }.access-button b { display: grid; width: 64px; height: 64px; place-items: center; border: 1px solid var(--ink); font-size: 22px; }
.access-meta { position: absolute; right: var(--pad); bottom: 34px; left: var(--pad); display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 7px; font-weight: 700; letter-spacing: .15em; }

.faq { position: relative; z-index: 30; padding: 14vh var(--pad); display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; color: var(--ink); background: var(--paper); }
.faq h2 { margin: 0; font-size: clamp(70px, 10vw, 150px); letter-spacing: -.08em; }.faq .overline { color: var(--ink); }.faq-list { border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--ink); }.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 28px 0; cursor: pointer; font-size: clamp(13px, 1.2vw, 17px); font-weight: 700; list-style: none; }.faq summary::-webkit-details-marker { display: none; }.faq summary span { font-size: 24px; font-weight: 300; transition: transform .3s; }.faq details[open] summary span { transform: rotate(45deg); }.faq details p { margin: -5px 45px 28px 0; color: rgba(7,8,9,.63); font-size: 12px; line-height: 2; }

footer { position: relative; z-index: 30; min-height: 280px; padding: 60px var(--pad) 30px; display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 50px; background: var(--ink); border-top: 1px solid var(--line); }
footer > p { margin: 0; color: var(--muted); font-size: 8px; line-height: 1.8; letter-spacing: .16em; }footer > div { grid-column: 1 / -1; align-self: end; display: flex; justify-content: space-between; color: rgba(248,248,243,.45); font-size: 8px; letter-spacing: .15em; }

a:focus-visible, summary:focus-visible { outline: 2px solid var(--cyan); outline-offset: 5px; }

@media (max-width: 900px) {
  .site-header { height: 70px; grid-template-columns: 1fr auto; }.site-header nav { display: none; }.nav-cta span { display: none; }
  .progress, .stage-readout { display: none; }.reticle { width: 70vw; opacity: .14; }
  .hero { padding-top: 105px; min-height: 105svh; }.hero-code { top: 84px; }.hero h1 { font-size: clamp(48px, 14vw, 92px); line-height: .79; }.hero h1 .line--shift { left: 9vw; }.hero-jp { top: 38%; font-size: 12px; }
  .hero-bottom { grid-template-columns: 1fr 1fr; }.hero-lead { display: none; }.scroll-cue { justify-self: end; }
  .manifesto { min-height: 120svh; }.manifesto h2 { font-size: clamp(52px, 14.2vw, 110px); }.manifesto-note { width: min(520px, 72vw); }
  .chapter-copy { width: 44vw; }.optic-labels { width: 43vw; }
  .interface-head { grid-template-columns: 1fr; margin-top: 40px; }.moments { grid-template-columns: 1fr; }.moment { min-height: 380px; }.mini-map { height: 160px; }.moment blockquote { margin-top: 24px; }.memory-core { height: 150px; }
  .privacy-copy { width: 54vw; }.privacy-signal { left: 20%; width: 34vw; }
  .spec-title-wrap { grid-template-columns: 1fr; }.spec-title-wrap h2 { grid-column: 1; grid-row: auto; margin: 70px 0; }.spec-title-wrap h2 sup { top: -18vw; }.spec-grid { grid-template-columns: repeat(2, 1fr); }
  .faq { grid-template-columns: 1fr; }.faq h2 { font-size: 80px; }
}

@media (max-width: 600px) {
  :root { --pad: 20px; }
  .cursor { display: none; }
  .logo span { font-size: 11px; }.logo svg { width: 29px; }
  .hero { padding-bottom: 24px; }.hero::before { background: radial-gradient(circle at 55% 43%, rgba(56,67,69,.42), transparent 38%), #070809; }.hero-copy { align-self: start; margin-top: 13vh; }.eyebrow { max-width: 210px; line-height: 1.5; }.hero h1 { font-size: 15vw; }.hero-jp { top: auto; right: 20px; bottom: 25vh; writing-mode: initial; line-height: 1.8; }.hero-bottom { grid-template-columns: 1fr auto; }.edition span { font-size: 29px; }.scroll-cue span { display: none; }
  .spatial-stage { height: 82svh; top: 9svh; }.glasses-fallback { width: 84vw; }.glasses-fallback i { border-width: 7px; }.glasses-fallback b { border-top-width: 6px; }
  .manifesto { min-height: 105svh; padding-top: 16vh; }.manifesto h2 { font-size: 14vw; line-height: .84; }.manifesto-note { right: 20px; bottom: 10vh; width: calc(100% - 40px); }.manifesto-note p { font-size: 11px; }
  .intelligence { min-height: 170svh; padding-top: 11vh; background: linear-gradient(to bottom, #070809 0 62%, rgba(7,8,9,.65)); }.intelligence .section-tag { position: relative; top: 0; }.chapter-copy { position: relative; top: auto; width: 82%; margin-top: 11vh; }.chapter-copy h2, .privacy h2 { font-size: 15vw; }.optic-labels { right: 20px; bottom: 8vh; width: calc(100% - 40px); }
  .interface { min-height: auto; padding-top: 11vh; }.interface-head h2 { font-size: 15vw; }.moments { margin-top: 70px; }.moment { min-height: 360px; }
  .privacy { min-height: 115svh; align-items: flex-end; padding-bottom: 10vh; }.privacy::before { inset: 0; }.privacy-copy { width: 100%; }.privacy-signal { top: 26%; left: 50%; width: 62vw; }.privacy-copy > p { font-size: 11px; }
  .specs { min-height: auto; padding-top: 11vh; }.spec-title-wrap { margin: 70px 0; }.spec-title-wrap h2 { margin: 55px 0; font-size: 47vw; }.spec-title-wrap h2 sup { top: -27vw; }.spec-grid { grid-template-columns: 1fr 1fr; }.spec-grid div { min-height: 150px; padding: 15px; }.spec-grid dt { margin-bottom: 38px; }.spec-grid dd { font-size: 14px; }
  .access { min-height: 112svh; }.access h2 { font-size: 15vw; line-height: .84; }.access-meta { display: none; }.access-button b { width: 54px; height: 54px; }
  .faq { padding-top: 10vh; }.faq summary { font-size: 12px; }.faq details p { font-size: 11px; }
  footer { grid-template-columns: 1fr; }footer > div { grid-column: 1; gap: 25px; flex-direction: column; }
}

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