/* ============================================================
   Aewise — Marketing landing page
   Premium light theme · magenta brand · Bricolage + Plus Jakarta
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Plus+Jakarta+Sans:ital,wght@0,400..700;1,400..500&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-ui: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* surfaces */
  --bg: #f6f6fb;
  --surface: #ffffff;
  --surface-subtle: #f3f2fa;
  --surface-muted: #ecebf4;
  --surface-inset: #faf9fe;
  --border: #e9e7f1;
  --border-strong: #ddd9ea;

  /* text */
  --text-primary: #1c1830;
  --text-secondary: #5a546e;
  --text-muted: #8c8799;
  --text-faint: #aaa6b6;

  /* brand magenta */
  --brand-50:  #ffeaf4;
  --brand-100: #ffd2e7;
  --brand-200: #ffaad1;
  --brand-300: #ff75b4;
  --brand-400: #fb4d97;
  --brand-500: #ec2c80;
  --brand-600: #d4136c;
  --brand-700: #ad0d58;
  --brand: #ec2c80;
  --brand-ink: #8a0a47;

  /* accent pops */
  --a-blue: #2f6bff;
  --a-purple: #7c3aed;
  --a-amber: #f59e0b;
  --a-teal: #0ea5a5;
  --a-green: #16a34a;
  --a-linkedin: #2c9cdb;
  --a-x: #1e2430;
  --a-indigo: #4f46e5;
  --a-reddit: #f4541f;

  /* radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-card: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* shadow */
  --shadow-xs: 0 1px 2px rgba(28,24,48,.05);
  --shadow-sm: 0 1px 2px rgba(28,24,48,.04), 0 2px 8px -4px rgba(28,24,48,.10);
  --shadow-card: 0 1px 2px rgba(28,24,48,.04), 0 10px 30px -12px rgba(28,24,48,.16);
  --shadow-lg: 0 4px 12px -4px rgba(28,24,48,.10), 0 28px 64px -22px rgba(28,24,48,.28);
  --shadow-brand: 0 10px 30px -8px rgba(236,44,128,.55);
  --shadow-brand-lg: 0 18px 50px -12px rgba(236,44,128,.6);

  --maxw: 1200px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text-primary);
  text-wrap: balance;
  line-height: 1.04;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.mono { font-family: var(--font-mono); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--brand-600);
}
.eyebrow.muted { color: var(--text-muted); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-500); box-shadow: 0 0 0 4px var(--brand-50); }

.grad-text {
  background: linear-gradient(105deg, var(--brand-500) 0%, var(--brand-400) 40%, var(--a-purple) 110%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-ui); font-weight: 600; font-size: 15px; line-height: 1;
  border-radius: var(--r-pill); border: 1px solid transparent;
  padding: 13px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; transition: transform .15s cubic-bezier(.2,.8,.2,1), background .16s, box-shadow .2s, border-color .16s;
  white-space: nowrap; text-decoration: none;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--brand-500); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-600); transform: translateY(-2px); box-shadow: var(--shadow-brand-lg); }
.btn-secondary { background: var(--surface); color: var(--text-primary); border-color: var(--border-strong); box-shadow: var(--shadow-xs); }
.btn-secondary:hover { background: var(--surface-subtle); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { color: var(--text-primary); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-white { background: #fff; color: var(--brand-700); box-shadow: 0 10px 30px -10px rgba(0,0,0,.35); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(0,0,0,.45); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; gap: 28px;
}
.nav.solid {
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px -16px rgba(28,24,48,.3);
}
.nav-logo { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: 8px; }
.nav-link {
  font-size: 14.5px; font-weight: 600; color: var(--text-secondary);
  padding: 8px 14px; border-radius: var(--r-pill); transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--text-primary); background: var(--surface-muted); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 168px 0 84px; overflow: hidden; }
.aurora { position: absolute; inset: -20% -10% auto -10%; height: 130%; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(72px); opacity: .4; will-change: transform; }
.b1 { width: 560px; height: 560px; background: radial-gradient(circle, #ff75b4, transparent 70%); top: -200px; left: -120px; }
.b2 { width: 500px; height: 500px; background: radial-gradient(circle, #fb4d97, transparent 70%); top: -160px; right: -90px; opacity: .36; }
.b3 { width: 420px; height: 420px; background: radial-gradient(circle, #c084fc, transparent 70%); top: 30px; left: 40%; opacity: .28; }
.b4 { width: 360px; height: 360px; background: radial-gradient(circle, #ffaad1, transparent 72%); top: 220px; right: 16%; opacity: .34; }
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px; opacity: .35;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 18%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 18%, #000 0%, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 880px; margin: 0 auto; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  background: rgba(255,255,255,.7); border: 1px solid var(--border);
  padding: 7px 7px 7px 14px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 600;
  color: var(--text-secondary); box-shadow: var(--shadow-sm); backdrop-filter: blur(8px);
}
.hero-pill .tag { background: var(--brand-50); color: var(--brand-700); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill); }
.hero h1 { font-size: clamp(40px, 6.6vw, 78px); font-weight: 800; }
.hero-sub { font-size: clamp(17px, 2.1vw, 21px); color: var(--text-secondary); max-width: 620px; margin: 24px auto 0; font-weight: 450; }

/* hero URL input */
.audit-form {
  display: flex; gap: 8px; align-items: center; margin: 36px auto 0; max-width: 580px;
  background: var(--surface); padding: 8px; border-radius: var(--r-pill);
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg);
  position: relative; transition: box-shadow .25s, border-color .2s;
}
.audit-form::before {
  content: ''; position: absolute; inset: -2px; border-radius: var(--r-pill); z-index: -1;
  background: linear-gradient(120deg, var(--brand-400), var(--a-purple), var(--brand-400));
  background-size: 200% 200%; opacity: 0; transition: opacity .3s; filter: blur(7px);
}
.audit-form.focus { border-color: var(--brand-300); box-shadow: var(--shadow-brand-lg); }
.audit-form.focus::before { opacity: .55; animation: shimmer 4s linear infinite; }
@keyframes shimmer { to { background-position: 200% 0; } }
.audit-form .globe { color: var(--text-faint); flex: none; margin-left: 12px; }
.audit-form input {
  flex: 1; border: none; background: transparent; outline: none;
  font-family: var(--font-ui); font-size: 16px; color: var(--text-primary); min-width: 0; padding: 12px 4px;
}
.audit-form input::placeholder { color: var(--text-faint); }
.trust-line { margin-top: 18px; font-size: 13.5px; color: var(--text-muted); display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.trust-line span { display: inline-flex; align-items: center; gap: 6px; }
.trust-line svg { color: var(--a-green); }

/* ---------- section scaffolding ---------- */
section { position: relative; }
.section { padding: 96px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; margin-top: 16px; }
.section-head p { font-size: 18px; color: var(--text-secondary); margin-top: 18px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.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 !important; transform: none !important; transition: none !important; }
  .blob { animation: none !important; }
}
/* frozen-context fallback (transitions not advancing) — snap to visible end-state */
html.frozen .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
html.frozen .connector .draw { stroke-dashoffset: 0 !important; transition: none !important; }
html.frozen .vpanel.active { opacity: 1 !important; transform: none !important; }

/* ---------- live audit demo ---------- */
.demo-stage { max-width: 1000px; margin: 0 auto; }
.browser {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--surface-inset); }
.browser-dots { display: flex; gap: 7px; }
.browser-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser-url {
  flex: 1; margin: 0 8px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 7px 14px; font-family: var(--font-mono); font-size: 12.5px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.browser-body { display: grid; grid-template-columns: 1.3fr 1fr; min-height: 380px; }
.scan-pane { position: relative; padding: 26px; overflow: hidden; border-right: 1px solid var(--border); }
.wf-row { height: 13px; border-radius: 6px; background: var(--surface-muted); margin-bottom: 13px; }
.wf-block { height: 88px; border-radius: 12px; background: var(--surface-subtle); border: 1px solid var(--border); margin-bottom: 16px; }
.wf-half { display: flex; gap: 14px; }
.wf-half .wf-block { flex: 1; }
.scan-line {
  position: absolute; left: 0; right: 0; height: 64px; top: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(236,44,128,.16) 60%, rgba(236,44,128,.5));
  border-bottom: 2px solid var(--brand-500); box-shadow: 0 0 24px 4px rgba(236,44,128,.4);
}
.scan-check {
  position: absolute; z-index: 4; width: 24px; height: 24px; border-radius: 50%;
  background: var(--a-green); color: #fff; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.4); transition: opacity .3s, transform .35s cubic-bezier(.2,1.6,.4,1);
}
.scan-check.show { opacity: 1; transform: scale(1); }
.score-pane { padding: 26px; display: flex; flex-direction: column; gap: 18px; }
.score-ring-wrap { display: flex; align-items: center; gap: 18px; }
.ring { position: relative; width: 110px; height: 110px; flex: none; }
.ring svg { transform: rotate(-90deg); }
.ring-val { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring-val b { font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1; }
.ring-val small { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.demo-stats { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.demo-stat { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border-radius: var(--r-md); background: var(--surface-inset); border: 1px solid var(--border); }
.demo-stat .ico { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex: none; }
.demo-stat b { font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.demo-stat span { font-size: 13.5px; color: var(--text-secondary); }

/* ---------- free cards ---------- */
.free-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 26px; box-shadow: var(--shadow-card); transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
  position: relative; overflow: hidden;
}
.fcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fcard .ico { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.fcard h3 { font-size: 20px; margin-bottom: 9px; }
.fcard p { font-size: 14.5px; color: var(--text-secondary); }
.fcard .free-tag { position: absolute; top: 18px; right: 18px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; color: var(--a-green); background: #dcf7e6; padding: 4px 9px; border-radius: var(--r-pill); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.step { text-align: center; position: relative; z-index: 2; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center; background: var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
  font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--brand-600);
}
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--text-secondary); max-width: 300px; margin: 0 auto; }
.connector { position: absolute; top: 28px; left: 16%; right: 16%; height: 2px; z-index: 1; }
.connector svg { width: 100%; height: 100%; overflow: visible; }
.connector path { stroke: var(--brand-300); stroke-width: 2; stroke-dasharray: 8 8; fill: none; }
.connector .draw { stroke: var(--brand-500); stroke-dasharray: var(--len); stroke-dashoffset: var(--len); transition: stroke-dashoffset 1.4s ease; }
.connector.in .draw { stroke-dashoffset: 0; }

/* ---------- paid showcase (sticky storytelling) ---------- */
.showcase { background: linear-gradient(180deg, var(--surface-subtle), var(--bg)); }
.showcase-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.showcase-text { display: flex; flex-direction: column; gap: 22vh; padding: 8vh 0; }
.feat { opacity: .32; transition: opacity .4s; }
.feat.active { opacity: 1; }
.feat .fhead { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.feat .ico { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex: none; }
.feat h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; }
.feat p { font-size: 17px; color: var(--text-secondary); }
.showcase-visual { position: sticky; top: 18vh; height: 64vh; display: flex; align-items: center; }
.visual-card {
  width: 100%; height: 100%; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.vpanel { position: absolute; inset: 0; padding: 32px; opacity: 0; transform: scale(.97) translateY(12px); transition: opacity .5s, transform .5s; pointer-events: none; display: flex; flex-direction: column; }
.vpanel.active { opacity: 1; transform: none; pointer-events: auto; }
.vpanel-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.vpanel-head .chip { font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: var(--r-pill); display: inline-flex; align-items: center; gap: 6px; }
.vrow { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-radius: var(--r-md); background: var(--surface-inset); border: 1px solid var(--border); margin-bottom: 11px; }
.vrow .lbl { font-size: 14.5px; font-weight: 600; }
.vrow .sub { font-size: 12.5px; color: var(--text-muted); }
.vbar { height: 8px; border-radius: 6px; background: var(--surface-muted); overflow: hidden; flex: 1; max-width: 130px; }
.vbar i { display: block; height: 100%; border-radius: 6px; background: var(--brand-500); }
.mini-tag { font-size: 11px; font-weight: 700; font-family: var(--font-mono); padding: 3px 8px; border-radius: var(--r-pill); }

/* mobile fallback for showcase */
.showcase-mobile { display: none; }

/* ---------- AI search ---------- */
.ai-section { background: var(--text-primary); color: #fff; border-radius: 0; }
.ai-section h2 { color: #fff; }
.ai-section .section-head p { color: rgba(255,255,255,.66); }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ai-copy h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; }
.ai-copy p { color: rgba(255,255,255,.7); font-size: 18px; margin-top: 20px; }
.ai-points { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.ai-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: rgba(255,255,255,.85); }
.ai-points .tick { width: 24px; height: 24px; border-radius: 50%; background: rgba(236,44,128,.2); color: var(--brand-300); display: flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }
.chatbox {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-xl);
  padding: 24px; box-shadow: var(--shadow-lg); backdrop-filter: blur(8px);
}
.chat-q { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; }
.chat-q .avatar { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex: none; }
.chat-q .bubble { background: rgba(255,255,255,.08); border-radius: 14px 14px 14px 4px; padding: 11px 15px; font-size: 14.5px; color: rgba(255,255,255,.9); }
.chat-a { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 18px; }
.chat-a .ai-label { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--brand-300); margin-bottom: 12px; font-family: var(--font-mono); letter-spacing: .04em; }
.chat-a p { color: rgba(255,255,255,.88); font-size: 14.5px; line-height: 1.7; margin: 0; }
.chat-a .hl { color: #fff; font-weight: 700; background: rgba(236,44,128,.28); padding: 1px 6px; border-radius: 5px; }
.chat-cite { margin-top: 14px; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: var(--r-md); background: rgba(236,44,128,.12); border: 1px solid rgba(236,44,128,.3); }
.chat-cite .src { width: 28px; height: 28px; border-radius: 8px; background: var(--brand-500); display: flex; align-items: center; justify-content: center; flex: none; }
.chat-cite span { font-size: 13px; color: rgba(255,255,255,.85); }
.chat-cite b { color: #fff; }
.typing-cursor { display: inline-block; width: 2px; height: 1em; background: var(--brand-300); margin-left: 2px; vertical-align: text-bottom; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- comparison table ---------- */
.compare { max-width: 920px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-card); overflow: hidden; }
.crow { display: grid; grid-template-columns: 1fr 130px 150px; align-items: center; border-bottom: 1px solid var(--border); }
.crow:last-child { border-bottom: none; }
.crow.head { background: var(--surface-inset); }
.cfeat { padding: 18px 24px; font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.cfeat .sub { font-size: 12.5px; color: var(--text-muted); font-weight: 500; display: block; }
.ccol { padding: 18px 16px; text-align: center; font-size: 14px; font-weight: 700; height: 100%; display: flex; align-items: center; justify-content: center; }
.ccol.paid { background: linear-gradient(180deg, var(--brand-50), rgba(255,234,244,.3)); }
.crow.head .ccol { font-family: var(--font-display); font-size: 16px; flex-direction: column; gap: 4px; }
.crow.head .ccol .tagline { font-size: 11px; font-weight: 600; color: var(--text-muted); font-family: var(--font-ui); }
.crow.head .ccol.paid .tagline { color: var(--brand-600); }
.ci-yes { color: var(--a-green); }
.ci-no { color: var(--text-faint); }
.ci-lock { color: var(--text-faint); display: inline-flex; }
.compare-cta { padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--surface-inset); flex-wrap: wrap; }
.compare-cta p { font-size: 14px; color: var(--text-secondary); }

/* ---------- trust / proof ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 16px; }
.tcard .stars { display: flex; gap: 3px; color: var(--a-amber); }
.tcard blockquote { margin: 0; font-size: 15.5px; color: var(--text-primary); line-height: 1.6; font-weight: 450; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard .who .pf { width: 42px; height: 42px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: #fff; }
.tcard .who b { font-size: 14px; display: block; }
.tcard .who span { font-size: 12.5px; color: var(--text-muted); }
.honest-note { max-width: 720px; margin: 36px auto 0; text-align: center; font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; justify-content: center; flex-wrap: wrap; }
.honest-note .shield { color: var(--a-teal); }

/* marquee */
.marquee { margin-top: 60px; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text-muted); white-space: nowrap; }
.marquee-item svg, .marquee-item .glyph { flex: none; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- final CTA ---------- */
.final-cta { padding: 100px 0; }
.cta-band {
  max-width: var(--maxw); margin: 0 auto; border-radius: var(--r-xl); padding: 72px 40px; text-align: center;
  background: linear-gradient(125deg, var(--brand-600) 0%, var(--brand-500) 42%, #f0569f 78%, var(--a-purple) 130%);
  position: relative; overflow: hidden; box-shadow: var(--shadow-brand-lg);
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.25), transparent 45%), radial-gradient(circle at 90% 100%, rgba(124,58,237,.4), transparent 50%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.4vw, 50px); font-weight: 800; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 18px; margin: 18px auto 0; max-width: 540px; }
.cta-band .audit-form { background: rgba(255,255,255,.96); margin-top: 34px; box-shadow: 0 20px 50px -16px rgba(0,0,0,.4); }
.cta-band .trust-line { color: rgba(255,255,255,.85); }
.cta-band .trust-line svg { color: #fff; }

/* ---------- footer ---------- */
.footer { padding: 64px 0 40px; border-top: 1px solid var(--border); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer-brand img { height: 28px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); max-width: 280px; }
.footer-col h4 { font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-secondary); padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: var(--brand-600); }
.footer-bottom { max-width: var(--maxw); margin: 48px auto 0; padding: 24px 28px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); }

/* scanning overlay (after submit) */
.scan-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(28,24,48,.55); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.scan-overlay.show { display: flex; opacity: 1; }
.scan-card { background: var(--surface); border-radius: var(--r-lg); padding: 40px 48px; text-align: center; box-shadow: var(--shadow-lg); max-width: 380px; }
.scan-card .spinner { width: 56px; height: 56px; margin: 0 auto 22px; border-radius: 50%; border: 4px solid var(--brand-50); border-top-color: var(--brand-500); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.scan-card h3 { font-size: 22px; margin-bottom: 8px; }
.scan-card p { font-size: 14px; color: var(--text-secondary); }
.scan-card .scan-step { margin-top: 16px; font-family: var(--font-mono); font-size: 12.5px; color: var(--brand-600); min-height: 18px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-desktop { display: none; }
  .showcase-mobile { display: grid; gap: 18px; }
  .ai-grid { grid-template-columns: 1fr; gap: 36px; }
  .free-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .nav-links, .nav-right .btn-ghost { display: none; }
  .nav-right .nav-cta { display: inline-flex; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border-strong); background: var(--surface); cursor: pointer; }
  .nav-inner { padding: 12px 20px; }
  .hero { padding: 128px 0 56px; }
  .section { padding: 68px 0; }
  .section-head { margin-bottom: 40px; }
  .audit-form { flex-direction: column; padding: 12px; border-radius: var(--r-lg); gap: 10px; }
  .audit-form .globe { display: none; }
  .audit-form input { width: 100%; text-align: center; padding: 12px; }
  .audit-form .btn { width: 100%; }
  .browser-body { grid-template-columns: 1fr; }
  .scan-pane { border-right: none; border-bottom: 1px solid var(--border); }
  .free-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .connector { display: none; }
  .tcards { grid-template-columns: 1fr; }
  .crow { grid-template-columns: 1fr 70px 80px; }
  .cfeat { padding: 14px 14px; font-size: 13.5px; }
  .ccol { padding: 14px 6px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-band { padding: 48px 22px; border-radius: var(--r-lg); }
  .final-cta { padding: 64px 0; }
  .marquee-track { gap: 36px; }
}

/* mobile nav drawer */
.mnav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px); background: var(--surface); z-index: 150; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .3s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; padding: 24px; }
.mnav.open { transform: none; }
.mnav-backdrop { position: fixed; inset: 0; background: rgba(28,24,48,.4); z-index: 140; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mnav-backdrop.open { opacity: 1; pointer-events: auto; }
.mnav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mnav a.mlink { font-family: var(--font-display); font-size: 22px; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--text-primary); }
.mnav .btn { margin-top: 24px; }
