/* ============================================================
   ANCHOR POINT — cinematic
   Cold-water cinema: the deep as the frontier. Abyssal ink,
   sonar cyan atmosphere, coral as the sharp human accent.
   Full-bleed imagery, a depth gauge that sinks as you scroll.
   ============================================================ */

:root {
  --abyss: #04070C;
  --ink: #0A121C;
  --ink-2: #0E1A28;
  --line: rgba(180, 205, 230, 0.12);
  --line-2: rgba(180, 205, 230, 0.24);

  --snow: #EAF2FB;
  --fog: #93A7BD;
  --fog-2: #7E90A4;   /* ~5.9:1 on --abyss — clears WCAG AA for small labels */

  --coral: #FF5A36;
  --coral-2: #FF7B57;
  --amber: #FFC069;
  --sonar: #46D6DE;

  --display: "Oswald", sans-serif;
  --body: "Barlow", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  --container: 1280px;
  --pad: clamp(20px, 4.5vw, 64px);
  --ease: cubic-bezier(0.22, 0.9, 0.24, 1);
  --nav-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html:not(.lenis) { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
html, body { overflow-x: clip; }
body {
  background: var(--abyss);
  color: var(--snow);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--coral); color: #fff; }
:focus-visible { outline: 2px solid var(--sonar); outline-offset: 3px; border-radius: 3px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); width: 100%; }

/* anchor targets clear the fixed nav; script-focused sections show no stray ring */
main section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }
[tabindex="-1"]:focus { outline: none; }   /* no stray ring on script-focused scroll targets */

.eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fog);
}
.eyebrow .dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral); margin-right: 10px; vertical-align: middle;
  box-shadow: 0 0 12px var(--coral);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hidden-field { position: absolute; left: -9999px; opacity: 0; }

/* ============================================================
   ATMOSPHERE — fixed abyssal field behind everything
   ============================================================ */
.atmos { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.atmos::before {
  /* deep vertical gradient: harbour night up top, abyss below */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(21, 44, 66, 0.55), transparent 60%),
    linear-gradient(180deg, #061019 0%, #05090F 45%, #03060A 100%);
}
.atmos__sonar {
  position: absolute; width: 130vmax; height: 130vmax;
  left: 50%; top: -10%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(70, 214, 222, 0.10) 0%, rgba(70, 214, 222, 0.04) 30%, transparent 62%);
  animation: sonar 22s ease-in-out infinite;
}
@keyframes sonar {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.12); }
}
.atmos__grain {
  /* static film-grain texture — no perpetual animation (kept off the compositor) */
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.045; mix-blend-mode: overlay;
}

/* content sits above the atmosphere */
.nav, main, .depth, #progress { position: relative; z-index: 2; }

/* ============================================================
   DEPTH GAUGE — 0 m at the surface, 1,025 m at the wall
   ============================================================ */
.depth {
  position: fixed; z-index: 40;
  right: clamp(14px, 2.4vw, 30px); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--fog);
}
.depth__cap { font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.28em; }
.depth__track {
  position: relative; width: 2px; height: clamp(120px, 22vh, 200px);
  background: var(--line); border-radius: 2px; overflow: hidden;
}
.depth__fill {
  position: absolute; left: 0; top: 0; width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--sonar), var(--coral));
  box-shadow: 0 0 10px rgba(70, 214, 222, 0.5);
}
.depth__val { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; white-space: nowrap; }
.depth__val b { color: var(--snow); font-weight: 500; font-variant-numeric: tabular-nums; }
@media (max-width: 900px) { .depth { display: none; } }

/* scroll progress hairline */
#progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60;
  background: linear-gradient(90deg, var(--sonar), var(--coral));
  transform: scaleX(0); transform-origin: 0 50%; will-change: transform;
}

/* ---------- custom cursor: lagging sonar ring + coral dot ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 200; pointer-events: none; border-radius: 50%; will-change: transform; }
.cursor {
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 1.5px solid rgba(70, 214, 222, 0.55);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), margin 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--coral); box-shadow: 0 0 10px rgba(255, 90, 54, 0.7); }
.cursor.hover {
  width: 60px; height: 60px; margin: -30px 0 0 -30px;
  border-color: rgba(255, 90, 54, 0.85); background: rgba(255, 90, 54, 0.08);
}
body.cursor-on, body.cursor-on a, body.cursor-on button, body.cursor-on .magnetic { cursor: none; }
body.cursor-on input, body.cursor-on textarea { cursor: text; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none !important; } }

/* ---------- ambient sound toggle ---------- */
.sound {
  position: fixed; left: clamp(16px, 3vw, 30px); bottom: clamp(16px, 3vh, 26px); z-index: 42;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0.6em 1.05em; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(5, 9, 15, 0.6); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: var(--fog); transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.sound:hover { color: var(--snow); border-color: var(--snow); }
.sound.on { color: var(--sonar); border-color: rgba(70, 214, 222, 0.6); }
.sound__viz { display: inline-flex; align-items: center; gap: 2.5px; height: 13px; }
.sound__viz i { width: 2.5px; height: 4px; background: currentColor; border-radius: 2px; }
.sound.on .sound__viz i { animation: eq 0.9s ease-in-out infinite; }
.sound__viz i:nth-child(2) { animation-delay: 0.18s; }
.sound__viz i:nth-child(3) { animation-delay: 0.36s; }
.sound__viz i:nth-child(4) { animation-delay: 0.10s; }
@keyframes eq { 0%, 100% { height: 4px; } 50% { height: 13px; } }
@media (max-width: 620px) { .sound__txt { display: none; } .sound { padding: 0.6em; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--pad);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s, height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 62px;
  background: rgba(5, 9, 15, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom-color: var(--line);
}
.nav__brand { display: inline-flex; align-items: center; gap: 11px; }
.nav__badge { width: 26px; height: 26px; border-radius: 8px; flex: none; }
.nav__word {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 1.02rem;
}
.nav__links { display: flex; gap: clamp(18px, 2.4vw, 36px); }
.nav__links a {
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.8rem; color: var(--fog);
  position: relative; padding-block: 6px; transition: color 0.2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--coral); transition: width 0.28s var(--ease);
}
.nav__links a:hover { color: var(--snow); }
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 14px; }
@media (max-width: 900px) { .nav__links { display: none; } }

.nav__burger {
  display: none; flex-direction: column; gap: 6px; width: 42px; height: 42px;
  align-items: center; justify-content: center; border: 1px solid var(--line-2); border-radius: 10px;
}
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--snow); transition: transform 0.3s var(--ease), opacity 0.2s; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
@media (max-width: 900px) { .nav__burger { display: flex; } }

.drawer {
  position: fixed; inset: 0; z-index: 45;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: var(--nav-h) var(--pad) 40px;
  background: rgba(4, 7, 12, 0.97);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
body.menu-open .drawer { opacity: 1; visibility: visible; transform: none; }
body.menu-open { overflow: hidden; }
.drawer a {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; font-size: clamp(2rem, 8vw, 3rem); color: var(--snow);
  padding: 10px 0; border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.25s var(--ease);
}
.drawer a:hover { color: var(--coral); padding-left: 10px; }
.drawer__cta { color: var(--coral) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.82rem;
  padding: 0.85em 1.6em; border-radius: 4px; white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s;
}
.btn--lg { padding: 1.05em 2.1em; font-size: 0.92rem; }
.btn--coral { background: var(--coral); color: #fff; box-shadow: 0 10px 30px -12px rgba(255, 90, 54, 0.6); }
.btn--coral:hover { background: var(--coral-2); box-shadow: 0 16px 40px -14px rgba(255, 90, 54, 0.75); }
.btn--glass {
  background: rgba(234, 242, 251, 0.06); color: var(--snow);
  border: 1px solid var(--line-2); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.btn--glass:hover { background: rgba(234, 242, 251, 0.13); border-color: var(--snow); }
.btn__label, .btn__play { display: inline-flex; }
.btn__play {
  width: 0; height: 0; border-style: solid; border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent currentColor;
}
/* magnetic buttons: JS drives transform, so keep it out of the transition list */
.magnetic { transition: background 0.25s, box-shadow 0.25s, color 0.25s, border-color 0.25s; }
.btn__label { will-change: transform; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: clip; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__kb {
  position: absolute; inset: -6%;
  background-size: cover; background-position: 50% 42%;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.14) translateY(-2%); }
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__video.playing { opacity: 1; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4,7,12,0.66) 0%, rgba(4,7,12,0.16) 22%, rgba(4,7,12,0.34) 48%, rgba(4,7,12,0.8) 74%, rgba(4,7,12,0.97) 100%),
    linear-gradient(72deg, rgba(4,7,12,0.72) 0%, rgba(4,7,12,0.28) 44%, transparent 74%),
    radial-gradient(120% 90% at 50% 28%, transparent 42%, rgba(4,7,12,0.42) 100%);
}
.hero__inner { padding-bottom: clamp(70px, 12vh, 130px); padding-top: calc(var(--nav-h) + 20px); }
.hero__eyebrow { margin-bottom: clamp(22px, 3.4vh, 34px); text-shadow: 0 1px 14px rgba(0,0,0,0.7); }
.hero__eyebrow .dot { box-shadow: 0 0 12px var(--coral); }
.hero__title {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(4.2rem, 17vw, 15rem); line-height: 0.82; letter-spacing: -0.01em;
  text-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.hero__title .line { display: block; }
.hero__tag {
  margin-top: clamp(20px, 3vh, 34px); max-width: 30em;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem); color: var(--fog); line-height: 1.5;
  text-shadow: 0 1px 16px rgba(0,0,0,0.8);
}
.hero__tag b { color: var(--snow); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 4vh, 44px); }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(26px, 4vh, 40px); }
.hero__chips li {
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fog); padding: 0.5em 0.95em; border: 1px solid var(--line-2); border-radius: 999px;
}
.hero__cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--fog);
}
.hero__chev { width: 12px; height: 12px; border-right: 2px solid var(--fog); border-bottom: 2px solid var(--fog); transform: rotate(45deg); animation: bobDown 1.8s ease-in-out infinite; }
@keyframes bobDown { 0%,100% { transform: rotate(45deg) translate(0,0); opacity: 0.5; } 50% { transform: rotate(45deg) translate(3px,3px); opacity: 1; } }
@media (max-width: 620px) { .hero__cue { display: none; } }

/* staggered hero load */
.hero__eyebrow, .hero__title .line, .hero__tag, .hero__cta, .hero__chips {
  opacity: 0; transform: translateY(26px); animation: rise 1s var(--ease) forwards;
}
.hero__eyebrow { animation-delay: 0.1s; }
.hero__title .line:nth-child(1) { animation-delay: 0.24s; }
.hero__title .line:nth-child(2) { animation-delay: 0.36s; }
.hero__tag { animation-delay: 0.52s; }
.hero__cta { animation-delay: 0.64s; }
.hero__chips { animation-delay: 0.76s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============================================================
   REVEALS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { padding-block: clamp(90px, 15vh, 180px); }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 64px); }
.pillar { border-top: 2px solid var(--line-2); padding-top: 26px; }
.pillar__no { display: block; color: var(--coral); margin-bottom: 18px; }
.pillar__h {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.02; letter-spacing: 0.01em; margin-bottom: 14px;
}
.pillar p { color: var(--fog); font-size: 1rem; line-height: 1.62; }
@media (max-width: 820px) { .pillars__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   FEATURE SECTIONS — full-bleed, parallax
   ============================================================ */
.feat {
  position: relative; overflow: clip;
  min-height: clamp(620px, 96vh, 1000px);
  display: flex; align-items: flex-end;
  padding-block: clamp(56px, 9vh, 120px);
}
.feat__media {
  position: absolute; inset: -24% 0; z-index: -2;
  background-size: cover; background-position: center;
  /* will-change is promoted by JS only while the layer is near the viewport */
}
.feat__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,7,12,0.5) 0%, transparent 30%, rgba(4,7,12,0.4) 62%, rgba(4,7,12,0.96) 100%),
    linear-gradient(90deg, rgba(4,7,12,0.9) 0%, rgba(4,7,12,0.45) 42%, transparent 72%);
}
.feat--right { text-align: right; }
.feat--right .feat__scrim {
  background:
    linear-gradient(180deg, rgba(4,7,12,0.5) 0%, transparent 30%, rgba(4,7,12,0.4) 62%, rgba(4,7,12,0.96) 100%),
    linear-gradient(270deg, rgba(4,7,12,0.9) 0%, rgba(4,7,12,0.45) 42%, transparent 72%);
}
.feat--right .feat__inner { margin-left: auto; }
.feat__inner { max-width: 46rem; }
.feat__inner .eyebrow { color: var(--sonar); margin-bottom: 18px; }
.feat__h {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.8rem, 7vw, 6rem); line-height: 0.94; letter-spacing: -0.01em;
}
.feat__sub {
  font-family: var(--display); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.03em; font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--amber); margin-top: 16px;
}
.feat__body { margin-top: 18px; color: var(--fog); font-size: clamp(1rem, 1.35vw, 1.16rem); line-height: 1.66; }
.feat--right .feat__body { margin-left: auto; }
@media (max-width: 760px) {
  .feat, .feat--right { text-align: left; }
  .feat--right .feat__inner { margin-left: 0; }
  .feat__scrim, .feat--right .feat__scrim {
    background:
      linear-gradient(180deg, rgba(4,7,12,0.55) 0%, transparent 34%, rgba(4,7,12,0.55) 60%, rgba(4,7,12,0.97) 100%);
  }
}

/* ============================================================
   THE NUMBERS
   ============================================================ */
.numbers { padding-block: clamp(90px, 16vh, 190px); text-align: center; }
.numbers__eye { color: var(--sonar); }
.numbers__h {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.2rem, 5.4vw, 4.6rem); line-height: 0.98; margin: 18px auto 0; letter-spacing: -0.01em;
}
.stats {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(16px, 2.4vw, 40px);
  margin-top: clamp(48px, 8vh, 84px); border-top: 1px solid var(--line); padding-top: clamp(36px, 6vh, 60px);
}
.stat__n {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem); line-height: 1; letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums; color: var(--snow);
}
.stat__n i { font-style: normal; font-size: 0.4em; color: var(--fog); font-weight: 600; margin-left: 0.12em; }
.stat__l { display: block; margin-top: 14px; color: var(--fog-2); }
.numbers__foot { margin-top: clamp(40px, 6vh, 60px); color: var(--fog-2); }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(3, 1fr); row-gap: 40px; } }
@media (max-width: 520px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   BUILT IN THE OPEN — cards
   ============================================================ */
.sec-h {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 0.98; letter-spacing: -0.01em;
}
.log { padding-block: clamp(80px, 13vh, 150px); }
.log__head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 4vw, 60px); align-items: end; margin-bottom: clamp(40px, 6vh, 64px); }
.log__head .eyebrow { color: var(--sonar); margin-bottom: 14px; }
.log__lead { color: var(--fog); font-size: 1.05rem; }
@media (max-width: 820px) { .log__head { grid-template-columns: 1fr; } }

.log__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 24px); }
.card {
  position: relative; overflow: hidden; border-radius: 8px;
  min-height: clamp(320px, 42vh, 440px);
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,7,12,0.1) 0%, rgba(4,7,12,0.55) 55%, rgba(4,7,12,0.96) 100%); }
.card__body { position: relative; padding: clamp(22px, 2.4vw, 34px); }
.card__body .eyebrow { color: var(--sonar); }
.card__body h3 {
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin: 10px 0 8px;
}
.card__body p { color: var(--fog); font-size: 0.95rem; line-height: 1.55; max-width: 26em; }
.card__go { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); }
.card__go i { transition: transform 0.25s var(--ease); }
.card:hover .card__go i { transform: translateX(6px); }
@media (max-width: 820px) { .log__cards { grid-template-columns: 1fr; } }

/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist { position: relative; overflow: clip; padding-block: clamp(100px, 18vh, 220px); display: flex; align-items: center; text-align: center; }
.waitlist__media { position: absolute; inset: -20% 0; z-index: -2; background-size: cover; background-position: center 60%; }
.waitlist__scrim { position: absolute; inset: 0; z-index: -1; background: radial-gradient(90% 120% at 50% 50%, rgba(4,7,12,0.55), rgba(4,7,12,0.9) 70%, var(--abyss) 100%); }
.waitlist__inner .eyebrow { color: var(--coral); }
.waitlist__h {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 5.2rem); line-height: 0.94; margin: 16px auto 0; letter-spacing: -0.01em;
}
.waitlist__sub { max-width: 36em; margin: 20px auto 0; color: var(--fog); font-size: clamp(1rem, 1.5vw, 1.2rem); }
.waitlist__form { display: flex; gap: 12px; max-width: 540px; margin: clamp(30px, 5vh, 44px) auto 0; flex-wrap: wrap; justify-content: center; }
.waitlist__input {
  flex: 1 1 260px; min-width: 0;
  background: rgba(234, 242, 251, 0.06); border: 1px solid var(--line-2); border-radius: 4px;
  color: var(--snow); font-family: var(--body); font-size: 0.98rem; padding: 1em 1.3em;
  transition: border-color 0.2s, background 0.2s;
}
.waitlist__input::placeholder { color: var(--fog-2); }
.waitlist__input:focus { outline: none; border-color: var(--sonar); background: rgba(234, 242, 251, 0.1); }
.waitlist__status { margin-top: 18px; min-height: 1.3em; color: var(--sonar); }
.waitlist__status.err { color: var(--coral); }
.waitlist__chips { justify-content: center; margin-top: clamp(26px, 4vh, 38px); }
form.done .waitlist__input, form.done .btn { opacity: 0.45; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { border-top: 1px solid var(--line); padding-block: clamp(40px, 6vh, 64px) 30px; }
.foot__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px 40px; }
.foot__brand { display: inline-flex; align-items: center; gap: 11px; }
.foot__links { display: flex; flex-wrap: wrap; gap: 18px 26px; }
.foot__links a { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; color: var(--fog); transition: color 0.2s; }
.foot__links a:hover { color: var(--snow); }
.foot__social a { font-family: var(--mono); font-size: 0.72rem; color: var(--fog); }
.foot__social a:hover { color: var(--coral); }
.foot__legal { display: flex; flex-wrap: wrap; gap: 8px 30px; justify-content: space-between; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.foot__legal .eyebrow { color: var(--fog-2); font-size: 0.58rem; letter-spacing: 0.14em; }

/* ============================================================
   TRAILER MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: var(--pad); }
.modal.open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(2, 4, 8, 0.88); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); animation: fade 0.3s ease; }
.modal__frame { position: relative; width: min(1000px, 100%); z-index: 1; animation: pop 0.35s var(--ease); }
@keyframes fade { from { opacity: 0; } } @keyframes pop { from { opacity: 0; transform: translateY(16px) scale(0.98); } }
.modal__close { position: absolute; top: -44px; right: 0; width: 40px; height: 40px; border: 1px solid var(--line-2); border-radius: 999px; color: var(--snow); font-size: 1rem; }
.modal__close:hover { background: rgba(234,242,251,0.1); }
.modal__video { position: relative; aspect-ratio: 16 / 9; background: #000 center/cover no-repeat; border: 1px solid var(--line-2); border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.modal__video::before { content: ""; position: absolute; inset: 0; background: rgba(4,7,12,0.66); }
.modal__video video { width: 100%; height: 100%; object-fit: cover; }
.modal__soon { position: relative; color: var(--snow); text-align: center; padding: 20px; max-width: 26em; }

/* ============================================================
   MOTION SAFETY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__eyebrow, .hero__title .line, .hero__tag, .hero__cta, .hero__chips { opacity: 1; transform: none; }
  .hero__kb { animation: none; }
  .atmos__sonar, .hero__chev, .eyebrow .dot, .sound__viz i { animation: none !important; }
  #progress { display: none; }
  .cursor, .cursor-dot { display: none !important; }
}
