/* TrenchEZ — landing. Night desk, turned up to launch-day. */

:root {
  --bg: #030504;
  --bg-2: #070a08;
  --surface: rgba(13, 17, 15, .72);
  --surface-solid: #0c100e;
  --line: rgba(255, 255, 255, .07);
  --line-2: rgba(255, 255, 255, .12);
  --ink: #eef3ef;
  --ink-2: #a2aca6;
  --ink-3: #66706a;
  --lime: #99cc33;
  --lime-hi: #c4f55a;
  --lime-glow: rgba(153, 204, 51, .45);
  --up: #34d399;
  --down: #ff5d6c;
  --warn: #f5b544;
  --display: "Unbounded", "Geist", system-ui, sans-serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;
  --gutter: clamp(18px, 4vw, 56px);
  --maxw: 1320px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }
::selection { background: var(--lime); color: #0b0f05; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 6px; }

/* ---------- atmosphere ---------- */
.field { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.scan {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.018) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
.vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 20%, transparent 55%, rgba(0,0,0,.65) 100%);
}
main, .nav, .foot { position: relative; z-index: 2; }

/* ---------- boot ---------- */
.boot {
  position: fixed; inset: 0; z-index: 100; background: #020302; display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.boot.done { opacity: 0; visibility: hidden; }
.boot-inner { width: min(560px, 86vw); }
.boot-lines { font: 13px/1.9 var(--mono); color: var(--ink-3); min-height: 170px; }
.boot-lines .ok { color: var(--lime); }
.boot-lines .hi { color: var(--ink); }
.boot-bar { height: 2px; background: rgba(255,255,255,.06); margin-top: 18px; overflow: hidden; border-radius: 2px; }
.boot-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--lime), var(--lime-hi)); box-shadow: 0 0 18px var(--lime-glow); transition: width .25s linear; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 16px var(--gutter);
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.solid { background: rgba(3,5,4,.72); backdrop-filter: blur(14px) saturate(1.2); border-color: var(--line); padding-block: 11px; }
.brand { display: flex; align-items: center; gap: 10px; font: 700 18px/1 var(--display); letter-spacing: -.02em; }
.brand b, .foot-brand b { color: var(--lime); font-weight: 700; }
.brand-tile {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: radial-gradient(120% 90% at 30% 20%, rgba(180,232,74,.3), transparent 60%), linear-gradient(160deg, #182014, #060807);
  box-shadow: inset 0 0 0 1px rgba(180,232,74,.28), 0 0 22px rgba(153,204,51,.2);
}
.brand-tile img { width: 24px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 14px; color: var(--ink-2); }
.nav-links a { position: relative; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ---------- buttons ---------- */
.btn {
  --h: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--h); padding: 0 20px; border-radius: 12px; font: 600 15px/1 var(--sans); letter-spacing: -.005em;
  transition: transform .15s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(.98); }
.btn-sm { --h: 38px; padding: 0 16px; font-size: 14px; border-radius: 10px; }
.btn-lg { --h: 54px; padding: 0 26px; font-size: 16px; border-radius: 14px; }
.btn-xl { --h: 68px; padding: 0 38px; font-size: 19px; border-radius: 18px; }
.btn-lime {
  background: linear-gradient(180deg, #b4e84a, var(--lime)); color: #0b0f05;
  box-shadow: 0 0 0 1px rgba(196,245,90,.5) inset, 0 10px 40px -8px var(--lime-glow), 0 0 0 0 var(--lime-glow);
}
.btn-lime:hover { box-shadow: 0 0 0 1px rgba(196,245,90,.7) inset, 0 16px 60px -6px var(--lime-glow), 0 0 0 6px rgba(153,204,51,.12); }
.btn-lime::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1; overflow: hidden;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  background-size: 250% 100%; background-position: 150% 0; mix-blend-mode: soft-light;
  animation: sheen 3.6s var(--ease) infinite;
}
@keyframes sheen { 0%, 60% { background-position: 150% 0; } 100% { background-position: -60% 0; } }
.btn-ghost { color: var(--ink); background: rgba(255,255,255,.03); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,.06); }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--up); box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: ping 1.8s infinite; flex: 0 0 auto; }
.btn-lime .dot-live { background: #0b0f05; box-shadow: none; animation: none; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.55); } 80%, 100% { box-shadow: 0 0 0 8px rgba(52,211,153,0); } }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(110px, 14vh, 150px) var(--gutter) 60px;
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(20px, 4vw, 60px); align-items: center;
}
.kicker { display: inline-flex; align-items: center; gap: 10px; font: 500 11.5px/1 var(--mono); letter-spacing: .14em; color: var(--ink-2); padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.03); box-shadow: inset 0 0 0 1px var(--line); }
.kicker-dot { width: 6px; height: 6px; border-radius: 2px; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.hero-title {
  font: 900 clamp(40px, 4.9vw, 76px)/.94 var(--display); letter-spacing: -.045em; margin: 26px 0 24px;
  text-transform: uppercase;
}
.hero-title .line { display: block; overflow: hidden; padding: 0 .08em .08em 0; margin-right: -.08em; }
.hero-title .accent { text-shadow: none; }
.hero-title .word { display: inline-block; will-change: transform; }
.accent { color: var(--lime); text-shadow: 0 0 40px rgba(153,204,51,.35); }
.accent-2 {
  background: linear-gradient(92deg, #eef3ef 0%, #c4f55a 45%, #34d399 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.accent-warn { color: var(--warn); text-shadow: 0 0 40px rgba(245,181,68,.3); }
.hero-sub { font-size: clamp(17px, 1.45vw, 20px); color: var(--ink-2); max-width: 560px; margin: 0 0 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; gap: clamp(20px, 3vw, 44px); margin: 40px 0 0; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero-proof dt { font: 700 clamp(22px, 2.2vw, 30px)/1 var(--display); letter-spacing: -.03em; }
.hero-proof dd { margin: 6px 0 0; font-size: 13px; color: var(--ink-3); }

.hero-stage { position: relative; height: min(720px, 78vh); min-height: 560px; perspective: 1600px; }
.rig { position: absolute; inset: 0; transform-style: preserve-3d; will-change: transform; }
.panel { position: absolute; border-radius: 22px; overflow: hidden; background: #060807; box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 50px 120px -20px rgba(0,0,0,.85), 0 0 80px -20px rgba(153,204,51,.25); }
.panel img { width: 100%; height: auto; }
.panel::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(155deg, rgba(255,255,255,.09), transparent 30%); box-shadow: inset 0 1px 0 rgba(255,255,255,.14); }
.panel-back { width: 52%; right: 2%; top: 9%; transform: translateZ(-120px) rotateY(-16deg) rotateX(6deg) rotateZ(2deg); opacity: .78; filter: saturate(.9); }
.panel-front { width: 52%; left: 8%; top: 4%; transform: translateZ(40px) rotateY(-12deg) rotateX(5deg) rotateZ(-2deg); }
.callout {
  position: absolute; display: flex; flex-direction: column; gap: 2px; padding: 10px 14px 10px 26px;
  border-radius: 12px; background: rgba(6,9,7,.82); backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(153,204,51,.25), 0 20px 50px -10px rgba(0,0,0,.7);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3);
  transform: translateZ(120px); white-space: nowrap;
}
.callout b { font-size: 13px; letter-spacing: 0; text-transform: none; color: var(--ink); font-weight: 500; }
.callout i { position: absolute; left: 11px; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); transform: translateY(-50%); }
.c1 { left: -4%; top: 30%; }
.c2 { right: -2%; top: 58%; }
.c3 { left: 14%; bottom: 11%; }
.hud { position: absolute; font: 500 10.5px/1 var(--mono); letter-spacing: .14em; color: var(--ink-3); display: flex; align-items: center; gap: 8px; z-index: 3; }
.hud-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--up); box-shadow: 0 0 10px var(--up); }
.hud-tl { top: -6px; left: 0; } .hud-tr { top: -6px; right: 0; }
.hud-bl { bottom: -8px; left: 0; color: var(--ink-2); } .hud-br { bottom: -8px; right: 0; }

/* ---------- tape ---------- */
.tape { display: flex; align-items: stretch; border-block: 1px solid var(--line); background: rgba(5,7,6,.7); backdrop-filter: blur(6px); }
.tape-label { display: flex; align-items: center; gap: 8px; padding: 0 20px; font: 700 11px/1 var(--mono); letter-spacing: .16em; color: var(--up); border-right: 1px solid var(--line); flex: 0 0 auto; }
.tape-track { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.tape-row { display: flex; width: max-content; animation: tape 48s linear infinite; }
.tape:hover .tape-row { animation-play-state: paused; }
@keyframes tape { to { transform: translateX(-50%); } }
.tick { display: flex; align-items: center; gap: 12px; padding: 16px 28px; border-right: 1px solid var(--line); font: 500 13px/1 var(--mono); white-space: nowrap; }
.tick img { width: 22px; height: 22px; border-radius: 6px; }
.tick .sym { color: var(--ink); font-weight: 700; font-family: var(--sans); font-size: 14px; }
.tick .px { color: var(--ink-2); }
.tick .ch.up { color: var(--up); } .tick .ch.down { color: var(--down); }
.tick .mc { color: var(--ink-3); }

/* ---------- thesis ---------- */
.thesis { max-width: 1100px; margin: 0 auto; padding: clamp(90px, 16vh, 170px) var(--gutter); }
.thesis-text { font: 600 clamp(28px, 3.6vw, 52px)/1.18 var(--display); letter-spacing: -.035em; margin: 0; }
.thesis-text .w { opacity: .14; transition: opacity .2s; }
.thesis-text em { font-style: normal; color: var(--lime); }

/* ---------- venues ---------- */
.venues { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) clamp(80px, 12vh, 130px); }
.eyebrow { font: 500 11.5px/1 var(--mono); letter-spacing: .16em; color: var(--ink-3); }
.venue-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.venue-list li { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-radius: 14px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); }
.venue { font: 700 clamp(18px, 2vw, 26px)/1 var(--display); letter-spacing: -.03em; }
.venue-meta { font: 500 10.5px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--lime); padding: 5px 8px; border-radius: 6px; background: rgba(153,204,51,.1); }
.venue-list .chain { font: 600 15px/1 var(--sans); color: var(--ink-2); }
.chain-dot { width: 12px; height: 12px; border-radius: 4px; }
.chain-dot.sol { background: linear-gradient(120deg, #14f195, #9945ff); }
.chain-dot.hood { background: linear-gradient(120deg, #c4f55a, #34d399); }

/* ---------- features ---------- */
.feature, .specs, .faq { max-width: var(--maxw); margin: 0 auto; padding: clamp(80px, 13vh, 150px) var(--gutter); position: relative; }
.feature-alt::before { content: ""; position: absolute; inset: 0 calc(50% - 50vw); background: linear-gradient(180deg, transparent, rgba(153,204,51,.025) 30%, rgba(153,204,51,.025) 70%, transparent); z-index: -1; }
.feature-index { display: flex; align-items: center; gap: 14px; font: 500 12px/1 var(--mono); letter-spacing: .16em; color: var(--ink-3); margin-bottom: 36px; }
.feature-index .num { color: var(--lime); font-weight: 700; padding: 6px 9px; border-radius: 7px; background: rgba(153,204,51,.1); box-shadow: inset 0 0 0 1px rgba(153,204,51,.25); }
.feature-index::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-2), transparent); }
.feature-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.h2 { font: 800 clamp(32px, 4vw, 58px)/1.02 var(--display); letter-spacing: -.045em; margin: 0 0 22px; text-transform: uppercase; }
.lede { font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-2); margin: 0 0 26px; max-width: 580px; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; color: var(--ink); font-size: 15.5px; }
.ticks li::before { content: ""; flex: 0 0 18px; height: 18px; border-radius: 5px; margin-top: 3px; background: rgba(153,204,51,.12) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M5 9.5l2.6 2.5L13 6.5' fill='none' stroke='%2399cc33' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat; box-shadow: inset 0 0 0 1px rgba(153,204,51,.3); }

.card {
  position: relative; border-radius: 22px; padding: clamp(18px, 2.2vw, 28px);
  background: linear-gradient(180deg, rgba(16,21,18,.85), rgba(8,11,9,.85));
  box-shadow: inset 0 0 0 1px var(--line-2), 0 40px 100px -30px rgba(0,0,0,.8);
  backdrop-filter: blur(10px);
}
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(153,204,51,.45), transparent 35%, transparent 70%, rgba(52,211,153,.25)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 22px; }
.card-title { font: 700 11.5px/1 var(--mono); letter-spacing: .16em; color: var(--ink-2); }
.chip { display: inline-flex; align-items: center; gap: 7px; font: 500 11px/1 var(--mono); padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px var(--line-2); color: var(--ink-2); white-space: nowrap; }
.chip-live { color: var(--up); }
.chip-warn { color: var(--warn); box-shadow: inset 0 0 0 1px rgba(245,181,68,.35); background: rgba(245,181,68,.08); }
.chip-btn { cursor: pointer; border: 0; color: var(--lime); }
.chip-btn:hover { background: rgba(153,204,51,.1); }

/* sim */
.sim-row { display: flex; justify-content: space-between; align-items: baseline; margin: 6px 0 8px; font-size: 14px; color: var(--ink-2); }
.sim-row output { font-size: 18px; color: var(--ink); font-weight: 700; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 30px; background: transparent; margin: 0 0 14px; cursor: pointer; }
input[type=range]::-webkit-slider-runnable-track { height: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--lime) var(--p, 50%), rgba(255,255,255,.08) var(--p, 50%)); }
input[type=range]::-moz-range-track { height: 6px; border-radius: 6px; background: rgba(255,255,255,.08); }
input[type=range]::-moz-range-progress { height: 6px; border-radius: 6px; background: var(--lime); }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; margin-top: -8px; background: #eef3ef; box-shadow: 0 0 0 4px rgba(153,204,51,.35), 0 4px 12px rgba(0,0,0,.6); }
input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border: 0; border-radius: 50%; background: #eef3ef; box-shadow: 0 0 0 4px rgba(153,204,51,.35); }
.sim-out { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 8px 0 18px; }
.stat { padding: 14px; border-radius: 14px; background: rgba(255,255,255,.025); box-shadow: inset 0 0 0 1px var(--line); display: flex; flex-direction: column; gap: 6px; }
.stat span { font-size: 11.5px; color: var(--ink-3); letter-spacing: .06em; text-transform: uppercase; }
.stat b { font-size: clamp(20px, 2vw, 26px); font-weight: 700; letter-spacing: -.02em; }
.sim-meter { position: relative; height: 10px; border-radius: 10px; background: rgba(255,255,255,.05); overflow: hidden; }
.sim-meter span { position: absolute; inset: 0 auto 0 0; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--up), var(--warn) 70%, var(--down)); transition: width .3s var(--ease); }
.sim-limit { position: absolute; top: -3px; bottom: -3px; width: 2px; left: 60%; background: var(--down); box-shadow: 0 0 10px var(--down); }
.sim-verdict { margin-top: 14px; font: 500 13px/1.4 var(--mono); color: var(--ink-2); min-height: 2.8em; }
.sim-verdict.ok { color: var(--up); } .sim-verdict.bad { color: var(--down); }

/* ladder */
.ladder-chart { width: 100%; height: clamp(220px, 26vw, 320px); display: block; overflow: visible; }
.ladder-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; font-size: 11.5px; color: var(--ink-3); }
.ladder-legend span { display: inline-flex; align-items: center; gap: 7px; }
.lg { width: 14px; height: 2px; border-radius: 2px; display: inline-block; }
.lg.sl { background: var(--down); } .lg.en { background: var(--ink-2); } .lg.tp { background: var(--up); } .lg.tp2 { background: var(--lime); }
.toast-stack { position: absolute; right: 18px; top: 62px; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast { padding: 10px 14px; border-radius: 12px; font: 500 12.5px/1.3 var(--mono); background: rgba(8,12,9,.92); box-shadow: inset 0 0 0 1px rgba(52,211,153,.4), 0 16px 40px rgba(0,0,0,.6); color: var(--ink); opacity: 0; transform: translateY(8px); transition: all .35s var(--ease); }
.toast.in { opacity: 1; transform: none; }
.toast b { color: var(--up); }
.shot-pair { margin-top: 10px; }
.shot { margin: 0; border-radius: 20px; overflow: hidden; background: #060807; box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 40px 90px -25px rgba(0,0,0,.85); }
.shot-pair .shot { max-width: 300px; }
.tilt-l { transform: perspective(1200px) rotateY(10deg) rotateZ(-1.5deg); }
.tilt-r { transform: perspective(1200px) rotateY(-10deg) rotateZ(1.5deg); }
.lift { transform: translateY(-26px); box-shadow: 0 0 0 1px rgba(153,204,51,.25), 0 50px 110px -25px rgba(0,0,0,.9), 0 0 90px -30px var(--lime-glow); }

/* tilt */
.flags { display: flex; gap: 10px; flex-wrap: wrap; }
.flag { font: 700 12px/1 var(--mono); letter-spacing: .12em; color: var(--warn); padding: 9px 12px; border-radius: 9px; background: rgba(245,181,68,.08); box-shadow: inset 0 0 0 1px rgba(245,181,68,.3); }
.streak { display: flex; gap: 10px; margin-bottom: 18px; }
.pip { flex: 1; height: 42px; border-radius: 12px; background: rgba(255,255,255,.03); box-shadow: inset 0 0 0 1px var(--line); position: relative; overflow: hidden; }
.pip::after { content: "LOSS"; position: absolute; inset: 0; display: grid; place-items: center; font: 700 11px/1 var(--mono); letter-spacing: .14em; color: var(--down); opacity: 0; transition: opacity .3s; }
.pip.hit { background: rgba(255,93,108,.1); box-shadow: inset 0 0 0 1px rgba(255,93,108,.45); }
.pip.hit::after { opacity: 1; }
.cool { border-radius: 16px; padding: 16px; background: rgba(245,181,68,.06); box-shadow: inset 0 0 0 1px rgba(245,181,68,.3); opacity: .25; filter: saturate(.3); transition: opacity .4s, filter .4s; }
.cool.on { opacity: 1; filter: none; }
.cool-top { display: flex; justify-content: space-between; color: var(--warn); font-size: 15px; }
.cool-top span { font-size: 18px; font-weight: 700; }
.cool p { margin: 6px 0 12px; font-size: 13.5px; color: var(--ink-2); }
.cool-bar { height: 5px; border-radius: 5px; background: rgba(245,181,68,.15); overflow: hidden; }
.cool-bar span { display: block; height: 100%; width: 100%; background: var(--warn); transform-origin: left; }
.ring-row { display: grid; grid-template-columns: 120px 1fr; gap: 22px; align-items: center; margin-top: 20px; position: relative; }
.ring { width: 120px; height: 120px; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 10; }
.ring-fg { fill: none; stroke: var(--warn); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 314.16; stroke-dashoffset: 0; transition: stroke-dashoffset .8s var(--ease), stroke .4s; filter: drop-shadow(0 0 8px rgba(245,181,68,.4)); }
.ring-num { position: absolute; left: 0; width: 120px; text-align: center; font-size: 30px; font-weight: 700; }
.ring-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: 13px; color: var(--ink-2); }
.ring-list li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 7px; }
.ring-list b { color: var(--ink); } .ring-list b.warn { color: var(--warn); }

/* stats */
.stats-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 36px; }
.stats-wall { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.tile { padding: 20px 18px; border-radius: 18px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); display: flex; flex-direction: column; gap: 10px; }
.tile span { font: 500 11px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.tile b { font-size: clamp(24px, 2.4vw, 36px); font-weight: 700; letter-spacing: -.03em; }
.up { color: var(--up); } .down { color: var(--down); } .warn { color: var(--warn); }
.stats-shots { display: grid; grid-template-columns: repeat(3, minmax(0, 300px)); justify-content: center; gap: clamp(16px, 3vw, 44px); margin-top: 70px; }
.fine { text-align: center; font-size: 12.5px; color: var(--ink-3); margin-top: 34px; }

/* specs */
.spec-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border-radius: 22px; overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); margin: 36px 0; }
.spec { background: var(--bg-2); padding: clamp(22px, 3vw, 36px); display: flex; flex-direction: column; gap: 12px; transition: background .3s; }
.spec:hover { background: #0b0f0c; }
.spec b { font-size: clamp(40px, 5vw, 72px); font-weight: 700; letter-spacing: -.05em; line-height: 1; color: var(--ink); }
.spec span { color: var(--ink-2); font-size: 15px; max-width: 320px; }
.terminal { border-radius: 18px; overflow: hidden; background: #040605; box-shadow: inset 0 0 0 1px var(--line-2), 0 30px 80px -30px rgba(0,0,0,.8); }
.term-head { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line); font: 500 12px/1 var(--mono); color: var(--ink-3); }
.term-head i { width: 10px; height: 10px; border-radius: 50%; background: #2a302c; }
.term-head span { margin-left: 10px; }
.terminal pre { margin: 0; padding: 20px 22px; font-size: 13.5px; line-height: 1.8; color: var(--ink-2); white-space: pre-wrap; min-height: 230px; }
.terminal .ok { color: var(--lime); } .terminal .k { color: var(--ink); }
.caret { display: inline-block; width: 8px; height: 1.1em; vertical-align: -2px; background: var(--lime); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* faq */
.faq { max-width: 920px; }
.faq-list { display: grid; gap: 10px; margin-top: 30px; }
details { border-radius: 16px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); padding: 0 22px; transition: box-shadow .25s; }
details[open] { box-shadow: inset 0 0 0 1px rgba(153,204,51,.3); }
summary { list-style: none; cursor: pointer; padding: 20px 0; font: 600 17px/1.3 var(--sans); display: flex; justify-content: space-between; gap: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font: 400 24px/1 var(--mono); color: var(--lime); transition: transform .25s var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 0 0 22px; color: var(--ink-2); }

/* install */
.install { position: relative; text-align: center; padding: clamp(110px, 18vh, 200px) var(--gutter); overflow: hidden; }
.install-glow { position: absolute; left: 50%; top: 50%; width: min(1100px, 140vw); aspect-ratio: 1; transform: translate(-50%, -50%); background: radial-gradient(closest-side, rgba(153,204,51,.28), rgba(153,204,51,.06) 55%, transparent 70%); filter: blur(10px); z-index: -1; }
.install-mark { margin: 0 auto 26px; width: clamp(110px, 14vw, 180px); filter: drop-shadow(0 0 40px rgba(153,204,51,.6)); animation: float 6s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-12px) rotate(-2deg); } }
.install-title { font: 900 clamp(46px, 8vw, 128px)/.92 var(--display); letter-spacing: -.055em; margin: 0 0 18px; text-transform: uppercase; }
.install .lede { margin: 0 auto 36px; }
.install-note { margin-top: 22px; font-size: 11.5px; letter-spacing: .16em; color: var(--ink-3); }

/* footer */
.foot { max-width: var(--maxw); margin: 0 auto; padding: 36px var(--gutter) 50px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; gap: 18px 36px; color: var(--ink-3); font-size: 13px; }
.foot-brand { display: flex; align-items: center; gap: 10px; font: 700 16px/1 var(--display); color: var(--ink); }
.foot p { margin: 0; flex: 1; min-width: 240px; }
.foot nav { display: flex; gap: 20px; }
.foot nav a:hover { color: var(--ink); }

/* reveal defaults (JS animates; without JS everything is visible) */
.js .reveal { opacity: 0; transform: translateY(26px); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-stage { height: 640px; max-width: 620px; width: 100%; margin: 0 auto; }
  .feature-grid, .stats-head { grid-template-columns: 1fr; }
  .feature-grid.rev .ladder { order: 2; }
  .stats-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav .btn { margin-left: auto; }
  .hero-stage { height: 520px; min-height: 0; }
  .panel-front { width: 64%; left: 2%; }
  .panel-back { width: 58%; right: -4%; }
  .callout { font-size: 9.5px; padding: 8px 10px 8px 22px; }
  .callout b { font-size: 11.5px; }
  .c1 { left: 0; } .c2 { right: 0; } .c3 { left: 6%; }
  .hud-tr, .hud-br { display: none; }
  .stats-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-shots { grid-template-columns: minmax(0, 300px); }
  .stats-shots .shot:not(.lift) { display: none; }
  .lift { transform: none; }
  .spec-grid { grid-template-columns: 1fr; }
  .sim-out { grid-template-columns: 1fr 1fr; }
  .tape-label { padding: 0 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .boot { display: none; }
}
