/* ==========================================================================
   OmniWatch — Identity Breach Monitoring Landing Page
   Design system + components
   ========================================================================== */

:root {
  /* Brand palette — security / trust */
  --bg-900: #070b16;
  --bg-800: #0b1220;
  --bg-700: #0f1a2e;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #eaf0fb;
  --text-soft: #aebbd4;
  --text-mute: #7587a6;

  --cyan: #21d4fd;
  --cyan-deep: #0ea5e9;
  --emerald: #2be6a6;
  --emerald-deep: #10b981;
  --violet: #8b7bff;
  --amber: #ffb547;
  --red: #ff5d6c;

  --grad-primary: linear-gradient(135deg, #21d4fd 0%, #2be6a6 100%);
  --grad-violet: linear-gradient(135deg, #8b7bff 0%, #21d4fd 100%);
  --grad-danger: linear-gradient(135deg, #ff5d6c 0%, #ffb547 100%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(33, 212, 253, 0.25);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --maxw: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg-900);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan);
  background: rgba(33, 212, 253, 0.08);
  border: 1px solid rgba(33, 212, 253, 0.25);
  padding: 7px 14px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--text-soft);
  max-width: 640px; margin: 0 auto;
}
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Background glow ---------- */
.bg-decor { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-decor::before, .bg-decor::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.5;
}
.bg-decor::before {
  width: 600px; height: 600px; top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(33,212,253,0.35), transparent 70%);
}
.bg-decor::after {
  width: 520px; height: 520px; top: 30%; right: -180px;
  background: radial-gradient(circle, rgba(139,123,255,0.28), transparent 70%);
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px; padding: 15px 28px; border-radius: var(--radius-pill);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn--primary {
  background: var(--grad-primary); color: #04121a;
  box-shadow: 0 8px 24px rgba(33, 212, 253, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(33, 212, 253, 0.5); }
.btn--ghost {
  background: rgba(255,255,255,0.05); color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn--lg { font-size: 18px; padding: 18px 36px; }
.btn--block { width: 100%; white-space: normal; flex-wrap: wrap; line-height: 1.25; text-align: center; }
.btn-arrow { transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 11, 22, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.header.scrolled { border-bottom-color: var(--border); background: rgba(7, 11, 22, 0.9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.brand-logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--grad-primary); display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
}
.brand-logo svg { width: 20px; height: 20px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; color: var(--text-soft); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 72px; position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text-soft);
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 7px 14px 7px 8px; border-radius: var(--radius-pill); margin-bottom: 24px;
}
.hero-badge .pill {
  font-size: 11px; font-weight: 700; color: #04121a; background: var(--emerald);
  padding: 3px 9px; border-radius: var(--radius-pill); letter-spacing: 0.03em;
}
.hero h1 {
  font-size: clamp(36px, 5.4vw, 60px); font-weight: 900; line-height: 1.04;
  letter-spacing: -0.03em; margin-bottom: 22px;
}
.hero p.lede { font-size: clamp(17px, 2vw, 20px); color: var(--text-soft); margin-bottom: 32px; max-width: 540px; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-mute); font-weight: 500; }
.hero-trust .item svg { width: 18px; height: 18px; color: var(--emerald); flex-shrink: 0; }

/* ---------- Scan card ---------- */
.scan-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.scan-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px;
  background: linear-gradient(160deg, rgba(33,212,253,0.5), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.scan-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 6px; }
.scan-card .muted { font-size: 14px; color: var(--text-mute); margin-bottom: 22px; }
.scan-form { display: flex; flex-direction: column; gap: 12px; }
.scan-input-wrap { position: relative; }
.scan-input-wrap svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; color: var(--text-mute); }
.scan-input {
  width: 100%; padding: 16px 16px 16px 46px; font-size: 16px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border-strong);
  border-radius: 12px; color: var(--text); transition: border-color .15s, box-shadow .15s;
}
.scan-input::placeholder { color: var(--text-mute); }
.scan-input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(33,212,253,0.15); }
.scan-input.invalid { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,93,108,0.15); }
.scan-error { font-size: 13px; color: var(--red); min-height: 0; display: none; }
.scan-error.show { display: block; }
.scan-disclaimer { font-size: 12px; color: var(--text-mute); margin-top: 6px; line-height: 1.5; }
.scan-disclaimer a { color: var(--text-soft); text-decoration: underline; }

/* Scan progress / animation */
.scan-progress { display: none; padding: 8px 0; }
.scan-progress.active { display: block; }
.scan-radar {
  width: 96px; height: 96px; margin: 6px auto 18px; position: relative;
  border-radius: 50%; border: 1px solid rgba(33,212,253,0.3);
  display: grid; place-items: center;
}
.scan-radar::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(33,212,253,0.45) 60deg, transparent 120deg);
  animation: radar-spin 1.1s linear infinite;
}
.scan-radar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); z-index: 1; }
@keyframes radar-spin { to { transform: rotate(360deg); } }
.scan-steps { font-size: 14px; }
.scan-step { display: flex; align-items: center; gap: 10px; padding: 7px 0; color: var(--text-mute); opacity: 0.4; transition: opacity .3s, color .3s; }
.scan-step.done { opacity: 1; color: var(--text-soft); }
.scan-step .tick { width: 18px; height: 18px; flex-shrink: 0; color: var(--emerald); }
.scan-step .spin { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.2); border-top-color: var(--cyan); border-radius: 50%; animation: radar-spin .7s linear infinite; }
.scan-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; margin-top: 14px; }
.scan-bar span { display: block; height: 100%; width: 0; background: var(--grad-primary); border-radius: 6px; transition: width .4s ease; }

.scan-status { text-align: center; font-size: 14px; color: var(--text-soft); margin-bottom: 14px; }
.scan-status strong { color: var(--cyan); word-break: break-all; }
.scan-percent { text-align: center; font-size: 13px; color: var(--text-mute); margin-top: 10px; font-variant-numeric: tabular-nums; }
.scan-percent span { color: var(--cyan); font-weight: 700; }

/* Result panel */
.scan-result { display: none; animation: result-in .45s ease both; }
.scan-result.active { display: block; }
@keyframes result-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.result-alert {
  display: flex; gap: 14px; align-items: flex-start; padding: 16px;
  background: rgba(255,93,108,0.08); border: 1px solid rgba(255,93,108,0.3);
  border-radius: 14px; margin-bottom: 16px;
}
.result-alert-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,93,108,0.15); color: var(--red);
  animation: alert-pulse 1.6s ease-in-out infinite;
}
.result-alert-icon svg { width: 22px; height: 22px; }
@keyframes alert-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,93,108,0.4); } 50% { box-shadow: 0 0 0 8px rgba(255,93,108,0); } }
.result-title { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.result-lead { font-size: 14px; color: var(--text-soft); }
.result-lead strong { color: var(--text); word-break: break-all; }
.result-findings { margin-bottom: 18px; }
.result-findings li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-soft); padding: 7px 0; }
.rf-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 8px var(--amber); flex-shrink: 0; }
.result-why {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 18px; margin-bottom: 18px;
}
.result-why-title { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); margin-bottom: 12px; }
.result-why ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-soft); padding: 6px 0; line-height: 1.5; }
.result-why ul li svg { width: 17px; height: 17px; color: var(--emerald); flex-shrink: 0; margin-top: 2px; }
.result-cta { margin-bottom: 12px; }

.scan-mini-trust { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.scan-mini-trust .it { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-mute); }
.scan-mini-trust svg { width: 15px; height: 15px; color: var(--emerald); }

/* ---------- Logos / press strip ---------- */
.logos { padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos p { text-align: center; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 22px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; opacity: 0.65; }
.logos-row span { font-weight: 700; font-size: 18px; color: var(--text-soft); letter-spacing: -0.01em; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
}
.stat .num { font-size: clamp(30px, 4vw, 42px); font-weight: 900; letter-spacing: -0.02em; line-height: 1; }
.stat .lbl { font-size: 14px; color: var(--text-soft); margin-top: 8px; }

/* ---------- Feature cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; transition: transform .2s, border-color .2s, background .2s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--bg-card-hover); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(33,212,253,0.1); border: 1px solid rgba(33,212,253,0.2);
}
.feature-icon svg { width: 26px; height: 26px; color: var(--cyan); }
.feature h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.feature p { font-size: 15px; color: var(--text-soft); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.step { text-align: center; position: relative; }
.step-num {
  width: 58px; height: 58px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 22px; font-weight: 800;
  background: var(--grad-primary); color: #04121a; box-shadow: var(--shadow-glow);
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--text-soft); max-width: 320px; margin: 0 auto; }

/* ---------- Comparison table ---------- */
.compare { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; align-items: center; }
.compare-row + .compare-row { border-top: 1px solid var(--border); }
.compare-row > div { padding: 18px 24px; }
.compare-head { background: rgba(255,255,255,0.03); font-weight: 700; font-size: 15px; }
.compare-head .col-us { color: var(--cyan); display: flex; align-items: center; gap: 8px; }
.compare-feat { font-size: 15px; color: var(--text-soft); font-weight: 500; }
.compare-cell { text-align: center; }
.compare-cell svg { width: 22px; height: 22px; margin: 0 auto; }
.compare-cell.yes svg { color: var(--emerald); }
.compare-cell.no svg { color: var(--text-mute); opacity: 0.5; }
.col-us-cell { background: rgba(33,212,253,0.04); }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.testimonial .stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; }
.testimonial p { font-size: 15px; color: var(--text); line-height: 1.65; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial .avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: 16px; color: #04121a; background: var(--grad-violet); flex-shrink: 0;
}
.testimonial .who .name { font-size: 14px; font-weight: 700; }
.testimonial .who .role { font-size: 13px; color: var(--text-mute); }
.testimonial .verified { margin-left: auto; font-size: 12px; color: var(--emerald); display: flex; align-items: center; gap: 5px; }
.testimonial .verified svg { width: 14px; height: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; background: var(--bg-card); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--border-strong); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-size: 16px; font-weight: 600; color: var(--text); }
.faq-q .icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--cyan); transition: transform .25s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 22px; font-size: 15px; color: var(--text-soft); line-height: 1.7; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-box {
  background: linear-gradient(140deg, rgba(33,212,253,0.12), rgba(43,230,166,0.08));
  border: 1px solid rgba(33,212,253,0.25); border-radius: var(--radius-lg);
  padding: 56px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-box h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-box p { font-size: 18px; color: var(--text-soft); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.cta-form .scan-input-wrap { flex: 1; }
.cta-note { font-size: 13px; color: var(--text-mute); margin-top: 16px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--text-mute); margin-top: 14px; max-width: 300px; }
.footer-col h4 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-soft); margin-bottom: 11px; transition: color .15s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: var(--text-mute); }
.footer-disclaimer { font-size: 12px; color: var(--text-mute); line-height: 1.6; margin-top: 22px; padding: 18px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(7,11,22,0.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); padding: 12px 16px;
  transform: translateY(120%); transition: transform .3s ease; display: none;
}
.sticky-cta.show { transform: translateY(0); }

/* ---------- Trust / security badges ---------- */
.badges-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 10px; padding: 12px 18px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  font-size: 14px; font-weight: 600; color: var(--text-soft);
}
.badge svg { width: 22px; height: 22px; color: var(--emerald); flex-shrink: 0; }

/* ---------- Legal page ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 0 72px; }
.legal h1 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.legal .updated { font-size: 14px; color: var(--text-mute); margin-bottom: 36px; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.legal h3 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; }
.legal p, .legal li { font-size: 16px; color: var(--text-soft); margin-bottom: 14px; line-height: 1.75; }
.legal ul, .legal ol { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--cyan); text-decoration: underline; }
.legal strong { color: var(--text); }
.legal .callout { background: rgba(255,181,71,0.07); border: 1px solid rgba(255,181,71,0.25); border-radius: 12px; padding: 18px 20px; margin: 24px 0; }
.legal .callout p { color: var(--text); margin: 0; font-size: 15px; }
.legal .back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--cyan); margin-bottom: 32px; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14px; }
.legal th, .legal td { text-align: left; padding: 12px 14px; border: 1px solid var(--border); color: var(--text-soft); }
.legal th { background: rgba(255,255,255,0.03); color: var(--text); font-weight: 700; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .scan-card { max-width: 480px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border); color: var(--text); }
  .nav-menu-open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg-800); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 18px;
  }
  .sticky-cta { display: block; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .compare-row { grid-template-columns: 1.4fr 0.8fr 0.8fr; }
  .compare-row > div { padding: 14px 12px; font-size: 13px; }
  .cta-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 14px; }
  .nav-cta .btn--ghost { display: none; }

  /* Buttons: keep text on the card, never clipped */
  .btn { font-size: 15px; padding: 14px 18px; gap: 8px; }
  .btn--lg { font-size: 16px; padding: 16px 18px; }
  .scan-card { padding: 24px 20px; }
  .result-cta .btn-arrow { display: none; } /* avoid awkward wrap with long label */
  .result-alert { padding: 14px; gap: 12px; }
  .result-title { font-size: 17px; }
  .nav-cta { gap: 8px; }
  .brand { font-size: 17px; }
}
@media (max-width: 380px) {
  .nav-cta .btn--primary { font-size: 13px; padding: 11px 14px; }
  .scan-card h3 { font-size: 19px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
