/* ============================================================
   AEO Website Scanner — Stylesheet
   Theme: Authority + Action (Navy / Blue / Orange)
   ============================================================ */

:root {
  --bg-950:    #06070f;
  --bg-900:    #0b0d1a;
  --bg-800:    #101327;
  --bg-700:    #161932;
  --bg-glass:  rgba(10, 12, 22, 0.93);
  --border:    rgba(59, 130, 246, 0.13);
  --border-bright: rgba(59, 130, 246, 0.28);
  --blue:      #3b82f6;
  --blue-light:#60a5fa;
  --blue-dim:  rgba(59, 130, 246, 0.55);
  --orange:    #f97316;
  --orange-light:#fb923c;
  --green:     #10b981;
  --green-bright:#34d399;
  --red:       #f87171;
  --violet:    #818cf8;
  --text:      #e8ecf4;
  --text-muted:#96aacb;
  --text-dim:  #5a7399;
  --gold:      #f97316;   /* btn-gold backward compat → orange */
  --cyan:      #60a5fa;   /* legacy compat → blue-light */
  --amber:     #f97316;   /* legacy compat → orange */
  --amber-light:#fb923c;
  --yellow:    #f97316;
  --purple:    #818cf8;
  --radius:    10px;
  --radius-sm: 7px;
  --shadow:    0 8px 40px rgba(0,0,0,0.7);
  --glow-blue: 0 0 28px rgba(59,130,246,0.18);
  --glow-orange:0 0 28px rgba(249,115,22,0.22);
  --glow-green: 0 0 20px rgba(16,185,129,0.18);
  --glow-amber: 0 0 28px rgba(59,130,246,0.18); /* legacy → blue */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg-950);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-900); }
::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.4); border-radius: 3px; }

/* ── Background ─────────────────────────────────────────────── */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,130,246,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: grid-drift 30s linear infinite;
}
@keyframes grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 72px 72px; }
}
.bg-orb { position: fixed; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
.bg-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.07), transparent 70%);
  top: -260px; right: -160px;
  animation: orb-float 22s ease-in-out infinite;
}
.bg-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(129,140,248,0.05), transparent 70%);
  bottom: -180px; left: -120px;
  animation: orb-float 28s ease-in-out infinite reverse;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(28px, -36px); }
  66%       { transform: translate(-18px, 18px); }
}

/* ── Layout ─────────────────────────────────────────────────── */
.site-wrapper { position: relative; z-index: 1; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Header / Nav ───────────────────────────────────────────── */
.site-header {
  background: rgba(6, 7, 15, 0.97);
  border-bottom: 1px solid rgba(59,130,246,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100;
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.logo-image { height: 50px; width: auto; display: block; }
.nav-menu {
  display: flex; list-style: none; align-items: center;
  gap: 1.6rem; flex-wrap: nowrap; margin: 0; padding: 0;
}
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; white-space: nowrap; transition: color 0.15s; letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--blue-light); }
.cta-button {
  display: inline-block; padding: 9px 20px;
  font-size: 14px; font-weight: 800;
  background: var(--orange); color: #fff;
  border-radius: 7px; letter-spacing: 0.02em;
  transition: all 0.2s; white-space: nowrap; text-decoration: none;
}
.cta-button:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(249,115,22,0.45);
  color: #fff;
}
.nav-scan {
  display: flex; align-items: center;
  background: var(--bg-700);
  border: 1.5px solid rgba(59,130,246,0.35);
  border-radius: 8px; padding: 4px 4px 4px 14px;
  flex: 1; max-width: 360px; margin: 0 20px;
  opacity: 0; transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-scan.visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.nav-scan:focus-within {
  border-color: rgba(59,130,246,0.6);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.nav-scan-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 0.88rem; font-family: 'Inter', sans-serif;
  min-width: 0;
}
.nav-scan-input::placeholder { color: var(--text-dim); }
.nav-scan-btn {
  background: var(--orange); border: none; border-radius: 5px; color: #fff;
  padding: 8px 16px; font-size: 0.82rem; font-weight: 800; cursor: pointer;
  white-space: nowrap; font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-scan-btn:hover { background: var(--orange-light); }

.mobile-menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.mobile-menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--text-muted); border-radius: 2px; transition: 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 108px 0 80px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: 'AEO';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(160px, 28vw, 320px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(59,130,246,0.055);
  letter-spacing: -0.04em;
  pointer-events: none; user-select: none;
  z-index: 0; white-space: nowrap;
}
.hero > .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 6px; padding: 6px 16px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--blue-light); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  margin-bottom: 28px; font-weight: 800;
  letter-spacing: 0; line-height: 1.08;
  color: var(--text);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-muted); max-width: 580px;
  margin: 0 auto 52px; line-height: 1.75;
}

/* ── Platform badges (hero) ─────────────────────────────────── */
.hero-platforms {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  justify-content: center; margin-top: 48px;
}
.hero-platforms-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-muted);
}
.platform-pills {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.platform-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; font-size: 0.97rem; font-weight: 700;
  border-radius: 10px; letter-spacing: 0.01em; text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}
.platform-pill:hover { transform: translateY(-2px); }
.platform-shopify    { color: #95bf46; background: rgba(149,191,70,0.08);  border: 1.5px solid rgba(149,191,70,0.35); }
.platform-shopify:hover { box-shadow: 0 4px 18px rgba(149,191,70,0.2); }
.platform-wix        { color: #6c8fff; background: rgba(108,143,255,0.08); border: 1.5px solid rgba(108,143,255,0.35); }
.platform-wix:hover { box-shadow: 0 4px 18px rgba(108,143,255,0.2); }
.platform-wordpress  { color: #64b5f6; background: rgba(100,181,246,0.08); border: 1.5px solid rgba(100,181,246,0.35); }
.platform-wordpress:hover { box-shadow: 0 4px 18px rgba(100,181,246,0.2); }
.platform-squarespace { color: #c0cadc; background: rgba(192,202,220,0.06); border: 1.5px solid rgba(192,202,220,0.25); }
.platform-squarespace:hover { box-shadow: 0 4px 18px rgba(192,202,220,0.15); }
.platform-custom     { color: var(--orange-light); background: rgba(249,115,22,0.08); border: 1.5px solid rgba(249,115,22,0.35); }
.platform-custom:hover { box-shadow: 0 4px 18px rgba(249,115,22,0.2); }

/* ── Scan form ──────────────────────────────────────────────── */
.scan-form-wrap { max-width: 820px; margin: 0 auto; }
.scan-form {
  display: flex; gap: 0;
  background: var(--bg-700);
  border: 1.5px solid rgba(59,130,246,0.45);
  border-radius: 12px; padding: 8px 8px 8px 24px;
  box-shadow: var(--shadow), 0 0 40px rgba(59,130,246,0.12), var(--glow-blue);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.scan-form:focus-within {
  border-color: rgba(59,130,246,0.7);
  box-shadow: var(--shadow), 0 0 0 4px rgba(59,130,246,0.15), 0 0 50px rgba(59,130,246,0.18);
}
.scan-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 1.1rem; font-family: 'Inter', sans-serif;
}
.scan-input::placeholder { color: var(--text-dim); }
.scan-btn {
  background: var(--orange); border: none; border-radius: 9px; color: #fff;
  padding: 16px 34px; font-size: 1rem; font-weight: 800; cursor: pointer;
  white-space: nowrap; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.03em; font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 18px rgba(249,115,22,0.35);
}
.scan-btn:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(249,115,22,0.55); }
.scan-btn:active { transform: translateY(0); }
.scan-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.form-note {
  margin-top: 14px; color: var(--text-dim); font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-note svg { opacity: 0.4; }

/* ── Trust bar ──────────────────────────────────────────────── */
.trust-bar {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 32px; margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.875rem; }
.trust-item .icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(59,130,246,0.08); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}

/* ── Error box ──────────────────────────────────────────────── */
.error-box {
  background: rgba(248,113,113,0.07); border: 1px solid rgba(248,113,113,0.25);
  border-radius: var(--radius); padding: 20px 24px;
  color: var(--text); display: none; margin-top: 16px;
  animation: fade-up 0.3s ease;
}
.error-box.active { display: flex; align-items: center; gap: 14px; }
.error-box-icon { font-size: 1.3rem; }
.error-box-msg  { font-size: 0.88rem; }
.error-box-msg strong { display: block; margin-bottom: 4px; }

/* ── Platforms showcase strip (between report & FAQ) ────────── */
.platforms-strip {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.platforms-strip-header {
  text-align: center; margin-bottom: 52px;
}
.platforms-strip-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; letter-spacing: 0; margin-bottom: 12px;
}
.platforms-strip-header p {
  color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; line-height: 1.7;
}
.platform-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.platform-showcase-card {
  background: var(--bg-800);
  border: 1px solid var(--border);
  border-top: 3px solid;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  display: flex; flex-direction: column;
}
.platform-showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  border-color: rgba(249,115,22,0.3);
  border-top-color: var(--orange);
}
.platform-showcase-card.featured { border-top-color: var(--orange); border-color: rgba(249,115,22,0.2); }
.platform-showcase-card .ps-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
  background: rgba(59,130,246,0.1); border: 1px solid var(--border);
}
.platform-showcase-card h3 {
  font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--text);
  font-family: 'Inter', sans-serif;
}
.platform-showcase-card p {
  font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 18px;
}
.ps-learn-more {
  font-size: 0.8rem; font-weight: 700; color: var(--orange);
  text-decoration: none; letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.platform-showcase-card:hover .ps-learn-more { gap: 8px; }
.platforms-strip-cta { text-align: center; }

/* ── Scan progress ──────────────────────────────────────────── */
#scan-panel { display: none; }
#scan-panel.active { display: block; }
.scan-progress-wrap {
  max-width: 660px; margin: 64px auto;
  background: var(--bg-800); border: 1px solid var(--border-bright);
  border-radius: var(--radius); padding: 40px 40px 32px;
  box-shadow: var(--shadow), var(--glow-blue);
}
.scan-header { text-align: center; margin-bottom: 36px; }
.scan-domain-tag {
  display: inline-block;
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.25);
  color: var(--blue-light); padding: 4px 14px; border-radius: 5px;
  font-size: 0.82rem; font-weight: 600; font-family: 'JetBrains Mono', monospace;
  margin-bottom: 14px; letter-spacing: 0.02em;
}
.scan-header h2 { font-size: 1.45rem; margin-bottom: 6px; font-weight: 700; }
.scan-header p { color: var(--text-muted); font-size: 0.88rem; }
.scan-checks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.scan-check-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 6px;
  background: rgba(255,255,255,0.02); border: 1px solid transparent;
  font-size: 0.87rem; color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace; transition: all 0.25s;
}
.scan-check-item.checking { border-color: rgba(59,130,246,0.22); background: rgba(59,130,246,0.04); color: var(--text); }
.scan-check-item.done     { border-color: rgba(16,185,129,0.2);  background: rgba(16,185,129,0.04); color: var(--text-muted); }
.scan-check-item.fail     { border-color: rgba(248,113,113,0.2); background: rgba(248,113,113,0.03); color: var(--text-muted); }
.check-icon {
  width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700;
}
.check-icon.pending { background: rgba(30,42,66,0.8); color: var(--text-dim); }
.check-icon.spin    { background: rgba(59,130,246,0.15); color: var(--blue-light); animation: spin 1s linear infinite; }
.check-icon.ok      { background: rgba(16,185,129,0.15); color: var(--green-bright); }
.check-icon.no      { background: rgba(248,113,113,0.15); color: var(--red); }
@keyframes spin { to { transform: rotate(360deg); } }
.progress-bar-wrap { height: 3px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; }
.progress-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--green-bright));
  border-radius: 2px; transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.progress-label { text-align: center; margin-top: 10px; font-size: 0.75rem; color: var(--text-dim); font-family: 'JetBrains Mono', monospace; }

/* ── Report panel ───────────────────────────────────────────── */
/* ── Report Modal ─────────────────────────────���──────────────── */
#report-modal {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; /* explicit for old iOS */
  z-index: 500;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  overflow-y: scroll; /* scroll (not auto) forces scrollable on iOS */
  -webkit-overflow-scrolling: touch;
}
#report-modal.active { display: block; animation: fade-up 0.35s ease; }
#report-modal-content { max-width: 1140px; margin: 0 auto; padding: 20px 20px 80px; position: relative; }
#report-modal-close {
  display: none; /* hidden until modal is active — prevents bleed on mobile */
  position: sticky; top: 16px; float: right; z-index: 10;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted); font-size: 0.82rem; font-family: 'Inter', sans-serif;
  padding: 7px 14px; border-radius: 6px; cursor: pointer; transition: all 0.2s;
}
#report-modal.active #report-modal-close { display: block; }
#report-modal-close:hover { background: rgba(255,255,255,0.12); color: var(--text); }
#report-panel { display: block; clear: both; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Findings preview (inside report-top) ───────────────────── */
.findings-preview { margin-top: 16px; }
.fp-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 8px; }
.fp-item {
  display: flex; align-items: baseline; gap: 8px;
  padding: 7px 10px; border-radius: 6px; margin-bottom: 5px;
  border: 1px solid transparent;
}
.fp-high   { background: rgba(248,113,113,0.06); border-color: rgba(248,113,113,0.14); }
.fp-medium { background: rgba(249,115,22,0.06);  border-color: rgba(249,115,22,0.14); }
.fp-low    { background: rgba(255,255,255,0.03);  border-color: rgba(255,255,255,0.07); }
.fp-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; }
.fp-dot-high   { background: var(--red);    box-shadow: 0 0 6px rgba(248,113,113,0.6); }
.fp-dot-medium { background: var(--orange); box-shadow: 0 0 6px rgba(249,115,22,0.5); }
.fp-dot-low    { background: var(--text-dim); }
.fp-impact { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; flex-shrink: 0; width: 42px; }
.fp-high   .fp-impact { color: var(--red); }
.fp-medium .fp-impact { color: var(--orange); }
.fp-low    .fp-impact { color: var(--text-dim); }
.fp-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
.fp-more { font-size: 0.75rem; color: var(--text-dim); margin-top: 6px; padding-left: 10px; }

/* ── Download block ──────────────────────────────────────────── */
.report-download-block {
  background: rgba(59,130,246,0.05);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.report-download-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.report-download-icon { font-size: 1.4rem; flex-shrink: 0; }
.report-download-title { font-size: 0.9rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.report-download-sub { font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }
.email-lead-form { display: flex; gap: 8px; }
.email-lead-input { flex: 1; min-width: 0; font-size: 0.84rem !important; padding: 9px 12px !important; }
.email-lead-btn { white-space: nowrap; flex-shrink: 0; font-size: 0.82rem; padding: 9px 14px; }
.email-lead-success { font-size: 0.84rem; padding: 4px 0; margin-top: 4px; }

/* ── Aggressive CTA pulse ────────────────────────────────────── */
.cta-pulse { animation: cta-pulse 2s ease-in-out infinite; }
.cta-pulse-large { font-size: 1.05rem !important; padding: 16px 32px !important; }
.cta-urgency { color: var(--orange); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
}
.report-top {
  background: var(--bg-800); border: 1px solid var(--border-bright);
  border-radius: var(--radius); padding: 36px 40px 0; margin-bottom: 56px;
  display: flex; align-items: flex-start; gap: 40px; flex-wrap: wrap;
  box-shadow: var(--shadow); overflow: visible; position: relative;
}
.score-circle-wrap { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 0; }
.score-circle { width: 160px; height: 160px; position: relative; }
.score-circle svg { transform: rotate(-90deg); }
.score-circle .track { fill: none; stroke: rgba(255,255,255,0.05); stroke-width: 9; }
.score-circle .fill  {
  fill: none; stroke-width: 9; stroke-linecap: round;
  stroke-dasharray: 380; stroke-dashoffset: 380;
  stroke: url(#score-gradient);
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4,0,0.2,1);
}
.score-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.score-number {
  font-size: 2.5rem; font-weight: 800; line-height: 1;
  font-family: 'JetBrains Mono', monospace;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.score-pct { font-size: 0.7rem; color: var(--text-dim); margin-top: 2px; letter-spacing: 0.06em; text-transform: uppercase; }
.report-summary { flex: 1; min-width: 260px; display: flex; flex-direction: column; }
.report-summary-info { margin-bottom: 4px; }
.report-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.report-download-row { margin-bottom: 10px; }
.report-download-row .email-lead-form { max-width: none; margin: 0; }
/* ── Report CTA tab ──────────────────────────────────────────── */
.report-cta-tab {
  flex-basis: 100%; display: flex; justify-content: center;
  margin-top: 28px; margin-bottom: -50px; z-index: 2; position: relative;
}
.report-cta-tab .btn {
  padding: 15px 52px; font-size: 0.97rem;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 32px rgba(249,115,22,0.45);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.report-secondary-actions { display: flex; gap: 20px; }
.btn-link { background: none; border: none; color: var(--text-muted); font-size: 0.82rem; cursor: pointer; padding: 0; font-family: 'Inter', sans-serif; transition: color 0.2s; }
.btn-link:hover { color: var(--text); }
.report-domain {
  font-family: 'JetBrains Mono', monospace; font-size: 0.82rem;
  color: var(--blue-light); background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  display: inline-block; padding: 3px 12px; border-radius: 5px; margin-bottom: 14px; letter-spacing: 0.02em;
}
.report-grade {
  font-size: 3.8rem; font-weight: 900; line-height: 1; margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.report-label { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.report-tagline { color: var(--text-muted); font-size: 0.88rem; }
.report-scanned { color: var(--text-dim); font-size: 0.75rem; margin-top: 8px; font-family: 'JetBrains Mono', monospace; }
.report-actions { display: none; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--radius-sm);
  font-size: 0.86rem; font-weight: 600; cursor: pointer;
  border: none; text-decoration: none; transition: all 0.2s;
  font-family: 'Inter', inherit; letter-spacing: 0.01em;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(249,115,22,0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(59,130,246,0.4); }
.btn-gold { background: var(--orange); color: #fff; font-weight: 800; }
.btn-gold:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(249,115,22,0.45); color: #fff; }

/* ── Radar chart ────────────────────────────────────────────── */
.categories-grid { margin-bottom: 20px; }
.radar-wrap { display: flex; justify-content: center; align-items: center; padding: 16px 0 40px; }
.radar-svg {
  filter: drop-shadow(0 0 32px rgba(249,115,22,0.15)) drop-shadow(0 0 80px rgba(59,130,246,0.1));
  overflow: visible; width: 100%; height: auto; max-width: 440px;
}
.cat-checks { display: flex; flex-direction: column; gap: 8px; }
.cat-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; }
.cat-check-dot {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  margin-top: 2px; display: flex; align-items: center; justify-content: center; font-size: 0.6rem;
}
.cat-check-dot.pass     { background: rgba(16,185,129,0.15); color: var(--green-bright); }
.cat-check-dot.fail     { background: rgba(248,113,113,0.12); color: var(--red); }
.cat-check-dot.override { background: rgba(59,130,246,0.15); color: var(--blue-light); font-size: 0.65rem; }
.cat-check-label { font-weight: 600; color: var(--text); }
.cat-check-detail { color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }
.override-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  background: rgba(59,130,246,0.1); color: var(--blue-light);
  border: 1px solid rgba(59,130,246,0.25); border-radius: 4px;
  padding: 1px 5px; margin-left: 6px; vertical-align: middle;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ── Findings ───────────────────────────────────────────────── */
.findings-section {
  background: var(--bg-800); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; margin-bottom: 20px;
}
.findings-section h3 {
  font-size: 0.95rem; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted);
}
.findings-section h3 .badge {
  background: rgba(248,113,113,0.14); color: var(--red);
  padding: 2px 10px; border-radius: 4px; font-size: 0.72rem;
}
.finding-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.finding-item:last-child { border-bottom: none; padding-bottom: 0; }
.finding-icon {
  width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0;
  background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.18);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.finding-text .finding-label { font-weight: 600; font-size: 0.88rem; margin-bottom: 3px; }
.finding-text .finding-desc  { color: var(--text-muted); font-size: 0.8rem; }
.finding-impact {
  margin-left: auto; flex-shrink: 0;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; padding: 3px 8px; border-radius: 4px;
}
.impact-high   { background: rgba(248,113,113,0.14); color: var(--red); }
.impact-medium { background: rgba(249,115,22,0.14);  color: var(--orange); }

/* ── Findings CTA ───────────────────────────────────────────── */
.findings-cta-wrap {
  margin-top: 24px; padding: 24px 20px;
  background: rgba(249,115,22,0.05); border: 1px solid rgba(249,115,22,0.18);
  border-radius: 10px; text-align: center;
}
.findings-lock-icon { font-size: 1.6rem; margin-bottom: 12px; animation: lock-pulse 3s ease-in-out infinite; }
@keyframes lock-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(249,115,22,0.3)); }
  50%       { filter: drop-shadow(0 0 16px rgba(249,115,22,0.7)); }
}
.findings-cta-wrap h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.findings-cta-wrap p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 18px; line-height: 1.65; }
.findings-cta-note { margin-top: 12px; font-size: 0.75rem; color: var(--text-dim); }

/* ── Legacy findings overlay ────────────────────────────────── */
.findings-blur-wrap { position: relative; }
.findings-blur-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to bottom, rgba(6,7,15,0) 0%, rgba(6,7,15,0.6) 30%, rgba(6,7,15,0.92) 100%);
  border-radius: var(--radius-sm); z-index: 10;
}
.findings-blur-inner { text-align: center; padding: 28px 24px; max-width: 420px; }
.findings-blur-inner h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text); }
.findings-blur-inner p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.5; }
.findings-blur-note { margin-top: 12px; font-size: 0.75rem; color: var(--text-dim); }

/* ── CTA section ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(59,130,246,0.06));
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius); padding: 40px 32px;
  text-align: center; margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(249,115,22,0.04), transparent 60%);
  animation: cta-glow 8s ease-in-out infinite;
}
@keyframes cta-glow { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 14px; font-weight: 800; letter-spacing: 0; }
.cta-section p { color: var(--text-muted); max-width: 560px; margin: 0 auto 32px; font-size: 0.95rem; line-height: 1.7; }
.cta-platform-line { font-size: 0.95rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 28px; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-features { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.cta-feat { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.85rem; }
.cta-feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); }

/* ── Misc card helpers ──────────────────────────────────────── */
.compare-strip {
  background: var(--bg-800); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 30px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px;
}
.compare-strip-text { flex: 1; }
.compare-strip-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.compare-strip-text p { color: var(--text-muted); font-size: 0.83rem; }
.compare-mini-scores { display: flex; gap: 10px; flex-wrap: wrap; }
.mini-score { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 7px; padding: 8px 14px; text-align: center; }
.mini-score-num { font-size: 1.1rem; font-weight: 800; font-family: 'JetBrains Mono', monospace; }
.mini-score-lbl { font-size: 0.68rem; color: var(--text-dim); text-transform: uppercase; }
.symptom-item { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.symptom-item:last-child { border-bottom: none; }
.symptom-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.symptom-dot.impact-high   { background: var(--red);    box-shadow: 0 0 8px rgba(248,113,113,0.5); }
.symptom-dot.impact-medium { background: var(--orange);  box-shadow: 0 0 8px rgba(249,115,22,0.4); }
.symptom-dot.impact-low    { background: var(--text-dim); }
.symptom-text { flex: 1; font-size: 0.9rem; color: var(--text); line-height: 1.5; }
.symptom-impact { flex-shrink: 0; font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 2px 8px; border-radius: 4px; }
.symptom-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin-bottom: 28px; }
.symptom-card { background: var(--bg-800); border: 1px solid var(--border); border-left: 3px solid; border-radius: var(--radius-sm); padding: 18px 20px; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.symptom-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
.impact-border-high   { border-left-color: var(--red); }
.impact-border-medium { border-left-color: var(--orange); }
.impact-border-low    { border-left-color: var(--text-dim); }
.symptom-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.symptom-card-icon { font-size: 0.9rem; }
.symptom-impact-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 2px 8px; border-radius: 4px; margin-left: auto; }
.symptom-card-text { font-size: 0.91rem; color: var(--text); line-height: 1.58; font-weight: 500; }

/* ── Radar tooltip ──────────────────────────────────────────── */
.radar-tooltip {
  position: fixed; background: var(--bg-800); border: 1px solid var(--border-bright);
  border-radius: 10px; padding: 14px 18px; pointer-events: none; z-index: 9999;
  min-width: 195px; max-width: 255px; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(6px); transition: opacity 0.15s ease, transform 0.15s ease;
}
.radar-tooltip.active { opacity: 1; transform: translateY(0); }
.rtt-name  { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.rtt-score { font-size: 1.6rem; font-weight: 800; font-family: 'JetBrains Mono', monospace; line-height: 1.2; margin-bottom: 8px; }
.rtt-desc  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section { padding: 88px 0; border-top: 1px solid var(--border); }
.faq-section h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; letter-spacing: 0; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-list details {
  background: var(--bg-800); border: 1px solid var(--border);
  border-radius: 9px; padding: 18px 22px; cursor: pointer; transition: border-color 0.2s;
}
.faq-list details[open] { border-color: rgba(249,115,22,0.26); }
.faq-list summary {
  color: var(--text); font-weight: 600; font-size: 0.93rem; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; font-family: 'Inter', sans-serif;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-arrow { color: var(--text-dim); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s, color 0.2s; }
.faq-list details[open] .faq-arrow { transform: rotate(45deg); color: var(--orange); }
.faq-list details p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.72; margin: 14px 0 0; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-section { padding: 88px 0; border-top: 1px solid var(--border); }
.contact-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: 0; margin-bottom: 12px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; max-width: 900px; }
.contact-left { padding-top: 8px; }
.contact-promises { display: flex; flex-direction: column; gap: 12px; }
.contact-promise-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.contact-right { position: relative; }
.contact-field {
  background: var(--bg-800); border: 1px solid rgba(59,130,246,0.15);
  border-radius: 8px; padding: 13px 16px; color: var(--text);
  font-size: 0.91rem; font-family: 'Inter', sans-serif;
  outline: none; box-sizing: border-box; width: 100%; transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-field:focus { border-color: rgba(59,130,246,0.45); box-shadow: 0 0 0 3px rgba(59,130,246,0.09); }
.contact-field::placeholder { color: var(--text-dim); }
.contact-field option { background: var(--bg-800); color: var(--text); }
.contact-submit-btn {
  width: 100%; padding: 15px; font-size: 0.97rem; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; border-radius: 8px; font-weight: 800;
  background: var(--orange); color: #fff;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s; letter-spacing: 0.02em;
}
.contact-submit-btn:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(249,115,22,0.38); }

/* ── Products page styles ───────────────────────────────────── */
.page-hero {
  padding: 80px 0 60px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: 0; margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.75; }

.products-grid-section { padding: 72px 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-800); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px 28px;
  display: flex; flex-direction: column;
  position: relative; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); border-color: rgba(249,115,22,0.25); }
.product-card.featured {
  border-color: rgba(249,115,22,0.3);
  background: linear-gradient(135deg, rgba(249,115,22,0.05), rgba(59,130,246,0.03));
  box-shadow: 0 0 40px rgba(249,115,22,0.08);
}
.product-badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--orange); color: #fff;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 4px 16px; border-radius: 20px;
}
.product-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
  background: rgba(59,130,246,0.1); border: 1px solid var(--border);
}
.product-card.featured .product-card-icon { background: rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.2); }
.product-name {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--blue-light); margin-bottom: 6px;
}
.product-card.featured .product-name { color: var(--orange); }
.product-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; letter-spacing: 0; }
.product-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 24px; flex: 1; }
.product-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 0;
}
.product-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.84rem; color: var(--text-muted);
}
.product-features li:last-child { border-bottom: none; }
.product-features li span { color: var(--green-bright); font-weight: 700; flex-shrink: 0; }
.product-cta {
  display: block; text-align: center; padding: 14px 20px;
  border-radius: 8px; font-size: 0.9rem; font-weight: 800;
  text-decoration: none; cursor: pointer; transition: all 0.2s;
  font-family: 'Inter', inherit; border: none; letter-spacing: 0.02em;
}
.product-cta.orange { background: var(--orange); color: #fff; }
.product-cta.orange:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(249,115,22,0.4); }
.product-cta.ghost { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: var(--text); }
.product-cta.ghost:hover { background: rgba(255,255,255,0.09); }

.products-bottom-cta {
  padding: 72px 0; border-top: 1px solid var(--border); text-align: center;
}
.products-bottom-cta h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: 0; margin-bottom: 14px; }
.products-bottom-cta p { color: var(--text-muted); font-size: 0.95rem; max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }

/* ── Legacy platform / pricing section compat ───────────────── */
.value-section { padding: 80px 0; border-top: 1px solid var(--border); }
.value-section h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.platforms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.platform-card { background: var(--bg-800); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; }
.platform-card.featured { border-color: rgba(249,115,22,0.3); }
.platform-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.platform-logo { flex-shrink: 0; }
.platform-install-badge { display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--orange); background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2); border-radius: 4px; padding: 2px 8px; margin-top: 3px; }
.platform-features { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.platform-features li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); }
.platform-features li span { color: var(--green-bright); font-weight: 700; flex-shrink: 0; }
.platform-cta { display: block; text-align: center; padding: 12px 20px; background: var(--orange); color: #fff; border-radius: 7px; font-size: 0.88rem; font-weight: 800; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.platform-cta:hover { background: var(--orange-light); transform: translateY(-1px); }
/* ── Why Section ─────────────────────────────────────────────── */
.why-section { padding: 80px 0; border-top: 1px solid var(--border); }
.why-header { text-align: center; margin-bottom: 48px; }
.why-header h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 12px; }
.why-header p { color: var(--text-muted); font-size: 1rem; max-width: 580px; margin: 0 auto; line-height: 1.7; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.why-card { background: var(--bg-800); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; }
.why-card-wide { grid-column: span 2; background: var(--bg-700); border-color: rgba(249,115,22,0.2); }
.why-icon { font-size: 1.8rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; margin: 0; }
.why-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-stat { background: var(--bg-800); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.why-stat-num { font-size: 2.4rem; font-weight: 800; color: var(--orange); font-family: 'Inter', sans-serif; line-height: 1; margin-bottom: 8px; }
.why-stat-label { color: var(--text-muted); font-size: 0.82rem; line-height: 1.5; }
@media (max-width: 700px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card-wide { grid-column: span 1; }
  .why-stat-row { grid-template-columns: 1fr; }
}

.pricing-section { padding: 80px 0; border-top: 1px solid var(--border); }
.pricing-section h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.pricing-card { background: var(--bg-800); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; display: flex; flex-direction: column; position: relative; }
.pricing-card.pricing-featured { border-color: rgba(249,115,22,0.32); }
.pricing-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 18px; border-radius: 20px; white-space: nowrap; }
.pricing-tier { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text); margin-bottom: 8px; font-weight: 700; }
.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--text); margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.pricing-desc { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 24px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; display: flex; flex-direction: column; }
.pricing-features li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.85rem; color: var(--text-muted); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li span { color: var(--green-bright); font-weight: 700; flex-shrink: 0; }
.pricing-btn { display: block; text-align: center; padding: 13px 20px; border-radius: 7px; font-size: 0.9rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: all 0.2s; font-family: 'Inter', inherit; border: none; }
.pricing-btn.btn-ghost { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: var(--text); }
.pricing-btn.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.pricing-btn.btn-gold { background: var(--orange); color: #fff; font-weight: 800; }
.pricing-btn.btn-gold:hover { background: var(--orange-light); transform: translateY(-1px); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--bg-900); border-top: 1px solid var(--border); padding: 44px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-brand { flex-shrink: 0; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-link { color: var(--text-dim); text-decoration: none; font-size: 0.83rem; transition: color 0.15s; }
.footer-link:hover { color: var(--orange-light); }
.footer-copy { font-size: 0.8rem; color: var(--text-dim); text-align: right; }
.footer-us-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; color: var(--text-dim); margin-top: 6px;
}

/* ── Admin modal ────────────────────────────────────────────── */
.ar-section { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(59,130,246,0.08); }
.ar-section:last-child { border-bottom: none; margin-bottom: 0; }
.ar-section-title { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue-light); font-weight: 700; margin-bottom: 14px; }
.ar-cat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.ar-cat-score { font-family: 'JetBrains Mono', monospace; font-size: 0.82rem; font-weight: 700; }
.ar-signals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.ar-signal { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border-radius: 8px; border: 1px solid; }
.ar-signal.pass    { background: rgba(16,185,129,0.04);  border-color: rgba(16,185,129,0.15); }
.ar-signal.fail    { background: rgba(248,113,113,0.04); border-color: rgba(248,113,113,0.12); }
.ar-signal.neutral { background: rgba(59,130,246,0.04);  border-color: rgba(59,130,246,0.15); }
.ar-signal-wide { grid-column: span 2; }
.ar-signal-icon { font-size: 0.85rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.ar-signal.pass .ar-signal-icon { color: var(--green-bright); }
.ar-signal.fail .ar-signal-icon { color: var(--red); }
.ar-signal-label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.ar-signal-sub   { font-size: 0.74rem; color: var(--text-muted); margin-top: 2px; }
.ar-checks-table { display: flex; flex-direction: column; gap: 8px; }
.ar-check-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px; border-radius: 8px; border: 1px solid; }
.ar-check-row.pass { background: rgba(16,185,129,0.03);  border-color: rgba(16,185,129,0.1); }
.ar-check-row.fail { background: rgba(248,113,113,0.04); border-color: rgba(248,113,113,0.12); }
.ar-check-status { font-size: 0.95rem; font-weight: 700; flex-shrink: 0; width: 20px; text-align: center; margin-top: 1px; }
.ar-check-body { flex: 1; min-width: 0; }
.ar-check-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; flex-wrap: wrap; }
.ar-check-key { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--text-muted); background: rgba(255,255,255,0.04); padding: 1px 6px; border-radius: 4px; }
.ar-check-weight { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 700; margin-left: auto; }
.ar-check-label  { font-size: 0.86rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.ar-check-detail { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.ar-override-tag { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; background: rgba(59,130,246,0.1); color: var(--blue-light); border: 1px solid rgba(59,130,246,0.25); border-radius: 4px; padding: 1px 6px; letter-spacing: 0.05em; }

/* ── Print ──────────────────────────────────────────────────── */
.print-header { display: none; }
@media print {
  @page { margin: 14mm 12mm; size: letter portrait; }
  .bg-grid, .bg-orb-1, .bg-orb-2, canvas,
  .site-header, .hero, .scan-form-wrap, #about-aeo,
  .trust-bar, #scan-panel, .report-actions, .cta-section,
  .findings-cta-wrap, .compare-strip, footer { display: none !important; }
  html, body { background: #fff !important; color: #1a1a1a !important; font-size: 11pt; }
  .print-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #f97316; page-break-after: avoid;
  }
  .print-header img { height: 32px; }
  .print-title { font-size: 9pt; color: #64748b; text-align: right; }
  .report-top { background: #f8fafc !important; border: 1px solid #e2e8f0 !important; box-shadow: none !important; break-inside: avoid; margin-bottom: 12px; }
  .categories-grid { margin-bottom: 12px; }
  .cat-card { background: #f8fafc !important; border: 1px solid #e2e8f0 !important; box-shadow: none !important; break-inside: avoid; }
  .findings-section { background: #f8fafc !important; border: 1px solid #e2e8f0 !important; break-before: auto; }
  .symptom-card, .symptom-item { break-inside: avoid; }
  h2, h3, h4 { color: #1a1a1a !important; -webkit-text-fill-color: #1a1a1a !important; }
  .report-grade { -webkit-text-fill-color: unset !important; }
  .report-tagline, .report-scanned { color: #64748b !important; }
  .score-circle .fill { stroke: #f97316 !important; }
  .score-number { color: #f97316 !important; -webkit-text-fill-color: #f97316 !important; }
  .report-domain { color: #92400e !important; }
  #report-modal { display: block !important; position: static !important; background: none !important; backdrop-filter: none !important; overflow: visible !important; }
  #report-modal-content { padding: 0 !important; }
  #report-modal-close, .email-lead-section { display: none !important; }
  #report-panel { display: block !important; }
  .print-footer { display: block !important; position: fixed; bottom: 8mm; left: 0; right: 0; text-align: center; font-size: 8pt; color: #94a3b8; border-top: 1px solid #e2e8f0; padding-top: 6px; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .mobile-menu-toggle { display: flex; }
  .nav-scan { display: none; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(6,7,15,0.99); flex-direction: column; align-items: flex-start; gap: 0; padding: 12px 0; border-bottom: 1px solid rgba(59,130,246,0.1); box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
  .nav-menu.active { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-link { padding: 10px 24px; display: block; font-size: 0.95rem; }
  .cta-button { margin: 10px 24px; display: inline-block; }
  .site-header { position: relative; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-copy { text-align: center; }
}
@media (max-width: 700px) {
  .scan-form { flex-direction: column; padding: 14px; gap: 10px; }
  .scan-btn  { width: 100%; justify-content: center; }
  .report-top { flex-direction: column; gap: 24px; }
  .score-circle-wrap { margin: 0 auto; }
  .report-actions { flex-direction: column; align-items: stretch; }
  .report-actions .btn { text-align: center; justify-content: center; }
  .cta-section { padding: 36px 20px; }
  .scan-progress-wrap { padding: 28px 20px; }
  .findings-section { padding: 24px 18px; }
  .findings-cta-wrap { padding: 22px 16px; }
  .symptom-item { gap: 10px; }
  .symptom-impact { display: none; }
  .radar-svg { max-width: 340px; }
  h1 { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .platform-cards-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-right form > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) { .ar-signal-wide { grid-column: span 1; } }
@media (max-width: 480px) {
  body { -webkit-text-size-adjust: 100%; }
  .scan-input { font-size: 16px; }
  .container { padding: 0 16px; }
  .hero { padding: 60px 0 44px; }
  .hero::before { display: none; }
  .report-summary { min-width: 0; }
  .report-domain { font-size: 0.9rem; word-break: break-all; }
}
