/* =====================================================================
   DecreaseLag — NEON CYBERPUNK edition
   Near-black · electric cyan + magenta RGB · glass · tasteful glitch
   Premium gaming-product feel (NOT a hacker terminal)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:        #07080d;
  --bg-1:      #0a0b12;
  --bg-2:      #0d0e18;
  --bg-3:      #121426;
  --surface:   rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.065);
  --border:    rgba(150, 170, 255, 0.12);
  --border-2:  rgba(0, 240, 255, 0.34);

  --text:      #eef1ff;
  --text-dim:  #9aa0c6;
  --text-mute: #676d97;

  --cyan:    #00f0ff;
  --magenta: #ff2bd6;
  --violet:  #b14dff;
  --blue:    #4d8cff;
  --good:    #00f0c0;   /* teal-cyan for positive (avoids "hacker green") */
  --bad:     #ff3b6b;   /* hot pink-red for before/danger */
  --amber:   #ffcb47;

  --grad:    linear-gradient(120deg, var(--cyan), var(--magenta));
  --grad-cv: linear-gradient(120deg, var(--cyan), var(--violet));
  --grad-3:  linear-gradient(120deg, var(--cyan) 0%, var(--violet) 52%, var(--magenta) 100%);
  --grad-soft: linear-gradient(120deg, rgba(0,240,255,.16), rgba(255,43,214,.16));

  --glow-c:  0 0 30px -4px rgba(0,240,255,.6);
  --glow-m:  0 0 30px -4px rgba(255,43,214,.55);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --nav-h: 72px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.still *, html.still *::before, html.still *::after { animation: none !important; transition: none !important; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(255,43,214,.4); color: #fff; }

/* ---------- Background FX ---------- */
.bg-fx { position: fixed; inset: 0; z-index: -3; pointer-events: none; overflow: hidden; background: var(--bg); }
.bg-fx::before {
  content: ""; position: absolute; inset: -10%;
  background:
    radial-gradient(50% 42% at 18% 0%, rgba(0,240,255,.18), transparent 60%),
    radial-gradient(48% 44% at 88% 6%, rgba(255,43,214,.16), transparent 60%),
    radial-gradient(60% 55% at 50% 108%, rgba(177,77,255,.16), transparent 60%);
}
.aurora { position: absolute; width: 64vw; height: 64vw; max-width: 820px; max-height: 820px; filter: blur(90px); opacity: .5; border-radius: 50%; animation: drift 24s var(--ease) infinite alternate; }
.aurora.a1 { top: -16%; left: -10%; background: radial-gradient(circle, rgba(0,240,255,.6), transparent 65%); }
.aurora.a2 { top: -10%; right: -12%; background: radial-gradient(circle, rgba(255,43,214,.55), transparent 65%); animation-delay: -8s; }
.aurora.a3 { bottom: -24%; left: 32%; background: radial-gradient(circle, rgba(177,77,255,.45), transparent 65%); animation-delay: -15s; }
@keyframes drift { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(5vw,4vw,0) scale(1.16); } }
.grid-fx {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(150,170,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(150,170,255,.045) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(130% 85% at 50% 0%, #000 32%, transparent 80%);
  -webkit-mask-image: radial-gradient(130% 85% at 50% 0%, #000 32%, transparent 80%);
}
.scanlines { position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: .22; background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(0,0,0,.16) 2px 3px); }
.noise-fx { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: clamp(60px, 8.5vw, 120px) 0; }
.section-head { max-width: 740px; margin: 0 auto clamp(40px, 5vw, 62px); text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--cyan); padding: 7px 15px; border-radius: 999px; border: 1px solid var(--border-2); background: var(--surface); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .3; } }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; }
.section-head h2 { font-size: clamp(31px, 4.8vw, 52px); margin: 18px 0 14px; }
.section-head p { color: var(--text-dim); font-size: clamp(15.5px, 1.6vw, 18px); }
.gt { background: var(--grad-3); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gc { color: var(--cyan); }

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; letter-spacing: .01em; padding: 14px 28px; border-radius: 12px; white-space: nowrap; transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s; will-change: transform; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { color: #04121a; background: var(--grad); font-weight: 700; overflow: hidden; box-shadow: 0 0 0 1px rgba(0,240,255,.4), 0 10px 30px -8px rgba(0,240,255,.6), 0 6px 22px -10px rgba(255,43,214,.7); }
.btn-primary::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(110deg, transparent, rgba(255,255,255,.6), transparent); transform: skewX(-20deg); transition: left .6s var(--ease); }
.btn-primary:hover { box-shadow: 0 0 0 1px rgba(0,240,255,.6), 0 14px 40px -8px rgba(0,240,255,.8), 0 10px 30px -10px rgba(255,43,214,.85); }
.btn-primary:hover::after { left: 130%; }
.btn-primary:active { transform: translateY(1px) scale(.99); }
.btn-ghost { color: var(--text); background: var(--surface); border: 1px solid var(--border-2); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--cyan); box-shadow: var(--glow-c); color: var(--cyan); }
.btn-lg { padding: 17px 36px; font-size: 17px; border-radius: 14px; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; border-radius: 10px; }
.magnetic { transform: translate(var(--mtx, 0), var(--mty, 0)); }
.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.55); transform: translate(-50%,-50%) scale(0); pointer-events: none; animation: ripple .6s ease-out forwards; }
@keyframes ripple { to { transform: translate(-50%,-50%) scale(20); opacity: 0; } }
.spark { position: fixed; width: 7px; height: 7px; border-radius: 2px; pointer-events: none; z-index: 300; }

/* ---------- Panel / glass ---------- */
.panel { position: relative; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); border: 1px solid var(--border); border-radius: var(--radius); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.glow-border { transition: border-color .3s, box-shadow .3s, transform .3s var(--ease); }
.glow-border:hover { border-color: var(--border-2); box-shadow: var(--glow-c); }
/* animated RGB conic edge (gamer signature) */
@property --ang { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.rgb-edge::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: conic-gradient(from var(--ang), var(--cyan), var(--violet), var(--magenta), var(--cyan)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s; animation: spin 6s linear infinite; pointer-events: none; }
.rgb-edge:hover::before { opacity: 1; }
@keyframes spin { to { --ang: 360deg; } }

/* =====================================================================
   NAV
   ===================================================================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; transition: background .3s, border-color .3s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(7,8,13,.78); backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--border); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.01em; }
.brand .mark { width: 34px; height: 34px; filter: drop-shadow(0 0 8px rgba(0,240,255,.55)); }
.brand .wlight { color: var(--text); font-weight: 500; }
.brand .wbold { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-dim); font-size: 14.5px; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -7px; height: 2px; width: 0; background: var(--grad); box-shadow: 0 0 8px var(--cyan); transition: width .25s var(--ease); border-radius: 2px; }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border-2); background: var(--surface); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--cyan); margin: 4px auto; border-radius: 2px; transition: .3s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { padding-top: calc(var(--nav-h) + clamp(36px, 6vw, 78px)); padding-bottom: clamp(44px, 6vw, 92px); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1.04fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.hero-copy { max-width: 580px; }
.hero h1 { font-size: clamp(40px, 6.2vw, 76px); margin: 20px 0 18px; }
.hero h1 .line { display: block; }
.hero p.sub { font-size: clamp(15.5px, 1.7vw, 19px); color: var(--text-dim); max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 22px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 9px 18px; }
.trust-badges li { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-dim); }
.trust-badges svg { width: 16px; height: 16px; color: var(--cyan); flex: none; }

/* glitch wordmark */
.glitch { position: relative; display: inline-block; }
.glitch.go::before, .glitch.go::after { content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%; overflow: hidden; }
.glitch.go::before { color: var(--cyan); animation: gl1 .45s steps(2) 1; clip-path: inset(0 0 55% 0); }
.glitch.go::after  { color: var(--magenta); animation: gl2 .45s steps(2) 1; clip-path: inset(55% 0 0 0); }
@keyframes gl1 { 0%{transform:translate(0)} 30%{transform:translate(-4px,-2px)} 60%{transform:translate(3px,1px)} 100%{transform:translate(0)} }
@keyframes gl2 { 0%{transform:translate(0)} 30%{transform:translate(4px,2px)} 60%{transform:translate(-3px,-1px)} 100%{transform:translate(0)} }

/* =====================================================================
   APP WINDOW MOCKUP (hero visual — "this is a real product")
   ===================================================================== */
.appwin { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px -30px rgba(0,0,0,.8), 0 0 0 1px var(--border); }
.appwin-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border-bottom: 1px solid var(--border); }
.aw-id { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.aw-id .mark { width: 20px; height: 20px; }
.aw-ver { font-family: var(--font-mono); font-size: 10px; color: var(--text-mute); border: 1px solid var(--border); padding: 1px 6px; border-radius: 5px; margin-left: 2px; }
.aw-dots { display: flex; gap: 7px; }
.aw-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.14); }
.aw-dots span:last-child { background: rgba(255,43,214,.5); }
.appwin-body { padding: 20px; }
.aw-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.aw-ping { display: flex; align-items: baseline; gap: 8px; }
.aw-ping .pv { font-family: var(--font-mono); font-weight: 700; font-size: clamp(40px, 6vw, 58px); line-height: 1; color: var(--cyan); text-shadow: 0 0 26px rgba(0,240,255,.55); }
.aw-ping .pu { font-family: var(--font-mono); font-size: 15px; color: var(--text-mute); }
.aw-ping .delta { font-family: var(--font-mono); font-size: 11.5px; color: var(--good); margin-left: 6px; }
.aw-ping .delta.up { color: var(--bad); }
.aw-status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--good); border: 1px solid rgba(0,240,192,.3); background: rgba(0,240,192,.08); padding: 6px 11px; border-radius: 999px; }
.aw-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 12px var(--good); animation: blink 1.2s infinite; }

.graph-wrap { position: relative; height: 130px; border: 1px solid var(--border); border-radius: 10px; background: rgba(0,0,0,.28); overflow: hidden; }
.graph-wrap canvas { width: 100%; height: 100%; }
.graph-tag { position: absolute; top: 8px; left: 11px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); pointer-events: none; }
.graph-axis { position: absolute; top: 8px; right: 11px; font-family: var(--font-mono); font-size: 9.5px; color: var(--text-mute); pointer-events: none; }

.metrics-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 14px 0; }
.metric { border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; background: rgba(255,255,255,.02); }
.metric .mv { font-family: var(--font-mono); font-weight: 700; font-size: 19px; color: var(--text); }
.metric .ml { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); margin-top: 2px; }

.opt-list { display: grid; gap: 7px; margin-top: 4px; }
.opt { display: flex; align-items: center; gap: 11px; padding: 9px 12px; border-radius: 9px; background: rgba(255,255,255,.02); border: 1px solid var(--border); font-size: 13px; color: var(--text-dim); }
.opt .chk { width: 18px; height: 18px; border-radius: 5px; flex: none; display: grid; place-items: center; background: var(--grad); }
.opt .chk svg { width: 12px; height: 12px; color: #04121a; }
.opt b { color: var(--text); font-weight: 600; }
.opt .applied { margin-left: auto; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--good); }
.aw-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-mute); }
.eq { display: flex; align-items: flex-end; gap: 3px; height: 18px; }
.eq span { width: 3px; background: var(--grad); border-radius: 2px; height: 30%; animation: eqp 1s ease-in-out infinite; }
@keyframes eqp { 0%,100% { height: 25%; } 50% { height: 100%; } }

/* =====================================================================
   STATS
   ===================================================================== */
.stats { padding: 0; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--border); }
.stat { background: var(--bg-1); padding: 28px 22px; text-align: center; transition: background .3s; }
.stat:hover { background: var(--bg-2); }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4vw, 44px); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--text-dim); font-size: 13px; margin-top: 6px; }

/* =====================================================================
   MARQUEE
   ===================================================================== */
.marquee { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-label { text-align: center; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 20px; }
.marquee-track { display: flex; gap: 54px; width: max-content; animation: scroll 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.4vw, 30px); color: var(--text-mute); transition: color .3s, text-shadow .3s; white-space: nowrap; }
.marquee-track span:hover { color: var(--cyan); text-shadow: 0 0 18px rgba(0,240,255,.6); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =====================================================================
   FEATURES
   ===================================================================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 28px; border-radius: var(--radius); transform-style: preserve-3d; }
.feature .ficon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 17px; background: var(--grad-soft); border: 1px solid var(--border-2); }
.feature .ficon svg { width: 26px; height: 26px; color: var(--cyan); }
.feature h3 { font-size: 20px; margin-bottom: 9px; }
.feature p { color: var(--text-dim); font-size: 14.5px; }
.feature .tag { display: inline-block; margin-top: 14px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--cyan); border: 1px solid var(--border); padding: 4px 10px; border-radius: 999px; }

/* =====================================================================
   HOW IT WORKS
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.steps::before { content: ""; position: absolute; top: 36px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent); opacity: .45; }
.step { position: relative; text-align: center; padding: 0 6px; }
.step .snum { width: 64px; height: 64px; margin: 0 auto 17px; border-radius: 18px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 23px; background: var(--bg-2); border: 1px solid var(--border-2); position: relative; z-index: 1; transition: .35s var(--ease); }
.step.in .snum { box-shadow: var(--glow-c); border-color: var(--cyan); color: var(--cyan); }
.step h3 { font-size: 18px; margin-bottom: 7px; }
.step p { color: var(--text-dim); font-size: 14px; }

/* =====================================================================
   LIVE BEFORE/AFTER
   ===================================================================== */
.ba-stage { max-width: 920px; margin: 0 auto; }
.ba-toggle { display: inline-flex; align-items: center; margin: 0 auto 30px; border: 1px solid var(--border-2); border-radius: 999px; padding: 5px; background: var(--surface); position: relative; }
.ba-toggle button { padding: 11px 30px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--text-dim); position: relative; z-index: 1; transition: color .3s; }
.ba-toggle button.active { color: #04121a; }
.ba-toggle .knob { position: absolute; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px); border-radius: 999px; background: var(--grad); transition: transform .35s var(--ease), background .35s; box-shadow: var(--glow-c); }
.ba-toggle.before .knob { background: linear-gradient(120deg, #ff3b6b, #ff7a4d); box-shadow: 0 0 24px -4px rgba(255,59,107,.7); }
.ba-toggle.after .knob { transform: translateX(100%); }
.ba-panel { padding: 22px; border-radius: var(--radius-lg); }
.ba-readouts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
.ba-read { border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; background: rgba(0,0,0,.2); }
.ba-read .rv { font-family: var(--font-mono); font-weight: 700; font-size: clamp(30px, 4.4vw, 42px); line-height: 1; transition: color .4s; }
.ba-read .rv.good { color: var(--cyan); text-shadow: 0 0 20px rgba(0,240,255,.45); }
.ba-read .rv.bad { color: var(--bad); text-shadow: 0 0 20px rgba(255,59,107,.45); }
.ba-read .ru { font-family: var(--font-mono); font-size: 13px; color: var(--text-mute); }
.ba-read .rl { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-top: 8px; }
.ba-graph-wrap { position: relative; height: 220px; border: 1px solid var(--border); border-radius: 12px; background: rgba(0,0,0,.28); overflow: hidden; }
.ba-graph-wrap canvas { width: 100%; height: 100%; }
.ba-graph-tag { position: absolute; top: 10px; left: 13px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; pointer-events: none; transition: color .4s; }
.ba-state-pill { position: absolute; top: 10px; right: 13px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 6px; border: 1px solid var(--border-2); pointer-events: none; transition: .4s; }
.ba-note { text-align: center; margin-top: 18px; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-mute); }

/* =====================================================================
   TRUST
   ===================================================================== */
.trust-table { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
.trust-col { padding: 28px; border-radius: var(--radius); }
.trust-col h3 { font-size: 18px; margin-bottom: 17px; display: flex; align-items: center; gap: 10px; }
.trust-col.does { border-top: 2px solid var(--cyan); }
.trust-col.never { border-top: 2px solid var(--bad); }
.trust-col li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); color: var(--text-dim); font-size: 14.5px; align-items: flex-start; }
.trust-col li:last-child { border-bottom: 0; }
.trust-col li svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.trust-col.does li svg { color: var(--cyan); }
.trust-col.never li svg { color: var(--bad); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar { padding: 26px; border-radius: var(--radius); }
.pillar .picon { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 15px; background: var(--grad-soft); border: 1px solid var(--border-2); }
.pillar .picon svg { width: 24px; height: 24px; color: var(--cyan); }
.pillar h3 { font-size: 17px; margin-bottom: 8px; }
.pillar p { color: var(--text-dim); font-size: 14px; }

/* =====================================================================
   VIDEOS
   ===================================================================== */
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vid { border-radius: var(--radius); overflow: hidden; }
.vid-thumb { position: relative; aspect-ratio: 16/9; cursor: pointer; overflow: hidden; background: var(--bg-2); }
.vid-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), filter .4s; filter: saturate(1.05) brightness(.8); }
.vid-thumb:hover img { transform: scale(1.06); filter: saturate(1.2) brightness(.68); }
.vid-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(7,8,13,.9)); }
.vid-play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.vid-play .pbtn { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: rgba(7,8,13,.5); border: 1.5px solid rgba(0,240,255,.6); backdrop-filter: blur(5px); transition: .3s var(--ease); }
.vid-play .pbtn svg { width: 23px; height: 23px; color: #fff; margin-left: 3px; }
.vid-thumb:hover .pbtn { background: var(--grad); border-color: transparent; transform: scale(1.1); box-shadow: var(--glow-c); }
.vid-thumb:hover .pbtn svg { color: #04121a; }
.vid-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 15px 17px; pointer-events: none; }
.vid-meta .vt { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; line-height: 1.25; margin-bottom: 5px; }
.vid-meta .vc { font-family: var(--font-mono); font-size: 11px; color: var(--cyan); }
.vid iframe { width: 100%; aspect-ratio: 16/9; border: 0; }
.videos-note { text-align: center; margin-top: 22px; font-size: 12.5px; color: var(--text-mute); }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcard { padding: 26px; border-radius: var(--radius); }
.tcard .stars { color: var(--amber); letter-spacing: 3px; margin-bottom: 13px; font-size: 14px; }
.tcard p { color: var(--text); font-size: 15px; margin-bottom: 16px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .ava { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #04121a; background: var(--grad); font-size: 16px; }
.tcard .who b { font-size: 14px; font-weight: 600; display: block; font-family: var(--font-mono); }
.tcard .who span { font-family: var(--font-mono); font-size: 11px; color: var(--text-mute); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 11px; }
.faq-item { border-radius: var(--radius); overflow: hidden; transition: border-color .3s; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 16.5px; }
.faq-q .ico { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; border: 1px solid var(--border-2); transition: .3s var(--ease); position: relative; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--cyan); border-radius: 1px; }
.faq-q .ico::before { width: 12px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 12px; transition: transform .3s var(--ease); }
.faq-item.open .faq-q .ico { background: var(--grad); border-color: transparent; }
.faq-item.open .faq-q .ico::before, .faq-item.open .faq-q .ico::after { background: #04121a; }
.faq-item.open .faq-q .ico::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 24px 21px; color: var(--text-dim); font-size: 14.5px; }
.faq-item.open { border-color: var(--border-2); }

/* =====================================================================
   FINAL CTA + download card
   ===================================================================== */
.cta-final { text-align: center; }
.cta-box { max-width: 880px; margin: 0 auto; padding: clamp(40px, 6vw, 68px) clamp(24px, 5vw, 56px); border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.cta-box h2 { font-size: clamp(31px, 4.6vw, 52px); margin-bottom: 14px; }
.cta-box p { color: var(--text-dim); font-size: 16.5px; max-width: 520px; margin: 0 auto 26px; }
.dlcard { max-width: 440px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; background: rgba(0,0,0,.25); }
.dlcard .dl-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; text-align: left; }
.dlcard .dl-ico { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-2); }
.dlcard .dl-ico svg { width: 24px; height: 24px; color: var(--cyan); }
.dlcard .dl-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.dlcard .dl-sub { font-family: var(--font-mono); font-size: 11px; color: var(--text-mute); }
.dlcard .dl-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; justify-content: center; }
.dlcard .dl-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-dim); border: 1px solid var(--border); border-radius: 999px; padding: 5px 11px; }
.dlcard .dl-badge svg { width: 13px; height: 13px; color: var(--cyan); }
.cta-meta { margin-top: 16px; font-family: var(--font-mono); font-size: 12px; color: var(--text-mute); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { border-top: 1px solid var(--border); padding: 58px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 38px; margin-bottom: 40px; }
.footer-brand .brand { margin-bottom: 15px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 280px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 15px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-dim); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.footer-bottom small { color: var(--text-mute); font-size: 12.5px; }
.disclaimer { color: var(--text-mute); font-size: 11.5px; line-height: 1.6; margin-top: 20px; max-width: 900px; }

/* =====================================================================
   LEGAL
   ===================================================================== */
.legal { padding-top: calc(var(--nav-h) + 56px); }
.legal .wrap { max-width: 820px; }
.legal-head { margin-bottom: 38px; }
.legal-head h1 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 12px; }
.legal-head .updated { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-mute); }
.legal-body h2 { font-size: 21px; margin: 34px 0 12px; }
.legal-body h2 .n { color: var(--cyan); font-family: var(--font-mono); margin-right: 10px; font-size: 17px; }
.legal-body p, .legal-body li { color: var(--text-dim); font-size: 15px; margin-bottom: 12px; }
.legal-body ul { list-style: none; padding-left: 0; }
.legal-body ul li { margin-bottom: 8px; padding-left: 20px; position: relative; }
.legal-body ul li::before { content: "▸"; position: absolute; left: 0; color: var(--cyan); }
.legal-body strong { color: var(--text); }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-family: var(--font-mono); font-size: 13.5px; margin-bottom: 28px; }
.back-link svg { width: 16px; height: 16px; }
.legal-callout { padding: 20px 24px; border-radius: var(--radius); margin: 24px 0; border-left: 2px solid var(--cyan); background: var(--surface); }
.legal-callout p { margin: 0; color: var(--text); }

/* =====================================================================
   REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-copy { max-width: 640px; margin: 0 auto; text-align: center; }
  .hero-cta, .trust-badges { justify-content: center; }
  .appwin { max-width: 520px; margin: 0 auto; }
  .features-grid, .videos-grid, .tcards, .pillars { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 820px) {
  .nav-links { position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; gap: 0; background: rgba(7,8,13,.98); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); padding: 8px 0; transform: translateY(-130%); transition: transform .35s var(--ease); }
  .nav.open .nav-links { transform: none; }
  .nav-links a { width: 100%; padding: 16px 24px; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .trust-table { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .features-grid, .videos-grid, .tcards, .pillars, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .ba-readouts { grid-template-columns: 1fr; }
  .metrics-row { grid-template-columns: 1fr 1fr 1fr; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .aurora, .marquee-track, .eq span { animation: none; }
}
