/* ============================================================
   NEVERMISS — THE SITE THAT PICKS UP
   Design system: full-black console world, neon-green as light.
   Mobile-first. Transform/opacity motion only. CSP-safe (self only).
   ============================================================ */

/* ---------- Fonts (self-hosted, zero external requests) ---------- */
@font-face {
  font-family: "Bricolage";
  src: url("/media/fonts/bricolage-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "PublicSans";
  src: url("/media/fonts/publicsans-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

/* ---------- Tokens ---------- */
:root {
  /* Color — black / white / grey / neon green ONLY */
  --black: #000000;
  --bg: #000000;
  --bg-2: #05070600;      /* transparent-ish for layering */
  --panel: rgba(10, 14, 12, 0.66);
  --panel-solid: #0a0e0c;
  --glass-line: rgba(75, 255, 130, 0.22);
  --glass-line-soft: rgba(255, 255, 255, 0.08);

  --ink: #ffffff;
  --ink-2: #c3ccc7;       /* body on dark — brightened for daylight readability (#05) */
  --ink-3: #8f9893;       /* dim grey (AA on black for small labels) */

  /* Surface scale (was 8+ ad-hoc near-blacks) — #03 */
  --surface-1: #050706;   /* deepest / gradient base */
  --surface-2: #0a0e0c;   /* panel */
  --surface-3: #0e1512;   /* elevated / hover */

  --neon: #43ff5e;        /* the one locked brand green */
  --neon-bright: #7dff8d;
  --on-neon: #04160a;     /* ink on a neon fill (#03) */
  /* 4-step glow scale (was 16+ ad-hoc alphas) — #03 */
  --neon-wash: rgba(67, 255, 94, 0.06);   /* faint fills */
  --neon-edge: rgba(67, 255, 94, 0.22);   /* hairline borders */
  --neon-glow: rgba(67, 255, 94, 0.35);   /* standard glow */
  --neon-bloom: rgba(67, 255, 94, 0.55);  /* live-element bloom */
  --neon-deep: #0aa23a;   /* darker green for text on WHITE section (AA) */
  --neon-ink: #06381a;    /* deep green ink on white */

  /* Light (white) section tokens */
  --paper: #ffffff;
  --paper-ink: #0a0f0c;
  --paper-ink-2: #46524c;

  /* Type */
  --display: "Bricolage", "Bricolage Grotesque", system-ui, sans-serif;
  --body: "PublicSans", "Public Sans", system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, "Cascadia Mono", monospace;

  /* Scale (fluid) */
  --step--3: 0.66rem;     /* micro labels / mono chips (#03) */
  --step--2: 0.74rem;     /* small UI text (#03) */
  --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.9rem);
  --step-0:  clamp(0.95rem, 0.9rem + 0.25vw, 1.06rem);
  --step-1:  clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(2.1rem, 1.7rem + 2vw, 3.2rem);
  --step-4:  clamp(2.9rem, 2.2rem + 3.4vw, 5rem);
  --step-5:  clamp(3.6rem, 2.5rem + 5.2vw, 7rem);

  /* Space */
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --sect: clamp(4.5rem, 9vw, 9rem);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.6s;

  --maxw: 1240px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.mono { font-family: var(--mono); letter-spacing: 0.02em; }
.neon { color: var(--neon); }
.dim { color: var(--ink-2); }

/* Utility: neon text glow */
.glow-text { color: var(--neon); text-shadow: 0 0 18px var(--neon-glow), 0 0 42px rgba(67,255,94,0.25); }

/* ---------- Ambient light field (bloom around light sources) ---------- */
.bloom {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(70px); opacity: 0.5; z-index: 0;
  background: radial-gradient(circle, var(--neon-glow), transparent 70%);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem var(--gut);
  background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.0));
  backdrop-filter: blur(6px);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(3, 5, 4, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--glass-line-soft);
}
.brand { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--display); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; }
.brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 12px var(--neon-glow), 0 0 26px var(--neon-glow); animation: pulse-dot 2.4s var(--ease-in-out) infinite; }
@keyframes pulse-dot { 0%,100%{ transform: scale(1); opacity: 1;} 50%{ transform: scale(1.35); opacity: 0.6;} }
@media (prefers-reduced-motion: reduce){ .brand .dot { animation: none; } }

.nav-links { display: none; gap: 1.6rem; align-items: center; }
.nav-links a { color: var(--ink-2); font-size: var(--step--1); letter-spacing: 0.02em; transition: color 0.25s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 0.6rem; }

.sound-toggle {
  display: none; align-items: center; gap: 0.4rem;
  font-family: var(--mono); font-size: 0.72rem; color: var(--ink-3);
  background: none; border: 1px solid var(--glass-line-soft); border-radius: 999px;
  padding: 0.3rem 0.7rem; transition: color 0.25s, border-color 0.25s;
}
.sound-toggle:hover { color: var(--ink-2); border-color: var(--glass-line); }
.sound-toggle .sq { width: 7px; height: 7px; border-radius: 2px; background: var(--ink-3); transition: background 0.25s, box-shadow 0.25s; }
.sound-toggle[aria-pressed="true"] .sq { background: var(--neon); box-shadow: 0 0 8px var(--neon-glow); }

.burger { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80; background: rgba(2,4,3,0.97);
  backdrop-filter: blur(16px); display: flex; flex-direction: column;
  justify-content: center; gap: 0.4rem; padding: var(--gut);
  transform: translateY(-100%); transition: transform 0.5s var(--ease); visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--display); font-size: var(--step-3); font-weight: 600; padding: 0.4rem 0; color: var(--ink); border-bottom: 1px solid var(--glass-line-soft); }
.mobile-menu a .num { font-family: var(--mono); font-size: 0.8rem; color: var(--neon); margin-right: 0.8rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--body); font-weight: 600; font-size: var(--step-0);
  padding: 0.95rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s;
  overflow: hidden; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--neon); color: #04160a;
  box-shadow: 0 0 0 rgba(67,255,94,0), 0 10px 40px rgba(67,255,94,0.28);
}
.btn-primary:hover { box-shadow: 0 0 24px var(--neon-glow), 0 14px 50px rgba(67,255,94,0.4); transform: translateY(-2px); }
/* Light-sweep on primary */
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg); transition: left 0.6s var(--ease);
}
.btn-primary:hover::after { left: 130%; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--glass-line); }
.btn-ghost:hover { border-color: var(--neon); color: var(--neon); box-shadow: 0 0 20px rgba(67,255,94,0.14); }
.btn-sm { padding: 0.55rem 1rem; font-size: var(--step--1); }
.btn-lg { padding: 1.1rem 1.9rem; font-size: var(--step-1); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   SECTIONS + REVEAL
   ============================================================ */
section { position: relative; }
.section { padding-block: var(--sect); position: relative; }
.eyebrow {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--neon); display: inline-flex; align-items: center; gap: 0.55rem; margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--neon); box-shadow: 0 0 8px var(--neon-glow); }
.h-lead { font-size: var(--step-4); }
.h-2 { font-size: var(--step-3); }
.lede { font-size: var(--step-1); color: var(--ink-2); max-width: 42ch; margin-top: 1.1rem; line-height: 1.5; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: opacity 0.4s ease; }
}

/* Glass card */
.card {
  position: relative; background: var(--panel); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-line-soft); border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.9rem); z-index: 1;
}
.card.neon-edge { border-color: var(--glass-line); box-shadow: inset 0 0 0 1px rgba(67,255,94,0.04), 0 0 40px rgba(67,255,94,0.05); }

/* Divider grid line texture */
.hair { height: 1px; background: linear-gradient(90deg, transparent, var(--glass-line-soft), transparent); }

/* ============================================================
   COLD OPEN (signature #1)
   ============================================================ */
#coldopen {
  position: fixed; inset: 0; z-index: 200; background: #000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
#coldopen.done { opacity: 0; visibility: hidden; pointer-events: none; }
.co-card {
  position: relative; width: min(340px, 82vw); text-align: center;
  padding: 2rem 1.5rem; border-radius: 28px;
  background: rgba(8,12,10,0.7); border: 1px solid var(--glass-line);
  box-shadow: 0 0 60px rgba(67,255,94,0.14);
}
.co-rings { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.co-rings span { position: absolute; width: 90px; height: 90px; border-radius: 50%; border: 1.5px solid var(--neon); opacity: 0; animation: co-ring 2.2s ease-out infinite; }
.co-rings span:nth-child(2){ animation-delay: 0.7s; }
.co-rings span:nth-child(3){ animation-delay: 1.4s; }
@keyframes co-ring { 0%{ transform: scale(0.6); opacity: 0.8;} 100%{ transform: scale(3.4); opacity: 0;} }
.co-avatar { width: 74px; height: 74px; margin: 0 auto 1rem; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #0e1a12, #05100a); border: 1px solid var(--glass-line); display: grid; place-items: center; box-shadow: 0 0 30px rgba(67,255,94,0.2); }
.co-avatar svg { width: 34px; height: 34px; fill: var(--neon); filter: drop-shadow(0 0 6px var(--neon-glow)); }
.co-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-2); }
.co-num { font-family: var(--display); font-size: 1.7rem; font-weight: 700; margin: 0.3rem 0 0.1rem; }
.co-status { font-family: var(--mono); font-size: 0.85rem; color: var(--neon); margin-top: 0.5rem; min-height: 1.2em; }
.co-timer { font-family: var(--mono); }
.co-wave { display: flex; align-items: center; justify-content: center; gap: 3px; height: 34px; margin-top: 1rem; opacity: 0; transition: opacity 0.4s; }
.co-wave.on { opacity: 1; }
.co-wave i { width: 3px; background: var(--neon); border-radius: 3px; box-shadow: 0 0 6px var(--neon-glow); animation: co-bar 0.9s ease-in-out infinite; }
@keyframes co-bar { 0%,100%{ height: 6px;} 50%{ height: 28px;} }
.co-skip { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 0.72rem; color: var(--ink-3); letter-spacing: 0.14em; background: none; border: 0; }
.co-skip:hover { color: var(--ink-2); }
@media (prefers-reduced-motion: reduce){ .co-rings span, .co-wave i { animation: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(2.5rem, 7vh, 5rem); padding-top: 22vh; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.hero-media::after { content: ""; position: absolute; inset: 0; background:
   linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 32%, rgba(0,0,0,0.65) 78%, #000 100%),
   radial-gradient(120% 80% at 15% 20%, rgba(67,255,94,0.10), transparent 55%); }
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero h1 { font-size: var(--step-5); font-weight: 800; letter-spacing: -0.035em; }
.hero h1 .l2 { color: var(--neon); text-shadow: 0 0 34px rgba(67,255,94,0.35); }
.hero-sub { font-size: var(--step-1); color: var(--ink-2); max-width: 40ch; margin-top: 1.3rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

/* Live reactive waveform strip */
.wavestrip { margin-top: 2.2rem; display: flex; align-items: center; gap: 0.9rem; }
.wavestrip .status-pill { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--neon); display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap; }
.wavestrip .status-pill .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 10px var(--neon-glow); animation: pulse-dot 1.6s infinite; }
canvas.wave { flex: 1; height: 46px; width: 100%; display: block; }

/* Scroll hint */
.scroll-hint { position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); z-index: 3; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.scroll-hint .line { width: 1px; height: 28px; background: linear-gradient(var(--neon), transparent); animation: drop 1.8s var(--ease-in-out) infinite; }
@keyframes drop { 0%{ transform: scaleY(0); transform-origin: top;} 50%{ transform: scaleY(1); transform-origin: top;} 51%{ transform-origin: bottom;} 100%{ transform: scaleY(0); transform-origin: bottom;} }

/* ============================================================
   LIVE LINE PLAYER (signature #2)
   ============================================================ */
.liveline { max-width: 760px; margin-inline: auto; }
.console {
  background: linear-gradient(180deg, rgba(9,13,11,0.9), rgba(4,7,6,0.92));
  border: 1px solid var(--glass-line); border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(67,255,94,0.07), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.console-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; border-bottom: 1px solid var(--glass-line-soft); font-family: var(--mono); font-size: 0.74rem; color: var(--ink-2); }
.console-top .dots { display: flex; gap: 6px; }
.console-top .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-3); }
.console-top .dots i:first-child { background: var(--neon); box-shadow: 0 0 8px var(--neon-glow); }
.console-body { padding: 1.2rem; }
.call-picker { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.call-chip { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-2); border: 1px solid var(--glass-line-soft); background: rgba(255,255,255,0.02); padding: 0.4rem 0.7rem; border-radius: 999px; transition: all 0.25s; }
.call-chip[aria-selected="true"] { color: #04160a; background: var(--neon); border-color: var(--neon); }
.call-chip:hover:not([aria-selected="true"]) { border-color: var(--glass-line); color: var(--ink); }

.player { display: flex; align-items: center; gap: 1rem; padding: 0.4rem 0 1rem; }
.play-btn {
  position: relative; flex: none; width: 62px; height: 62px; border-radius: 50%;
  background: var(--neon); border: 0; display: grid; place-items: center;
  box-shadow: 0 0 0 rgba(67,255,94,0.5), 0 10px 30px rgba(67,255,94,0.35);
  animation: play-pulse 2.4s var(--ease-in-out) infinite;
}
@keyframes play-pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(67,255,94,0.5), 0 10px 30px rgba(67,255,94,0.3);} 50%{ box-shadow: 0 0 0 14px rgba(67,255,94,0), 0 10px 30px rgba(67,255,94,0.3);} }
.play-btn svg { width: 24px; height: 24px; fill: #04160a; }
.play-btn.playing { animation: none; }
@media (prefers-reduced-motion: reduce){ .play-btn { animation: none; } }
.player-meta { flex: 1; min-width: 0; }
.player-track { height: 6px; border-radius: 6px; background: rgba(255,255,255,0.08); overflow: hidden; margin-top: 0.5rem; cursor: pointer; }
.player-track .fill { height: 100%; width: 0; background: var(--neon); box-shadow: 0 0 10px var(--neon-glow); }
.player-time { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-2); display: flex; justify-content: space-between; margin-top: 0.35rem; }
.player-title { font-family: var(--mono); font-size: 0.8rem; color: var(--ink); }

.transcript { border-top: 1px solid var(--glass-line-soft); max-height: 260px; overflow-y: auto; padding-top: 0.8rem; }
.t-line { display: grid; grid-template-columns: 58px 1fr; gap: 0.7rem; padding: 0.45rem 0; opacity: 0.28; transition: opacity 0.3s; }
.t-line.spoken { opacity: 1; }
.t-line .t-time { font-family: var(--mono); font-size: 0.68rem; color: var(--ink-3); padding-top: 0.15rem; }
.t-line .t-who { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; }
.t-line.ai .t-who { color: var(--neon); }
.t-line.caller .t-who { color: var(--ink-2); }
.t-line .t-text { color: var(--ink); font-size: 0.95rem; line-height: 1.45; }
.t-line.ai .t-text { color: #eafff0; }

/* ============================================================
   ROI CALCULATOR + LOSS TICKER (signature)
   ============================================================ */
.roi-grid { display: grid; gap: 1.5rem; }
.roi-controls .field { margin-bottom: 1.3rem; }
.roi-controls label { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.9rem; color: var(--ink-2); margin-bottom: 0.5rem; }
.roi-controls label .val { font-family: var(--mono); color: var(--neon); font-size: 1.05rem; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.12); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 14px var(--neon-glow); cursor: pointer; border: 3px solid #04160a; }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 14px var(--neon-glow); cursor: pointer; border: 3px solid #04160a; }
.roi-out { display: grid; gap: 1rem; }
.roi-stat { border: 1px solid var(--glass-line-soft); border-radius: var(--radius); padding: 1.2rem 1.3rem; background: rgba(255,255,255,0.015); }
.roi-stat .k { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.roi-stat .v { font-family: var(--display); font-weight: 700; font-size: var(--step-3); margin-top: 0.3rem; }
.roi-stat.loss .v { color: #ff6b6b; }        /* rare deliberate callout — loss in red */
.roi-stat.gain .v { color: var(--neon); text-shadow: 0 0 20px rgba(67,255,94,0.3); }
.roi-formula { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-3); margin-top: 0.6rem; }

.ticker-band { border: 1px solid var(--glass-line); border-radius: var(--radius); padding: 1rem 1.2rem; background: rgba(67,255,94,0.04); display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1rem; }
.ticker-band .lbl { font-family: var(--mono); font-size: 0.74rem; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.1em; }
.ticker-val { font-family: var(--mono); font-weight: 600; font-size: var(--step-2); color: var(--neon); text-shadow: 0 0 18px rgba(67,255,94,0.35); font-variant-numeric: tabular-nums; }

/* ============================================================
   CALL-ME-BACK WIDGET
   ============================================================ */
.cmb { max-width: 560px; }
.cmb .field-row { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.cmb input[type="tel"] { flex: 1; min-width: 180px; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-line-soft); border-radius: 999px; padding: 0.95rem 1.3rem; color: var(--ink); font-family: var(--mono); font-size: 1rem; }
.cmb input[type="tel"]:focus { outline: none; border-color: var(--neon); box-shadow: 0 0 0 3px rgba(67,255,94,0.12); }
.cmb .consent { display: flex; gap: 0.55rem; align-items: flex-start; margin-top: 0.9rem; font-size: 0.78rem; color: var(--ink-3); }
.cmb .consent input { margin-top: 0.25rem; accent-color: var(--neon); }
.cmb-status { font-family: var(--mono); font-size: 0.85rem; margin-top: 0.9rem; min-height: 1.2em; }
.cmb-status.ok { color: var(--neon); }
.cmb-status.err { color: #ff6b6b; }
.badge-flag { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); border: 1px solid var(--glass-line-soft); border-radius: 999px; padding: 0.25rem 0.6rem; display: inline-block; }

/* ============================================================
   INDUSTRY SELECTOR (signature #4)
   ============================================================ */
.ind-section { transition: background 0.6s var(--ease); }
.ind-tiles { display: grid; grid-template-columns: 1fr; gap: 0.7rem; margin-top: 1.8rem; }
.ind-tile { position: relative; overflow: hidden; border: 1px solid var(--glass-line-soft); border-radius: var(--radius); padding: 1.1rem 1.2rem; background: rgba(255,255,255,0.02); text-align: left; transition: border-color 0.3s, transform 0.3s, background 0.3s; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.ind-tile:hover { border-color: var(--glass-line); transform: translateY(-2px); }
.ind-tile[aria-selected="true"] { border-color: var(--neon); background: rgba(67,255,94,0.06); box-shadow: 0 0 30px rgba(67,255,94,0.08); }
.ind-tile .it-name { font-family: var(--display); font-weight: 600; font-size: 1.1rem; }
.ind-tile .it-arrow { font-family: var(--mono); color: var(--neon); opacity: 0; transform: translateX(-6px); transition: all 0.3s; }
.ind-tile[aria-selected="true"] .it-arrow, .ind-tile:hover .it-arrow { opacity: 1; transform: none; }

.ind-stage { position: relative; margin-top: 1.8rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--glass-line); min-height: 300px; }
.ind-stage-media { position: absolute; inset: 0; }
.ind-stage-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s var(--ease); }
.ind-stage-media img.on { opacity: 0.5; }
.ind-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.82)); }
.ind-stage-body { position: relative; z-index: 2; padding: clamp(1.5rem, 4vw, 2.6rem); display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px; }
.ind-stage-body h3 { font-size: var(--step-3); }
.ind-stat-row { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.1rem; }
.ind-stat .n { font-family: var(--mono); font-size: var(--step-2); color: var(--neon); font-weight: 600; }
.ind-stat .l { font-size: 0.8rem; color: var(--ink-2); }
.sweep { position: absolute; inset: 0; z-index: 5; pointer-events: none; background: linear-gradient(100deg, transparent 40%, rgba(67,255,94,0.5) 50%, transparent 60%); transform: translateX(-120%); }
.sweep.go { animation: sweep 0.6s var(--ease); }
@keyframes sweep { to { transform: translateX(120%); } }

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: min(80%, 340px); gap: 1rem; overflow-x: auto; padding: 0.5rem 0 1.5rem; scroll-snap-type: x proximity; scrollbar-width: none; }
.proof-scroller::-webkit-scrollbar { display: none; }
.proof-card { scroll-snap-align: start; border: 1px solid var(--glass-line-soft); border-radius: var(--radius); overflow: hidden; background: var(--panel-solid); }
.proof-card .tag { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon); padding: 0.9rem 1rem 0; }
.proof-card .pc-body { padding: 0.7rem 1rem 1.2rem; }
.proof-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.proof-card p { font-size: 0.86rem; color: var(--ink-2); }
.proof-visual { height: 150px; background: linear-gradient(135deg, #06110b, #030706); border-bottom: 1px solid var(--glass-line-soft); display: grid; place-items: center; }

/* ============================================================
   WHITE SECTION (Copilot) — the ONE daylight section
   ============================================================ */
.paper-section { background: var(--paper); color: var(--paper-ink); }
.paper-section .eyebrow { color: var(--neon-deep); }
.paper-section .eyebrow::before { background: var(--neon-deep); box-shadow: none; }
.paper-section h2 { color: var(--paper-ink); }
.paper-section .lede { color: var(--paper-ink-2); }
.paper-section .btn-primary { background: var(--neon-deep); color: #fff; box-shadow: 0 10px 30px rgba(10,162,58,0.28); }
.paper-section .btn-primary:hover { box-shadow: 0 0 24px rgba(10,162,58,0.4); }
.paper-section .btn-ghost { border-color: rgba(10,15,12,0.2); color: var(--paper-ink); }
.paper-section .btn-ghost:hover { border-color: var(--neon-deep); color: var(--neon-deep); }
.copilot-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(10,15,12,0.1); box-shadow: 0 30px 80px rgba(10,162,58,0.12); }
.copilot-media img { width: 100%; }

/* ============================================================
   FOUNDERS
   ============================================================ */
.founders-grid { display: grid; gap: 1.2rem; margin-top: 2rem; grid-template-columns: 1fr; }
.founder { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--glass-line-soft); background: var(--panel-solid); }
.founder-photo { position: relative; aspect-ratio: 4/5; background: radial-gradient(120% 100% at 50% 0%, #0d1610, #05080600), #06090700; overflow: hidden; display: grid; place-items: center; }
.founder-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -50px 60px -30px rgba(0,0,0,0.65); } /* subtle bottom vignette only — the photo already carries its neon rim */
.founder-photo img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.02); } /* keep the photo's own B&W + green rim */
.founder-ph { text-align: center; color: var(--ink-3); font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; padding: 2rem; }
.founder-ph .glyph { width: 60px; height: 60px; margin: 0 auto 0.8rem; border-radius: 50%; border: 1px dashed var(--glass-line); display: grid; place-items: center; color: var(--neon); }
.founder-info { padding: 1.1rem 1.3rem 1.4rem; }
.founder-info .fn { font-family: var(--display); font-weight: 700; font-size: 1.3rem; }
.founder-info .fr { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--neon); margin: 0.2rem 0 0.5rem; }
.founder-info p { font-size: 0.9rem; color: var(--ink-2); }

/* ============================================================
   FAQ (transcript-styled accordion)
   ============================================================ */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--glass-line-soft); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--ink); padding: 1.3rem 0; display: flex; gap: 0.9rem; align-items: baseline; font-family: var(--body); }
.faq-q .who { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); flex: none; width: 62px; padding-top: 0.2rem; }
.faq-q .qt { font-size: var(--step-1); font-weight: 600; flex: 1; }
.faq-q .plus { color: var(--neon); font-family: var(--mono); transition: transform 0.3s; flex: none; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a .row { display: flex; gap: 0.9rem; padding-bottom: 1.3rem; }
.faq-a .who { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--neon); flex: none; width: 62px; padding-top: 0.2rem; }
.faq-a .at { color: var(--ink-2); flex: 1; }
.faq-a .at a { color: var(--neon); border-bottom: 1px solid rgba(67,255,94,0.4); }

/* ============================================================
   EXIT MODAL
   ============================================================ */
.exit-modal { position: fixed; inset: 0; z-index: 210; display: none; align-items: center; justify-content: center; padding: var(--gut); background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); }
.exit-modal.open { display: flex; }
.exit-card { position: relative; width: min(440px, 92vw); text-align: center; padding: 2.4rem 1.8rem; border-radius: 26px; background: rgba(8,12,10,0.95); border: 1px solid var(--glass-line); box-shadow: 0 0 70px rgba(67,255,94,0.16); }
.exit-card .ring-icon { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle, #0e1a12, #05100a); border: 1px solid var(--glass-line); box-shadow: 0 0 26px rgba(67,255,94,0.25); }
.exit-card .ring-icon svg { width: 30px; height: 30px; fill: var(--neon); }
.exit-card h3 { font-size: var(--step-2); margin-bottom: 0.6rem; }
.exit-card p { color: var(--ink-2); font-size: 0.95rem; margin-bottom: 1.4rem; }
.exit-close { position: absolute; top: 12px; right: 16px; background: none; border: 0; color: var(--ink-3); font-size: 1.4rem; }

/* ============================================================
   FOOTER FINALE
   ============================================================ */
.footer { position: relative; padding-block: var(--sect); overflow: hidden; border-top: 1px solid var(--glass-line-soft); }
.footer .bloom { width: 60vw; height: 60vw; left: 50%; top: 30%; transform: translateX(-50%); opacity: 0.28; }
.footer-cta { text-align: center; position: relative; z-index: 2; }
.footer-cta .above { font-family: var(--display); font-size: var(--step-2); font-weight: 600; }
.tel-monument { display: inline-block; font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 10vw, 6.4rem); letter-spacing: -0.02em; color: var(--neon); text-shadow: 0 0 30px rgba(67,255,94,0.5), 0 0 80px rgba(67,255,94,0.3); margin: 1rem 0 0.4rem; line-height: 1; transition: text-shadow 0.4s; }
.tel-monument:hover { text-shadow: 0 0 40px rgba(67,255,94,0.7), 0 0 110px rgba(67,255,94,0.45); }
.footer-cta .below { font-family: var(--mono); font-size: 0.8rem; color: var(--ink-2); letter-spacing: 0.06em; }
.footer-nav { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; margin-top: 3.5rem; padding-top: 2.2rem; border-top: 1px solid var(--glass-line-soft); }
.footer-col h3 { font-family: var(--mono); font-weight: 400; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.9rem; }
.footer-col a { display: block; color: var(--ink-2); font-size: 0.9rem; padding: 0.28rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--neon); }
.footer-legal { position: relative; z-index: 2; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--glass-line-soft); font-size: 0.76rem; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; justify-content: space-between; }
.disclosure { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-3); max-width: 60ch; margin-top: 0.6rem; }

/* Sticky mobile call bar */
.mobile-callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 0.6rem var(--gut) calc(0.6rem + env(safe-area-inset-bottom)); background: linear-gradient(0deg, #000 60%, transparent); display: flex; gap: 0.6rem; transform: translateY(120%); transition: transform 0.4s var(--ease); }
.mobile-callbar.show { transform: none; }
.mobile-callbar .btn { flex: 1; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero { position: relative; padding-top: clamp(7rem, 16vh, 11rem); padding-bottom: var(--sect); overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.45) 40%, #000); }
.page-hero .wrap { position: relative; z-index: 2; }
.crumb { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--ink-3); margin-bottom: 1rem; }
.crumb a { color: var(--neon); }

/* Feature list */
.feat-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 2rem; }
.feat { border: 1px solid var(--glass-line-soft); border-radius: var(--radius); padding: 1.4rem; background: rgba(255,255,255,0.015); transition: border-color 0.3s, transform 0.3s; }
.feat:hover { border-color: var(--glass-line); transform: translateY(-3px); }
.feat .ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(67,255,94,0.08); border: 1px solid var(--glass-line); margin-bottom: 0.9rem; color: var(--neon); }
.feat h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.feat p { color: var(--ink-2); font-size: 0.9rem; }

/* Pricing */
.tier-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-top: 2.5rem; align-items: stretch; }
.tier { position: relative; border: 1px solid var(--glass-line-soft); border-radius: var(--radius-lg); padding: 1.8rem 1.6rem; background: var(--panel); display: flex; flex-direction: column; }
.tier.flagship { border-color: var(--neon); box-shadow: 0 0 50px rgba(67,255,94,0.14); background: linear-gradient(180deg, rgba(67,255,94,0.05), rgba(10,14,12,0.66)); transform: scale(1); }
.tier .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: #04160a; background: var(--neon); padding: 0.3rem 0.9rem; border-radius: 999px; white-space: nowrap; box-shadow: 0 0 20px var(--neon-glow); }
.tier .tname { font-family: var(--display); font-weight: 700; font-size: 1.6rem; }
.tier .tfor { font-size: 0.86rem; color: var(--ink-2); margin: 0.3rem 0 1.1rem; }
.tier .price-gate { font-family: var(--mono); font-size: 0.82rem; color: var(--neon); border: 1px dashed var(--glass-line); border-radius: 12px; padding: 0.7rem 0.9rem; margin-bottom: 1.2rem; }
.tier ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.6rem; }
.tier li { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-2); }
.tier li .ck { color: var(--neon); flex: none; }
.tier .btn { margin-top: auto; }

/* Blog */
.post-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-top: 2rem; }
.post-card { border: 1px solid var(--glass-line-soft); border-radius: var(--radius); overflow: hidden; background: var(--panel-solid); transition: border-color 0.3s, transform 0.3s; }
.post-card:hover { border-color: var(--glass-line); transform: translateY(-3px); }
.post-card .pc-img { aspect-ratio: 16/9; overflow: hidden; }
.post-card .pc-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card .pc-in { padding: 1.2rem 1.3rem 1.5rem; }
.post-card .pc-tag { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--neon); }
.post-card h3 { font-size: 1.2rem; margin: 0.5rem 0; }
.post-card p { color: var(--ink-2); font-size: 0.88rem; }

.article { max-width: 720px; margin-inline: auto; }
.article h2 { font-size: var(--step-2); margin: 2.2rem 0 0.8rem; }
.article h3 { font-size: var(--step-1); margin: 1.8rem 0 0.6rem; }
.article p { color: var(--ink-2); margin: 0 0 1.1rem; line-height: 1.7; }
.article ul { color: var(--ink-2); line-height: 1.7; }
.article a { color: var(--neon); border-bottom: 1px solid rgba(67,255,94,0.4); }
.article blockquote { border-left: 2px solid var(--neon); padding-left: 1.2rem; margin: 1.6rem 0; font-family: var(--display); font-size: var(--step-1); color: var(--ink); }

/* Legal doc */
.legal-doc { max-width: 760px; margin-inline: auto; }
.legal-doc h2 { font-size: var(--step-1); margin: 2rem 0 0.7rem; color: var(--neon); }
.legal-doc p, .legal-doc li { color: var(--ink-2); font-size: 0.92rem; line-height: 1.7; }

/* ============================================================
   RESPONSIVE — enhance up from 390px
   ============================================================ */
@media (min-width: 620px) {
  .ind-tiles { grid-template-columns: 1fr 1fr; }
  .founders-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .post-grid { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .sound-toggle { display: inline-flex; }
  .burger { display: none; }
  .roi-grid { grid-template-columns: 1.1fr 1fr; align-items: start; }
  .roi-out { grid-template-columns: 1fr 1fr; }
  .ticker-band { grid-column: 1 / -1; }
  .ind-tiles { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .tier-grid { grid-template-columns: repeat(3, 1fr); }
  .tier.flagship { transform: scale(1.05); z-index: 2; }
  .mobile-callbar { display: none; }
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
  .copilot-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
  .post-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .hero { padding-top: 26vh; }
}
