/* ─── Self-hosted Inter (variable) — no third-party font requests ─── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('fonts/inter-latin-wght-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('fonts/inter-latin-ext-wght-normal.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Shared scales (theme-independent): type, tracking, spacing ── */
  --font-hero: clamp(3.5rem, 8vw, 6.5rem);          /* colossal editorial headline */
  --font-h2: clamp(2.2rem, 4.5vw, 3.5rem);          /* section headlines */
  --track-hero: -0.04em;
  --track-head: -0.03em;
  --space-section: clamp(96px, 12vw, 160px);        /* section vertical rhythm */
  --space-block: clamp(56px, 8vw, 96px);

  /* ── Light theme (used when the visitor explicitly chooses light).
        The site is dark-first: every page stamps data-theme="dark" in <head>
        unless localStorage 'cs-theme' === 'light'. ── */
  --bg: #ffffff;
  --bg-2: #f7f9fc;
  --bg-3: #eef2f8;
  --surface: #ffffff;
  --border: rgba(15,23,42,0.10);
  --border-hover: rgba(99,102,241,0.45);
  --indigo: #6366f1;
  --indigo-light: #6366f1;
  --purple: #a855f7;
  --purple-light: #9333ea;
  --grad-text: linear-gradient(135deg, #6366f1, #9333ea);
  --text: #0f172a;
  --text-2: #475569;
  --text-3: #94a3b8;
  --nav-bg: rgba(255,255,255,0.8);
  --nav-rest: rgba(255,255,255,0.55);
  --nav-line: rgba(15,23,42,0.06);
  --nav-shadow: 0 1px 24px rgba(15,23,42,0.05);
  --btn-outline: rgba(15,23,42,0.16);
  --grid-line: rgba(99,102,241,0.05);
  --stats-bg: linear-gradient(180deg, #fafbff, #f4f6fc);
  --code-bg: rgba(99,102,241,0.1);
  --code-text: #4f46e5;
  --radius: 16px;
  --shadow-glow: 0 24px 60px rgba(99,102,241,0.14);
  --shadow-card: 0 1px 2px rgba(15,23,42,0.04), 0 12px 32px rgba(15,23,42,0.06);
  --shadow-hover: 0 20px 44px rgba(30,27,75,0.12);
  --stage-glow-a: rgba(99,102,241,0.20);
  --stage-glow-b: rgba(168,85,247,0.12);
}
:root[data-theme="dark"] {
  /* ── Dark theme (site default) — deep-ink scale, one luminous violet accent ── */
  --ink-0: #07080D;   /* deepest well (product canvas)   */
  --ink-1: #0A0C12;   /* page canvas                     */
  --ink-2: #0E111A;   /* graphite section tone           */
  --ink-3: #141827;   /* lifted panel                    */
  --bg: var(--ink-1);
  --bg-2: var(--ink-2);
  --bg-3: var(--ink-3);
  --surface: #10141F;
  --border: rgba(255,255,255,0.10);
  --border-hover: rgba(255,255,255,0.18);
  --indigo-light: #818cf8;
  --purple-light: #c084fc;
  --grad-text: linear-gradient(135deg, #818cf8, #c084fc);
  --text: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --nav-bg: rgba(10,12,18,0.85);
  --nav-rest: rgba(10,12,18,0.55);
  --nav-line: rgba(255,255,255,0.06);
  --nav-shadow: 0 1px 24px rgba(0,0,0,0.4);
  --btn-outline: rgba(255,255,255,0.16);
  --grid-line: rgba(255,255,255,0.04);
  --stats-bg: rgba(129,140,248,0.035);
  --code-bg: rgba(148,163,184,0.12);
  --code-text: #e2e8f0;
  --shadow-glow: 0 0 60px rgba(99,102,241,0.15);
  --shadow-card: none;
  --shadow-hover: 0 20px 40px rgba(0,0,0,0.35);
  --stage-glow-a: rgba(99,102,241,0.34);
  --stage-glow-b: rgba(168,85,247,0.20);
}
html { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ─── Gradient Text ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--indigo-light), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-weight: 600; border: none;
  cursor: pointer; text-decoration: none; transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  color: #fff; border-radius: 12px;
  box-shadow: 0 4px 24px rgba(99,102,241,0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(99,102,241,0.45);
}
.btn-ghost {
  /* Quiet outline — confident, no fill, no drop shadow */
  background: transparent;
  color: var(--text); border-radius: 12px;
  border: 1px solid var(--btn-outline, var(--border));
}
.btn-ghost:hover {
  color: var(--indigo-light);
  border-color: var(--border-hover);
  background: rgba(99,102,241,0.06);
}
.btn-sm  { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg  { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Nav — glassy sticky bar (translucent at rest, denser once scrolled) ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  background: var(--nav-rest);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--nav-line);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-color: var(--border);
  box-shadow: var(--nav-shadow);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-weight: 700; font-size: 1rem;
}
.nav-logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-links {
  display: flex; gap: 32px; flex: 1;
}
.nav-links a {
  text-decoration: none; color: var(--text-2); font-size: 0.9rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ─── Theme toggle ─── */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-2); cursor: pointer; transition: all 0.2s ease;
  box-shadow: var(--shadow-card);
}
.theme-toggle:hover { color: var(--indigo-light); border-color: var(--border-hover); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: clamp(132px, 16vh, 184px) 0 clamp(72px, 9vw, 116px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  /* The orbs are bigger than the hero on purpose — but they must never widen
     the document (they blew out the layout on phones). Clip them here. */
  overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5;
}
.hero-orb-1 {
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(99,102,241,0.28), transparent 68%);
  top: -240px; left: -220px;
  animation: orb-drift 8s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(168,85,247,0.24), transparent 68%);
  top: -120px; right: -200px;
  animation: orb-drift 10s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(99,102,241,0.16), transparent 70%);
  bottom: 40px; left: 50%; transform: translateX(-50%);
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5) 25%, rgba(0,0,0,0.5) 65%, transparent);
}

.hero-content { position: relative; z-index: 1; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 99px;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.3);
  color: var(--indigo-light); font-size: 0.8rem; font-weight: 500;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--indigo-light);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.15rem; color: var(--text-2);
  max-width: 640px; margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 16px;
}
.hero-meta {
  color: var(--text-3); font-size: 0.8rem;
  margin-bottom: 52px;
}

/* ─── App Preview ─── */
.app-preview {
  position: relative; max-width: 980px; margin: 0 auto;
  /* Keep the product mockup DARK on the light page — dark tokens cascade to children */
  --bg-2: #0d1120;
  --border: rgba(255,255,255,0.09);
  --text: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --indigo-light: #818cf8;
  --purple-light: #c084fc;
  color: var(--text);
}
.app-window {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(15,23,42,0.08),
    0 40px 80px rgba(30,27,75,0.28),
    var(--shadow-glow);
}
.app-titlebar {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
}
.traffic-lights { display: flex; gap: 6px; }
.tl {
  width: 12px; height: 12px; border-radius: 50%;
}
.tl-red    { background: #ff5f57; }
.tl-yellow { background: #febc2e; }
.tl-green  { background: #28c840; }
.cta-meta {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 12px;
}

.cta-meta-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}
.cta-meta-row .cta-meta {
  margin-top: 0;
}

.app-body { display: flex; height: 440px; }
.app-sidebar {
  width: 188px; flex-shrink: 0;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--border);
  padding: 18px 10px 14px;
}
.app-sidebar-logo {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 8px; margin-bottom: 14px;
  font-size: 0.78rem; font-weight: 700; color: var(--text);
}
.sidebar-icon {
  width: 22px; height: 22px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}
.app-nav-item {
  padding: 8px 11px; border-radius: 9px;
  font-size: 0.74rem; color: var(--text-3);
  margin-bottom: 2px; cursor: default;
}
.app-nav-active {
  background: rgba(99,102,241,0.15); color: var(--indigo-light);
}
.app-nav-upgrade {
  color: #a855f7; margin-top: 8px;
}
/* Sidebar storage meter — grounds the mock in a real machine */
.app-storage { margin-top: auto; padding: 10px 10px 2px; }
.app-storage-label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
  font-size: 0.62rem; color: var(--text-3); margin-bottom: 6px; white-space: nowrap;
}
.app-storage-label b { color: var(--text-2); font-weight: 600; }
.app-storage-bar { height: 5px; border-radius: 99px; background: rgba(255,255,255,0.07); overflow: hidden; }
.app-storage-fill { height: 100%; width: 82%; border-radius: 99px; background: linear-gradient(90deg, var(--indigo), var(--purple)); }

.app-main { flex: 1; min-width: 0; padding: 20px 24px; overflow: hidden; display: flex; flex-direction: column; gap: 13px; }
.app-main-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.app-greeting {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0;
}
.app-status {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: 0.64rem; font-weight: 600; color: #86efac;
  background: rgba(34,197,94,0.10); border: 1px solid rgba(34,197,94,0.28);
  border-radius: 99px; padding: 3px 10px;
}
.app-status::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #4ade80; }
.app-cols { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 13px; flex: 1; min-height: 0; }
.app-scan-card {
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(168,85,247,0.1));
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 12px; padding: 16px; margin-bottom: 0;
  display: flex; flex-direction: column; min-width: 0;
}
.scan-card-label { font-size: 0.65rem; color: #818cf8; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.scan-card-size  { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 2px; }
.scan-card-sub   { font-size: 0.68rem; color: #818cf8; margin-bottom: 12px; }
.scan-card-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: auto; }
.scan-stat span  { display: block; font-weight: 700; font-size: 0.85rem; }
.scan-stat small { font-size: 0.58rem; color: var(--text-3); }
/* Right pane: the Reclaim Space ledger — the density that sells the scan */
.app-panel {
  border: 1px solid var(--border); border-radius: 12px;
  background: rgba(255,255,255,0.02);
  padding: 12px 12px 10px; min-width: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.app-panel-title {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3); padding: 0 2px;
}
.app-panel-title em { font-style: normal; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--indigo-light); }
.app-item {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 9px; border-radius: 8px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.04);
  font-size: 0.72rem; color: var(--text-2); line-height: 1.3;
}
.app-item b { margin-left: auto; padding-left: 8px; color: var(--text); font-weight: 700; font-size: 0.72rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.app-check { flex: none; width: 13px; height: 13px; border-radius: 4px; background: linear-gradient(135deg, var(--indigo), var(--purple)); position: relative; }
.app-check::after {
  content: ""; position: absolute; left: 3px; top: 3.5px;
  width: 6px; height: 3.5px;
  border-left: 1.6px solid #fff; border-bottom: 1.6px solid #fff;
  transform: rotate(-45deg);
}
.app-item-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.app-item-name { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.app-item-bar { display: block; height: 3px; border-radius: 99px; background: rgba(255,255,255,0.06); overflow: hidden; }
.app-item-fill { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, rgba(129,140,248,0.9), rgba(192,132,252,0.9)); }
.app-item-prot { border-color: rgba(34,197,94,0.18); background: rgba(34,197,94,0.05); }
.app-prot-chip {
  flex: none; margin-left: auto; font-size: 0.56rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: #86efac; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
  padding: 2px 7px; border-radius: 99px;
}
.app-item-prot .app-item-name { color: var(--text-3); }
.app-actions { display: flex; gap: 8px; }
.app-btn-primary {
  flex: 2; padding: 10px 12px; border-radius: 9px; text-align: center;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  color: #fff; font-size: 0.72rem; font-weight: 600; cursor: default;
  box-shadow: 0 6px 18px rgba(99,102,241,0.35);
}
.app-btn-secondary {
  flex: 1; padding: 10px 12px; border-radius: 9px; text-align: center;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  font-size: 0.72rem; color: var(--text-2); cursor: default;
}
/* Titlebar search capsule */
.app-search {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.62rem; color: var(--text-3);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 7px; padding: 4px 10px; min-width: 120px;
}
.app-search svg { width: 10px; height: 10px; flex: none; opacity: 0.8; }

/* ── Hero bullets — proof points under the CTA row (grid on wide screens) ── */
.hero-bullets {
  list-style: none; margin: 4px auto 30px; max-width: 1020px;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 30px; text-align: left;
}
.hero-bullets li {
  position: relative; padding-left: 30px;
  font-size: 0.95rem; color: var(--text-2); line-height: 1.55;
}
.hero-bullets li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(34,197,94,0.14);
}
.hero-bullets li::after {
  content: ""; position: absolute; left: 6px; top: 8px;
  width: 7px; height: 4px;
  border-left: 2px solid #16a34a; border-bottom: 2px solid #16a34a;
  transform: rotate(-45deg);
}
.hero-bullets strong { color: var(--text); font-weight: 700; }
.hero-bullets a { color: var(--indigo-light); }
@media (max-width: 900px) {
  .hero-bullets { grid-template-columns: 1fr; gap: 13px; width: fit-content; max-width: 100%; }
}

/* ─── Stats Bar ─── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--stats-bg);
  padding: 40px 0;
}
.stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 52px; flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.stat-value { display: flex; align-items: baseline; gap: 6px; }
.stat-num {
  font-size: 2.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--indigo-light), var(--purple-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-num.stat-text { font-size: 1.7rem; letter-spacing: -0.01em; }
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--indigo-light); }
.stat-label  { font-size: 0.8rem; color: var(--text-3); text-align: center; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ─── Trust / Safety Strip ─── */
.trust-strip {
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--stats-bg);
}
.trust-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.trust-head .section-tag { margin-bottom: 16px; }
.trust-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px;
}
.trust-sub { color: var(--text-2); font-size: 1rem; line-height: 1.7; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.trust-card:hover { transform: translateY(-4px); border-color: var(--border-hover); box-shadow: var(--shadow-hover); }
.trust-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
  color: var(--indigo-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.trust-card h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; }
.trust-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .trust-grid { grid-template-columns: 1fr; } }

/* ─── Section Headers ─── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 4px 14px; border-radius: 99px;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.25);
  color: var(--indigo-light); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.section-title {
  font-size: var(--font-h2, clamp(2.2rem, 4.5vw, 3.5rem));
  font-weight: 800; line-height: 1.06;
  letter-spacing: var(--track-head, -0.03em); margin-bottom: 16px;
}
.section-subtitle { font-size: 1rem; color: var(--text-2); max-width: 520px; margin: 0 auto; }

/* ─── Features ─── */
.features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.feature-card-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.feature-card-large .feature-icon { margin-bottom: 16px; }
.feature-card-large .feature-visual { margin-top: 0; }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--indigo-light); margin-bottom: 18px;
}
.feature-icon-privacy {
  background: rgba(168,85,247,0.1);
  border-color: rgba(168,85,247,0.2);
  color: var(--purple-light);
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; }

/* Photo strip demo */
.feature-visual { margin-top: 20px; }
.photo-strip { display: flex; gap: 10px; }
.photo-thumb {
  flex: 1; height: 64px; border-radius: 8px;
  position: relative; overflow: hidden;
}
.blurry    { background: linear-gradient(135deg, #334155, #1e293b); filter: blur(2px); }
.dark      { background: linear-gradient(135deg, #0f172a, #1e293b); }
.good      { background: linear-gradient(135deg, #1e3a5f, #2d5986); }
.duplicate { background: linear-gradient(135deg, #334155, #1e293b); }
.photo-badge {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  padding: 2px 8px; border-radius: 99px; font-size: 0.58rem; font-weight: 600;
  white-space: nowrap;
}
.badge-red    { background: rgba(239,68,68,0.3); color: #fca5a5; border: 1px solid rgba(239,68,68,0.4); }
.badge-orange { background: rgba(249,115,22,0.3); color: #fdba74; border: 1px solid rgba(249,115,22,0.4); }
.badge-green  { background: rgba(34,197,94,0.3); color: #86efac; border: 1px solid rgba(34,197,94,0.4); }

/* ── Reclaim System Space card visual ── */
.reclaim-list { display: flex; flex-direction: column; gap: 8px; }
.reclaim-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; border-radius: 8px;
  background: rgba(99,102,241,0.06); border: 1px solid rgba(99,102,241,0.16);
  font-size: 0.82rem; color: var(--text-2);
}
.reclaim-row b { color: var(--text); font-weight: 700; font-variant-numeric: tabular-nums; }
.feature-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82em; padding: 1px 5px; border-radius: 5px;
  background: var(--code-bg); color: var(--code-text);
}

.feature-card-privacy { position: relative; overflow: hidden; }
.feature-card-privacy::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(168,85,247,0.05), transparent);
  pointer-events: none;
}
.privacy-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 99px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  color: #86efac; font-size: 0.72rem; font-weight: 600;
  margin-top: 14px;
}

/* ─── How It Works ─── */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(to bottom, transparent, rgba(99,102,241,0.04), transparent);
}
.steps {
  display: flex; align-items: flex-start;
  gap: 0; max-width: 1040px; margin: 0 auto;
}
.step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  box-shadow: 0 0 24px rgba(99,102,241,0.4);
  margin-bottom: 20px; flex-shrink: 0;
}
.step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-content p  { font-size: 0.85rem; color: var(--text-2); }
.step-connector {
  flex: 0 0 60px; height: 2px;
  background: linear-gradient(to right, var(--indigo), var(--purple));
  margin-top: 24px; opacity: 0.4;
}

/* ─── Pricing Teaser ─── */
.pricing-teaser { padding: 100px 0; }
.pricing-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1080px; margin: 0 auto;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.pricing-card-featured {
  border-color: rgba(99,102,241,0.4);
  background: linear-gradient(160deg, rgba(99,102,241,0.08), var(--surface) 60%);
  box-shadow: 0 24px 50px rgba(99,102,241,0.18);
  transform: scale(1.04);
}
.pricing-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 14px; border-radius: 99px;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  font-size: 0.72rem; font-weight: 700; white-space: nowrap;
}
.pricing-plan  { font-size: 0.8rem; font-weight: 600; color: var(--text-2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.pricing-price { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.pricing-price span { font-size: 1rem; color: var(--text-3); font-weight: 400; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li { font-size: 0.85rem; color: var(--text-2); padding: 5px 0; }
.pricing-features li.dim { color: var(--text-3); }

/* ─── Download CTA ─── */
.download-cta { padding: 80px 0 120px; }
.cta-card {
  max-width: 940px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(168,85,247,0.08));
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 28px; padding: 72px 56px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-orb {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.2), transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.cta-card h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.cta-card p  { color: var(--text-2); margin-bottom: 36px; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-meta    { font-size: 0.78rem; color: var(--text-3); }

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.9rem;
}
.footer-links {
  display: flex; gap: 24px; flex: 1; justify-content: center;
}
.footer-links a { color: var(--text-3); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--text-3); font-size: 0.8rem; }

/* ─── Animations ─── */
@keyframes orb-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.animate-float-1 { animation: float 4s ease-in-out infinite; }
.animate-float-2 { animation: float 5s ease-in-out infinite 0.5s; }
.animate-float-3 { animation: float 4.5s ease-in-out infinite 1s; }

/* Scroll-reveal — spec: opacity + 8px rise, 300–500ms, stagger applied by JS.
   Double-gated so content can never be trapped invisible:
   · prefers-reduced-motion: reduce → nothing is ever hidden;
   · :root[data-theme] exists only after the <head> theme stamp ran, so a
     no-JS visit (which can't add .visible) renders everything instantly. */
@media (prefers-reduced-motion: no-preference) {
  :root[data-theme] .reveal {
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.44s cubic-bezier(0.2, 0.7, 0.2, 1),
                transform 0.44s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  :root[data-theme] .reveal.visible { opacity: 1; transform: none; }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card-featured { transform: none; }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 640px) {
  /* Mobile menu: the burger <button> toggles the section links as a dropdown, so
     they are reachable on phones (they were display:none with no replacement).
     main.js flips `.nav-open` on the nav (plus aria-expanded on the button).
     `.nav-inner .nav-burger` outranks the base `.nav-burger{display:none}` rule
     regardless of source order. */
  .nav-inner .nav-burger { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    flex-direction: column; gap: 2px;
    padding: 10px 20px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
  }
  .nav.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 11px 6px; font-size: 0.95rem; }
  .nav-links a.nav-highlight { align-self: flex-start; }
  .hero-cta { flex-direction: column; }
  .cta-card { padding: 40px 24px; }
}

/* ═══ Stage-1 engineered-luxury hero (2026-07-25) — colossal type, product-as-art ═══ */

/* Colossal editorial headline — DaisyDisk-scale, Apple-grade restraint */
.hero-headline {
  font-size: var(--font-hero);
  font-weight: 800;
  letter-spacing: var(--track-hero);
  line-height: 1.02;
  color: var(--text);
  margin: 0 auto 24px;
  max-width: 15ch;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 54ch;
  margin: 0 auto 34px;
}
.hero-sub strong { color: var(--text); }

/* The stage: perspective-tilted product window over a luminous accent bloom */
.hero-stage-wrap { position: relative; z-index: 1; margin-top: clamp(48px, 7vw, 84px); }
.hero-stage { position: relative; max-width: 1080px; margin: 0 auto; perspective: 1700px; }
.hero-stage-glow {
  position: absolute; inset: -10% -16% -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 44% at 50% 44%, var(--stage-glow-a), transparent 68%),
    radial-gradient(30% 32% at 70% 26%, var(--stage-glow-b), transparent 70%);
  filter: blur(28px);
}
.hero-stage .app-preview {
  position: relative; z-index: 1; margin: 0; max-width: none;
  transform: rotateX(7deg) scale(0.985);
  transform-origin: 50% 12%;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
.hero-stage:hover .app-preview,
.hero-stage:focus-within .app-preview { transform: rotateX(0deg) scale(1); }
@media (hover: none) { .hero-stage .app-preview { transform: none; } }

/* Floating stat chips — dark glass, luminous edge, slight scroll parallax */
.stat-chips { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.stat-chip {
  position: absolute;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 16px; border-radius: 14px;
  background: rgba(13,16,26,0.80);
  border: 1px solid rgba(129,140,248,0.35);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 18px 44px rgba(5,6,12,0.5),
    0 0 34px rgba(99,102,241,0.16);
  white-space: nowrap;
  transform: translateY(var(--chip-shift, 0px));
}
.sc-ico {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(99,102,241,0.30), rgba(168,85,247,0.24));
  color: #c7d2fe;
}
.sc-ico svg { width: 17px; height: 17px; }
.sc-num { display: block; font-size: 1.02rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; color: #f1f5f9; font-variant-numeric: tabular-nums; }
.sc-label { display: block; font-size: 0.7rem; color: #94a3b8; }
/* Light page: the dark-glass chip composites to ~#3d4048 over white, where
   #94a3b8 is 4.04:1 — just under AA. Lift the label only there; the dark
   default (7.46:1) is untouched. */
:root:not([data-theme="dark"]) .sc-label { color: #cbd5e1; }
.stat-chip-1 { top: 7%; left: -64px; }
.stat-chip-2 { top: 46%; right: -72px; }
.stat-chip-3 { bottom: -24px; left: 7%; }
@media (max-width: 1220px) {
  .stat-chip-1 { left: -14px; }
  .stat-chip-2 { right: -14px; }
}
@media (max-width: 900px) {
  /* Chips fold into a proof row beneath the window — never lost, never cramped */
  .stat-chips { position: static; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; }
  .stat-chip { position: static; transform: none; }
}

/* Hero entrance + glow drift (motion is a garnish — fully reduced-motion safe) */
@media (prefers-reduced-motion: no-preference) {
  .hero-stage-glow { animation: glow-drift 12s ease-in-out infinite alternate; }
  @keyframes glow-drift {
    from { transform: translate3d(-1.5%, 0, 0) scale(1); opacity: 0.92; }
    to   { transform: translate3d(1.5%, 1.2%, 0) scale(1.06); opacity: 1; }
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stage .app-preview { transition: none; transform: none; }
}
/* Keep the signature nav wordmark on a single line so the sweep never breaks */
.nav-logo span{white-space:nowrap}
.nav-logo{flex-shrink:0}

/* ═══ Credibility band ═══ */
.cred-band { padding: 72px 0; border-bottom: 1px solid var(--border); }
.cred-head { text-align: center; max-width: 660px; margin: 0 auto 36px; }
.cred-head .section-tag { margin-bottom: 16px; }
.cred-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.cred-marquee {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  padding: 28px 32px; border-radius: var(--radius);
  border: 1px solid var(--border-hover);
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(147,51,234,0.10)), var(--surface);
  box-shadow: var(--shadow-card);
}
.cred-marquee::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 140% at 0% 0%, rgba(99,102,241,0.18), transparent 55%); }
.cred-marquee-icon { position: relative; z-index: 1; width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, var(--indigo-light), var(--purple-light)); box-shadow: 0 8px 24px rgba(99,102,241,0.35); }
.cred-marquee-copy { position: relative; z-index: 1; min-width: 0; }
.cred-marquee-eyebrow { display: inline-block; margin-bottom: 6px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--indigo-light); }
.cred-marquee-title { font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 6px; }
.cred-marquee-sub { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; max-width: 60ch; }
.cred-marquee-seal { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; padding: 8px 14px; border-radius: 99px; font-size: 0.78rem; font-weight: 700; color: var(--indigo-light); background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.3); }
.cred-lower { margin-top: 20px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; align-items: stretch; }
.cred-quote { position: relative; margin: 0; display: flex; flex-direction: column; gap: 18px; padding: 28px; border-radius: var(--radius); border: 1px dashed var(--border-hover); background: var(--surface); box-shadow: var(--shadow-card); }
.cred-quote-mark { color: var(--indigo-light); opacity: 0.5; }
.cred-quote-text { margin: 0; font-size: 1.12rem; font-weight: 600; line-height: 1.5; color: var(--text-3); font-style: italic; }
.cred-quote-by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.cred-quote-avatar { flex: none; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, rgba(99,102,241,0.35), rgba(147,51,234,0.3)); border: 1px solid var(--border); }
.cred-quote-meta { display: flex; flex-direction: column; }
.cred-quote-name { font-size: 0.9rem; font-weight: 700; color: var(--text-2); }
.cred-quote-role { font-size: 0.78rem; color: var(--text-3); }
.cred-quote-flag { position: absolute; top: 20px; right: 20px; padding: 4px 10px; border-radius: 99px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-3); background: rgba(99,102,241,0.08); border: 1px solid var(--border); }
.cred-guarantee { display: flex; flex-direction: column; gap: 14px; padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-card); }
.cred-guarantee-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--indigo-light); background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2); }
.cred-guarantee-copy h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.cred-guarantee-copy p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }
.cred-guarantee-pill { align-self: flex-start; margin-top: auto; padding: 6px 14px; border-radius: 99px; font-size: 0.78rem; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--indigo-light), var(--purple-light)); }
@media (max-width: 900px) {
  .cred-marquee { grid-template-columns: auto 1fr; }
  .cred-marquee-seal { grid-column: 1 / -1; justify-self: start; }
  .cred-lower { grid-template-columns: 1fr; }
}
@media (max-width: 540px) { .cred-marquee { grid-template-columns: 1fr; } }

/* ═══ Pricing teaser clarity ═══ */
.pricing-for { font-size: 0.86rem; line-height: 1.45; color: var(--text-2); margin: -8px 0 18px; }
.pricing-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 4px 14px; border-radius: 99px; font-size: 0.72rem; font-weight: 700; white-space: nowrap; }
.pricing-tag-soft { color: var(--indigo-light); background: rgba(99,102,241,0.10); border: 1px solid rgba(99,102,241,0.28); }
.pricing-reassure { text-align: center; font-size: 0.9rem; color: var(--text-2); margin-top: 28px; }
.pricing-teaser-note { text-align: center; color: var(--text-3); font-size: 0.88rem; margin-top: 8px; }
.pricing-teaser-note a { color: var(--indigo-light); }

/* ═══ Email capture (Netlify form) ═══ */
.newsletter { padding: 96px 0; }
.newsletter-card { position: relative; overflow: hidden; max-width: 720px; margin: 0 auto; text-align: center; padding: 48px 40px; background: var(--stats-bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-card); }
.newsletter-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 80% at 50% -10%, rgba(99,102,241,0.14), transparent 60%); }
.newsletter-icon { position: relative; width: 44px; height: 44px; margin: 0 auto 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2); color: var(--indigo-light); }
.newsletter-tag { margin-bottom: 16px; }
.newsletter-title { position: relative; margin-bottom: 12px; }
.newsletter-sub { position: relative; font-size: 1rem; color: var(--text-2); max-width: 460px; margin: 0 auto 28px; line-height: 1.6; }
.newsletter-form { position: relative; display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.newsletter-input { flex: 1; min-width: 0; padding: 14px 18px; font-family: inherit; font-size: 0.95rem; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: 12px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.newsletter-input::placeholder { color: var(--text-3); }
.newsletter-input:focus { outline: none; border-color: var(--border-hover); box-shadow: 0 0 0 3px rgba(99,102,241,0.15); }
.newsletter-privacy { position: relative; margin-top: 16px; font-size: 0.82rem; color: var(--text-3); }
.newsletter-hp { position: absolute; left: -9999px; }
@media (max-width: 560px) { .newsletter-card { padding: 40px 24px; } .newsletter-form { flex-direction: column; } .newsletter-form .btn { justify-content: center; } }

/* ═══ Accessibility ═══ */
a:focus-visible, button:focus-visible, .btn:focus-visible, .nav-links a:focus-visible, .theme-toggle:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--indigo-light); outline-offset: 3px;
}
a:focus:not(:focus-visible), button:focus:not(:focus-visible), .btn:focus:not(:focus-visible), .theme-toggle:focus:not(:focus-visible), [tabindex]:focus:not(:focus-visible) { outline: none; }
:root[data-theme="dark"] { --text-3: #94a3b8; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); clip-path: inset(50%); white-space: nowrap; border: 0; }

/* ═══ Hero trust chips ═══ */
.hero-chips { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.hero .hero-meta { margin-bottom: 0; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 99px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-2);
  background: rgba(99,102,241,0.07); border: 1px solid var(--border);
  white-space: nowrap;
}
.hero-chip svg { width: 15px; height: 15px; color: var(--indigo-light); flex: none; }

/* ═══ Footer legal disclaimer ═══ */
.footer-legal { width: 100%; margin-top: 6px; font-size: 0.72rem; line-height: 1.6; color: var(--text-3); }
.footer-legal a { color: var(--text-3); text-decoration: underline; }
.footer-legal a:hover { color: var(--text); }

/* ═══ Skip link (a11y) ═══ */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; width: auto; height: auto; padding: 10px 16px; border-radius: 8px; background: var(--surface); color: var(--text); border: 1px solid var(--border-hover); box-shadow: var(--shadow-hover); font-size: 0.9rem; font-weight: 600; }

/* ═══ Mockup icon alignment ═══ */
.app-nav-item { display: flex; align-items: center; gap: 9px; }
.app-nav-item svg { width: 14px; height: 14px; flex: none; opacity: 0.85; }

/* ═══ Founder's note (real, not a placeholder) ═══ */
.cred-quote.is-note { border-style: solid; }
.cred-quote.is-note .cred-quote-text { color: var(--text-2); font-style: normal; font-size: 1.02rem; line-height: 1.6; }
.cred-quote.is-note .cred-quote-flag { color: var(--indigo-light); background: rgba(99,102,241,0.1); border-color: rgba(99,102,241,0.28); }

/* ═══ Pricing: buy strip, per-card guarantee, guarantee bar ═══ */
.buy-strip { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 0 auto 28px; padding: 12px 20px; border-radius: 99px; border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-card); width: fit-content; max-width: 100%; }
.buy-step { font-size: 0.85rem; color: var(--text-2); white-space: nowrap; }
.buy-step strong { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; margin-right: 7px; border-radius: 50%; font-size: 0.72rem; color: #fff; background: linear-gradient(135deg, var(--indigo-light), var(--purple-light)); }
.buy-arrow { color: var(--text-3); font-size: 0.85rem; }
.pf-guarantee { margin-top: 10px; text-align: center; font-size: 0.76rem; color: var(--text-3); }
.pricing-guarantee-bar { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 28px auto 0; padding: 12px 22px; border-radius: 99px; border: 1px solid rgba(99,102,241,0.25); background: rgba(99,102,241,0.07); color: var(--text-2); font-size: 0.88rem; width: fit-content; max-width: 100%; flex-wrap: wrap; text-align: center; }
.pricing-guarantee-bar svg { color: var(--indigo-light); flex: none; }
.pricing-guarantee-bar strong { color: var(--text); }
@media (max-width: 720px) { .buy-strip { border-radius: var(--radius); flex-direction: column; gap: 8px; } .buy-arrow { display: none; } }

/* ═══ FAQ (shared — used on homepage; pricing keeps an identical inline copy) ═══ */
.faq { padding: 80px 0; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-card); }
.faq-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.faq-item p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }
.faq-item a { color: var(--indigo-light); }
@media (max-width: 720px) { .faq-grid { grid-template-columns: 1fr; } }

/* ═══ Space-back estimator ═══ */
.estimator { padding: 80px 0; }
.est-card { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; max-width: 940px; margin: 0 auto; padding: 32px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-card); align-items: center; }
.est-options { display: flex; flex-direction: column; gap: 6px; }
.est-opt { display: flex; align-items: flex-start; gap: 12px; padding: 10px 12px; border-radius: 12px; cursor: pointer; transition: background 0.15s; }
.est-opt:hover { background: rgba(99,102,241,0.06); }
.est-opt input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--indigo); flex: none; cursor: pointer; }
.est-opt span { font-size: 0.92rem; font-weight: 600; color: var(--text); line-height: 1.45; }
.est-opt em { display: block; font-style: normal; font-weight: 400; font-size: 0.78rem; color: var(--text-3); }
.est-result { text-align: center; padding: 20px 12px; border-left: 1px solid var(--border); }
.est-figure { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -0.03em; background: linear-gradient(135deg, var(--indigo-light), var(--purple-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-variant-numeric: tabular-nums; }
.est-label { color: var(--text-3); font-size: 0.85rem; margin: 2px 0 18px; }
.est-note { color: var(--text-3); font-size: 0.75rem; line-height: 1.55; margin-top: 14px; text-align: left; }
.est-note a { color: var(--indigo-light); }
@media (max-width: 860px) { .est-card { grid-template-columns: 1fr; } .est-result { border-left: none; border-top: 1px solid var(--border); padding-top: 24px; } }

/* ═══ Nav value-hook: "How much can I save?" → estimator ═══ */
.nav-links a.nav-highlight { color: var(--indigo-light); font-weight: 600; padding: 5px 12px; border-radius: 99px; background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.22); transition: background 0.2s, border-color 0.2s; }
.nav-links a.nav-highlight:hover { background: rgba(99,102,241,0.16); border-color: rgba(99,102,241,0.4); }

/* ═══ Mobile nav burger (hidden on desktop, shown ≤640px) ═══ */
.nav-burger { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0; border-radius: 10px; background: none; color: var(--text-2); cursor: pointer; border: 1px solid transparent; transition: background 0.2s, border-color 0.2s; }
.nav-burger:hover { background: rgba(99,102,241,0.08); border-color: var(--border); }
.nav-inner { position: relative; }

/* ═══ Hero eyebrow (quiet overline — no pill, engineered restraint) + estimate soft-link + CTA trust lines ═══ */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  /* --text-2, not --text-3: light --text-3 (#94a3b8) is 2.56:1 on white — an AA
     fail for this claim-bearing line. Dark is pixel-identical (both map #94a3b8). */
  color: var(--text-2); margin-bottom: 26px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo-light));
  opacity: 0.65;
}
.hero-eyebrow::after { background: linear-gradient(90deg, var(--indigo-light), transparent); }
.hero-est-link { display: inline-block; margin: 4px 0 26px; color: var(--indigo-light); font-size: 0.9rem; font-weight: 600; text-decoration: none; }
.hero-est-link:hover { text-decoration: underline; }
.cta-guarantee { margin-top: 18px; font-size: 0.9rem; color: var(--text-2); }
.cta-guarantee strong { color: var(--text); }
.cta-verify { margin-top: 8px; font-size: 0.8rem; color: var(--text-3); }
.cta-verify a { color: var(--indigo-light); text-decoration: none; }
.cta-verify a:hover { text-decoration: underline; }

/* ═══ Marketing polish pass ═══ */
/* Estimator relatable line */
.est-relatable { font-size: 0.82rem; color: var(--text-2); line-height: 1.5; margin: 0 0 16px; }

/* Respect reduced-motion for the hero orbs (the existing block missed orb-drift) */
@media (prefers-reduced-motion: reduce) {
  .hero-orb { animation: none !important; }
}
/* Cheaper hero background on small screens: fewer, lighter blurs = smoother scroll */
@media (max-width: 640px) {
  .hero-orb { filter: blur(56px); opacity: 0.4; animation: none; }
  .hero-orb-3 { display: none; }
  /* Tighter gutters so headline/cards aren't crushed on a 390px screen */
  .container { padding: 0 20px; }
  /* Tap targets ≥44px (iOS/Material minimum) */
  .nav .btn-sm { padding: 11px 14px; }
  .theme-toggle { width: 44px; height: 44px; }
  .nav-burger { width: 44px; height: 44px; }
  /* The 40px desktop gap clipped the nav CTA off-screen at 375px:
     tighten the row and push the controls cluster right. */
  .nav-inner { gap: 10px; padding: 0 16px; }
  .nav-inner .nav-burger { margin-left: auto; }
}

/* ═══ Founder avatar: photo with monogram fallback + credentials line ═══ */
.cred-quote-avatar { position: relative; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; color: #fff; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em; background: linear-gradient(135deg, var(--indigo), var(--purple)); border: none; }
.cred-quote-avatar::before { content: attr(data-initials); }
.cred-avatar-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cred-quote-creds { display: block; font-size: 0.76rem; color: var(--text-3); line-height: 1.4; margin-top: 2px; }

/* ═══ Founder credential badges ═══ */
.cred-quote-creds { display: block; margin-top: 4px; }
.cred-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 5px; }
.cred-badge { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--indigo-light); background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.28); padding: 2px 7px; border-radius: 5px; cursor: help; }
.cred-tenure { display: block; font-size: 0.76rem; color: var(--text-3); line-height: 1.4; }

/* Vaulith wordmark: gradient "V" leading the name (matches the app-icon mark). */
.brand-v { background: linear-gradient(120deg, #818cf8, #c084fc); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; }

/* ═══ Premium pass 1 (2026-07-18) — atmosphere, depth, gloss ═══
   Scoped additive overrides; both themes verified. */

/* Hero atmosphere: the orbs were invisible against pure white. Give the hero a
   soft ambient wash + livelier orbs so light mode has the same depth dark has. */
.hero-orb { opacity: 0.85; }
.hero-orb-1 { background: radial-gradient(circle, rgba(99,102,241,0.38), transparent 68%); }
.hero-orb-2 { background: radial-gradient(circle, rgba(168,85,247,0.32), transparent 68%); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(58% 42% at 78% 30%, rgba(168,85,247,0.10), transparent 70%),
    radial-gradient(50% 40% at 12% 12%, rgba(99,102,241,0.12), transparent 70%);
}
:root[data-theme="dark"] .hero-bg::after {
  background:
    radial-gradient(58% 42% at 78% 30%, rgba(168,85,247,0.07), transparent 70%),
    radial-gradient(50% 40% at 12% 12%, rgba(99,102,241,0.09), transparent 70%);
}

/* App mockup: premium framing — indigo ring, deep colored ambient shadow.
   (Idle motion now lives on the stage: glow drift + perspective flatten.) */
.app-window {
  border-color: rgba(99,102,241,0.28);
  box-shadow:
    0 2px 8px rgba(15,23,42,0.08),
    0 30px 60px rgba(30,27,75,0.30),
    0 70px 140px rgba(99,102,241,0.20),
    var(--shadow-glow);
}

/* Buttons: glass gloss — inner top highlight + saturated hover lift. */
.btn-primary {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    0 4px 24px rgba(99,102,241,0.38);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    0 10px 36px rgba(99,102,241,0.50);
}
.btn-primary:active { transform: translateY(0); }

/* (Headline scale now lives in the Stage-1 hero block: var(--font-hero).) */

/* ═══ Premium pass 2 (2026-07-18) — section depth, card physics, fail-open ═══ */

/* Feature + trust cards: lift on hover with an indigo top-edge accent that
   fades in — depth that responds, instead of flat white rectangles. */
.feature-card, .trust-card {
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.feature-card::before, .trust-card::before {
  content: ""; position: absolute; top: 0; left: 14%; right: 14%; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--indigo), var(--purple), transparent);
  opacity: 0; transition: opacity 0.28s ease;
}
.feature-card:hover, .trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99,102,241,0.35);
  box-shadow: 0 18px 44px rgba(30,27,75,0.14), 0 4px 12px rgba(99,102,241,0.10);
}
.feature-card:hover::before, .trust-card:hover::before { opacity: 1; }

/* Icon tiles: a touch more presence — gradient ring + soft inner glow. */
.feature-icon, .trust-icon {
  border: 1px solid rgba(99,102,241,0.28);
  box-shadow: inset 0 0 18px rgba(99,102,241,0.10);
}

/* Step circles: soft glow so the 3-step spine reads as energy, not buttons. */
.step-num, .step-number {
  box-shadow: 0 6px 22px rgba(99,102,241,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
}

/* Estimator CTA: text was kissing the pill edges. */
.est-cta, .estimator .btn, #estimator .btn-primary { padding-left: 26px; padding-right: 26px; white-space: nowrap; }

/* Section tag pills: faint gradient ring for a jewelry-grade detail. */
.section-tag, .guide-eyebrow {
  border: 1px solid rgba(99,102,241,0.30);
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(168,85,247,0.06));
}

/* ═══ Premium pass 3 (2026-07-18) — entrance choreography, dark polish ═══ */

@media (prefers-reduced-motion: no-preference) {
  /* Hero entrance: the copy stack rises in sequence; the product stage sweeps
     in beneath it, then hands off to the ambient glow drift. */
  @keyframes rise-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes window-enter {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
  }
  .hero-content > * { animation: rise-in 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  .hero-content > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.12s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.19s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.26s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.33s; }
  .hero-content > *:nth-child(6) { animation-delay: 0.40s; }
  .hero-content > *:nth-child(n+7) { animation-delay: 0.47s; }
  .hero-stage-wrap { animation: window-enter 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s both; }
}

/* Micro-interactions: chips and footer links acknowledge the cursor. */
.hero-chip { transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.hero-chip:hover { border-color: rgba(99,102,241,0.5); transform: translateY(-1px); }
.footer-links a { transition: color 0.2s ease; }

/* Dark mode: shadows vanish on near-black — hovers glow instead. */
:root[data-theme="dark"] .feature-card:hover,
:root[data-theme="dark"] .trust-card:hover {
  box-shadow: 0 18px 44px rgba(0,0,0,0.5), 0 0 0 1px rgba(99,102,241,0.28), 0 6px 30px rgba(99,102,241,0.22);
}
:root[data-theme="dark"] .hero-orb { opacity: 0.6; }

/* ═══ Premium pass 3.1 — relevant motion: the product demos itself ═══ */
@media (prefers-reduced-motion: no-preference) {
  /* Scan beam: a light sweep crosses the app window every ~7s — the engine,
     visualized. Brief sweep, long idle, never distracting. */
  .app-window { position: relative; }
  .app-window::after {
    content: ""; position: absolute; top: 0; bottom: 0; left: -12%; width: 10%;
    background: linear-gradient(90deg, transparent, rgba(129,140,248,0.16), rgba(192,132,252,0.20), transparent);
    filter: blur(2px);
    animation: scan-sweep 7s ease-in-out 2.2s infinite;
    pointer-events: none;
  }
  @keyframes scan-sweep {
    0%   { left: -14%; opacity: 0; }
    4%   { opacity: 1; }
    20%  { left: 104%; opacity: 1; }
    24%  { opacity: 0; }
    100% { left: 104%; opacity: 0; }
  }

  /* The spark in the V glints — the vault holding light. */
  .nav-logo-icon svg circle, .footer-logo svg circle, .cred-quote-avatar svg circle {
    animation: spark-glint 4.5s ease-in-out infinite;
  }
  @keyframes spark-glint {
    0%, 100% { opacity: 0.8; }
    12%      { opacity: 1; filter: drop-shadow(0 0 3px rgba(255,255,255,0.9)); }
    24%      { opacity: 0.85; filter: none; }
  }

  /* Gradient headline: a slow shimmer drift (hero only — jewelry, not neon). */
  .hero .gradient-text {
    background-size: 200% 100%;
    animation: grad-drift 7s ease-in-out infinite alternate;
  }
  @keyframes grad-drift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
}
.mock-num { font-variant-numeric: tabular-nums; }
.scan-stat > span { white-space: nowrap; }
/* Nested counts ("27 GB") must stay on one line — the block rule above is for
   the outer value/label stack only. */
.scan-stat span .mock-num { display: inline; }

/* ═══ Expert pass (2026-07-18) — mobile integrity + conversion polish ═══ */

/* MOBILE INTEGRITY: the stage never widens the page; the mock reflows. */
html, body { overflow-x: clip; }
@media (max-width: 900px) {
  .app-body { height: auto; }
  .app-cols { grid-template-columns: 1fr; }
  .app-sidebar { width: 170px; }
}
@media (max-width: 640px) {
  .app-sidebar { display: none; }           /* the mock breathes on phones */
  .app-main { padding: 16px 16px 18px; }
  .scan-card-grid { grid-template-columns: repeat(2, 1fr); gap: 10px 14px; }
  .app-search { display: none; }
}

/* Pricing teaser: real responsive grid (was a hardcoded inline 3-col). */
.pricing-cards-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .pricing-cards-3 { grid-template-columns: 1fr; max-width: 430px; margin-inline: auto; }
}

/* Estimator: the number pops when it changes — cause, meet effect. */
.est-figure.pop { animation: est-pop 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
@keyframes est-pop { 40% { transform: scale(1.07); } }

/* Jewelry: brand-tinted text selection; visible keyboard focus. */
::selection { background: rgba(129, 140, 248, 0.30); }
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible {
  outline: 2px solid var(--indigo); outline-offset: 2px; border-radius: 6px;
}

/* Compositor hints for the always-animating layers. */
.hero-orb { will-change: transform; }

/* ═══ Premium pass — W-05 dark polish (2026-07-19) ═══
   Dark mode was safe but flat. Every rule below is guarded by
   :root[data-theme="dark"] (or lives in the dark token block above), so light
   mode is byte-for-byte unchanged. No new motion is introduced — nothing here
   needs a prefers-reduced-motion guard. Goal: real atmosphere + depth on the
   deep base, keeping every claim of the light design. */

/* Hero atmosphere: the orbs read faintly and the ambient wash was near-invisible.
   Give the dark hero richer indigo/violet radials and orbs a touch more present,
   so it has the same depth the light-mode wash provides — no black-on-black. */
/* Deep-ink restraint: the canvas stays near-black; the violet lives in ONE
   luminous bloom behind the product, not a page-wide lavender wash. */
:root[data-theme="dark"] .hero-orb   { opacity: 0.42; }
:root[data-theme="dark"] .hero-orb-1 { background: radial-gradient(circle, rgba(99,102,241,0.30), transparent 66%); }
:root[data-theme="dark"] .hero-orb-2 { background: radial-gradient(circle, rgba(168,85,247,0.22), transparent 66%); }
:root[data-theme="dark"] .hero-orb-3 { background: radial-gradient(circle, rgba(129,140,248,0.16), transparent 70%); }
:root[data-theme="dark"] .hero-bg::after {
  background:
    radial-gradient(58% 42% at 79% 24%, rgba(168,85,247,0.08), transparent 70%),
    radial-gradient(52% 42% at 11% 9%,  rgba(99,102,241,0.10), transparent 70%),
    radial-gradient(64% 52% at 50% 112%, rgba(129,140,248,0.07), transparent 72%);
}

/* App mockup: it was dark-on-dark. Lift the window surface a hair, strengthen the
   luminous indigo ring, and deepen the ambient colored shadow so the product reads
   as a floating pane of glass, cleanly separated from the page behind it. */
:root[data-theme="dark"] .app-window {
  background: #0F1322;
  border-color: rgba(129,140,248,0.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 2px 8px rgba(0,0,0,0.5),
    0 34px 70px rgba(0,0,0,0.55),
    0 0 0 1px rgba(129,140,248,0.10),
    0 40px 120px rgba(99,102,241,0.24);
}

/* Borders that dissolve into near-black get a subtle luminous (indigo-tinted) edge
   so structure stays legible — footer top rule, scrolled nav, section dividers. */
:root[data-theme="dark"] .footer      { border-top-color: rgba(129,140,248,0.16); }
:root[data-theme="dark"] .nav.scrolled { border-color: rgba(129,140,248,0.14); }
:root[data-theme="dark"] .stats-bar,
:root[data-theme="dark"] .trust-strip,
:root[data-theme="dark"] .cred-band   { border-color: rgba(129,140,248,0.13); }

/* Flat-on-base panels — estimator, newsletter, FAQ — gain a faint luminous border
   plus soft depth so they read as lifted glass rather than painted onto the page. */
:root[data-theme="dark"] .est-card,
:root[data-theme="dark"] .newsletter-card,
:root[data-theme="dark"] .faq-item {
  border-color: rgba(129,140,248,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 20px 50px rgba(0,0,0,0.35);
}

/* ═══ Stage-2 (2026-07-25) — proof wall · editorial grid · pull-quote · rhythm ═══
   Homepage sections only (classes verified index-only except .faq/.download-cta/
   .section-header, which pricing.html shares — the rhythm token below is applied
   to those knowingly so both pages breathe at the same cadence). */

/* ── Section rhythm: one generous cadence across the page (spec item 5) ── */
.trust-strip, .features, .how-it-works, .cred-band, .estimator,
.pricing-teaser, .faq, .download-cta {
  padding: var(--space-section) 0;
}

/* ── Proof wall — monochrome badge row of REAL trust (spec item 4).
      CMM-style: muted, small, confident. Icons align on a common line;
      labels hang beneath. No violet, no pills — quiet certainty. ── */
.proof-wall {
  padding: clamp(30px, 4.5vw, 48px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: center;
  gap: clamp(18px, 2.6vw, 26px) clamp(26px, 3.4vw, 40px);
}
.proof-item, .proof-item > a {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  text-align: center; text-decoration: none; color: var(--text-2);
}
.proof-item { max-width: 188px; }
/* Icon tone: slate-500 on light (4.76:1 — light --text-3 is too faint at 2.56:1);
   dark inherits --text-3, which the dark theme maps to #94a3b8 (7.62:1). */
.proof-item svg { width: 20px; height: 20px; flex: none; color: #64748b; }
:root[data-theme="dark"] .proof-item svg { color: var(--text-3); }
.proof-item span { font-size: 0.8rem; font-weight: 600; line-height: 1.45; letter-spacing: 0.01em; }
.proof-item > a span { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--border-hover); transition: color 0.2s ease; }
.proof-item > a:hover { color: var(--text); }
.proof-item > a:hover svg { color: var(--text-2); }
:root[data-theme="dark"] .proof-wall { border-color: rgba(129,140,248,0.13); }
@media (max-width: 640px) {
  .proof-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 14px; }
  .proof-item { max-width: none; }
  .proof-item:last-child { grid-column: 1 / -1; }
}

/* ── Full-bleed pull-quote (spec item 5) — the design principle set huge.
      Deliberately ink in BOTH themes (the signature dark band on the light
      page, echoing the product frame), so it owns local accent tokens. ── */
.pullquote {
  --indigo-light: #818cf8;
  --purple-light: #c084fc;
  padding: clamp(72px, 10vw, 128px) 0;
  background:
    radial-gradient(52% 95% at 50% 0%, rgba(99,102,241,0.13), transparent 64%),
    #07080D;
  border-top: 1px solid rgba(129,140,248,0.14);
  border-bottom: 1px solid rgba(129,140,248,0.14);
}
.pullquote-text {
  margin: 0 auto; max-width: 22ch;
  text-align: center; text-wrap: balance;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.04;
  color: #f1f5f9;
}

/* ── Features: editorial 2+1+1 grid (spec item 5). Row one: lead card
      double-wide with a proof-stat; row two bookends wide on the privacy
      card. The two flagship cards keep the full row above them. ── */
.features-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card-lead, .feature-card-wide { grid-column: span 2; }
.feature-card-lead { display: flex; flex-direction: column; align-items: flex-start; }
.feature-proof { margin-top: auto; padding-top: 22px; display: flex; align-items: baseline; gap: 12px; }
.feature-proof-num {
  font-size: clamp(1.9rem, 2.6vw, 2.35rem); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1; font-variant-numeric: tabular-nums;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.feature-proof-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text-2);
}
@media (max-width: 1080px) {
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-lead, .feature-card-wide { grid-column: auto; }
}

/* ── Dark alternation: ink ↔ graphite section tones (spec item 5).
      Light mode keeps its existing washes — verified both. ── */
:root[data-theme="dark"] .trust-strip { background: var(--ink-2); }
:root[data-theme="dark"] .how-it-works {
  background: linear-gradient(to bottom, rgba(14,17,26,0), var(--ink-2) 24%, var(--ink-2) 76%, rgba(14,17,26,0));
}

/* ── Count-up target (spec item 6): digits must not wobble while counting ── */
.count-num { font-variant-numeric: tabular-nums; }
:root[data-theme="dark"] .est-result { border-left-color: rgba(129,140,248,0.16); }
