/* ============================================================
   ENHANCE LAYER — 100-improvements pass. Additive, loads after app.css.
   ============================================================ */

/* 59 ::selection */
::selection { background: rgba(67,255,94,0.28); color: #eaffef; }

/* 60 focus-visible neon ring, site-wide */
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--neon); outline-offset: 3px; border-radius: 6px;
}
:focus:not(:focus-visible) { outline: none; }

/* 62 skip link */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 300;
  background: var(--neon); color: #04160a; padding: 0.6rem 1rem; border-radius: 10px;
  font-weight: 700; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* 50 scroll progress bar */
.scrollbar-top { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 95;
  background: linear-gradient(90deg, var(--neon), var(--neon-bright)); box-shadow: 0 0 10px var(--neon-glow); transition: width 0.08s linear; }

/* 51 nav hide-on-scroll-down */
.nav { transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.nav.nav-hidden { transform: translateY(-100%); }

/* 52 animated nav underline */
.nav-links a { position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px; background: var(--neon); box-shadow: 0 0 8px var(--neon-glow); transition: right 0.3s var(--ease); }
.nav-links a:hover::after { right: 0; }

/* 61 SVG logomark spacing */
.brand svg.mark { width: 20px; height: 20px; flex: none; filter: drop-shadow(0 0 6px var(--neon-glow)); }

/* 49 card tilt (JS sets --rx/--ry) */
.tilt { transform: perspective(800px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)); transition: transform 0.2s var(--ease); transform-style: preserve-3d; }

/* 57 cursor-follow ambient glow (desktop) */
.cursor-glow { position: fixed; width: 380px; height: 380px; border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(67,255,94,0.10), transparent 65%); transform: translate(-50%,-50%); opacity: 0; transition: opacity 0.4s; mix-blend-mode: screen; }

/* 92 content-visibility on heavy below-fold sections */
.cv-auto { content-visibility: auto; contain-intrinsic-size: 1px 900px; }

/* 2.1 Hero robustness — the above-the-fold headline must NEVER depend on JS to appear.
   Reveal the hero via a pure-CSS load animation so it shows even if the reveal
   observer is slow/blocked/failed. (Below-fold sections still use the JS .in observer.) */
@keyframes heroReveal { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero .reveal { animation: heroReveal 0.85s var(--ease) both; }
.hero .reveal.d1 { animation-delay: 0.10s; }
.hero .reveal.d2 { animation-delay: 0.20s; }
.hero .reveal.d3 { animation-delay: 0.30s; }
@media (prefers-reduced-motion: reduce) { .hero .reveal { animation: none; opacity: 1; transform: none; } }

/* 8 hero ambient orb + 114 slow sheen */
.hero-orb { position: absolute; z-index: 1; width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; left: 4%; top: 30%;
  background: radial-gradient(circle, rgba(67,255,94,0.16), transparent 62%); filter: blur(50px); pointer-events: none; opacity: 0.8;
  animation: orb-breathe 9s var(--ease-in-out) infinite; }
@keyframes orb-breathe { 0%,100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 0.9; transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .hero-orb { animation: none; } }

/* 7 hero micro-stat chip + 71 microcopy */
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.mini-chip { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--ink-2); border: 1px solid var(--glass-line-soft); border-radius: 999px; padding: 0.35rem 0.7rem; }
.mini-chip b { color: var(--neon); font-weight: 600; }
.cta-microcopy { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-3); margin-top: 0.8rem; letter-spacing: 0.04em; }

/* 23 mini nav waveform */
.nav-wave { display: none; width: 60px; height: 20px; opacity: 0; transition: opacity 0.3s; }
.nav-wave.on { opacity: 1; }
@media (min-width: 900px) { .nav-wave { display: block; } }

/* 13 Live Line avatars + 18 equalizer */
.chan-avatars { display: flex; gap: 0.5rem; margin-bottom: 0.8rem; }
.chan { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--mono); font-size: 0.68rem; color: var(--ink-3); border: 1px solid var(--glass-line-soft); border-radius: 999px; padding: 0.3rem 0.6rem; transition: color 0.25s, border-color 0.25s; }
.chan .eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 12px; }
.chan .eq i { width: 2px; height: 3px; background: currentColor; border-radius: 2px; }
.chan.speaking { color: var(--neon); border-color: var(--glass-line); }
.chan.speaking .eq i { animation: eq 0.6s ease-in-out infinite; }
.chan.speaking .eq i:nth-child(2){ animation-delay: 0.12s; } .chan.speaking .eq i:nth-child(3){ animation-delay: 0.24s; } .chan.speaking .eq i:nth-child(4){ animation-delay: 0.36s; }
@keyframes eq { 0%,100%{ height: 3px; } 50%{ height: 12px; } }
@media (prefers-reduced-motion: reduce){ .chan.speaking .eq i { animation: none; } }

/* 14 speed control + 15 copy + 17 play-all */
.player-tools { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
.tool-btn { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-2); background: rgba(255,255,255,0.03); border: 1px solid var(--glass-line-soft); border-radius: 999px; padding: 0.3rem 0.6rem; transition: all 0.2s; }
.tool-btn:hover, .tool-btn[aria-pressed="true"] { color: var(--neon); border-color: var(--glass-line); }

/* 20 outcome badge */
.call-outcome { display: none; align-items: center; gap: 0.45rem; margin-top: 0.9rem; font-family: var(--mono); font-size: 0.76rem; color: var(--neon);
  border: 1px solid var(--glass-line); background: rgba(67,255,94,0.06); border-radius: 999px; padding: 0.4rem 0.8rem; width: fit-content; }
.call-outcome.show { display: inline-flex; animation: pop 0.4s var(--ease); }
@keyframes pop { from { transform: scale(0.8); opacity: 0; } to { transform: none; opacity: 1; } }

/* 28 ROI mini bars + 32 customers + 33 toggle */
.roi-bars { display: grid; gap: 0.5rem; margin-top: 0.4rem; }
.roi-bar { height: 8px; border-radius: 8px; background: rgba(255,255,255,0.06); overflow: hidden; }
.roi-bar i { display: block; height: 100%; border-radius: 8px; transition: width 0.5s var(--ease); }
.roi-bar.loss i { background: #ff6b6b; }
.roi-bar.gain i { background: var(--neon); box-shadow: 0 0 10px var(--neon-glow); }
.roi-sub { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-2); margin-top: 0.3rem; }
.roi-view-toggle { display: inline-flex; gap: 0.3rem; margin-bottom: 1rem; }
.roi-view-toggle button { font-family: var(--mono); font-size: 0.68rem; color: var(--ink-3); background: none; border: 1px solid var(--glass-line-soft); border-radius: 999px; padding: 0.25rem 0.6rem; }
.roi-view-toggle button[aria-pressed="true"] { color: #04160a; background: var(--neon); border-color: var(--neon); }
.roi-presets { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.2rem; }
.roi-presets button { font-family: var(--mono); font-size: 0.68rem; color: var(--ink-2); background: rgba(255,255,255,0.02); border: 1px solid var(--glass-line-soft); border-radius: 999px; padding: 0.3rem 0.65rem; transition: all 0.2s; }
.roi-presets button:hover { color: var(--neon); border-color: var(--glass-line); }

/* 39 industry glyph */
.ind-tile .it-glyph { display: inline-grid; place-items: center; width: 30px; height: 30px; color: var(--neon); border: 1px solid var(--glass-line); border-radius: var(--radius-sm); margin-right: 0.6rem; vertical-align: middle; }
.ind-tile .it-glyph svg { width: 17px; height: 17px; }
.ind-tile .it-name { display: inline-flex; align-items: center; }
/* 42 ken burns */
.ind-stage-media img.on { animation: kb 18s ease-in-out infinite alternate; }
@keyframes kb { from { transform: scale(1); } to { transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce){ .ind-stage-media img.on { animation: none; } }

/* 46 trust line + 44 success + 48 valid */
.cmb-trust { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--ink-3); margin-top: 0.7rem; }
.cmb-trust svg { width: 12px; height: 12px; fill: var(--neon); }
.cmb .valid-tick { color: var(--neon); font-family: var(--mono); font-size: 0.8rem; opacity: 0; transition: opacity 0.2s; }
.cmb .valid-tick.on { opacity: 1; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* 45 spinner */
.spinner { width: 15px; height: 15px; border: 2px solid rgba(4,22,10,0.3); border-top-color: #04160a; border-radius: 50%; display: inline-block; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* 66 eyebrow auto-number */
.eyebrow[data-num]::after { content: attr(data-num); margin-left: 0.6rem; color: var(--ink-3); }

/* 87 prefers-contrast */
@media (prefers-contrast: more) {
  :root { --ink-2: #d3dad6; --ink-3: #b7c0bb; --glass-line-soft: rgba(255,255,255,0.2); }
  .btn-ghost { border-color: var(--ink-2); }
}

/* 63 print */
@media print {
  .nav, .mobile-menu, .mobile-callbar, #coldopen, .exit-modal, .scrollbar-top, .cursor-glow, .hero-media, .scroll-hint, .nav-wave { display: none !important; }
  body { background: #fff; color: #000; }
  h1,h2,h3 { color: #000; } a { color: #000; text-decoration: underline; }
  .section { padding-block: 1rem; }
}

/* 82 hero video off on small screens (poster only) — perf */
@media (max-width: 640px) { #heroVideo { }  /* JS removes source under 640 */ }

/* 84 overflow guard */
html, body { max-width: 100%; }

/* #10 asymmetric lead-card rhythm — breaks the uniform 3-up grid */
.feat-grid--lead > .feat:first-child { border-color: var(--neon-edge); background: linear-gradient(180deg, rgba(67,255,94,0.05), rgba(255,255,255,0.015)); }
.feat-grid--lead > .feat:first-child .ico { background: var(--neon); color: var(--on-neon); box-shadow: 0 0 20px var(--neon-glow); }
@media (min-width: 900px) { .feat-grid--lead > .feat:first-child { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.6rem; } .feat-grid--lead > .feat:first-child .ico { margin-bottom: 0; } .feat-grid--lead > .feat:first-child h3 { font-size: 1.5rem; } }

/* 2.5 Pricing — flagship card lifts above the row on desktop (single-col stays flat) */
@media (min-width: 900px) {
  .tier.flagship { transform: scale(1.045); z-index: 2; box-shadow: 0 24px 70px rgba(0,0,0,0.5), 0 0 60px rgba(67,255,94,0.18); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
  .tier.flagship:hover { transform: scale(1.06); box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 76px rgba(67,255,94,0.24); }
}

/* 2.4 Founders — glass frame + neon glow edge (photos already carry duotone+rim) */
.founder { transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease); }
.founder::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(67,255,94,0.10); opacity: 0; transition: opacity 0.35s var(--ease); }
.founder:hover { border-color: var(--neon-edge); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 46px rgba(67,255,94,0.10); }
.founder:hover::after { opacity: 1; }
.founder-photo { border-bottom: 1px solid rgba(67,255,94,0.18); }

/* copilot-page task-list on black (was styled for the old white section) */
.copilot-section ~ .section .task-list li, .task-list li { color: var(--ink-2); }
.task-list li .tk { border-color: var(--neon-edge); color: var(--neon); }
.task-list.go li .tk { background: var(--neon); color: var(--on-neon); box-shadow: 0 0 14px var(--neon-glow); }

/* Kill-list: inline SVG icons replace ▶ ✓ ✕ glyphs — consistent sizing/alignment */
.btn .ico { margin-right: 0.15rem; }
li .ico-ck, li .ico-x, .neon .ico-ck, .yes .ico-ck, .no .ico-x, .ck .ico-ck, .tk .ico-ck { vertical-align: -2px; flex: none; }
.cmp-table .yes svg, .cmp-table .no svg { display: inline-block; }
.task-list li .tk .ico-ck { width: 13px; height: 13px; }

/* ============================================================
   LAUNCH CUT — COPILOT SECTION (black, glow-field, animated console)
   ============================================================ */
.copilot-section { position: relative; overflow: hidden; background: var(--bg); isolation: isolate; }
/* breathing neon glow-field — the section is a light source in the dark */
.cp-glowfield { position: absolute; z-index: 0; left: 50%; top: 46%; width: 120vw; max-width: 1100px; height: 720px; transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(67,255,94,0.22), rgba(67,255,94,0.06) 45%, transparent 72%); filter: blur(30px); pointer-events: none; opacity: 0; transition: opacity 1.2s var(--ease); }
.copilot-section.booted .cp-glowfield { opacity: 1; animation: cp-drift 9s ease-in-out infinite alternate; }
@keyframes cp-drift { from { transform: translate(-52%, -50%) scale(1); } to { transform: translate(-48%, -47%) scale(1.08); } }
/* scanline/grid horizon at the section boundary — "you crossed into Copilot territory" */
.cp-horizon { position: absolute; z-index: 0; left: 0; right: 0; top: 0; height: 220px; pointer-events: none; opacity: 0; transition: opacity 0.9s var(--ease);
  background:
    linear-gradient(180deg, rgba(67,255,94,0.14), transparent 70%),
    repeating-linear-gradient(90deg, rgba(67,255,94,0.10) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(67,255,94,0.06) 0 1px, transparent 1px 44px);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent); mask-image: linear-gradient(180deg, #000, transparent); }
.copilot-section.booted .cp-horizon { opacity: 1; }
.copilot-section .wrap { position: relative; z-index: 2; }

/* boot-up entry */
.copilot-section [data-boot] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.copilot-section.booted [data-boot] { opacity: 1; transform: none; }
.copilot-section.booted .cp-viz { transition-delay: 0.15s; }
/* headline light-sweep on boot */
.cp-headline { position: relative; display: inline-block; }
.copilot-section.booted .cp-headline::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 40%, rgba(255,255,255,0.65) 50%, transparent 60%); transform: translateX(-120%); animation: cp-sweep 0.9s var(--ease) 0.4s 1; }
@keyframes cp-sweep { to { transform: translateX(120%); } }
/* typed mono eyebrow */
.cp-eyebrow .cp-caret { color: var(--neon); animation: cp-blink 0.9s steps(1) infinite; }
@keyframes cp-blink { 50% { opacity: 0; } }

/* the Copilot console — frosted dark glass, neon edge, glow */
.cp-viz { position: relative; }
.cp-console { position: relative; background: linear-gradient(180deg, rgba(12,18,15,0.92), rgba(5,8,7,0.94)); border: 1px solid var(--neon-edge); border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px rgba(67,255,94,0.05), 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(67,255,94,0.10); padding: 1.1rem 1.15rem 1.25rem; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); overflow: hidden; }
.cp-console::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, var(--neon), transparent); opacity: 0.5; }
.cp-console-head { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: var(--step--3); letter-spacing: 0.14em; color: var(--ink-2); padding-bottom: 0.9rem; border-bottom: 1px solid var(--glass-line-soft); }
.cp-live { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--neon); }
.cp-avatar { width: 46px; height: 46px; margin: 1rem auto 0.4rem; border-radius: 50%; display: grid; place-items: center; position: relative;
  background: radial-gradient(circle at 50% 40%, #0e1a12, #05100a); border: 1px solid var(--neon-edge); box-shadow: 0 0 26px rgba(67,255,94,0.28); }
.cp-avatar::before, .cp-avatar::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--neon); opacity: 0; }
.copilot-section.booted .cp-avatar::before { animation: cp-ring 2.4s ease-out infinite; }
.copilot-section.booted .cp-avatar::after { animation: cp-ring 2.4s ease-out infinite 1.2s; }
@keyframes cp-ring { 0% { transform: scale(0.7); opacity: 0.7; } 100% { transform: scale(1.9); opacity: 0; } }
.cp-avatar svg { width: 22px; height: 22px; fill: var(--neon); filter: drop-shadow(0 0 6px var(--neon-glow)); }
.cp-avatar-label { text-align: center; font-family: var(--mono); font-size: var(--step--3); letter-spacing: 0.14em; color: var(--ink-3); margin-bottom: 1rem; }

.cp-tasks { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.cp-task { display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 0.8rem; border-radius: var(--radius-sm); border: 1px solid var(--glass-line-soft); background: rgba(255,255,255,0.02);
  opacity: 0.4; transform: translateX(-6px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s, background 0.4s; }
.cp-task .cp-ico { width: 26px; height: 26px; flex: none; border-radius: 7px; display: grid; place-items: center; color: var(--ink-3); border: 1px solid var(--glass-line-soft); transition: color 0.4s, border-color 0.4s, background 0.4s; }
.cp-task .cp-ico svg { width: 15px; height: 15px; }
.cp-task .cp-label { flex: 1; font-size: 0.86rem; color: var(--ink-2); }
.cp-task .cp-status { font-family: var(--mono); font-size: var(--step--3); color: var(--ink-3); white-space: nowrap; }
.cp-task.active { opacity: 1; transform: none; border-color: var(--neon-edge); background: rgba(67,255,94,0.05); }
.cp-task.active .cp-ico { color: var(--neon); border-color: var(--neon-edge); }
.cp-task.active .cp-status { color: var(--neon); }
.cp-task.done { opacity: 1; transform: none; }
.cp-task.done .cp-ico { background: var(--neon); color: var(--on-neon); border-color: var(--neon); box-shadow: 0 0 14px var(--neon-glow); }
.cp-task.done .cp-status { color: var(--neon); }
.cp-feed { margin-top: 0.9rem; padding-top: 0.7rem; border-top: 1px solid var(--glass-line-soft); font-size: var(--step--3); color: var(--ink-3); min-height: 1.2em; }
.cp-feed b { color: var(--neon); }

/* Copilot CHARACTER (home teaser) — replaces the console: one green AI employee, compact + robust */
.cp-viz--char { display: flex; align-items: center; justify-content: center; min-height: 340px; }
.cp-char { width: 100%; max-width: 340px; margin: 0 auto; }
.cp-char svg { width: 100%; height: auto; display: block; overflow: visible; filter: drop-shadow(0 26px 60px rgba(0,0,0,0.6)); animation: cp-float 5.5s ease-in-out infinite; }
@keyframes cp-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.cp-char .cp-eye { transform-box: fill-box; transform-origin: center; animation: cp-blink3 5s ease-in-out infinite; }
@keyframes cp-blink3 { 0%,92%,100% { transform: scaleY(1); } 96% { transform: scaleY(0.12); } }
.cp-char .cp-ring { transform-box: fill-box; transform-origin: center; }
.copilot-section.booted .cp-char .cp-ring1 { animation: cp-charpulse 3.4s ease-out infinite; }
.copilot-section.booted .cp-char .cp-ring2 { animation: cp-charpulse 3.4s ease-out infinite 1.1s; }
@keyframes cp-charpulse { 0% { transform: scale(0.9); opacity: 0.5; } 100% { transform: scale(1.14); opacity: 0; } }
.cp-char .cp-antenna, .cp-char .cp-badge-dot, .cp-char .cp-mic { transform-box: fill-box; transform-origin: center; animation: cp-pip 1.8s ease-in-out infinite; }
.cp-char .cp-badge-dot { animation-delay: 0.4s; }
.cp-char .cp-mic { animation-delay: 0.9s; }
@keyframes cp-pip { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
@media (max-width: 720px) { .cp-char { max-width: 250px; } .cp-viz--char { min-height: 290px; } }
@media (prefers-reduced-motion: reduce) {
  .cp-char svg, .cp-char .cp-eye, .cp-char .cp-ring, .cp-char .cp-antenna, .cp-char .cp-badge-dot, .cp-char .cp-mic { animation: none !important; }
}

.cp-cta { position: relative; }
@media (prefers-reduced-motion: reduce) {
  .copilot-section .cp-glowfield { animation: none; }
  .cp-avatar::before, .cp-avatar::after { animation: none !important; }
  .cp-task { opacity: 1; transform: none; }
  .copilot-section.booted .cp-headline::after { animation: none; content: none; }
}
@media (min-width: 900px) { .copilot-split.cp-grid { grid-template-columns: 1fr 1.05fr; gap: clamp(2rem,5vw,4rem); align-items: center; } }

/* Mobile hero: center the stack so the primary CTA is clearly in view (not bottom-hugging) */
@media (max-width: 620px) {
  .hero { align-items: center; padding-top: 12vh; padding-bottom: 3rem; }
  .hero h1 { font-size: clamp(2.9rem, 13vw, 3.7rem); }
  .hero .wavestrip { margin-top: 1.4rem; }
  .hero-badges { margin-top: 0.9rem; gap: 0.45rem; }
}

/* ============================================================
   REVIEW BATCH 4 — a11y + mobile
   ============================================================ */
/* #37 focus-visible ring on the white section uses the darker green */
.paper-section a:focus-visible, .paper-section button:focus-visible, .paper-section input:focus-visible { outline-color: var(--neon-deep); }
/* #30 sticky mobile call bar must not cover the footer/last content */
@media (max-width: 899px) { body { padding-bottom: 68px; } }
/* #33 configurator on/off legibility — stronger off-state border */
.cfg-toggle { border-color: rgba(255,255,255,0.14); }
.cfg-chip { border-color: rgba(255,255,255,0.14); }
/* #34 ≥44px tap targets on mobile for small controls */
@media (max-width: 899px) {
  .nav-links a, .call-chip, .tool-btn, .roi-presets button, .cfg-chip, .cfg-toggle, .faq-tools button, .roi-view-toggle button, .btn-sm, .co-skip, #formulaToggle, .hero-cta-secondary { min-height: 44px; display: inline-flex; align-items: center; }
  .burger { width: 44px; height: 44px; padding: 11px; justify-content: center; }
  .footer-col a { min-height: 44px; display: flex; align-items: center; }
  .footer-legal a { min-height: 44px; display: inline-flex; align-items: center; }
  .brand { min-height: 44px; }
}

/* ============================================================
   REVIEW BATCH 1 (#02 #04 #06 #08) — hero CTA hierarchy, SVG icon,
   Copilot white-section balance, glow discipline
   ============================================================ */
/* #06 one dominant hero CTA + #04 inline icon */
.hero-cta { align-items: center; }
.btn .ico { flex: none; margin-right: 0.1rem; }
.hero-cta-secondary { color: var(--ink-2); font-weight: 600; font-size: var(--step-0); padding: 0.6rem 0.3rem; transition: color 0.25s var(--ease); white-space: nowrap; }
.hero-cta-secondary:hover, .hero-cta-secondary:focus-visible { color: var(--neon); }
.hero-cta-secondary .arrow { display: inline-block; transition: transform 0.3s var(--ease); }
.hero-cta-secondary:hover .arrow { transform: translateX(4px); }

/* #02 / #09 Copilot white-section vertical balance */
.copilot-split { align-items: center; }
.paper-section h1, .paper-section .h-lead { font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1.04; }
.copilot-split .lede { max-width: 46ch; }
.copilot-media { box-shadow: 0 24px 60px rgba(10, 15, 12, 0.16); overflow: hidden; aspect-ratio: 4 / 3; max-height: 60vh; } /* #22 neutral shadow + #02 cap the image so it can't dominate */
.copilot-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* #28 founders monogram badge (replaces "Photo pending" text) */
.founder-ph { display: grid; place-items: center; height: 100%; padding: 1rem; }
.founder-ph .glyph { width: 96px; height: 96px; margin: 0; border-radius: 50%; border: 1.5px solid var(--neon-edge); background: radial-gradient(circle at 50% 38%, var(--surface-3), var(--surface-1)); color: var(--neon); font-family: var(--display); font-weight: 700; font-size: 2rem; letter-spacing: 0.02em; box-shadow: 0 0 26px var(--neon-glow), inset 0 0 18px rgba(67,255,94,0.08); }

/* #13 unmissable Live Line play button */
.play-btn { width: 72px; height: 72px; }
.play-btn svg { width: 28px; height: 28px; }

/* #16 footer number as real signage — framed underglow plate */
.footer-cta .tel-monument { padding: 0.4rem 1.4rem; border-radius: var(--radius-lg); border: 1px solid var(--neon-edge); background: radial-gradient(120% 160% at 50% 120%, rgba(67,255,94,0.10), transparent 70%); box-shadow: inset 0 0 40px rgba(67,255,94,0.06); }

/* #11 tap-to-call chip in interior nav */
.nav-call { display: none; align-items: center; gap: 0.4rem; font-family: var(--mono); font-size: var(--step--2); color: var(--ink-2); border: 1px solid var(--glass-line-soft); border-radius: var(--radius-pill); padding: 0.42rem 0.8rem; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.nav-call svg { width: 14px; height: 14px; color: var(--neon); flex: none; }
.nav-call:hover, .nav-call:focus-visible { color: var(--neon); border-color: var(--glass-line); }
@media (min-width: 780px) { .nav-call { display: inline-flex; } }

/* #02 supporting stat row so the text column isn't empty */
.cp-stats { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.6rem; }
.cp-stat .n { font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: var(--neon-deep); line-height: 1; }
.cp-stat .l { font-size: var(--step--2); color: var(--paper-ink-2); margin-top: 0.25rem; }

/* 116/#27 button press — .btn transition/:active live in app.css; keep only the extra press targets */
.tool-btn:active, .call-chip:active, .ind-tile:active, .roi-presets button:active { transform: scale(0.97); }

/* 111 directional reveal variants */
.reveal-l { opacity: 0; transform: translateX(-32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal-l, .reveal-r { opacity: 1 !important; transform: none !important; } }

/* 118 image loading shimmer */
.img-loading { position: relative; background: linear-gradient(100deg, #06110b 30%, #0c1a12 50%, #06110b 70%); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .img-loading { animation: none; } }

/* 119 proof strip progress dots (24px hit area, small visual dot — 304 target-size) */
.proof-dots { display: flex; gap: 0.3rem; justify-content: center; margin-top: 0.8rem; }
.proof-dots button { width: 24px; height: 24px; border-radius: 50%; border: 0; background: transparent; padding: 0; position: relative; }
.proof-dots button::after { content: ""; position: absolute; inset: 50% auto auto 50%; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; background: rgba(255,255,255,0.18); transition: background 0.25s, transform 0.25s; }
.proof-dots button.on::after { background: var(--neon); box-shadow: 0 0 8px var(--neon-glow); transform: scale(1.25); }

/* 305 reduced transparency */
@media (prefers-reduced-transparency: reduce) {
  .nav.scrolled, .mobile-menu, .card, .console, .exit-card, .co-card { backdrop-filter: none; }
  .panel, .card { background: #0a0e0c; }
}

/* 306 forced-colors (Windows high contrast) */
@media (forced-colors: active) {
  .btn-primary, .play-btn { border: 1px solid ButtonText; }
  .glass-line, .card, .console, .tier { border-color: CanvasText; }
  .neon, .glow-text, .tel-monument { color: LinkText; }
  .live-dot, .brand .mark { forced-color-adjust: none; }
}

/* 120 FAQ expand-all control */
.faq-tools { text-align: center; margin-bottom: 1rem; }
.faq-tools button { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-2); background: none; border: 1px solid var(--glass-line-soft); border-radius: 999px; padding: 0.35rem 0.8rem; transition: all 0.2s; }
.faq-tools button:hover { color: var(--neon); border-color: var(--glass-line); }

/* 462 compare table */
.cmp-wrap { overflow-x: auto; margin-top: 2rem; border: 1px solid var(--glass-line-soft); border-radius: var(--radius); }
.cmp-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 0.92rem; }
.cmp-table th, .cmp-table td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--glass-line-soft); }
.cmp-table thead th { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); position: sticky; top: 0; background: var(--panel-solid); }
.cmp-table thead th.us { color: var(--neon); }
.cmp-table td.us { background: rgba(67,255,94,0.05); color: var(--ink); }
.cmp-table tbody th { font-weight: 600; color: var(--ink); }
.cmp-table .yes { color: var(--neon); } .cmp-table .no { color: #ff6b6b; } .cmp-table .meh { color: var(--ink-3); }

/* 463 results receipts */
.receipt { border: 1px solid var(--glass-line-soft); border-radius: var(--radius); overflow: hidden; background: var(--panel-solid); }
.receipt .r-tag { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon); padding: 0.9rem 1.1rem 0; }
.receipt .r-body { padding: 0.6rem 1.1rem 1.3rem; }
.receipt h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.receipt p { color: var(--ink-2); font-size: 0.9rem; }
.receipt .r-visual { font-family: var(--mono); font-size: 0.72rem; color: var(--ink-2); background: linear-gradient(135deg,#06110b,#030706); border-bottom: 1px solid var(--glass-line-soft); padding: 1.1rem; }
.receipt .r-visual .g { color: var(--neon); }

/* 121 pricing feature tooltip affordance */
.tier li[title] { cursor: help; border-bottom: 1px dotted transparent; }
.tier li[title]:hover { border-bottom-color: var(--glass-line); }

/* 465 build-your-receptionist configurator */
.cfg { display: grid; gap: 1.4rem; margin-top: 2.2rem; }
@media (min-width: 900px) { .cfg { grid-template-columns: 1.1fr 0.9fr; align-items: start; } }
.cfg-group { margin-bottom: 1.4rem; }
.cfg-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.7rem; }
.cfg-chips, .cfg-toggles { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cfg-chip, .cfg-toggle { font-family: var(--body); font-size: 0.86rem; color: var(--ink-2); background: rgba(255,255,255,0.03); border: 1px solid var(--glass-line-soft); border-radius: 999px; padding: 0.6rem 0.95rem; transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.15s; }
.cfg-chip:hover, .cfg-toggle:not([disabled]):hover { border-color: var(--glass-line); color: var(--ink); }
.cfg-chip[aria-checked="true"], .cfg-toggle[aria-pressed="true"] { color: #04160a; background: var(--neon); border-color: var(--neon); }
.cfg-chip:active, .cfg-toggle:not([disabled]):active { transform: scale(0.97); }
.cfg-toggle[aria-pressed="true"]::before { content: "✓ "; }
.cfg-toggle[disabled] { opacity: 0.9; cursor: default; }
.cfg-out { position: sticky; top: 90px; }
.cfg-badge { display: inline-block; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; color: #04160a; background: var(--neon); padding: 0.28rem 0.75rem; border-radius: 999px; margin-bottom: 0.9rem; box-shadow: 0 0 18px var(--neon-glow); }
.cfg-out h3 { font-size: 1.3rem; line-height: 1.32; }
.cfg-out p { margin: 0.7rem 0 1.3rem; }

/* 125 copilot animated tasks-completing list (text stays full-contrast; only checkmark + slide animate) */
.task-list { list-style: none; padding: 0; margin: 1.6rem 0; display: grid; gap: 0.7rem; max-width: 460px; }
.task-list li { display: flex; align-items: center; gap: 0.75rem; color: var(--ink); transform: translateY(8px); transition: transform 0.5s var(--ease); }
.task-list li .tk { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--glass-line); display: grid; place-items: center; color: transparent; font-size: 0.78rem; flex: none; transition: background 0.4s var(--ease), color 0.4s; }
.task-list.go li { transform: none; }
.task-list.go li .tk { background: var(--neon); color: #04160a; }
/* white-section variant */
.paper-section .task-list li { color: var(--paper-ink); }
.paper-section .task-list li .tk { border-color: rgba(10,120,45,0.55); }
.paper-section .task-list.go li .tk { background: var(--neon-deep); color: #fff; }

/* white-section eyebrow + auto-number contrast (AA on white) */
.paper-section .eyebrow { color: #0a7a28; }
.paper-section .eyebrow[data-num]::after { color: var(--paper-ink-2); }

/* inline neon links inside text need a non-color cue (link-in-text-block) */
a.neon { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(67,255,94,0.5); text-decoration-thickness: 1px; }
.paper-section a.neon { text-decoration-color: rgba(10,120,45,0.6); }
.task-list.go li:nth-child(2) { transition-delay: 0.35s; } .task-list.go li:nth-child(2) .tk { transition-delay: 0.35s; }
.task-list.go li:nth-child(3) { transition-delay: 0.7s; } .task-list.go li:nth-child(3) .tk { transition-delay: 0.7s; }
.task-list.go li:nth-child(4) { transition-delay: 1.05s; } .task-list.go li:nth-child(4) .tk { transition-delay: 1.05s; }
@media (prefers-reduced-motion: reduce) { .task-list li { opacity: 1; transform: none; transition: none; } .task-list li .tk { background: var(--neon-deep); color: #fff; } }

/* 101 deep-link offset under the fixed nav */
[id] { scroll-margin-top: 84px; }

/* 102 scroll-spy active nav link */
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { right: 0; }

/* 103 back-to-top */
.to-top { position: fixed; right: 16px; bottom: 16px; z-index: 74; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,14,12,0.8); border: 1px solid var(--glass-line); color: var(--neon); backdrop-filter: blur(10px);
  display: grid; place-items: center; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { box-shadow: 0 0 20px rgba(67,255,94,0.25); }
@media (min-width: 900px) { .to-top { right: 24px; bottom: 24px; } }
@media print { .to-top { display: none; } }
