/* ============================================================
   VARIANT B — THE INSTRUMENT DECK
   The vessel's language never breaks. Surfaced content renders as
   the sub's own consoles: bordered stations, mono data, gauges,
   sonar rings. Space Grotesk carries display; IBM Plex Mono carries
   every datum. No editorial serif down here.
   ============================================================ */

/* Author `display` rules silently outrank the UA stylesheet's [hidden] rule,
   which makes `el.hidden = true` a no-op on anything styled here. Keep this
   guard above everything so hiding an element actually hides it. */
[hidden] { display: none !important; }

#dive-deeper.v2 {
  --ground: #010407;
  --panel: rgba(4, 14, 22, 0.42);
  --ink: #e8f4f8;
  --ink-2: #7d8c96;
  --cyan: #35e0ff;
  --cyan-2: #8bedff;
  --line: rgba(53, 224, 255, 0.16);
  --line-2: rgba(53, 224, 255, 0.34);
  --disp: 'Space Grotesk', system-ui, sans-serif;
  --mono2: 'IBM Plex Mono', monospace;

  position: relative; z-index: 30;
  color: var(--ink);
  padding: 0 0 40px;
  background:
    radial-gradient(120% 50% at 50% -4%, rgba(53,224,255,0.09), transparent 58%),
    linear-gradient(#04101e 0%, var(--ground) 240px);
}
/* sonar rings — the deck listens */
#dive-deeper.v2::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-radial-gradient(circle at 50% 0%,
    rgba(53,224,255,0.045) 0 1px, transparent 1px 170px);
}
/* faint grain */
#dive-deeper.v2::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.05; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
#dive-deeper.v2 > * { position: relative; z-index: 1; }

/* ---------- shared atoms ---------- */
.va-coord {
  font-family: var(--mono2); font-size: 11px; letter-spacing: 0.32em;
  color: var(--cyan); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.va-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 10px rgba(53,224,255,0.9); flex: none;
  animation: vaBlink 2.1s steps(1) infinite;
}
@keyframes vaBlink { 0%, 60% { opacity: 1; } 61%, 78% { opacity: 0.15; } 79%, 100% { opacity: 1; } }
.va-cursor { display: inline-block; width: 9px; height: 15px; background: var(--cyan);
  animation: vaBlink 1.1s steps(1) infinite; }
.va-title {
  font-family: var(--disp); font-weight: 300;
  font-size: clamp(36px, 4.8vw, 76px); line-height: 1.02; letter-spacing: 0.01em;
  color: var(--ink); margin: 26px 0 30px;
}
.va-title em { font-style: normal; color: var(--cyan);
  text-shadow: 0 0 60px rgba(53,224,255,0.35); }
.va-lede {
  font-family: var(--disp); font-weight: 400;
  font-size: clamp(18px, 1.9vw, 26px); line-height: 1.5;
  max-width: 740px; color: var(--ink-2);
}
.va-lede em { font-style: normal; color: var(--ink); }

.va-debrief { max-width: 1280px; margin: 0 auto; padding: 90px 6vw 60px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: center; }
.va-sub3d { margin: 0; position: relative; }
.va-sub3d model-viewer {
  width: 100%; height: clamp(300px, 44vw, 520px);
  background: transparent; --poster-color: transparent;
}
.va-sub3d figcaption {
  text-align: center; margin-top: 4px;
  font-family: var(--mono2); font-size: 9px; letter-spacing: 0.28em; color: var(--ink-2);
}
.va-sub3d::before {
  content: ''; position: absolute; inset: 8% 6% 14%; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 55%, rgba(53,224,255,0.12), transparent 70%);
}
@media (max-width: 980px) {
  .va-debrief { grid-template-columns: 1fr; gap: 8px; }
  .va-debrief-copy { order: 1; }
  .va-sub3d { order: 2; }
  .va-sub3d model-viewer { height: clamp(320px, 82vw, 460px); }
  .va-sub3d::before { inset: 4% 2% 8%; }
}

/* ---------- stations (bordered consoles) ---------- */
.station {
  position: relative; max-width: 1280px;
  margin: 34px auto; padding: 64px clamp(24px, 4vw, 60px) 56px;
  border: 1px solid var(--line); background: var(--panel);
  width: calc(100% - 12vw);
}
/* corner ticks */
.station::before, .station::after {
  content: ''; position: absolute; width: 18px; height: 18px; pointer-events: none;
}
.station::before { top: -1px; left: -1px;
  border-top: 2px solid var(--line-2); border-left: 2px solid var(--line-2); }
.station::after { bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--line-2); border-right: 2px solid var(--line-2); }
.st-label {
  position: absolute; top: -8px; left: 26px;
  font-family: var(--mono2); font-size: 10px; letter-spacing: 0.3em;
  color: var(--cyan); background: var(--ground); padding: 0 12px;
}
.st-head {
  font-family: var(--disp); font-weight: 300;
  font-size: clamp(34px, 5vw, 72px); line-height: 1.02; letter-spacing: 0.01em;
  color: var(--ink-2); margin-bottom: 52px;
}
.st-head em { font-style: normal; color: var(--ink); }
.st-verdict {
  margin-top: 48px; padding-top: 22px; border-top: 1px dashed var(--line);
  font-family: var(--mono2); font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: 0.08em; line-height: 1.7; color: var(--ink-2);
}
.st-verdict em { font-style: normal; color: var(--cyan); }
.st-foot {
  margin-top: 34px; text-align: center;
  font-family: var(--mono2); font-size: 10px; letter-spacing: 0.22em; color: var(--ink-2);
}

/* ---------- deck 01: forces ---------- */
.va-forces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); }
.va-force { background: var(--ground); padding: 26px 24px 30px; }
.vf-top { display: flex; align-items: center; gap: 10px;
  font-family: var(--mono2); font-size: 10px; letter-spacing: 0.26em; color: var(--cyan); }
.vf-top .va-dot { width: 6px; height: 6px; }
.va-force h4 { font-family: var(--disp); font-weight: 500;
  font-size: clamp(19px, 2vw, 25px); margin: 18px 0 10px; }
.va-force p { font-family: var(--disp); font-size: 15px; line-height: 1.6; color: var(--ink-2); }

/* ---------- waypoint 02: engine room ---------- */
.st-hint { display: flex; align-items: center; gap: 12px; margin: -30px 0 40px;
  font-family: var(--mono2); font-size: 10px; letter-spacing: 0.26em; color: var(--ink-2); }
.st-hint .va-dot { width: 6px; height: 6px; }
.va-engines { list-style: none; }
.va-engine {
  --ec: var(--cyan);
  display: grid; grid-template-columns: 130px 1fr 230px; gap: 8px 34px; align-items: start;
  padding: 34px 0; border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.va-engine:last-child { border-bottom: 0; }
.va-engine:hover, .va-engine.on {
  background: linear-gradient(90deg, rgba(53,224,255,0.08), rgba(53,224,255,0.025)); }
.ve-id b { display: block; font-family: var(--mono2); font-weight: 500;
  font-size: clamp(24px, 2.6vw, 34px); color: var(--ec); letter-spacing: 0.04em; }
.ve-id span { display: block; margin-top: 8px; font-family: var(--mono2);
  font-size: 9px; letter-spacing: 0.3em; color: var(--ink-2); }
.ve-body h4 { font-family: var(--disp); font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 8px; }
.ve-body > p { font-family: var(--disp); font-size: 16px; line-height: 1.55;
  color: var(--ink-2); max-width: 52ch; }
/* full-row power strip: left line to right line */
.gauge { grid-column: 1 / -1; margin: 24px 0 0; height: 4px;
  background: rgba(238,244,247,0.08); overflow: hidden; }
.gauge i { display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--ec) 25%, transparent), var(--ec) 60%);
  box-shadow: 0 0 14px var(--ec);
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s; }
.reveal.in .gauge i { width: 100%; }
.ve-doing { font-family: var(--mono2); font-size: 10px; letter-spacing: 0.12em;
  color: rgba(120,225,245,0.72); line-height: 1.8; }
.ve-read { font-family: var(--mono2); font-size: 10.5px; letter-spacing: 0.1em;
  line-height: 1.8; color: rgba(120,225,245,0.72); text-align: right;
  border-left: 1px solid var(--line); padding-left: 22px;
  transition: color 0.3s ease; }
.va-engine:hover .ve-read, .va-engine.on .ve-read { color: var(--ec); }

/* manifest accordion */
.ve-toggle {
  margin-top: 18px; cursor: pointer;
  font-family: var(--mono2); font-size: 10px; letter-spacing: 0.22em;
  color: var(--ec); background: transparent;
  border: 1px solid color-mix(in srgb, var(--ec) 45%, transparent);
  padding: 10px 18px; transition: all 0.25s ease;
}
.ve-toggle:hover { background: var(--ec); color: #02141f; border-color: var(--ec);
  box-shadow: 0 0 24px color-mix(in srgb, var(--ec) 50%, transparent); }
.ve-toggle:focus-visible { outline: 2px solid var(--ec); outline-offset: 3px; }
.ve-more {
  grid-column: 1 / -1; overflow: hidden;
  max-height: 0; opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease,
    margin-top 0.4s ease;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  border-left: 2px solid var(--ec); padding-left: clamp(18px, 3vw, 34px);
  margin-top: 0;
}
.va-engine.open .ve-more { max-height: 720px; opacity: 1; margin-top: 26px; }
.vm-col h5 { font-family: var(--mono2); font-weight: 500; font-size: 10px;
  letter-spacing: 0.28em; color: var(--ec); margin: 0 0 14px; }
.vm-col h5 + p + h5 { margin-top: 24px; }
.vm-col ul { list-style: none; }
.vm-col li { font-family: var(--disp); font-size: 15px; line-height: 1.5;
  color: var(--ink); padding: 8px 0 8px 22px; position: relative;
  border-bottom: 1px dashed rgba(238,244,247,0.08); }
.vm-col li:last-child { border-bottom: 0; }
.vm-col li::before { content: '▸'; position: absolute; left: 0; color: var(--ec); font-size: 11px; top: 11px; }
.vm-col p { font-family: var(--disp); font-size: 15px; line-height: 1.6; color: var(--ink-2); }

/* ---------- waypoint 05: case ledger ---------- */
.ledger { border-top: 1px solid var(--line); }
.lrow {
  --ec: var(--cyan);
  position: relative; cursor: pointer;
  display: grid; grid-template-columns: 90px 1fr auto; gap: 6px 30px; align-items: center;
  padding: 26px 10px; border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.lrow:hover, .lrow:focus-visible { outline: none;
  background: linear-gradient(90deg, color-mix(in srgb, var(--ec) 6%, transparent), transparent 70%); }
.l-id { font-family: var(--mono2); font-size: 10px; letter-spacing: 0.22em; color: var(--ec); }
.l-client { font-family: var(--disp); font-weight: 500;
  font-size: clamp(24px, 3.4vw, 46px); letter-spacing: 0.01em; line-height: 1.05;
  color: var(--ink); transition: color 0.3s ease, transform 0.3s ease; }
.lrow:hover .l-client { color: var(--ec); transform: translateX(8px); }
.l-cat { display: block; margin-top: 6px; font-family: var(--mono2);
  font-size: 9px; letter-spacing: 0.26em; color: var(--ink-2); }
.l-stat { font-family: var(--mono2); font-weight: 500; text-align: right;
  font-size: clamp(12px, 1.5vw, 17px); letter-spacing: 0.1em; color: var(--ec); }
.l-detail {
  grid-column: 1 / -1; overflow: hidden; max-height: 0; opacity: 0;
  display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: center;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, margin-top 0.4s ease;
}
.lrow.open .l-detail { max-height: 260px; opacity: 1; margin-top: 20px; }
.l-img { aspect-ratio: 16 / 10; background-image: var(--img); background-size: cover;
  background-position: center; border: 1px solid var(--line-2); }
.l-img-light { background-color: #f1efea; background-size: 70%; background-repeat: no-repeat; }
.l-detail p { font-family: var(--disp); font-size: 15px; line-height: 1.6;
  color: var(--ink-2); max-width: 52ch; }
/* floating image that trails the cursor (desktop only) */
#ledger-float {
  position: fixed; z-index: 80; width: 300px; aspect-ratio: 16 / 11;
  background-size: cover; background-position: center; background-color: #0a141c;
  border: 1px solid var(--line-2); box-shadow: 0 24px 70px rgba(0,0,0,0.65);
  pointer-events: none; opacity: 0; transform: rotate(-2.5deg) scale(0.94);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
#ledger-float.show { opacity: 1; transform: rotate(-2.5deg) scale(1); }
#ledger-float.light { background-size: 72%; background-repeat: no-repeat;
  background-color: #f1efea; }

/* ---------- per-waypoint ambience ---------- */
/* WP-01: sonar scope — rings + rotating sweep + three contact blips */
.sonar-scope { position: absolute; top: 50%; right: -260px; width: 680px; height: 680px;
  margin-top: -340px; border-radius: 50%; pointer-events: none; z-index: 0; opacity: 0.5;
  background: repeating-radial-gradient(circle,
    rgba(53,224,255,0.10) 0 1px, transparent 1px 85px);
  border: 1px solid rgba(53,224,255,0.14); }
.sonar-scope::before { content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(53,224,255,0.14), transparent 70deg);
  animation: scopeSweep 7s linear infinite; }
@keyframes scopeSweep { to { transform: rotate(360deg); } }
.sonar-scope .blip { position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px rgba(53,224,255,0.9);
  animation: vaBlink 3.2s steps(1) infinite; }
.sonar-scope .b1 { left: 30%; top: 38%; }
.sonar-scope .b2 { left: 52%; top: 62%; animation-delay: 1.1s; }
.sonar-scope .b3 { left: 40%; top: 78%; animation-delay: 2.2s; }
#wp-why > *:not(.sonar-scope) { position: relative; z-index: 1; }

/* WP-03: course plot — dashed route draws itself on reveal */
.course-plot { position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.55; }
.cp-line { stroke: rgba(53,224,255,0.3); stroke-width: 1.5; stroke-dasharray: 7 9;
  stroke-dashoffset: 1600; }
.reveal.in .cp-line { transition: stroke-dashoffset 2.4s ease 0.3s; stroke-dashoffset: 0; }
.cp-dot { fill: var(--ground); stroke: var(--cyan); stroke-width: 1.5; opacity: 0;
  filter: drop-shadow(0 0 6px rgba(53,224,255,0.7)); }
.reveal.in .cp-dot { opacity: 1; transition: opacity 0.5s ease 1.6s; }
#wp-board > *:not(.course-plot) { position: relative; z-index: 1; }

/* WP-06: fleet radar — every client is a contact on the scope */
.fleet-radar { position: absolute; top: 46px; right: clamp(24px, 4vw, 60px);
  width: 148px; height: 148px; border-radius: 50%; z-index: 1;
  border: 1px solid rgba(53,224,255,0.3);
  background:
    repeating-radial-gradient(circle, rgba(53,224,255,0.10) 0 1px, transparent 1px 24px),
    linear-gradient(rgba(53,224,255,0.04), transparent);
  overflow: hidden; }
.fleet-radar::before { content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(53,224,255,0.22), transparent 75deg);
  animation: scopeSweep 5s linear infinite; }
.fleet-radar i { position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(53,224,255,0.65); box-shadow: 0 0 6px rgba(53,224,255,0.7);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease; }
.fleet-radar i.hot { background: #fff; transform: scale(2.1);
  box-shadow: 0 0 16px rgba(53,224,255,1); }
/* contact dot on each logo cell */
.va-fleet li { position: relative; }
.va-fleet li::after { content: ''; position: absolute; top: 12px; right: 12px;
  width: 5px; height: 5px; border-radius: 50%; background: rgba(53,224,255,0.5);
  box-shadow: 0 0 8px rgba(53,224,255,0.6); animation: vaBlink 3.4s steps(1) infinite; }
.va-fleet li:nth-child(2n)::after { animation-delay: 1.2s; }
.va-fleet li:nth-child(3n)::after { animation-delay: 2.1s; }
#dive-deeper.v2 .station .va-fleet, #dive-deeper.v2 .station .st-foot { position: relative; z-index: 1; }
@media (max-width: 620px) { .fleet-radar { display: none; } }

/* WP-07: floodlight sweep across the classification list on reveal */
.floodlight { position: absolute; top: -10%; bottom: -10%; left: -30%; width: 34%;
  pointer-events: none; z-index: 0; opacity: 0;
  background: linear-gradient(100deg, transparent, rgba(53,224,255,0.10) 45%, rgba(238,244,247,0.10) 55%, transparent);
  transform: skewX(-12deg); }
.reveal.in .floodlight { animation: floodSweep 2.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards; }
@keyframes floodSweep { 0% { opacity: 0; left: -30%; } 12% { opacity: 1; }
  88% { opacity: 1; } 100% { opacity: 0; left: 108%; } }
#wp-class > *:not(.floodlight) { position: relative; z-index: 1; }

/* Finale: scroll-scrubbed approach to the treasure (descent tech, reused) */
.finale-track { position: relative; height: 220vh; margin-top: 60px; }
.va-transmit { overflow: hidden;
  position: sticky; top: 0; height: 100vh; min-height: 0;
  width: 100vw; max-width: none; margin: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center; }
#finale-film { position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0; transition: opacity 0.5s ease; }
#finale-film.live { opacity: 1; }
/* blends the film into the black deck above and grounds the text below */
.film-scrim { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(#010407 0%, rgba(1,4,7,0.55) 12%, transparent 30%,
      transparent 62%, rgba(1,4,7,0.5) 100%);
}
/* approach instruments (visible only while the film scrubs) */
.approach-hud { position: absolute; top: clamp(20px, 4vh, 44px); left: 50%;
  transform: translateX(-50%); z-index: 2; white-space: nowrap;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono2); font-size: 11px; letter-spacing: 0.28em;
  color: var(--cyan); opacity: 0; transition: opacity 0.4s ease; }
.approach-hud b { font-weight: 500; color: var(--ink); min-width: 3ch; text-align: right;
  font-variant-numeric: tabular-nums; }
.approach-cue { position: absolute; bottom: clamp(18px, 4vh, 40px); left: 50%;
  transform: translateX(-50%); z-index: 2; white-space: nowrap;
  font-family: var(--mono2); font-size: 10px; letter-spacing: 0.3em;
  color: rgba(238,244,247,0.75); opacity: 0; transition: opacity 0.4s ease; }
.approach-cue span { display: inline-block; animation: cueBob 1.6s ease-in-out infinite; }
@keyframes cueBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
/* UI surfaces from the glow near the end of the scrub (JS drives) */
.va-transmit .va-coord, .va-transmit .va-title,
.va-transmit .va-seal, .va-transmit .va-colophon { will-change: transform, opacity; }
#gold-dust { position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; }
.spotlight { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  mix-blend-mode: screen; opacity: 0; transition: opacity 0.6s ease; }
.va-transmit.lit .spotlight { opacity: 1; }
/* scene breathes in on arrival, drifts with the cursor (JS writes transform) */
.va-transmit .treasure-scene { transform: scale(1.14);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform; }
.va-transmit .va-coord, .va-transmit .va-title, .va-transmit .va-seal, .va-transmit .va-colophon {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); will-change: transform; }
.va-transmit .treasure-scene { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url(assets/treasure.jpg) 62% bottom / cover no-repeat;
}
@media (max-aspect-ratio: 5/4) {
  .va-transmit .treasure-scene { background-size: auto 100%; background-position: 60% bottom; }
}
/* scrim so the headline stays legible over the scene */
.treasure-scene::after { content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(1,4,7,0.82) 0%, rgba(1,4,7,0.34) 30%, rgba(1,4,7,0.12) 58%, rgba(1,4,7,0.5) 100%); }
/* the chest glow — breathes; flares when the CTA is armed */
.va-transmit .treasure-glow { position: absolute; z-index: 0; pointer-events: none;
  left: 50%; bottom: 0; width: 44%; aspect-ratio: 1.5;
  background: radial-gradient(50% 50% at 50% 62%, rgba(255,196,90,0.30), rgba(255,170,60,0.09) 55%, transparent 75%);
  filter: blur(6px); opacity: 0.75;
  animation: treasureBreathe 5.5s ease-in-out infinite alternate;
  transition: opacity 0.5s ease, transform 0.5s ease; }
@keyframes treasureBreathe { from { opacity: 0.55; transform: scale(0.96); }
  to { opacity: 0.9; transform: scale(1.05); } }
.va-transmit.armed .treasure-glow { opacity: 1; transform: scale(1.16);
  animation-play-state: paused; }
@media (max-width: 900px) {
  .sonar-scope { width: 480px; height: 480px; margin-top: -240px; right: -220px; }
  .porthole { width: 500px; height: 500px; margin-top: -250px; right: -240px; }
}

/* ---------- sonar-ping signature reveal ---------- */
.sonar-ping {
  position: absolute; left: 50%; top: 64px; width: 14px; height: 14px;
  margin-left: -7px; border-radius: 50%; border: 2px solid var(--cyan);
  opacity: 0; pointer-events: none;
  animation: sonarPing 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes sonarPing {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 0; transform: scale(30); }
}

/* ---------- custom sonar cursor ---------- */
@media (pointer: fine) {
  body.v2-cursor-on #dive-deeper.v2, body.v2-cursor-on #dive-deeper.v2 a,
  body.v2-cursor-on #dive-deeper.v2 button, body.v2-cursor-on #dive-deeper.v2 .lrow { cursor: none; }
  #cur-dot, #cur-ring { position: fixed; left: 0; top: 0; z-index: 999;
    pointer-events: none; border-radius: 50%; opacity: 0; }
  #cur-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: #35e0ff;
    box-shadow: 0 0 10px rgba(53,224,255,0.9); }
  #cur-ring { width: 34px; height: 34px; margin: -17px 0 0 -17px;
    border: 1px solid rgba(53,224,255,0.55);
    transition: width 0.2s ease, height 0.2s ease, margin 0.2s ease, border-color 0.2s ease; }
  body.v2-cursor-on #cur-dot, body.v2-cursor-on #cur-ring { opacity: 1; }
  #cur-ring.hov { width: 56px; height: 56px; margin: -28px 0 0 -28px;
    border-color: rgba(53,224,255,0.95); }
}

/* ---------- footer ---------- */
.va-footer {
  max-width: 1280px; margin: 0 auto; padding: 56px 6vw 44px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto; gap: 26px 40px; align-items: start;
}
.f-brand { font-family: var(--disp); font-weight: 700; font-size: 21px;
  letter-spacing: 0.16em; }
.f-brand em { font-style: normal; color: var(--cyan); }
.f-nav { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.f-nav a { font-family: var(--mono2); font-size: 10px; letter-spacing: 0.2em;
  color: var(--ink-2); text-decoration: none; transition: color 0.2s ease; }
.f-nav a:hover { color: var(--cyan); }
.f-meta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px 30px;
  padding-top: 20px; border-top: 1px dashed var(--line);
  font-family: var(--mono2); font-size: 9.5px; letter-spacing: 0.18em; color: var(--ink-2); }
.f-meta a { color: var(--cyan); text-decoration: none; }

/* ---------- waypoint 04: proof board ---------- */
/* manipulator arms reaching in from the viewport edges (the sub's hands) */
#dive-deeper.v2 { overflow-x: clip; }
#wp-proof { overflow: visible; }
.arm { position: absolute; pointer-events: none; z-index: 0;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7)); will-change: transform; }
.arm-l { left: max(-340px, -22vw); bottom: -90px; width: clamp(360px, 44vw, 680px);
  transform: rotate(-6deg); }
.arm-r { right: max(-360px, -24vw); top: -110px; width: clamp(380px, 48vw, 740px);
  transform: rotate(4deg); }
#wp-proof .st-label, #wp-proof .st-head, #wp-proof .va-proof { position: relative; z-index: 1; }
@media (max-width: 620px) { .arm { display: none; } }

.va-proof { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); }
.vp-cell { background: var(--ground); padding: 34px 26px 30px; grid-column: span 3; }
.vp-cell.vp-big { grid-column: span 4; padding: 44px 30px 38px; }
.vp-cell b { display: block; font-family: var(--mono2); font-weight: 500;
  font-size: clamp(26px, 3vw, 46px); color: var(--ink); letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums; white-space: nowrap; }
.vp-cell.vp-big b { font-size: clamp(38px, 4.6vw, 74px); color: var(--cyan);
  text-shadow: 0 0 44px rgba(53,224,255,0.4); }
.vp-cell b .plus { color: var(--cyan); }
.vp-cell.vp-big b .plus { color: var(--cyan-2); }
.vp-cell i { display: block; margin-top: 14px; font-family: var(--mono2); font-style: normal;
  font-size: 10px; letter-spacing: 0.18em; color: var(--ink-2); line-height: 1.7; }

/* ---------- deck 04: mission records ---------- */
.va-records { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rec { position: relative; border: 1px solid var(--line); background: var(--ground);
  aspect-ratio: 4 / 3.4; overflow: hidden; }
.rec-img { position: absolute; inset: 0; background-image: var(--img);
  background-size: cover; background-position: center;
  filter: saturate(0.85) contrast(1.02);
  transition: transform 0.6s ease, filter 0.4s ease; }
.rec:hover .rec-img { transform: scale(1.05); filter: saturate(1.1); }
/* scanline sweep on hover */
.rec::before { content: ''; position: absolute; left: 0; right: 0; top: -20%;
  height: 16%; z-index: 3; pointer-events: none; opacity: 0;
  background: linear-gradient(rgba(53,224,255,0), rgba(53,224,255,0.16), rgba(53,224,255,0)); }
.rec:hover::before { opacity: 1; animation: vaScan 1.4s linear infinite; }
@keyframes vaScan { from { top: -20%; } to { top: 108%; } }
.rec::after { content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(transparent 40%, rgba(1,4,7,0.94)); }
.rec-cap { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; }
.rec-cap span { font-family: var(--mono2); font-size: 9px; letter-spacing: 0.26em; color: var(--cyan); }
.rec-cap h4 { font-family: var(--disp); font-weight: 500;
  font-size: clamp(19px, 2vw, 25px); margin: 8px 0 5px; }
.rec-cap p { font-family: var(--mono2); font-size: 10px; letter-spacing: 0.08em;
  color: var(--ink-2); line-height: 1.6; }
.rec-brand { display: flex; flex-direction: column; align-items: flex-start;
  padding: 26px; background: #f1efea; }
.rec-brand::after { display: none; }
.rec-logo { width: min(62%, 200px); height: auto; margin: auto 0; }
.rec-brand .rec-cap { position: static; margin-top: 14px; }
.rec-brand .rec-cap span { color: #6b7c8a; }
.rec-brand .rec-cap h4 { color: #16283b; }
.rec-brand .rec-cap p { color: #4a5a68; }

/* ---------- deck 05: fleet ---------- */
.va-fleet { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line); }
.va-fleet li { display: flex; align-items: center; justify-content: center;
  min-height: 128px; padding: 24px 18px; background: var(--ground); }
.va-fleet img { max-width: 76%; max-height: 38px; width: auto; height: auto;
  object-fit: contain; opacity: 0.45; transition: opacity 0.3s ease; }
.va-fleet li.vt img { max-height: 56px; }
.va-fleet li:hover img { opacity: 1; }
/* "and more, under NDA" tile — spans the full final row, no empty cells */
.va-fleet li.fleet-more { grid-column: 1 / -1; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; gap: 12px;
  min-height: 0; padding: 30px clamp(22px, 3vw, 38px); text-align: left; }
.va-fleet li.fleet-more::after { display: none; }
.fm-tag { display: flex; align-items: center; gap: 10px; font-family: var(--mono2);
  font-size: 10px; letter-spacing: 0.28em; color: var(--cyan); }
.fm-tag .va-dot { width: 6px; height: 6px; }
.fleet-more p { font-family: var(--disp); font-size: clamp(15px, 1.7vw, 20px);
  line-height: 1.55; color: var(--ink-2); max-width: 68ch; margin: 0; }
.fleet-more p b { color: var(--ink); font-weight: 500; }

/* ---------- deck 06: classification ---------- */
.va-nots { list-style: none; margin-bottom: 46px; }
.va-nots li {
  font-family: var(--disp); font-weight: 300;
  font-size: clamp(36px, 6vw, 84px); line-height: 1.08; letter-spacing: 0.02em;
  color: var(--ink-2);
}
.va-nots s { text-decoration-color: rgba(53,224,255,0.7); text-decoration-thickness: 3px; }
.va-nots li.is { color: var(--ink); margin-top: 12px; }
.va-nots li.is em { font-style: normal; color: var(--cyan);
  text-shadow: 0 0 50px rgba(53,224,255,0.35); }
.va-wins { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 40px;
  padding-top: 28px; border-top: 1px dashed var(--line); }
.va-wins p { font-family: var(--mono2); font-size: 11.5px; letter-spacing: 0.06em;
  line-height: 1.75; color: var(--ink-2); display: flex; gap: 12px; }
.va-wins i { color: var(--cyan); font-style: normal; }

/* ---------- transmission (finale) ---------- */
.va-transmit {
  padding: 110px 6vw 120px;
  text-align: center;
}
.va-transmit::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 55% at 50% 6%, rgba(53,224,255,0.16), transparent 60%); }
.va-transmit > * { position: relative; }
.va-transmit .va-coord { justify-content: center; }
.va-transmit .va-title { font-weight: 300; font-size: clamp(44px, 7.6vw, 112px); }
.va-seal {
  display: inline-block; text-decoration: none;
  font-family: var(--mono2); font-size: 13px; letter-spacing: 0.22em;
  color: #02141f; background: var(--cyan);
  padding: 22px 46px; border: 1px solid var(--cyan);
  box-shadow: 0 0 46px rgba(53,224,255,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.va-seal:hover { transform: translateY(-3px); background: var(--cyan-2);
  box-shadow: 0 0 70px rgba(53,224,255,0.65); }
.va-seal:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.va-colophon { margin-top: 48px; font-family: var(--mono2); font-size: 9.5px;
  letter-spacing: 0.26em; color: rgba(232,244,248,0.4); }

/* ---------- variant jump chip ---------- */
.variant-jump {
  position: fixed; bottom: 20px; right: 20px; z-index: 95;
  font-family: var(--mono2, 'IBM Plex Mono', monospace); font-size: 10px; letter-spacing: 0.18em;
  color: #8bedff; text-decoration: none;
  background: rgba(2, 10, 16, 0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(53,224,255,0.4); border-radius: 30px; padding: 10px 16px;
  transition: all 0.2s ease;
}
.variant-jump:hover { color: #02141f; background: #35e0ff; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .va-engine { grid-template-columns: 90px 1fr; }
  .ve-read { grid-column: 2; text-align: left; border-left: 0; padding-left: 0;
    border-top: 1px dashed var(--line); padding-top: 12px; }
  .va-proof { grid-template-columns: repeat(6, 1fr); }
  .vp-cell { grid-column: span 3; }
  .vp-cell.vp-big { grid-column: span 3; }
  .vp-cell:last-child { grid-column: span 6; }
  .va-records { grid-template-columns: repeat(2, 1fr); }
  .va-fleet { grid-template-columns: repeat(2, 1fr); }
  .station { width: calc(100% - 8vw); }
  .ve-more { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 620px) {
  .va-forces { grid-template-columns: 1fr; }
  .va-engine { grid-template-columns: 1fr; gap: 16px; }
  .ve-read { grid-column: 1; }
  .ve-more { grid-column: 1; }
  .va-proof { grid-template-columns: 1fr 1fr; }
  .vp-cell, .vp-cell.vp-big { grid-column: span 2; }
  .va-records { grid-template-columns: 1fr; }
  .va-fleet { grid-template-columns: repeat(2, 1fr); }
  .va-fleet li { min-height: 104px; }
  .va-wins { grid-template-columns: 1fr; }
  .va-debrief { padding-top: 70px; }
  .lrow { grid-template-columns: 70px 1fr; }
  .l-stat { grid-column: 2; text-align: left; }
  .l-detail { grid-template-columns: 1fr; gap: 16px; }
  .lrow.open .l-detail { max-height: 420px; }
  .va-footer { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .va-dot, .va-cursor { animation: none; }
  .rec:hover::before { animation: none; opacity: 0; }
  .gauge i { transition: none; } .reveal.in .gauge i { width: 100%; }
  .ve-more, .l-detail { transition: none; }
  .sonar-ping { display: none; }
  #cur-dot, #cur-ring, #ledger-float, #gold-dust, .spotlight { display: none !important; }
  .approach-cue span { animation: none; }
  .va-transmit .treasure-scene { transform: none; transition: none; }
  .sonar-scope::before, .sonar-scope .blip, .fleet-radar::before,
  .va-fleet li::after, .treasure-glow { animation: none; }
  .cp-line { stroke-dashoffset: 0; transition: none; }
  .cp-dot { opacity: 1; transition: none; }
  .reveal.in .floodlight { animation: none; opacity: 0; }
}

/* ============ Liquid-glass floating nav — real see-through glass ============ */
.glass-nav {
  position: fixed; top: 14px; left: 50%; z-index: 200;
  display: flex; align-items: center; gap: 0 30px;
  padding: 5px 5px 5px 22px; border-radius: 999px;
  /* very light fill so the scene reads through; the RIM defines the glass */
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px) saturate(150%) brightness(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(150%) brightness(1.25);
  border: 1px solid rgba(255,255,255,0.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -8px 16px rgba(255,255,255,0.04),
    0 3px 14px rgba(0,0,0,0.16);
  font-family: 'IBM Plex Mono', monospace; white-space: nowrap;
  transform: translate(-50%, -180%); opacity: 0; pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
}
.glass-nav.show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.gn-brand { color: #f2f8fb; text-decoration: none; font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em; white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.gn-brand b { color: #35e0ff; font-weight: 700; }
.gn-links { display: flex; gap: 22px; white-space: nowrap; }
.gn-links a { color: rgba(245,250,252,0.9); text-decoration: none;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5); transition: color 0.2s ease; }
.gn-links a:hover { color: #35e0ff; }
.gn-cta { color: #02141f; background: rgba(53,224,255,0.92); text-decoration: none; white-space: nowrap;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  padding: 9px 18px; border-radius: 999px; backdrop-filter: blur(4px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.gn-cta:hover { transform: translateY(-1px); background: #8bedff;
  box-shadow: 0 0 24px rgba(53,224,255,0.55); }
@media (max-width: 720px) {
  /* stay a centered, auto-width pill (floats; not a full-width slab) */
  .glass-nav { gap: 0 16px; padding: 5px 5px 5px 18px; }
  .gn-links { display: none; }
  .gn-brand { font-size: 11px; letter-spacing: 0.13em; }
  .gn-cta { font-size: 9.5px; padding: 9px 15px; letter-spacing: 0.07em; }
}
@media (prefers-reduced-motion: reduce) {
  .glass-nav { transition: opacity 0.3s ease; }
}

/* ============ Signals / testimonials marquee ============ */
.signals { max-width: none; width: 100vw; overflow: hidden;
  padding: 30px 0 46px; margin: 10px auto 0; position: relative; z-index: 1; }
.sig-label { display: flex; align-items: center; gap: 10px; justify-content: center;
  font-family: var(--mono2); font-size: 10px; letter-spacing: 0.3em; color: var(--cyan);
  margin-bottom: 26px; }
.sig-label .va-dot { width: 6px; height: 6px; }
.sig-marquee { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.sig-track { display: flex; gap: 20px; width: max-content;
  animation: sigScroll 60s linear infinite; will-change: transform; }
.signals:hover .sig-track { animation-play-state: paused; }
@keyframes sigScroll { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.sig-card { flex: 0 0 clamp(280px, 34vw, 420px); margin: 0;
  border: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(4px);
  padding: 26px 26px 22px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; }
.sig-card blockquote { margin: 0; font-family: var(--disp); font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.5; color: var(--ink); }
.sig-card figcaption { display: flex; flex-direction: column; gap: 3px;
  border-top: 1px dashed var(--line); padding-top: 14px; }
.sig-card figcaption b { font-family: var(--disp); font-weight: 600; font-size: 15px; color: var(--ink); }
.sig-card figcaption span { font-family: var(--mono2); font-size: 9px; letter-spacing: 0.22em; color: var(--cyan); }
@media (prefers-reduced-motion: reduce) {
  .sig-track { animation: none; transform: none; flex-wrap: nowrap; overflow-x: auto; }
}

/* ============ Contact modal (glass) ============ */
.cm-overlay { position: fixed; inset: 0; z-index: 300; display: flex;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(1,4,7,0.66); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.cm-overlay.open { opacity: 1; pointer-events: auto; }
.cm-panel { position: relative; width: min(620px, 100%); max-height: 92vh; overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.16); border-radius: 18px;
  background: linear-gradient(180deg, rgba(10,20,28,0.92), rgba(3,8,12,0.96));
  box-shadow: 0 30px 90px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.14);
  padding: clamp(26px, 4vw, 44px); transform: translateY(16px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); font-family: var(--disp); }
.cm-overlay.open .cm-panel { transform: none; }
.cm-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px;
  border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--ink-2);
  font-size: 13px; cursor: pointer; transition: all 0.2s ease; }
.cm-close:hover { color: var(--ink); border-color: var(--line-2); background: rgba(53,224,255,0.08); }
.cm-coord { display: flex; align-items: center; gap: 10px; font-family: var(--mono2);
  font-size: 10px; letter-spacing: 0.28em; color: var(--cyan); margin: 0 0 14px; }
.cm-coord .va-dot { width: 6px; height: 6px; }
.cm-title { font-family: var(--disp); font-weight: 300; font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.08; color: var(--ink); margin: 0 0 26px; }
.cm-title em { font-style: normal; color: var(--cyan); }
.cm-form { display: flex; flex-direction: column; gap: 16px; }
.cm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cm-form label { display: flex; flex-direction: column; gap: 7px;
  font-family: var(--mono2); font-size: 9px; letter-spacing: 0.2em; color: var(--ink-2); }
.cm-form input, .cm-form select, .cm-form textarea {
  font-family: var(--disp); font-size: 15px; color: var(--ink);
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 8px;
  padding: 11px 13px; outline: none; transition: border-color 0.2s ease, background 0.2s ease; }
.cm-form input:focus, .cm-form select:focus, .cm-form textarea:focus {
  border-color: var(--cyan); background: rgba(53,224,255,0.06); }
.cm-form select option { background: #0a141c; color: var(--ink); }
.cm-form textarea { resize: vertical; min-height: 68px; }
.cm-full { grid-column: 1 / -1; }
.cm-hp { position: absolute; left: -9999px; }
.cm-submit { margin-top: 6px; align-self: flex-start; cursor: pointer;
  font-family: var(--mono2); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: #02141f; background: var(--cyan); border: 0; border-radius: 999px; padding: 13px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.cm-submit:hover { transform: translateY(-1px); background: var(--cyan-2); box-shadow: 0 0 26px rgba(53,224,255,0.5); }
.cm-note { font-family: var(--mono2); font-size: 10px; letter-spacing: 0.06em; color: var(--ink-2); margin: 4px 0 0; }
.cm-note a { color: var(--cyan); }
.cm-done { display: none; text-align: left; }
.cm-panel.sent .cm-form { display: none; }
.cm-panel.sent .cm-done { display: block; }
@media (max-width: 560px) { .cm-row { grid-template-columns: 1fr; } }

/* ---- intl-tel-input dark theme to match the glass form ---- */
.cm-form .iti { width: 100%; }
.cm-form .iti__tel-input, .cm-phone-l .iti input[type=tel] {
  width: 100%; font-family: var(--disp); font-size: 15px; color: var(--ink);
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 8px;
  padding: 11px 13px; outline: none; }
.cm-form .iti__tel-input:focus { border-color: var(--cyan); background: rgba(53,224,255,0.06); }
.iti__country-list, .iti__dropdown-content {
  background: #0a141c; border: 1px solid var(--line-2); color: var(--ink);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.iti__country { color: var(--ink); }
.iti__country.iti__highlight, .iti__country:hover { background: rgba(53,224,255,0.12); }
.iti__dial-code { color: var(--ink-2); }
.iti__search-input { background: rgba(255,255,255,0.05); color: var(--ink);
  border-bottom: 1px solid var(--line); }
.iti--separate-dial-code .iti__selected-dial-code { color: var(--ink); }
.cm-row-single { grid-template-columns: 1fr; }

/* ============ Lead magnet band (free audit) ============ */
.lead-magnet { max-width: 1280px; width: calc(100% - 12vw); margin: 34px auto;
  border: 1px solid var(--line-2); border-radius: 16px; position: relative; z-index: 1;
  background: radial-gradient(90% 140% at 100% 0%, rgba(53,224,255,0.12), transparent 55%), var(--panel);
  padding: clamp(30px, 5vw, 56px); overflow: hidden; }
.lm-inner { max-width: 720px; }
.lm-tag { display: flex; align-items: center; gap: 10px; font-family: var(--mono2);
  font-size: 10px; letter-spacing: 0.28em; color: var(--cyan); }
.lm-tag .va-dot { width: 6px; height: 6px; }
.lm-head { font-family: var(--disp); font-weight: 300; font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.04; margin: 16px 0 14px; color: var(--ink); }
.lm-head em { font-style: normal; color: var(--cyan); }
.lm-copy { font-family: var(--disp); font-size: clamp(15px, 1.6vw, 18px); line-height: 1.55;
  color: var(--ink-2); max-width: 60ch; margin: 0 0 24px; }
.lm-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.lm-form input[type=email] { flex: 1 1 260px; font-family: var(--disp); font-size: 15px; color: var(--ink);
  background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: 999px;
  padding: 13px 20px; outline: none; transition: border-color 0.2s ease, background 0.2s ease; }
.lm-form input[type=email]:focus { border-color: var(--cyan); background: rgba(53,224,255,0.06); }
.lm-form button { cursor: pointer; font-family: var(--mono2); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600; color: #02141f; background: var(--cyan);
  border: 0; border-radius: 999px; padding: 14px 26px; white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.lm-form button:hover { transform: translateY(-1px); background: var(--cyan-2); box-shadow: 0 0 24px rgba(53,224,255,0.5); }
.lm-done { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.lm-done p { display: flex; align-items: center; gap: 10px; font-family: var(--mono2);
  font-size: 12px; letter-spacing: 0.06em; color: var(--ink); margin: 0; }
.lm-open { font-family: var(--mono2); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: #02141f; background: var(--cyan); text-decoration: none;
  padding: 13px 24px; border-radius: 999px; transition: 0.2s; }
.lm-open:hover { background: var(--cyan-2); box-shadow: 0 0 24px rgba(53,224,255,0.5); }
.lm-note { font-family: var(--mono2); font-size: 10px; letter-spacing: 0.08em; color: var(--ink-2); margin: 16px 0 0; }
@media (max-width: 560px) { .lm-form button, .lm-form input[type=email] { flex: 1 1 100%; } }
