:root {
  --ink: #060e16;
  --ink-2: #0a1520;
  --ink-3: #0d1b27;
  --cyan: #22d3ee;
  --cyan-deep: #1ab2d6;
  --cyan-edge: #7df0ff;
  --red: #ff3b5c;
  --gold: #f5b700;
  --slate: #223652;
  --slate-edge: #4e78a0;
  --dim: #809cb2;
  --paper: #e8f4f7;
  --muted: #9bb4c4;
  --line: rgba(125, 240, 255, 0.12);
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 500px at 50% 18%, rgba(30, 120, 150, 0.16), transparent 60%),
    linear-gradient(180deg, #0d1b27 0%, #0a1520 42%, #060e16 100%);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(60, 140, 170, 0.035) 1px, transparent 1px);
  background-size: 100% 72px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.page-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.55);
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(3.1rem, 7vw, 6.1rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h3 { font-size: 1.55rem; }

p { margin: 0 0 1em; color: var(--muted); }

.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

.kicker.gold { color: var(--gold); }
.kicker.red { color: var(--red); }

.lede {
  font-size: 1.15rem;
  max-width: 36rem;
  color: #c5d6e0;
}

/* Nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 6vw;
  background: rgba(6, 14, 22, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-name {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mark {
  width: 14px;
  height: 22px;
  position: relative;
  display: inline-block;
}

.mark::before,
.mark::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
}

.mark::before {
  width: 2px;
  height: 100%;
}

.mark::after {
  width: 12px;
  height: 2px;
  top: 46%;
  background: var(--gold);
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--dim);
  font-size: 0.92rem;
}

.nav-links a:hover { color: var(--paper); }

.nav-links a[aria-current="page"] { color: var(--paper); }

.nav-drop {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-drop-link {
  text-decoration: none;
  color: var(--dim);
  font-size: 0.92rem;
}

.nav-drop:hover .nav-drop-link,
.nav-drop:focus-within .nav-drop-link,
.nav-drop-link[aria-current="page"] {
  color: var(--paper);
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 9.5rem;
  padding: 0.45rem;
  display: grid;
  gap: 0.15rem;
  background: #0c1822;
  border: 1px solid rgba(125, 240, 255, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 30;
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-menu a {
  display: block;
  padding: 0.55rem 0.7rem;
  color: var(--dim);
  text-decoration: none;
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav-drop-menu a:hover,
.nav-drop-menu a[aria-current="page"] {
  color: var(--paper);
  background: rgba(34, 211, 238, 0.08);
}

/* WIP pages: keep in markup, hide until ready (remove `hidden` to ship) */
.nav-links a[hidden] { display: none !important; }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0.85rem 1.25rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--paper);
}

.btn-sm { padding: 0.55rem 0.9rem; }
.wide { width: 100%; }

.btn-cyan {
  background: rgba(34, 211, 238, 0.12);
  border-color: var(--cyan);
  color: var(--cyan-edge);
}

.btn-cyan:hover { background: rgba(34, 211, 238, 0.22); }

.btn-gold {
  background: rgba(245, 183, 0, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold:hover { background: rgba(245, 183, 0, 0.22); }

.btn-ghost {
  border-color: var(--line);
  color: var(--dim);
}

.btn-ghost:hover { color: var(--paper); border-color: var(--dim); }

/* Hero */

.hero {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 42rem;
  padding: 3.2rem 6vw 1.2rem;
}

.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
  padding: 5rem 6vw 5.5rem;
}

.hero-split h1 {
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  margin-bottom: 1.1rem;
}

.hero-split .lede {
  max-width: 34rem;
}

.hero-note {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-risk,
.plan-risk {
  margin-top: 1rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #6f8794;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.walk {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  text-decoration: none;
  background: #0e1c28;
  border: 1px solid rgba(125, 240, 255, 0.16);
  border-radius: 6px;
  overflow: hidden;
}

.walk-bar {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.walk-bar b {
  color: var(--cyan);
  font-weight: 500;
}

.walk-split {
  position: absolute;
  inset: 36px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.walk-half {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 31px,
    rgba(143, 166, 177, 0.06) 31px 32px
  );
}

.walk-half:last-child { border-right: 0; }

.walk-half span {
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.walk-play {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.walk-play i {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  background: rgba(6, 14, 22, 0.8);
}

.walk-play i::after {
  content: "";
  border-left: 18px solid var(--cyan);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 5px;
}

.walk-play span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
}

/* Chart glass */

.glass {
  margin: 0;
  background: #071018;
  border: 1px solid rgba(125, 240, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.7),
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 90px rgba(34, 211, 238, 0.08);
}

.glass-chrome {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px solid var(--line);
}

.glass-live {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--cyan);
}

.glass-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
}

.glass > canvas {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}

.glass-plot {
  position: relative;
  height: 520px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #15293a 0%, #0d1b27 38%, #08141c 100%);
}

.horizon {
  position: absolute;
  left: 0; right: 0;
  top: 38%;
  height: 90px;
  background: radial-gradient(ellipse at center, rgba(30, 120, 150, 0.22), transparent 70%);
}

.gridlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(60, 140, 170, 0.07) 0 1px,
    transparent 1px 56px
  );
}

.bricks {
  position: absolute;
  inset: 22px 58px 72px 16px;
  display: flex;
  align-items: stretch;
  gap: 4px;
}

.brick {
  flex: 1;
  position: relative;
  min-width: 0;
  height: 100%;
}

.brick i,
.brick b {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.brick i {
  width: 2px;
}

.brick b {
  width: 100%;
  min-height: 4px;
}

.brick.up i { background: var(--cyan-edge); }
.brick.up b { background: #1ab2d6; border: 1px solid var(--cyan-edge); }
.brick.down i { background: var(--slate-edge); }
.brick.down b { background: #223652; border: 1px solid var(--slate-edge); }

.axis {
  position: absolute;
  top: 18px;
  right: 10px;
  bottom: 72px;
  width: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.58rem;
  color: #5d7688;
  text-align: right;
  pointer-events: none;
}

.pad {
  position: absolute;
  left: 28%;
  right: 52px;
  height: 78px;
  top: 41%;
  pointer-events: none;
}

.pad-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245, 183, 0, 0.12) 28%, rgba(34, 211, 238, 0.16));
  border-top: 1px solid rgba(245, 183, 0, 0.28);
  border-bottom: 1px solid rgba(245, 183, 0, 0.28);
}

.pad[data-side="long"] .pad-body {
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.08) 28%, rgba(34, 211, 238, 0.22));
  border-color: rgba(34, 211, 238, 0.4);
}

.pad[data-side="short"] .pad-body {
  background: linear-gradient(90deg, transparent, rgba(255, 59, 92, 0.1) 28%, rgba(255, 59, 92, 0.22));
  border-color: rgba(255, 59, 92, 0.4);
}

.pad-edge {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 3px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(245, 183, 0, 0.55);
}

.pad[data-side="long"] .pad-edge { background: var(--cyan); box-shadow: 0 0 16px rgba(34, 211, 238, 0.55); }
.pad[data-side="short"] .pad-edge { background: var(--red); box-shadow: 0 0 16px rgba(255, 59, 92, 0.45); }

.pad-price {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--paper);
  background: rgba(6, 14, 22, 0.75);
  padding: 0.15rem 0.4rem;
  border: 1px solid var(--line);
}

.reticle {
  position: absolute;
  right: -1px;
  top: -8px;
  width: 14px;
  height: calc(100% + 16px);
  border: 1px solid rgba(245, 183, 0, 0.55);
  border-left: 0;
}

.charge {
  position: absolute;
  right: 18px;
  top: -16px;
  display: flex;
  gap: 4px;
}

.charge s {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  background: transparent;
}

.charge s.on { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.charge.armed s { border-color: var(--cyan); }
.charge.armed s.on { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

.strike {
  position: absolute;
  top: 0; bottom: 110px;
  right: 28%;
  width: 28px;
}

.strike .beam {
  position: absolute;
  inset: 0 11px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), var(--cyan) 20%, transparent 100%);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.65);
  animation: beam 0.7s ease-out;
}

.strike .cross {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
}

.strike .cross::before,
.strike .cross::after {
  content: "";
  position: absolute;
  background: #fff;
}

.strike .cross::before { left: 50%; top: -6px; bottom: -6px; width: 1px; }
.strike .cross::after { top: 50%; left: -6px; right: -6px; height: 1px; }

.strike .arrow {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 0; height: 0;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid var(--cyan-edge);
}

.badge {
  position: absolute;
  top: 12px;
  left: 22px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #041018;
  background: var(--cyan-edge);
  padding: 0.2rem 0.45rem;
  white-space: nowrap;
}

.hud {
  position: absolute;
  left: 16px;
  bottom: 118px;
  width: min(248px, 42%);
  padding: 0.75rem 0.85rem 0.6rem;
  background: rgba(4, 12, 18, 0.88);
  border: 1px solid rgba(125, 240, 255, 0.2);
  border-left: 3px solid var(--dim);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.hud.lock-long { border-left-color: var(--cyan); }
.hud.lock-short { border-left-color: var(--red); }
.hud.wait { border-left-color: var(--gold); }

.hud-verdict {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.hud-word { color: var(--dim); font-size: 0.82rem; }
.hud.lock-long .hud-word { color: var(--cyan-edge); }
.hud.lock-short .hud-word { color: var(--red); }
.hud.wait .hud-word { color: var(--gold); }

.hud-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  color: var(--dim);
  padding: 0.18rem 0;
}

.hud-row::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--dim);
}

.hud-row b { font-weight: 400; color: #6d8494; flex: 0 0 5.6rem; }
.hud-row span { margin-left: auto; }
.hud-row.lit span { color: var(--paper); }
.hud-row.long span { color: var(--cyan); }
.hud-row.short span { color: var(--red); }
.hud-row.gold span { color: var(--gold); }
.hud-row.long::before { background: var(--cyan); }
.hud-row.short::before { background: var(--red); }
.hud-row.gold::before { background: var(--gold); }

.hud-strip {
  display: flex;
  justify-content: space-between;
  margin-top: 0.45rem;
  padding-top: 0.4rem;
  border-top: 1px solid var(--line);
  color: var(--gold);
}

.tape {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 96px;
  display: grid;
  grid-template-rows: 1fr 18px;
  gap: 4px;
}

.tape-lane {
  display: flex;
  align-items: stretch;
  height: 100%;
  background:
    linear-gradient(rgba(245, 183, 0, 0.22), rgba(245, 183, 0, 0.22)) 0 25% / 100% 1px no-repeat,
    linear-gradient(rgba(128, 156, 178, 0.8), rgba(128, 156, 178, 0.8)) 0 50% / 100% 1.2px no-repeat,
    linear-gradient(rgba(245, 183, 0, 0.22), rgba(245, 183, 0, 0.22)) 0 75% / 100% 1px no-repeat,
    rgba(6, 14, 22, 0.52);
}

.tape-col {
  flex: 1;
  position: relative;
}

.tape-col b {
  position: absolute;
  left: 18%;
  right: 18%;
}

.tape-col.up b {
  background: var(--cyan);
  bottom: 50%;
}

.tape-col.dn b {
  background: var(--red);
  top: 50%;
}

.tape-col.hollow.up b {
  background: transparent;
  border: 1px solid var(--cyan);
}

.tape-col.hollow.dn b {
  background: transparent;
  border: 1px solid var(--red);
}

.pressure {
  display: flex;
  height: 18px;
}

.pressure span {
  flex: 1;
  height: 100%;
}

.glass figcaption {
  padding: 0.7rem 1rem 0.85rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--dim);
  border-top: 1px solid var(--line);
}

/* Breaker / Recall toggle */

.tool-toggle {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(6, 14, 22, 0.55);
}

.tool-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
}

.tool-toggle button.is-on {
  color: var(--ink);
  background: var(--cyan);
}

.tool-toggle button:hover:not(.is-on) {
  color: var(--paper);
}

.gallery-tabs {
  margin: -1.2rem 0 1.6rem;
}

/* Gallery panes: author `display:grid` beats bare [hidden] in some browsers */
.shots[data-gallery-pane] {
  display: none;
}

.shots[data-gallery-pane].is-on {
  display: grid;
}

.shots-recall.is-on {
  grid-template-columns: repeat(3, 1fr);
}

.tool-pane {
  display: none;
  background: #071018;
}

.tool-pane.is-on {
  display: block;
}

.tool-pane canvas {
  display: block;
  width: 100%;
  height: auto;
}

.recall-stage {
  position: relative;
  min-height: 500px;
  padding: 1rem 1rem 0.85rem;
  background:
    radial-gradient(ellipse at 70% 35%, rgba(34, 211, 238, 0.1), transparent 50%),
    linear-gradient(180deg, #0d1b27 0%, #071018 100%);
  overflow: hidden;
}

.recall-stage.is-short {
  background:
    radial-gradient(ellipse at 55% 40%, rgba(255, 59, 92, 0.12), transparent 48%),
    linear-gradient(180deg, #0d1b27 0%, #071018 100%);
}

.recall-symbol {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font: 52px var(--mono);
  letter-spacing: 0.08em;
  color: rgba(232, 244, 247, 0.05);
  pointer-events: none;
}

.recall-hub {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: min(340px, 88%);
  margin: 0;
  padding: 0.65rem 0.75rem 0.55rem;
  background: rgba(4, 12, 18, 0.88);
  border: 1px solid rgba(125, 240, 255, 0.22);
}

.recall-stage.is-short .recall-hub {
  border-color: rgba(255, 59, 92, 0.35);
  border-left-color: var(--red);
}

.recall-hub-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.45rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.recall-hub-top strong {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cyan-edge);
}

.recall-stage.is-short .recall-hub-top strong {
  color: var(--red);
}

.recall-hub-top span { color: var(--dim); }

.recall-beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.recall-beats span {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.35rem 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dim);
}

.recall-beats .is-fire {
  color: #041018;
  background: var(--cyan);
  border-color: var(--cyan-edge);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}

.recall-stage.is-short .recall-beats .is-fire {
  background: var(--red);
  border-color: #ff7a90;
  color: #14060a;
  box-shadow: 0 0 18px rgba(255, 59, 92, 0.35);
}

.recall-tape {
  display: block;
  width: 100%;
  height: 210px;
  margin-top: 84px;
}

.recall-stage.is-short .tape-long,
.recall-stage:not(.is-short) .tape-short { display: none !important; }

.recall-fill {
  fill: url(#recallGlow);
}

.recall-line {
  fill: none;
  stroke: var(--cyan-edge);
  stroke-width: 2.2;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.55));
}

.recall-stage.is-short .recall-line {
  stroke: var(--red);
  filter: drop-shadow(0 0 6px rgba(255, 59, 92, 0.45));
}

.recall-tick {
  stroke: rgba(34, 211, 238, 0.5);
  stroke-width: 1.6;
}

.recall-stage.is-short .recall-tick {
  stroke: rgba(255, 59, 92, 0.55);
}

.recall-caret { fill: var(--cyan-edge); }
.recall-stage.is-short .recall-caret { fill: var(--red); }

.recall-badge {
  fill: rgba(6, 14, 22, 0.94);
  stroke: var(--cyan-edge);
}

.recall-stage.is-short .recall-badge { stroke: var(--red); }

.recall-badge-txt {
  fill: var(--cyan-edge);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.6px;
  font-weight: 500;
}

.recall-stage.is-short .recall-badge-txt { fill: var(--red); }

.recall-pip {
  fill: none;
  stroke: var(--cyan-edge);
}

.recall-pip.on { fill: var(--cyan-edge); }

.recall-stage.is-short .recall-pip { stroke: var(--red); }
.recall-stage.is-short .recall-pip.on { fill: var(--red); }

.recall-pnl-box {
  fill: rgba(6, 14, 22, 0.94);
  stroke: var(--cyan);
}

.recall-stage.is-short .recall-pnl-box { stroke: var(--red); }

.recall-pnl {
  fill: var(--cyan-edge);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
}

.recall-stage.is-short .recall-pnl { fill: #ff8aa0; }

.recall-atm-win { fill: rgba(28, 118, 64, 0.52); }
.recall-atm-lose { fill: rgba(148, 28, 48, 0.46); }
.recall-atm-line {
  stroke: rgba(232, 244, 247, 0.28);
  stroke-width: 1;
}
.recall-atm-lab {
  fill: rgba(232, 244, 247, 0.62);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.recall-marks {
  fill: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.recall-arc {
  position: relative;
  margin-top: 0.4rem;
  border-top: 1px solid var(--line);
  padding-top: 0.35rem;
}

.recall-arc svg {
  display: block;
  width: 100%;
  height: 96px;
}

.recall-arc .arc-wall {
  fill: rgba(34, 211, 238, 0.12);
}

.recall-arc .arc-wall-line {
  stroke: var(--cyan);
  stroke-width: 1.6;
}

.recall-arc .arc-rail {
  stroke: rgba(128, 156, 178, 0.45);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

.recall-arc .arc-wall-bars rect,
.recall-arc .arc-bar {
  fill: rgba(34, 211, 238, 0.38);
}

.recall-stage.is-short .arc-wall {
  fill: rgba(255, 59, 92, 0.12);
}

.recall-stage.is-short .arc-wall-line,
.recall-stage.is-short .arc-wall-bars rect,
.recall-stage.is-short .arc-bar {
  stroke: var(--red);
  fill: rgba(255, 59, 92, 0.38);
}

.recall-stage.is-short .arc-wall-line { fill: none; }

.recall-arc .arc-wave {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

.recall-arc .arc-dot {
  fill: var(--cyan);
  stroke: #041018;
  stroke-width: 1.2;
}

.recall-stage.is-short .arc-dot {
  fill: var(--red);
}

.recall-arc .arc-diamond {
  fill: none;
  stroke: var(--cyan-edge);
  stroke-width: 1.6;
}

.recall-stage.is-short .arc-diamond {
  stroke: var(--red);
}

.recall-stage.is-short .recall-arc .arc-wave {
  stroke: var(--red);
}

.recall-arc .arc-node {
  fill: var(--cyan-edge);
  stroke: rgba(6, 14, 22, 0.8);
  stroke-width: 1;
}

.recall-arc .arc-peak {
  fill: var(--red);
}

.recall-arc .arc-enter {
  fill: var(--cyan-edge);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.recall-stage.is-short .arc-enter {
  fill: var(--red);
}

.recall-arc > span,
.recall-arc .arc-wall-label {
  position: absolute;
  right: 0.2rem;
  top: 0.45rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.recall-arc .arc-svg-short .arc-wall {
  fill: rgba(255, 59, 92, 0.14);
}

.recall-arc .arc-svg-short .arc-wall-line {
  stroke: var(--red);
}

.recall-arc .arc-svg-short .arc-wall-bars rect {
  fill: rgba(255, 59, 92, 0.4);
}

.recall-arc .arc-svg-short .arc-wave {
  stroke: var(--red);
}

.recall-arc .arc-svg-short .arc-node {
  fill: #ff8aa0;
}

.recall-arc .arc-svg-short .arc-enter {
  fill: var(--red);
}

/* Sections */

.band,
.cinema,
.gallery,
.pain,
.desk,
.auto,
.control,
.start,
.membership,
.faq,
.close,
.begin {
  position: relative;
  z-index: 1;
  padding: 5.5rem 6vw;
  border-top: 1px solid rgba(34, 54, 66, 0.45);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.8rem;
}

.section-head a {
  color: var(--cyan);
  text-decoration: none;
}

.trio,
.shots,
.plans,
.seats {
  display: grid;
  gap: 1.2rem;
}

.trio { grid-template-columns: repeat(3, 1fr); }

.seats { grid-template-columns: 1fr 1fr; }

.seat {
  padding: 1.6rem 1.5rem 1.5rem;
  background: #0e1c28;
  border: 1px solid rgba(125, 240, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.seat h3 {
  margin: 0.15rem 0 0.35rem;
}

.seat p { margin-bottom: 0.4rem; }

.seat ul {
  margin: 0.4rem 0 1.1rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.seat li {
  position: relative;
  padding: 0.28rem 0 0.28rem 1rem;
  color: var(--muted);
}

.seat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 7px;
  height: 1px;
  background: var(--cyan);
}

.seat-clock {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.2rem;
}

.seat-link {
  text-decoration: none;
  color: inherit;
}

.seat-link:hover {
  border-color: rgba(34, 211, 238, 0.45);
}

.card,
.plan,
.shot-frame,
.note {
  background: #0e1c28;
  border: 1px solid rgba(125, 240, 255, 0.14);
}

.card { padding: 1.5rem 1.4rem 1.7rem; border-top: 2px solid rgba(125, 240, 255, 0.2); }
.card:nth-child(1) { border-top-color: var(--gold); }
.card:nth-child(2) { border-top-color: var(--cyan); }
.card:nth-child(3) { border-top-color: var(--red); }

.chip {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chip.gold { color: var(--gold); }
.chip.cyan { color: var(--cyan); }
.chip.red { color: var(--red); }

.card p,
.plan-line { color: var(--muted); }

.cinema .glass {
  max-width: 1100px;
}

.cinema .trio {
  max-width: 1100px;
  margin-top: 1.75rem;
}

.cinema .recall-stage {
  min-height: 500px;
}

.cinema-lead {
  padding-top: 2.6rem;
}

.hero-head {
  max-width: 40rem;
  margin-bottom: 1.6rem;
}

.cinema-lead h1 {
  font-size: clamp(2.7rem, 5.5vw, 4.6rem);
}

.cinema-lead .lede {
  margin-bottom: 0;
}

.cinema-lead .hero-actions {
  margin-top: 1.2rem;
}

.cinema-lead .section-head {
  margin-top: 2.4rem;
  margin-bottom: 1.4rem;
}

/* Pain */

.pain .trio { margin-top: 2.4rem; }

.pain .card:nth-child(1) { border-top-color: var(--cyan); }
.pain .card:nth-child(2) { border-top-color: var(--gold); }
.pain .card:nth-child(3) { border-top-color: var(--red); }

.quote-card .quote {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--paper);
  margin: 0 0 0.75rem;
}

.turn {
  margin-top: 2.2rem;
  font-size: 1.12rem;
  max-width: 46rem;
  color: var(--muted);
}

.turn strong {
  color: var(--paper);
  font-weight: 500;
}

/* Two-speed desk */

.desk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.6rem;
}

.ws {
  background: #0e1c28;
  border: 1px solid rgba(125, 240, 255, 0.14);
  border-radius: 6px;
  overflow: hidden;
}

.ws .glass-chrome {
  border-bottom: 1px solid var(--line);
}

.ws-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 360px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #071018;
}

.ws-shot canvas {
  display: block;
  width: 100%;
  height: auto;
}

.ws-shot .recall-stage {
  min-height: 0;
  height: 100%;
  padding: 0.55rem 0.55rem 0;
}

.ws-shot .recall-symbol { font-size: 36px; }

.ws-body { padding: 1.35rem 1.4rem 1.45rem; }

.ws-body h3 { margin-bottom: 0.2rem; }

.ws-body > p:last-child { margin-bottom: 0; }

.ws-body a {
  color: var(--cyan);
  text-decoration: none;
}

.ws-body a:hover { color: var(--cyan-edge); }

.seq {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.7rem 0 0.85rem;
}

.seq span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dim);
}

.seq.gold-seq span.on { color: var(--gold); border-color: var(--gold); }
.seq.cyan-seq span.on { color: var(--cyan); border-color: var(--cyan); }

.auto-head {
  max-width: 44rem;
  margin-bottom: 2.2rem;
}

.auto-head h2 { font-size: clamp(2.6rem, 5.2vw, 4rem); }

.auto-head .lede {
  margin: 0.85rem 0 0.15rem;
  max-width: 38rem;
}

.auto .desk-grid {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.auto-frame {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.auto-live {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.1rem 1.2rem;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(34, 211, 238, 0.08), transparent 46%),
    linear-gradient(180deg, #0d1b27 0%, #071018 100%);
}

.auto-arm {
  display: block;
  width: 100%;
  margin: 0 0 1.05rem;
  padding: 0.72rem 0.8rem;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid var(--line);
  background: rgba(4, 12, 18, 0.55);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.auto-live.is-armed .auto-arm,
.auto-live.is-strike .auto-arm {
  color: var(--cyan-edge);
  border-color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.18);
}

.auto-live.is-strike .auto-arm {
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.32);
}

.auto-rows {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1rem;
}

.auto-rows > div {
  display: grid;
  grid-template-columns: 5.8rem 1fr;
  align-items: center;
  gap: 0.55rem;
}

.auto-rows dt {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.auto-rows dd {
  margin: 0;
  padding: 0.38rem 0.55rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
}

.auto-live.is-armed [data-auto-side],
.auto-live.is-strike [data-auto-side] {
  color: var(--gold);
  border-color: var(--gold);
}

.auto-live[data-auto="recall"].is-armed [data-auto-side],
.auto-live[data-auto="recall"].is-strike [data-auto-side] {
  color: var(--cyan-edge);
  border-color: var(--cyan);
}

.auto-opt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  padding: 0.7rem 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--dim);
}

.auto-opt i {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border: 1px solid var(--line);
  background: transparent;
}

.auto-opt.is-on {
  color: var(--paper);
}

.auto-opt.is-on i {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.45);
}

.auto-need {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0.7rem 0 0;
  border-top: 1px solid var(--line);
}

.auto-need li {
  position: relative;
  padding: 0.28rem 0 0.28rem 1.15rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--dim);
}

.auto-need li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border: 1px solid var(--line);
  background: transparent;
}

.auto-live.is-armed .auto-need li,
.auto-live.is-strike .auto-need li {
  color: var(--paper);
}

.auto-live.is-armed .auto-need li::before,
.auto-live.is-strike .auto-need li::before {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.45);
}

.auto-log {
  margin: auto 0 0;
  min-height: 2.6em;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--dim);
}

.auto-live.is-armed .auto-log { color: var(--cyan-edge); }

.auto-live.is-strike .auto-log { color: var(--gold); }

.ws-dl {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.65rem 0.85rem;
  margin: 0;
}

.ws-dl dt {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.ws-dl.cyan dt { color: var(--cyan); }

.ws-dl dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.desk-tag {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--paper);
  margin: 2.6rem 0 0;
}

.desk-tag em {
  color: var(--gold);
  font-style: normal;
}

.desk-tag b {
  color: var(--cyan);
  font-weight: 400;
}

/* Control */

.control {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.control-copy .lede { margin-bottom: 0; }

.control-row {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.control-rows { border-top: 1px solid var(--line); }

.control-row .k {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0;
}

.control-row strong {
  display: block;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 0.25rem;
}

.control-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Getting started */

.start-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
  counter-reset: start;
}

.step {
  padding: 1.5rem;
  background: #0e1c28;
  border: 1px solid rgba(125, 240, 255, 0.14);
  border-radius: 4px;
}

.step::before {
  counter-increment: start;
  content: "0" counter(start);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.step h3 { margin: 0.7rem 0 0.4rem; }

.step p { margin: 0; }

/* Video */

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1100px;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(34, 211, 238, 0.12), transparent 45%),
    linear-gradient(180deg, #0d1b27, #060e16);
  border: 1px solid rgba(125, 240, 255, 0.16);
  overflow: hidden;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: transparent;
  border: 0;
  color: var(--paper);
  cursor: default;
}

.play {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  position: relative;
  background: rgba(34, 211, 238, 0.08);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.15);
}

.play::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 24px;
  border-left: 20px solid var(--cyan-edge);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-meta {
  text-align: center;
}

.video-meta em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  display: block;
}

.video-meta small {
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* Gallery */

.shots { grid-template-columns: repeat(3, 1fr); }

.shot { margin: 0; }

.shot-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #071018;
}

.shot-frame::after {
  content: attr(data-label);
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 0.2rem 0.4rem;
  border: 1px solid var(--line);
  background: rgba(6, 14, 22, 0.7);
}

.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shots-recall .shot-frame img {
  object-fit: cover;
  object-position: center;
  background: #060e16;
}

.shot-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background:
    linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.05)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(125, 240, 255, 0.04) 18px 19px);
}

.shot-empty span {
  font-family: var(--mono);
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.strike-empty span { color: var(--red); }
.gold-empty span { color: var(--gold); }

.shot-empty small,
.shot figcaption {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--dim);
}

.shot figcaption { padding: 0.7rem 0.2rem 0; }

/* Steps */

.quiet { padding-top: 4.5rem; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.steps span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.steps p { margin-bottom: 0; }

/* Membership */

.membership .lede { margin-bottom: 0; }

.plans { grid-template-columns: 1fr 1fr; max-width: 920px; margin-top: 2.4rem; }

.plan {
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.plan.featured {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.12), 0 20px 60px rgba(0, 0, 0, 0.25);
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.07), transparent 40%),
    #0e1c28;
}

.plan-badge {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
}

.plan-kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.45rem;
}

.plan.featured .plan-kicker { color: var(--cyan); }

.plan-who {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.plan-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--paper);
  margin: 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.3rem 0 0.2rem;
  color: var(--paper);
}

.plan-price strong {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
}

.plan-price span,
.plan-equiv {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--dim);
}

.plan-equiv,
.plan-bill {
  margin: 0 0 0.85rem;
  color: var(--cyan);
}

.plan-bill {
  font-family: var(--mono);
  font-size: 0.75rem;
}

.plan-trial-note {
  max-width: 920px;
  margin: 1.2rem 0 0;
  color: var(--dim);
}

.plan-trial-note a {
  color: var(--cyan);
  text-decoration: none;
}

.plan-trial-note a:hover { color: var(--cyan-edge); }

.plan ul {
  margin: 0.6rem 0 1.2rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.plan li {
  position: relative;
  padding: 0.38rem 0 0.38rem 1rem;
  color: var(--muted);
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 7px;
  height: 1px;
  background: var(--cyan);
}

/* FAQ */

.faq-list { max-width: 820px; }

.faq-list details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 1.2rem 0;
}

.faq-list details + details { margin-top: 0; }

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0;
  font-size: 1.12rem;
  font-family: var(--serif);
}

.faq-list summary::after {
  content: "+";
  color: var(--cyan);
  font-family: var(--mono);
  flex-shrink: 0;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list details p {
  margin: 0.7rem 0 0;
  max-width: 44rem;
}

.faq-list a { color: var(--cyan); text-decoration: none; }

.faq-row {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-row:first-child { padding-top: 0; }

.faq-row h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

.faq-row p {
  margin: 0;
  max-width: 40rem;
}

.faq-row a { color: var(--cyan); text-decoration: none; }

.close {
  text-align: center;
}

.close .section-head,
.close h2,
.close > p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.close .hero-actions {
  justify-content: center;
}

.close-risk {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: var(--dim);
  max-width: 34rem;
}

/* Begin */

.begin {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  background:
    radial-gradient(700px 280px at 80% 20%, rgba(245, 183, 0, 0.08), transparent 60%);
}

.note,
.thanks {
  padding: 1.6rem;
}

.note label,
.note fieldset {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  border: 0;
  padding: 0;
}

.note input,
.note textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.75rem 0.8rem;
  background: rgba(6, 14, 22, 0.7);
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.note input:focus,
.note textarea:focus {
  outline: 1px solid var(--cyan);
}

.choice {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.45rem 0;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--paper);
}

.form-fine {
  margin: 0.8rem 0 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-agree {
  margin: 0.55rem 0 0;
  color: var(--dim);
  font-size: 0.82rem;
}

.form-agree a {
  color: var(--cyan);
  text-decoration: none;
}

.form-agree a:hover { color: var(--cyan-edge); }

.legal {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  padding: 4.5rem 6vw 5rem;
}

.legal h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.55em;
}

.legal h2 {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-edge);
  margin: 2.2rem 0 0.6rem;
}

.legal p { color: var(--muted); }

.legal a {
  color: var(--cyan);
  text-decoration: none;
}

.legal a:hover { color: var(--cyan-edge); }

.legal-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  margin: 0 0 1.4rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-jump a { color: var(--dim); }

.legal-jump a[aria-current="page"],
.legal-jump a:hover { color: var(--cyan-edge); }

.legal-updated {
  margin-bottom: 1.4rem;
  font-size: 0.88rem;
  color: var(--dim);
}

.thanks h2 { color: var(--cyan-edge); }

/* Footer */

.foot {
  position: relative;
  z-index: 1;
  padding: 2.5rem 6vw 3rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.8rem;
  color: var(--dim);
}

.foot > div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.foot strong {
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
}

.foot p { max-width: 40rem; font-size: 0.88rem; }

.foot-go {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.15rem 0 0.15rem;
}

.foot-go a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-edge);
  text-decoration: none;
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(125, 240, 255, 0.28);
}

.foot-go a:hover {
  background: rgba(34, 211, 238, 0.12);
  border-color: var(--cyan-edge);
}

.copy {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.copy a {
  color: var(--dim);
  text-decoration: none;
}

.copy a:hover { color: var(--cyan-edge); }

@keyframes pulse {
  50% { opacity: 0.35; }
}

@keyframes beam {
  from { opacity: 0; filter: brightness(2); }
  to { opacity: 1; filter: none; }
}

#seats,
#suite,
#watch,
#breaker,
#with-you,
#pain,
#desk,
#auto,
#control,
#start,
#membership,
#questions,
#decide,
#begin {
  scroll-margin-top: 5rem;
}

.auto-ways { margin-top: 2.2rem; }

.auto-ways .card h3 {
  margin: 0.45rem 0 0.4rem;
  font-size: 1.85rem;
}

.auto-ways .card p:last-child { margin-bottom: 0; }

.plan-marks li {
  padding-left: 1.35rem;
}

.plan-marks li::before {
  content: "✓";
  top: 0.42rem;
  width: auto;
  height: auto;
  background: none;
  color: #3ddc97;
  font-size: 0.95rem;
  line-height: 1;
}

.plan-marks li.no {
  color: #6f8794;
}

.plan-marks li.no::before {
  content: "×";
  color: #809cb2;
  font-size: 1.05rem;
  top: 0.32rem;
}

@media (max-width: 980px) {
  .hero,
  .hero-split,
  .control,
  .begin { grid-template-columns: 1fr; padding-top: 3rem; }
  .walk { display: none; }
  .nav-links { display: none; }
  .auto-ways { display: none; }
  .trio,
  .shots,
  .shots-recall.is-on,
  .steps,
  .start-steps,
  .desk-grid,
  .plans,
  .seats { grid-template-columns: 1fr; }
  .control-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .ws-shot { min-height: 0; }
  .ws-shot-recall {
    aspect-ratio: auto;
  }
  .ws-shot-recall .recall-stage {
    height: auto;
    min-height: 0;
  }
  .ws-shot-recall .recall-tape {
    height: 168px;
    margin-top: 70px;
  }
  .ws-shot-recall .recall-arc svg { height: 72px; }
  .ws-shot .recall-symbol { font-size: 22px; }
  .glass-plot { height: 360px; }
  .hud { width: min(200px, 56%); font-size: 0.58rem; bottom: 82px; }
  .tape { height: 64px; }
}

.miss {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 4.5rem);
  display: grid;
  align-content: center;
  max-width: 36rem;
  padding: 3.5rem 6vw 4.5rem;
}

.miss h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  max-width: 11ch;
}

.miss-also {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin: 1.35rem 0 0;
}

.miss-also a {
  color: var(--dim);
  text-decoration: none;
}

.miss-also a:hover { color: var(--paper); }
