/* ============================================================
   BINARY201 — Design System
   Premium SaaS / Software Company aesthetic
   Reference quality: Stripe · Linear · Vercel · Ramp · Notion
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Brand — derived from the Binary201 logo (blue gradient → navy) */
  --brand-50:  #eef4ff;
  --brand-100: #dbe7ff;
  --brand-200: #bcd2ff;
  --brand-300: #8eb3ff;
  --brand-400: #5b8dfb;
  --brand-500: #3b82f6;  /* primary */
  --brand-600: #2563eb;
  --brand-700: #1d4ed8;
  --brand-800: #1e3a8a;
  --brand-900: #14245c;
  --cyan-400:  #22d3ee;
  --indigo-500:#6366f1;
  --violet-500:#8b5cf6;

  /* Ink / neutrals — deep, slightly cool near-black for a premium console feel */
  --ink-950: #04060d;
  --ink-900: #070a13;
  --ink-850: #0a0e1a;
  --ink-800: #0e1322;
  --ink-700: #1a2138;
  --ink-600: #28344f;
  --slate-500:#64748b;
  --slate-400:#94a3b8;
  --slate-300:#cbd5e1;
  --slate-200:#e2e8f0;
  --slate-100:#f1f5f9;
  --slate-50: #f8fafc;
  --white:    #ffffff;

  /* Semantic — light surfaces (default doc theme) */
  --bg:            var(--white);
  --bg-subtle:     var(--slate-50);
  --surface:       var(--white);
  --border:        #e6eaf2;
  --border-strong: #d6dded;
  --text:          #0b1220;
  --text-soft:     #475569;
  --text-faint:    #6b7894;

  /* Effects */
  --grad-brand: linear-gradient(118deg, #6aa6ff 0%, #4f7cff 46%, #6366f1 100%);
  --grad-brand-soft: linear-gradient(120deg, #2f6bf0, #5b63ef);
  --grad-ink: linear-gradient(180deg, #0a0e1a 0%, #04060d 100%);
  --glow-brand: 0 0 0 1px rgba(59,130,246,.18), 0 18px 60px -20px rgba(59,130,246,.55);

  --shadow-xs: 0 1px 2px rgba(11,18,32,.06);
  --shadow-sm: 0 1px 3px rgba(11,18,32,.08), 0 1px 2px rgba(11,18,32,.04);
  --shadow-md: 0 8px 24px -8px rgba(11,18,32,.14), 0 2px 6px rgba(11,18,32,.06);
  --shadow-lg: 0 24px 60px -18px rgba(11,18,32,.22);
  --shadow-xl: 0 40px 90px -28px rgba(13,20,40,.40);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Type */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --step--1: clamp(.82rem, .8rem + .1vw, .9rem);
  --step-0:  clamp(1rem, .97rem + .15vw, 1.06rem);
  --step-1:  clamp(1.18rem, 1.1rem + .4vw, 1.35rem);
  --step-2:  clamp(1.45rem, 1.3rem + .7vw, 1.85rem);
  --step-3:  clamp(1.85rem, 1.5rem + 1.6vw, 2.6rem);
  --step-4:  clamp(2.3rem, 1.7rem + 2.9vw, 3.6rem);
  --step-5:  clamp(2.7rem, 1.8rem + 4.4vw, 4.7rem);

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --gutter: clamp(1.1rem, 4vw, 2rem);
  --nav-h: 68px;

  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ---------- 2. RESET / BASE ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration:.001ms !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg,video { display:block; max-width:100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: rgba(59,130,246,.25); }
:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 3px; border-radius: 6px; }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; color: var(--text); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing:-.015em; }
p { text-wrap: pretty; }

/* ---------- 3. LAYOUT PRIMITIVES ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.section { padding-block: clamp(4rem, 8vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.measure { max-width: 42ch; }
.measure-wide { max-width: 60ch; }

/* Dark theme scope (hero, products, footer) */
.theme-dark {
  --bg: var(--ink-900);
  --bg-subtle: var(--ink-850);
  --surface: var(--ink-850);
  --border: rgba(255,255,255,.09);
  --border-strong: rgba(255,255,255,.16);
  --text: #f4f7ff;
  --text-soft: #aab6d4;
  --text-faint: #7f8db0;
  background: var(--bg);
  color: var(--text);
}

/* ---------- 4. SHARED ATOMS ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand-600);
}
.theme-dark .eyebrow { color: var(--brand-300); }
.eyebrow::before { content:""; width: 22px; height: 1px; background: currentColor; opacity:.6; }
.eyebrow--center::after { content:""; width: 22px; height: 1px; background: currentColor; opacity:.6; }

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .9rem; }
.section-head p { margin-top: 1rem; color: var(--text-soft); font-size: var(--step-1); line-height: 1.5; }

/* Buttons */
.btn {
  --pad-y: .8rem; --pad-x: 1.35rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: var(--pad-y) var(--pad-x);
  font-weight: 550; font-size: .96rem; letter-spacing: -.01em;
  border-radius: var(--radius-pill);
  transition: transform .2s var(--ease-out), box-shadow .25s var(--ease-out), background .2s, color .2s, border-color .2s;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #fff; background: var(--brand-600);
  background-image: var(--grad-brand-soft);
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 12px 30px -12px rgba(37,99,235,.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 18px 40px -12px rgba(37,99,235,.85); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: var(--text); background: var(--surface);
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-xs);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand-400); box-shadow: var(--shadow-md); }
.theme-dark .btn-ghost { background: rgba(255,255,255,.04); color: #fff; border-color: rgba(255,255,255,.16); }
.theme-dark .btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.3); }
.btn-lg { --pad-y: 1rem; --pad-x: 1.8rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-link { display:inline-flex; align-items:center; gap:.4rem; color: var(--brand-600); font-weight: 550; }
.theme-dark .btn-link { color: var(--brand-300); }
.btn-link svg { width: 16px; height:16px; transition: transform .2s var(--ease-out); }
.btn-link:hover svg { transform: translateX(4px); }

/* Pills / badges */
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .85rem; border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 500; color: var(--text-soft);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.18); }

/* Card */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
}

/* ---------- 5. NAVBAR ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,12,24,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: rgba(255,255,255,.08);
}
.nav__inner { display: flex; align-items: center; gap: 2rem; width: 100%; max-width: var(--container-wide); margin-inline:auto; padding-inline: var(--gutter); }
.nav__links { display: flex; align-items: center; gap: .35rem; margin-left: .5rem; }
.nav__link {
  position: relative; padding: .5rem .8rem; border-radius: 9px;
  font-size: .92rem; font-weight: 480; color: rgba(244,247,255,.74);
  transition: color .2s, background .2s;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav__spacer { flex: 1; }
.nav__cta { display: flex; align-items: center; gap: .6rem; }
/* Nav sits over the dark hero / dark glass — keep its ghost button dark-styled in any page theme */
.nav .btn-ghost { background: rgba(255,255,255,.06); color:#fff; border:1px solid rgba(255,255,255,.18); }
.nav .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.34); }
.nav__burger { display:none; width:42px; height:42px; border-radius:10px; align-items:center; justify-content:center; color:#fff; }
.nav__burger span { display:block; width:18px; height:2px; background:currentColor; position:relative; transition:.25s; }
.nav__burger span::before,.nav__burger span::after { content:""; position:absolute; left:0; width:18px; height:2px; background:currentColor; transition:.25s; }
.nav__burger span::before { top:-6px; } .nav__burger span::after { top:6px; }
.nav.open .nav__burger span { background: transparent; }
.nav.open .nav__burger span::before { top:0; transform: rotate(45deg); }
.nav.open .nav__burger span::after { top:0; transform: rotate(-45deg); }

/* Wordmark */
.wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; letter-spacing: -.04em; color: #fff; display:inline-flex; align-items:center; }
.wordmark b { font-weight: 700; background: var(--grad-brand); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.wordmark--ink { color: var(--ink-900); }
.dropdown { position: relative; }
.dropdown__panel {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 320px; padding: .6rem; border-radius: 16px;
  background: rgba(13,20,36,.96); border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-xl); backdrop-filter: blur(20px);
  opacity: 0; visibility: hidden; transition: .22s var(--ease-out);
}
.dropdown:hover .dropdown__panel, .dropdown:focus-within .dropdown__panel { opacity:1; visibility:visible; transform: translateX(-50%) translateY(0); }
.dropdown__item { display:flex; gap:.85rem; padding:.7rem .8rem; border-radius:11px; transition:background .18s; }
.dropdown__item:hover { background: rgba(255,255,255,.06); }
.dropdown__ico { flex:none; width:38px; height:38px; border-radius:10px; display:grid; place-items:center; background:var(--grad-brand-soft); color:#fff; }
.dropdown__ico svg { width:20px; height:20px; }
.dropdown__t { font-weight:600; font-size:.92rem; color:#fff; }
.dropdown__d { font-size:.8rem; color: var(--text-faint); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: rgba(8,12,24,.98); backdrop-filter: blur(20px);
  padding: 1.5rem var(--gutter); display: flex; flex-direction: column; gap: .25rem;
  transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .28s var(--ease-out);
}
.nav.open + .mobile-menu { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a { padding: .95rem .5rem; font-size: 1.1rem; font-weight: 500; color: #e7ecfa; border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-menu .btn { margin-top: 1.25rem; }

/* ---------- 6. HERO ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(3rem,7vw,6rem)); padding-bottom: clamp(3rem,7vw,6rem); overflow: hidden; }
.hero__bg { position:absolute; inset:0; z-index:0; pointer-events:none; }
.hero__grid {
  position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 35%, transparent 75%);
}
.hero__glow { position:absolute; border-radius:50%; filter: blur(80px); opacity:.55; }
.hero__glow--1 { top:-10%; left:8%; width:520px; height:520px; background: radial-gradient(circle, rgba(59,130,246,.55), transparent 65%); }
.hero__glow--2 { top:6%; right:2%; width:480px; height:480px; background: radial-gradient(circle, rgba(34,211,238,.4), transparent 65%); }
.hero__glow--3 { bottom:-20%; left:40%; width:560px; height:420px; background: radial-gradient(circle, rgba(99,102,241,.4), transparent 70%); }
.hero__inner { position: relative; z-index: 1; display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; grid-template-columns: 1.05fr .95fr; }
.hero__copy { max-width: 600px; }
.hero h1 { font-size: var(--step-5); margin-top: 1.5rem; }
.hero__sub { margin-top: 1.5rem; font-size: var(--step-1); color: var(--text-soft); max-width: 33ch; line-height: 1.5; }
.hero__cta { display:flex; flex-wrap:wrap; gap: .9rem; margin-top: 2rem; }
.hero__meta { display:flex; flex-wrap:wrap; gap: 1.5rem; margin-top: 2.25rem; }
.hero__meta div { display:flex; flex-direction:column; }
.hero__meta b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color:#fff; }
.hero__meta span { font-size: .82rem; color: var(--text-faint); }

/* Hero product mock */
.mock {
  position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(10px); overflow: hidden;
}
.mock__bar { display:flex; align-items:center; gap:.5rem; padding:.85rem 1rem; border-bottom:1px solid rgba(255,255,255,.08); }
.mock__bar i { width:11px; height:11px; border-radius:50%; background: rgba(255,255,255,.18); }
.mock__bar i:nth-child(1){ background:#ff5f57; } .mock__bar i:nth-child(2){ background:#febc2e; } .mock__bar i:nth-child(3){ background:#28c840; }
.mock__url { margin-left:.6rem; font-family:var(--font-mono); font-size:.72rem; color:var(--text-faint); }
.mock__body { padding: 1.2rem; display:grid; gap: 1rem; }
.mock__row { display:grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mock__panel { background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 1rem; }
.mock__k { font-family:var(--font-mono); font-size:.66rem; letter-spacing:.1em; text-transform:uppercase; color: var(--text-faint); }
.mock__v { font-family: var(--font-display); font-size: 1.7rem; font-weight:600; color:#fff; margin-top:.35rem; }
.mock__trend { font-size:.72rem; color:#34d399; margin-top:.2rem; }
.spark { display:flex; align-items:flex-end; gap:5px; height:54px; margin-top:.8rem; }
.spark i { flex:1; border-radius:4px 4px 0 0; background: var(--grad-brand-soft); opacity:.85; animation: grow 1.1s var(--ease-out) backwards; }
@keyframes grow { from { height:0 !important; opacity:0; } }
.floaty { position:absolute; z-index:2; padding:.7rem .9rem; border-radius:13px; background: rgba(13,20,36,.85); border:1px solid rgba(255,255,255,.14); box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); display:flex; align-items:center; gap:.6rem; font-size:.82rem; color:#e7ecfa; }
.floaty svg { width:30px; height:30px; padding:6px; border-radius:8px; background: var(--grad-brand-soft); color:#fff; }
.floaty--tl { top:8%; left:-7%; animation: bob 5s ease-in-out infinite; }
.floaty--br { bottom:10%; right:-6%; animation: bob 6s ease-in-out infinite .8s; }
@keyframes bob { 50% { transform: translateY(-12px); } }

/* Hero "alive" treatment */
.mock { isolation:isolate; }
.mock::after { content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  background: radial-gradient(80% 60% at 50% -10%, rgba(106,166,255,.18), transparent 60%); }
.mock__glow { position:absolute; inset:-30% -10% auto -10%; height:60%; z-index:-1;
  background: radial-gradient(closest-side, rgba(79,124,255,.5), transparent); filter:blur(40px);
  animation: breathe 6s ease-in-out infinite; }
@keyframes breathe { 0%,100%{ opacity:.5; transform:translateY(0) scale(1);} 50%{ opacity:.85; transform:translateY(6px) scale(1.06);} }
.spark { position:relative; overflow:hidden; }
.spark::after { content:""; position:absolute; top:0; bottom:0; width:40%; left:-40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  animation: scan 3.6s ease-in-out infinite; }
@keyframes scan { 0%{ left:-45%; } 60%,100%{ left:115%; } }
.live { display:inline-flex; align-items:center; gap:.4rem; font-size:.66rem; font-family:var(--font-mono);
  text-transform:uppercase; letter-spacing:.12em; color:#34d399; }
.live i { width:6px; height:6px; border-radius:50%; background:#34d399; box-shadow:0 0 0 0 rgba(52,211,153,.6); animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0%{ box-shadow:0 0 0 0 rgba(52,211,153,.55);} 70%,100%{ box-shadow:0 0 0 7px rgba(52,211,153,0);} }
.floaty--tl { top:6%; left:-8%; }
.floaty .sparkle { color:#a5b8ff; }
@media (prefers-reduced-motion: reduce){
  .mock__glow, .spark::after, .live i, .floaty { animation:none !important; }
}

/* Hero ecosystem infographic */
.ecosystem { position:relative; width:100%; max-width:480px; margin-inline:auto; aspect-ratio:1/1; }
.ecosystem__lines { position:absolute; inset:0; width:100%; height:100%; overflow:visible; }
.ecosystem__lines line { stroke:url(#ecoGrad); stroke-width:1.5; stroke-dasharray:5 7; opacity:.55; animation: ecoflow 3s linear infinite; }
.ecosystem__lines circle { fill:none; stroke:rgba(255,255,255,.08); stroke-dasharray:3 7; }
@keyframes ecoflow { to { stroke-dashoffset:-24; } }

.eco-hub {
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); z-index:3;
  width:96px; height:96px; border-radius:24px; display:grid; place-items:center; text-align:center;
  background:var(--grad-brand-soft);
  box-shadow:0 22px 50px -12px rgba(47,107,240,.7), inset 0 1px 0 rgba(255,255,255,.45);
}
.eco-hub::after { content:""; position:absolute; inset:-10px; border-radius:30px; border:1px solid rgba(106,166,255,.4); animation: ecopulse 2.8s ease-out infinite; }
@keyframes ecopulse { 0%{ transform:scale(.9); opacity:.7; } 70%,100%{ transform:scale(1.3); opacity:0; } }
.eco-hub b { font-family:var(--font-display); font-size:1.5rem; font-weight:700; color:#fff; letter-spacing:-.04em; line-height:1; }
.eco-hub span { font-size:.5rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.88); margin-top:.25rem; font-family:var(--font-mono); }

.eco-node {
  position:absolute; left:var(--x); top:var(--y); transform:translate(-50%,-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:.45rem;
  animation: ecofloat 5.5s ease-in-out infinite; animation-delay:var(--d,0s);
}
.eco-node__ic {
  width:52px; height:52px; border-radius:15px; display:grid; place-items:center; color:#cfe0ff;
  background:rgba(28,40,68,.72); border:1px solid rgba(255,255,255,.14);
  box-shadow:0 14px 30px -14px rgba(0,0,0,.6); transition:transform .3s var(--ease-out), border-color .3s, color .3s;
}
.eco-node__ic svg { width:25px; height:25px; }
.eco-node:hover .eco-node__ic { transform:translateY(-3px); border-color:rgba(106,166,255,.55); color:#fff; }
.eco-node > span:last-child { font-size:.72rem; font-weight:550; color:var(--text-soft); white-space:nowrap; background:rgba(7,10,19,.55); padding:.1rem .45rem; border-radius:6px; }
@keyframes ecofloat { 50% { transform:translate(-50%, calc(-50% - 7px)); } }

@media (prefers-reduced-motion: reduce) {
  .ecosystem__lines line, .eco-hub::after, .eco-node { animation:none; }
}
@media (max-width:480px) {
  .ecosystem { max-width:340px; }
  .eco-node__ic { width:46px; height:46px; }
  .eco-node__ic svg { width:22px; height:22px; }
  .eco-node > span:last-child { font-size:.64rem; }
}

/* Marquee logos */
.marquee { position:relative; margin-top: clamp(3rem,6vw,4.5rem); }
.marquee__label { text-align:center; font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color: var(--text-faint); margin-bottom:1.5rem; font-family:var(--font-mono); }
.marquee__track { display:flex; gap:3.5rem; align-items:center; flex-wrap:wrap; justify-content:center; opacity:.75; }
.marquee__track span { font-family:var(--font-display); font-weight:600; font-size:1.15rem; letter-spacing:-.02em; color: var(--text-soft); white-space:nowrap; }

/* ---------- 7. TRUST / STATS ---------- */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.stat { padding: 1.75rem 1.5rem; border-radius: var(--radius-lg); border:1px solid var(--border); background: var(--surface); position:relative; overflow:hidden; }
.stat::before { content:""; position:absolute; inset:0 auto auto 0; width:100%; height:3px; background: var(--grad-brand); opacity:.9; }
.stat__num { font-family:var(--font-display); font-size: clamp(2.1rem,4vw,2.9rem); font-weight:600; letter-spacing:-.03em; color: var(--text); line-height:1; }
.stat__num small { font-size:.55em; color: var(--brand-500); }
.stat__label { margin-top:.6rem; color: var(--text-soft); font-size:.92rem; }

/* ---------- 8. SERVICES ---------- */
.services-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:1.1rem; margin-top: 3rem; }
.svc {
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
  position:relative; overflow:hidden;
}
.svc::after { content:""; position:absolute; inset:0; border-radius:inherit; padding:1px; background:linear-gradient(160deg, rgba(99,130,255,.5), transparent 40%); -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 .3s; pointer-events:none; }
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.svc:hover::after { opacity:1; }
.svc:hover .svc__ico { transform: translateY(-2px) scale(1.04); }
.svc__ico {
  width:54px; height:54px; border-radius:15px; display:grid; place-items:center; color:#fff;
  background: var(--grad-brand-soft);
  box-shadow: 0 10px 24px -8px rgba(47,107,240,.65), inset 0 1px 0 rgba(255,255,255,.35), inset 0 -8px 16px -8px rgba(0,0,0,.4);
  position:relative; transition: transform .3s var(--ease-out);
}
.svc__ico::before { content:""; position:absolute; inset:0; border-radius:inherit; border:1px solid rgba(255,255,255,.16); }
.svc__ico svg { width:26px; height:26px; position:relative; filter: drop-shadow(0 1px 1px rgba(0,0,0,.25)); }
.svc--ai { border-color: rgba(99,130,255,.4); background:
  radial-gradient(120% 120% at 100% 0%, rgba(99,130,255,.1), transparent 55%), var(--surface); }
.svc--ai .svc__ico { background: linear-gradient(135deg,#4f7cff,#7c5cff); box-shadow: 0 10px 28px -8px rgba(124,92,255,.7), inset 0 1px 0 rgba(255,255,255,.4); }
.svc h3 { font-size:1.08rem; margin-top:1.15rem; letter-spacing:-.01em; }
.svc p { margin-top:.5rem; color: var(--text-soft); font-size:.92rem; line-height:1.55; }

/* ---------- 9. FEATURED PRODUCTS ---------- */
.products { position:relative; }
.product {
  display:grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem,5vw,4rem); align-items:center;
  padding: clamp(2rem,4vw,3.5rem); border-radius: var(--radius-xl);
  border:1px solid var(--border); background: var(--surface); position:relative; overflow:hidden;
}
.product + .product { margin-top: 2rem; }
.product--rev .product__media { order:-1; }
.product__badge { display:inline-flex; align-items:center; gap:.5rem; font-family:var(--font-mono); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color: var(--brand-300); padding:.4rem .8rem; border-radius:var(--radius-pill); background: rgba(59,130,246,.12); border:1px solid rgba(59,130,246,.25); }
.product h3 { font-size: var(--step-3); margin-top:1.1rem; }
.product__tag { font-size:.95rem; color: var(--brand-400); font-weight:550; margin-top:.5rem; }
.product__desc { margin-top:1rem; color: var(--text-soft); font-size:1.02rem; line-height:1.6; }
.product__feats { margin-top:1.4rem; display:grid; grid-template-columns:1fr 1fr; gap:.65rem; }
.product__feats li { display:flex; gap:.55rem; align-items:flex-start; font-size:.92rem; color: var(--text-soft); }
.product__feats svg { flex:none; width:18px; height:18px; color: var(--brand-500); margin-top:.1rem; }
.product__metrics { display:flex; gap:1.75rem; margin:1.5rem 0; flex-wrap:wrap; }
.product__metrics b { font-family:var(--font-display); font-size:1.55rem; font-weight:600; color:var(--text); display:block; line-height:1; }
.product__metrics span { font-size:.78rem; color: var(--text-faint); }
.product__cta { display:flex; gap:.8rem; flex-wrap:wrap; margin-top:.5rem; }

/* product dashboard visuals */
.dash { border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border-strong); box-shadow: var(--shadow-xl); background: var(--ink-850); }
.dash__top { display:flex; align-items:center; gap:.5rem; padding:.7rem .9rem; background: rgba(255,255,255,.03); border-bottom:1px solid rgba(255,255,255,.08); }
.dash__top i { width:9px; height:9px; border-radius:50%; background: rgba(255,255,255,.2); }
.dash__top span { margin-left:auto; font-family:var(--font-mono); font-size:.68rem; color:#7f8db0; }
.dash__main { padding:1.1rem; display:grid; gap:.9rem; }
.dash__cards { display:grid; grid-template-columns: repeat(3,1fr); gap:.7rem; }
.dash__c { background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:10px; padding:.8rem; }
.dash__c .k { font-family:var(--font-mono); font-size:.6rem; text-transform:uppercase; letter-spacing:.08em; color:#7f8db0; }
.dash__c .v { font-family:var(--font-display); font-weight:600; font-size:1.25rem; color:#fff; margin-top:.3rem; }
.dash__c .v small { font-size:.6em; color:#34d399; }
.dash__chart { background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:10px; padding:1rem; }
.dash__bars { display:flex; align-items:flex-end; gap:8px; height:120px; }
.dash__bars i { flex:1; border-radius:5px 5px 0 0; background: linear-gradient(180deg, var(--brand-400), var(--brand-700)); opacity:.9; }
.dash__row { display:flex; align-items:center; gap:.7rem; padding:.6rem .2rem; border-bottom:1px solid rgba(255,255,255,.06); font-size:.78rem; color:#aab6d4; }
.dash__row .grade { font-family:var(--font-display); font-weight:700; width:30px; height:30px; border-radius:8px; display:grid; place-items:center; color:#fff; }
.grade-a{ background:#16a34a; } .grade-b{ background:#2563eb; } .grade-c{ background:#d97706; }
.dash__row .bar { flex:1; height:7px; border-radius:99px; background: rgba(255,255,255,.08); overflow:hidden; }
.dash__row .bar i { display:block; height:100%; background: var(--grad-brand); }

/* ---------- 10. CASE STUDY ---------- */
.case { display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.case__media { position:relative; }
.case__frame { border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--border); box-shadow: var(--shadow-xl); aspect-ratio: 4/3; position:relative; background: linear-gradient(140deg,#1f1530,#0f0a18); }
.case__frame .scene { position:absolute; inset:0; display:grid; place-items:center; gap:.5rem; text-align:center; color:#f4ecdf; }
.case__frame .scene h4 { font-family: "Space Grotesk"; font-size:2rem; color:#f6ede0; letter-spacing:.02em; }
.case__frame .scene .sub { font-style:italic; color:#d9b8a3; letter-spacing:.18em; text-transform:uppercase; font-size:.72rem; }
.case__deco { position:absolute; border-radius:50%; }
.case__steps { display:grid; gap:1.1rem; margin-top:1.5rem; }
.case__step { display:grid; grid-template-columns:auto 1fr; gap:1rem; }
.case__step .n { font-family:var(--font-mono); font-size:.8rem; color: var(--brand-400); padding-top:.15rem; }
.case__step h4 { font-size:1rem; font-family:var(--font-sans); font-weight:600; }
.case__step p { font-size:.9rem; color: var(--text-soft); margin-top:.2rem; }
.case__results { display:flex; gap:2rem; margin-top:1.75rem; flex-wrap:wrap; }
.case__results b { font-family:var(--font-display); font-size:1.9rem; font-weight:600; display:block; line-height:1; }
.case__results span { font-size:.8rem; color: var(--text-faint); }

/* ---------- 11. PROCESS ---------- */
.process-grid { display:grid; grid-template-columns: repeat(6,1fr); gap:1rem; margin-top:3rem; counter-reset: step; position:relative; }
.proc { position:relative; padding-top:2.4rem; }
.proc::before { counter-increment: step; content: "0" counter(step); position:absolute; top:0; left:0; font-family:var(--font-mono); font-size:.78rem; color: var(--brand-500); }
.proc::after { content:""; position:absolute; top:.35rem; left:2.4rem; right:-1rem; height:1px; background: linear-gradient(90deg, var(--border-strong), transparent); }
.proc:last-child::after { display:none; }
.proc .node { width:14px; height:14px; border-radius:50%; background: var(--brand-500); box-shadow:0 0 0 5px rgba(59,130,246,.15); position:absolute; top:-.05rem; left:1.55rem; }
.proc h3 { font-size:1.02rem; }
.proc p { margin-top:.4rem; font-size:.85rem; color: var(--text-soft); line-height:1.5; }

/* ---------- 12. WHY ---------- */
.why-grid { display:grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items:center; }
.why-list { display:grid; gap:.6rem; }
.why-item { display:grid; grid-template-columns:auto 1fr; gap:1rem; padding:1.2rem; border-radius:var(--radius); border:1px solid var(--border); background: var(--surface); transition:.25s var(--ease-out); }
.why-item:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateX(4px); }
.why-item .ic { width:42px; height:42px; border-radius:11px; display:grid; place-items:center; background: rgba(59,130,246,.1); color: var(--brand-600); }
.theme-dark .why-item .ic { background: rgba(59,130,246,.16); color: var(--brand-300); }
.why-item .ic svg { width:22px; height:22px; }
.why-item h3 { font-size:1.02rem; font-family:var(--font-sans); font-weight:650; }
.why-item p { font-size:.88rem; color: var(--text-soft); margin-top:.2rem; }
.why-visual { border-radius:var(--radius-xl); padding:2rem; background: var(--grad-ink); border:1px solid var(--ink-700); color:#fff; position:relative; overflow:hidden; }
.why-visual .rings { position:absolute; inset:0; opacity:.5; }

/* ---------- 12b. AI SECTION ---------- */
.ai-thread { display:flex; flex-direction:column; gap:.65rem; }
.ai-msg { max-width:90%; padding:.7rem .9rem; border-radius:15px; font-size:.86rem; line-height:1.5; }
.ai-msg strong { color:#fff; }
.ai-msg--user { align-self:flex-end; background: var(--grad-brand-soft); color:#fff; border-bottom-right-radius:5px; }
.ai-msg--bot { align-self:flex-start; background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.09); color:#d3dcf2; border-bottom-left-radius:5px; }
.ai-input { display:flex; align-items:center; justify-content:space-between; gap:.6rem; margin-top:.35rem; padding:.55rem .55rem .55rem .9rem; border-radius:13px; background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); color:#7f8db0; font-size:.82rem; }
.ai-input button { flex:none; width:32px; height:32px; border-radius:9px; background: var(--grad-brand-soft); color:#fff; display:grid; place-items:center; }
.ai-input button svg { width:16px; height:16px; }
.ai-typing { display:inline-flex; gap:4px; align-items:center; }
.ai-typing i { width:6px; height:6px; border-radius:50%; background: var(--brand-300); animation: aiblink 1.2s infinite both; }
.ai-typing i:nth-child(2){ animation-delay:.2s; } .ai-typing i:nth-child(3){ animation-delay:.4s; }
@keyframes aiblink { 0%,80%,100%{ opacity:.25; } 40%{ opacity:1; } }
@media (prefers-reduced-motion: reduce){ .ai-typing i{ animation:none; opacity:.7; } }

/* ---------- 13. TESTIMONIALS ---------- */
.tcarousel { position:relative; overflow:hidden; margin-top:3rem; }
.ttrack { display:flex; transition: transform .6s var(--ease-out); }
.tslide { min-width:100%; padding:0 .5rem; }
.tquote {
  max-width:880px; margin-inline:auto; text-align:center;
  padding: clamp(2rem,4vw,3.5rem); border-radius: var(--radius-xl);
  background: var(--surface); border:1px solid var(--border); box-shadow: var(--shadow-lg);
}
.tquote .stars { color:#fbbf24; letter-spacing:.15em; }
.tquote blockquote { font-family: var(--font-display); font-weight:500; font-size: clamp(1.3rem,2.6vw,1.9rem); line-height:1.35; letter-spacing:-.02em; margin:1.2rem 0 1.6rem; }
.tquote .who { display:flex; align-items:center; justify-content:center; gap:.9rem; }
.tquote .ava { width:46px; height:46px; border-radius:50%; background: var(--grad-brand-soft); display:grid; place-items:center; color:#fff; font-weight:600; font-family:var(--font-display); }
.tquote .who b { display:block; font-size:.95rem; } .tquote .who span { font-size:.82rem; color: var(--text-faint); }
.tdots { display:flex; gap:.5rem; justify-content:center; margin-top:1.75rem; }
.tdots button { width:8px; height:8px; border-radius:99px; background: var(--border-strong); transition:.25s; }
.tdots button.active { width:26px; background: var(--brand-500); }

/* ---------- 14. CONTACT ---------- */
.contact { display:grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items:start; }
.contact__info h2 { font-size: var(--step-4); }
.contact__channels { display:grid; gap:.8rem; margin-top:2rem; }
.cch { display:grid; grid-template-columns:auto 1fr; gap:1rem; align-items:center; padding:1.1rem; border-radius:var(--radius); border:1px solid var(--border); background: var(--surface); transition:.25s; }
.cch:hover { border-color: var(--brand-400); box-shadow: var(--shadow-md); }
.cch .ic { width:44px; height:44px; border-radius:11px; display:grid; place-items:center; background: rgba(59,130,246,.12); color: var(--brand-600); }
.theme-dark .cch .ic { color: var(--brand-300); }
.cch .ic svg { width:22px; height:22px; }
.cch b { font-size:.95rem; } .cch span { font-size:.84rem; color: var(--text-soft); }
.contact__promise { display:flex; align-items:center; gap:.6rem; margin-top:1.5rem; font-size:.9rem; color: var(--text-soft); }
.contact__promise svg { width:20px; height:20px; color:#22c55e; }

.form { background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-xl); padding: clamp(1.5rem,3vw,2.25rem); box-shadow: var(--shadow-lg); }
.form__grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.field { display:flex; flex-direction:column; gap:.4rem; }
.field--full { grid-column:1/-1; }
.field label { font-size:.82rem; font-weight:550; color: var(--text); }
.field label .req { color:#ef4444; }
.field input, .field select, .field textarea {
  font: inherit; font-size:.92rem; padding:.75rem .85rem; border-radius:10px;
  border:1px solid var(--border-strong); background: var(--bg); color: var(--text);
  transition: border-color .2s, box-shadow .2s; width:100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--brand-500); box-shadow: 0 0 0 4px rgba(59,130,246,.14); }
.field .hint { font-size:.74rem; color: var(--text-faint); }
.field .err { font-size:.74rem; color:#ef4444; display:none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color:#ef4444; }
.field.invalid .err { display:block; }
.checkbox { grid-column:1/-1; display:flex; gap:.7rem; align-items:flex-start; padding:.9rem 1rem; border-radius:12px; background: var(--bg-subtle); border:1px solid var(--border); cursor:pointer; }
.checkbox input { width:20px; height:20px; accent-color: var(--brand-600); margin-top:.1rem; flex:none; }
.checkbox span { font-size:.88rem; color: var(--text-soft); }
.form__note { font-size:.78rem; color: var(--text-faint); margin-top:.9rem; text-align:center; }
.form__legal { margin-top:.5rem; }
.form__legal a { color: var(--text-soft); text-decoration: underline; text-underline-offset:2px; }
.form__legal a:hover { color: var(--brand-500); }
/* Hide the reCAPTCHA v3 badge (compliant: attribution text shown under each form instead) */
.grecaptcha-badge { visibility: hidden !important; }
.form__success { display:none; text-align:center; padding:2rem 1rem; }
.form__success.show { display:block; }
.form__success .ck { width:64px; height:64px; margin:0 auto 1rem; border-radius:50%; background: rgba(34,197,94,.12); display:grid; place-items:center; color:#22c55e; }
.form__success .ck svg { width:34px; height:34px; }

/* ---------- 15. FOOTER ---------- */
.footer { padding-block: clamp(3.5rem,6vw,5rem) 2.5rem; border-top:1px solid var(--border); }
.footer__top { display:grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap:2.5rem; }
.footer__brand .wordmark { margin-bottom:1rem; }
.footer__brand p { color: var(--text-soft); font-size:.9rem; max-width:30ch; }
.footer__social { display:flex; gap:.6rem; margin-top:1.4rem; }
.footer__social a { width:38px; height:38px; border-radius:10px; display:grid; place-items:center; border:1px solid var(--border-strong); color: var(--text-soft); transition:.2s; }
.footer__social a:hover { color:#fff; background: var(--brand-600); border-color: var(--brand-600); transform: translateY(-2px); }
.footer__social svg { width:18px; height:18px; }
.footer__col h4 { font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color: var(--text-faint); font-family:var(--font-sans); font-weight:600; margin-bottom:1rem; }
.footer__col a { display:block; padding:.35rem 0; font-size:.9rem; color: var(--text-soft); transition:color .2s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { display:flex; justify-content:space-between; align-items:center; gap:1rem; flex-wrap:wrap; margin-top:3rem; padding-top:1.75rem; border-top:1px solid var(--border); font-size:.82rem; color: var(--text-faint); }

/* CTA band */
.ctaband { position:relative; border-radius: var(--radius-xl); padding: clamp(2.5rem,5vw,4rem); text-align:center; overflow:hidden; background: var(--grad-ink); border:1px solid var(--ink-700); }
.ctaband .hero__glow--1 { top:-40%; left:30%; opacity:.4; }
.ctaband h2 { color:#fff; font-size: var(--step-4); position:relative; }
.ctaband p { color: var(--text-soft); margin:1rem auto 2rem; max-width:46ch; position:relative; }
.ctaband .hero__cta { justify-content:center; position:relative; }

/* ---------- 16. REVEAL ANIMATION ---------- */
.reveal { opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity:1; transform:none; }
.reveal[data-d="1"]{ transition-delay:.08s; } .reveal[data-d="2"]{ transition-delay:.16s; }
.reveal[data-d="3"]{ transition-delay:.24s; } .reveal[data-d="4"]{ transition-delay:.32s; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }

/* ---------- 17. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 560px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(3,1fr); row-gap:2rem; }
  .proc::after { display:none; }
  .why-grid { grid-template-columns:1fr; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column:1/-1; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta .btn-ghost { display:none; }
  .nav__burger { display:flex; }
  .product, .product--rev .product__media, .case, .contact { grid-template-columns:1fr; }
  .product--rev .product__media { order:0; }
  .product__feats { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:1fr 1fr; }
  .form__grid { grid-template-columns:1fr; }
  .footer__top { grid-template-columns:1fr 1fr; }
  .floaty { display:none; }
}
@media (max-width: 420px){ .stats{ grid-template-columns:1fr; } .process-grid{ grid-template-columns:1fr; } }

/* ============================================================
   JULY 4TH OFFER PAGE
   ============================================================ */
:root { --us-red:#e23b3b; --us-blue:#2f6bf0; }

.flagtag {
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--font-mono); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase;
  color:#fff; padding:.45rem .85rem; border-radius:var(--radius-pill);
  background:linear-gradient(90deg, rgba(226,59,59,.92), rgba(47,107,240,.92));
  box-shadow:0 8px 24px -10px rgba(226,59,59,.6);
}
.flagtag svg { width:14px; height:14px; }

/* Subtle American-flag drape behind the hero (faded away from the headline) */
.flag-overlay {
  position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; opacity:.55;
  -webkit-mask-image: linear-gradient(108deg, transparent 0 32%, #000 76%);
          mask-image: linear-gradient(108deg, transparent 0 32%, #000 76%);
}
.flag-overlay__stripes {
  position:absolute; inset:0;
  background: repeating-linear-gradient(180deg, rgba(207,42,58,.2) 0 16px, rgba(255,255,255,.05) 16px 32px);
}
.flag-overlay__stars {
  position:absolute; top:5%; right:7%; width:32%; height:40%; border-radius:5px;
  background:
    radial-gradient(circle, rgba(255,255,255,.7) 0 1.2px, transparent 1.9px) 0 0 / 19px 19px,
    linear-gradient(160deg, rgba(40,68,156,.5), rgba(22,42,104,.5));
}
@media (max-width:760px) { .flag-overlay { opacity:.34; } }

/* Price anchor */
.price-anchor { display:flex; align-items:baseline; gap:1rem; flex-wrap:wrap; margin-top:1.5rem; }
.price-anchor .was { font-size:1.1rem; color:var(--text-faint); text-decoration:line-through; text-decoration-color:var(--us-red); }
.price-anchor .now { font-family:var(--font-display); font-weight:700; font-size:clamp(3rem,7vw,4.6rem); line-height:1; color:#fff; letter-spacing:-.03em; }
.price-anchor .now sup { font-size:.4em; color:var(--brand-300); top:-.7em; }
.price-anchor .save { font-size:.9rem; color:#34d399; font-weight:600; }

/* Countdown */
.countdown { display:inline-flex; gap:.6rem; margin-top:1.6rem; }
.countdown__u { min-width:64px; padding:.75rem .4rem; border-radius:13px; text-align:center; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.13); }
.countdown__u b { display:block; font-family:var(--font-display); font-size:1.75rem; font-weight:600; color:#fff; font-variant-numeric:tabular-nums; line-height:1; }
.countdown__u span { font-size:.6rem; text-transform:uppercase; letter-spacing:.12em; color:var(--text-faint); margin-top:.35rem; display:block; }
.countdown.ended { opacity:.45; }
.countdown__live { font-size:.85rem; color:var(--us-red); margin-top:.7rem; font-weight:600; min-height:1em; }

/* Trust strip */
.trust-strip { display:flex; flex-wrap:wrap; gap:.55rem 1.4rem; margin-top:1.9rem; }
.trust-strip span { display:inline-flex; align-items:center; gap:.45rem; font-size:.86rem; color:var(--text-soft); }
.trust-strip svg { width:16px; height:16px; color:#34d399; flex:none; }

/* What-you-get checklist */
.checks { display:grid; grid-template-columns:repeat(2,1fr); gap:.9rem; margin-top:2.5rem; }
.check { display:flex; gap:.85rem; align-items:flex-start; padding:1.15rem 1.25rem; border-radius:var(--radius); border:1px solid var(--border); background:var(--surface); transition:transform .25s var(--ease-out), box-shadow .25s; }
.check:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.check > svg { flex:none; width:26px; height:26px; color:#fff; background:var(--grad-brand-soft); border-radius:8px; padding:5px; box-shadow:0 6px 16px -6px rgba(47,107,240,.6); }
.check b { font-size:.98rem; }
.check p { font-size:.85rem; color:var(--text-soft); margin-top:.15rem; }

/* Audience / pages-built chips */
.audience { display:flex; flex-wrap:wrap; gap:.7rem; margin-top:2rem; }
.audience .chip { padding:.7rem 1.15rem; border-radius:var(--radius-pill); border:1px solid var(--border-strong); background:var(--surface); font-weight:550; font-size:.95rem; display:inline-flex; gap:.5rem; align-items:center; }
.audience .chip svg { width:18px; height:18px; color:var(--brand-500); }
.theme-dark .audience .chip { background:rgba(255,255,255,.05); }

/* Transparent pricing table */
.ptable { margin-top:2rem; border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; max-width:620px; }
.ptable__row { display:flex; justify-content:space-between; gap:1rem; padding:1rem 1.3rem; border-bottom:1px solid var(--border); font-size:.95rem; align-items:center; }
.ptable__row:last-child { border-bottom:0; }
.ptable__row span { color:var(--text-soft); }
.ptable__row .price { font-family:var(--font-mono); color:var(--brand-600); font-weight:600; white-space:nowrap; }
.theme-dark .ptable__row .price { color:var(--brand-300); }

/* FAQ */
.faq { max-width:760px; margin-top:2.5rem; }
.faq details { border:1px solid var(--border); border-radius:var(--radius); padding:0 1.3rem; margin-bottom:.8rem; background:var(--surface); transition:border-color .2s; }
.faq details[open] { border-color:var(--border-strong); }
.faq summary { cursor:pointer; list-style:none; padding:1.15rem 0; font-weight:600; font-size:1rem; display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size:1.5rem; line-height:1; color:var(--brand-500); transition:transform .2s; }
.faq details[open] summary::after { transform:rotate(45deg); }
.faq p { padding:0 0 1.25rem; color:var(--text-soft); font-size:.92rem; line-height:1.6; }

/* Sticky mobile CTA */
.sticky-cta { position:fixed; left:0; right:0; bottom:0; z-index:90; display:none; align-items:center; justify-content:space-between; gap:1rem; padding:.7rem 1rem; background:rgba(7,10,19,.93); backdrop-filter:blur(14px); border-top:1px solid rgba(255,255,255,.12); }
.sticky-cta b { color:#fff; font-family:var(--font-display); font-size:1.25rem; white-space:nowrap; }
.sticky-cta b s { color:var(--text-faint); font-size:.62em; font-weight:400; margin-right:.4rem; }
.sticky-cta .btn { flex:none; }

@media (max-width:760px) {
  .sticky-cta { display:flex; }
  body.has-sticky { padding-bottom:76px; }
  .checks { grid-template-columns:1fr; }
}

/* ============================================================
   LEGAL PAGES (privacy / terms)
   ============================================================ */
.legal { max-width:800px; margin-inline:auto; }
.legal__updated { font-family:var(--font-mono); font-size:.8rem; letter-spacing:.04em; color:var(--text-faint); }
.legal__intro { font-size:1.05rem; color:var(--text-soft); line-height:1.7; margin-top:1.25rem; }
.legal__toc { display:flex; flex-wrap:wrap; gap:.5rem; margin:2rem 0 .5rem; padding:1.25rem; border:1px solid var(--border); border-radius:var(--radius); background:var(--bg-subtle); }
.legal__toc a { font-size:.85rem; color:var(--brand-600); padding:.25rem .6rem; border-radius:99px; border:1px solid var(--border); background:var(--surface); }
.legal__toc a:hover { border-color:var(--brand-400); }
.legal section { scroll-margin-top:90px; }
.legal h2 { font-size:1.4rem; margin-top:2.75rem; letter-spacing:-.01em; }
.legal h2 .n { font-family:var(--font-mono); font-size:.8rem; color:var(--brand-500); margin-right:.5rem; }
.legal h3 { font-size:1.05rem; font-family:var(--font-sans); font-weight:650; margin-top:1.6rem; }
.legal p { color:var(--text-soft); line-height:1.75; margin-top:1rem; font-size:1rem; }
.legal ul { margin-top:1rem; padding-left:1.3rem; list-style:disc; display:grid; gap:.55rem; }
.legal li { color:var(--text-soft); line-height:1.65; }
.legal a { color:var(--brand-600); text-decoration:underline; text-underline-offset:2px; }
.legal a:hover { color:var(--brand-700); }
.legal strong { color:var(--text); }
.legal__note { margin-top:2.5rem; padding:1.25rem 1.4rem; border-radius:var(--radius); border:1px solid var(--border); background:var(--bg-subtle); font-size:.9rem; color:var(--text-soft); }
