/* Wzdom Privacy — Design System v3 */

/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --bg:          #0c0d18;
  --surface:     #12141f;
  --surface2:    #1a1c2a;
  --border:      #252738;
  --border-l:    #2e3145;
  --text:        #f0ece4;
  --text-dim:    #b0a898;
  --text-muted:  #6e6860;

  --amber:       #f59e0b;
  --amber-h:     #fbbf24;
  --amber-dim:   rgba(245,158,11,.12);

  --accent:      #4f7dff;
  --accent-dim:  rgba(79,125,255,.12);

  --danger:      #ef4444;
  --warn:        #f59e0b;
  --safe:        #10b981;
  --broker:      #a855f7;

  /* aliases used by download JS */
  --good:        #10b981;
  --critical:    #ef4444;

  --cream:          #faf7f0;
  --cream-surface:  #f3ede0;
  --cream-border:   #e5ddd0;
  --cream-text:     #1c1917;
  --cream-dim:      #57534e;
  --cream-muted:    #a8a29e;

  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-mono:  'SF Mono', 'Fira Code', monospace;

  --max-w:    1160px;
  --radius:   14px;
  --radius-sm: 8px;
}

/* ─── Accessibility ──────────────────────────────────────────────────────── */

/* Skip navigation link — visible only on keyboard focus (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  top: -100%; left: 0;
  padding: 12px 24px;
  background: var(--amber);
  color: #0c0d18;
  font-weight: 700;
  font-size: 14px;
  z-index: 10000;
  text-decoration: none;
  border-radius: 0 0 10px 0;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

/* Global keyboard focus ring — WCAG 2.4.7 (focus visible) */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Remove outline for pointer/mouse users — purely cosmetic suppression */
:focus:not(:focus-visible) { outline: none; }

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all .18s; border: 1.5px solid transparent;
  white-space: nowrap; font-family: var(--font);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--amber); color: #0c0d18; border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-h); border-color: var(--amber-h);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,.25);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.14), transparent);
  transform: translateX(-100%); transition: transform .5s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-outline {
  background: transparent; color: var(--text);
  border-color: rgba(255,255,255,.15);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-ghost {
  background: transparent; color: var(--text-muted); border: none;
}
.btn-ghost:hover { color: var(--text); }
.btn-sm  { padding: 7px 16px; font-size: 13px; }
.btn-lg  { padding: 15px 36px; font-size: 15px; border-radius: 12px; }

/* ─── Nav ────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,13,24,.93); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  height: 62px; display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a:not(.btn) {
  color: var(--text-dim); font-size: 13px; font-weight: 500; transition: color .15s;
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active { color: var(--text); }

/* ── Research dropdown ───────────────────────────────────────────────────── */
/* Pure CSS hover dropdown — no JS required.                                 */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none; border: none; cursor: pointer;
  color: var(--text-dim); font-size: 13px; font-weight: 500;
  font-family: var(--font); padding: 0; line-height: 1;
  display: flex; align-items: center; gap: 5px; transition: color .15s;
}
.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown.open .nav-dropdown-trigger { color: var(--text); }
/* Arrow rotates on hover */
.nav-dropdown-trigger .dd-arrow {
  display: inline-block; font-size: 9px; opacity: .6;
  transition: transform .2s;
}
.nav-dropdown:hover .nav-dropdown-trigger .dd-arrow,
.nav-dropdown.open .nav-dropdown-trigger .dd-arrow { transform: rotate(180deg); }
/* Dropdown panel */
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--surface); border: 1px solid var(--border-l);
  border-radius: 12px; padding: 8px; min-width: 190px;
  box-shadow: 0 20px 52px rgba(0,0,0,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .18s, transform .18s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Tiny arrow notch pointing up */
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: var(--surface); border-left: 1px solid var(--border-l);
  border-top: 1px solid var(--border-l);
}
.nav-dropdown-menu a {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  text-decoration: none; transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover { background: var(--surface2); }
.nav-dropdown-menu a.active .dd-item-label { color: var(--amber); }
.dd-item-icon { display: none; }
.dd-item-label {
  font-size: 13px; font-weight: 600; color: var(--text);
  display: block; margin-bottom: 2px;
}
.dd-item-sub { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 28px 88px;
  background: var(--bg);
}

/* Aurora orb background — no canvas, pure CSS */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(245,158,11,.18) 0%, rgba(245,158,11,.06) 40%, transparent 70%);
  filter: blur(80px);
  top: -220px; right: -180px;
  animation: orbDrift1 22s ease-in-out infinite;
}
.hero-orb-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle at center, rgba(168,85,247,.14) 0%, rgba(168,85,247,.04) 45%, transparent 70%);
  filter: blur(90px);
  bottom: -120px; left: -140px;
  animation: orbDrift2 28s ease-in-out infinite;
}
.hero-orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle at center, rgba(245,158,11,.1) 0%, transparent 70%);
  filter: blur(60px);
  top: 40%; left: 38%;
  transform: translate(-50%, -50%);
  animation: orbDrift3 18s ease-in-out infinite;
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35%       { transform: translate(-70px, 50px) scale(1.12); }
  70%       { transform: translate(40px, -40px) scale(0.92); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(60px, -70px) scale(1.18); }
  80%       { transform: translate(-30px, 30px) scale(0.88); }
}
@keyframes orbDrift3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: .6; }
  50%       { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

/* Subtle grid overlay */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(245,158,11,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}
.hero-layout {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 5px 18px 5px 6px;
  border: 1px solid var(--border-l); border-radius: 100px;
  background: rgba(18,20,31,.9); backdrop-filter: blur(10px);
  font-size: 12px; color: var(--text-dim); margin-bottom: 28px;
}
.hero-pill {
  background: var(--amber); color: #0c0d18;
  font-size: 10px; font-weight: 700;
  padding: 2px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .06em;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: 8px;
  color: #f5f1ea;
}
.hero h1 em { font-style: italic; color: var(--amber); }
.hero-line2 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700; font-style: italic;
  color: var(--text-dim); margin-top: 4px;
  letter-spacing: -.015em;
}
.hero-sub {
  font-size: 17px; color: var(--text-dim); line-height: 1.75;
  max-width: 720px; margin: 28px 0 40px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-proof  { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; }
.hero-proof-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-proof-stat strong {
  font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -.02em;
}
.hero-proof-stat span {
  font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em;
}
.hero-proof-div { width: 1px; height: 36px; background: var(--border); }

/* ─── Tracker Panel ──────────────────────────────────────────────────────── */
.tracker-panel {
  background: var(--surface); border: 1px solid var(--border-l);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(245,158,11,.05);
}
.tracker-panel-header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: var(--surface2);
  border-bottom: 1px solid var(--border);
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .07em; user-select: none;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--danger); box-shadow: 0 0 6px var(--danger);
  animation: livePulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(.8); }
}
.tracker-feed-wrap {
  height: 340px; overflow: hidden; position: relative;
}
.tracker-feed-wrap::before,
.tracker-feed-wrap::after {
  content: ''; position: absolute; left: 0; right: 0; height: 48px; z-index: 2; pointer-events: none;
}
.tracker-feed-wrap::before {
  top: 0; background: linear-gradient(to bottom, var(--surface), transparent);
}
.tracker-feed-wrap::after {
  bottom: 0; background: linear-gradient(to top, var(--surface), transparent);
}
.tracker-feed {
  display: flex; flex-direction: column;
  animation: feedScroll 32s linear infinite;
}
@keyframes feedScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.tracker-row {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-bottom: 1px solid rgba(255,255,255,.028);
  min-height: 44px;
}
.tracker-app-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 5px; font-size: 9px; font-weight: 700;
  font-family: var(--font-mono); color: var(--text-muted);
  letter-spacing: -.02em; text-transform: uppercase;
}
.tracker-app {
  font-size: 11px; color: var(--text-muted); font-weight: 500;
  width: 56px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tracker-arrow { font-size: 9px; color: var(--border-l); flex-shrink: 0; }
.tracker-domain {
  font-size: 11px; color: var(--text-dim); font-family: var(--font-mono);
  flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.tracker-badge {
  flex-shrink: 0; font-size: 9px; font-weight: 700;
  letter-spacing: .05em; padding: 2px 6px; border-radius: 4px; text-transform: uppercase;
}
.tracker-badge--blocked  { background: rgba(239,68,68,.15);  color: var(--danger);  }
.tracker-badge--tracker  { background: rgba(245,158,11,.15); color: var(--amber);   }
.tracker-badge--broker   { background: rgba(168,85,247,.15); color: var(--broker);  }
.tracker-badge--telemetry{ background: rgba(79,125,255,.15); color: var(--accent);  }
.tracker-badge--safe     { background: rgba(16,185,129,.15); color: var(--safe);    }

/* ─── Section base ───────────────────────────────────────────────────────── */
.section-dark  { background: var(--bg);    color: var(--text);       padding: 100px 28px; }
.section-light { background: var(--cream); color: var(--cream-text); padding: 100px 28px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 16px;
  opacity: .8;
}
.section-dark  .section-eyebrow { color: var(--amber); }
.section-light .section-eyebrow { color: #92400e; }
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 16px;
}
.section-sub { font-size: 17px; line-height: 1.7; max-width: 860px; }
.section-dark  .section-sub { color: var(--text-dim); }
.section-light .section-sub { color: var(--cream-dim); }

/* ── How it works on cream background ── */
.section-light .step-num        { color: rgba(0,0,0,.12); }
.section-light .step-content h3 { color: var(--cream-text); }
.section-light .step-content p  { color: var(--cream-dim); }

/* ─── Expose section ─────────────────────────────────────────────────────── */
.expose-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 52px; margin-top: 72px;
}
.expose-item {
  padding-top: 22px;
  border-top: 2px solid var(--cream-border);
}
.expose-item:first-child { border-top-color: #92400e; }
.expose-item:nth-child(2) { border-top-color: #78350f; }
.expose-item:nth-child(3) { border-top-color: var(--cream-border); }
.expose-item h3 { font-size: 20px; font-weight: 800; color: var(--cream-text); margin-bottom: 12px; letter-spacing: -.01em; }
.expose-item p  { font-size: 15px; color: var(--cream-dim); line-height: 1.8; }
.expose-stat-row {
  display: flex; gap: 52px; flex-wrap: wrap;
  justify-content: center; text-align: center;
  margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--cream-border);
}
.expose-stat strong {
  display: block; font-size: 38px; font-weight: 800;
  color: var(--cream-text); letter-spacing: -.03em; margin-bottom: 4px;
}
.expose-stat span { font-size: 13px; color: var(--cream-dim); }

/* ─── Steps ──────────────────────────────────────────────────────────────── */
.steps-layout { display: flex; flex-direction: column; max-width: 760px; margin: 64px auto 0; }
.step-block {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 0 40px; padding: 44px 0; border-bottom: 1px solid var(--border);
}
.step-block:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  font-family: var(--font-serif); font-size: 54px; font-weight: 700;
  color: var(--border-l); line-height: 1; user-select: none; padding-top: 4px;
}
.step-content h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-content p  { font-size: 15px; color: var(--text-dim); line-height: 1.75; }

/* ─── Promises ───────────────────────────────────────────────────────────── */
.promise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-top: 64px;
}
.promise-block { background: var(--surface); padding: 44px 36px; }
.promise-block h3 {
  font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -.02em;
}
.promise-block p { font-size: 14px; color: var(--text-dim); line-height: 1.75; }

/* ─── Story ──────────────────────────────────────────────────────────────── */
.story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.story-left {
  position: sticky;
  top: 100px; /* stays in view as user reads the right column */
}
.story-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--cream-text);
  margin: 12px 0 24px;
}
.story-rule {
  width: 40px;
  height: 3px;
  background: #92400e;
  border-radius: 2px;
  margin-bottom: 32px;
}
.story-closer {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--cream-text);
  border-left: 3px solid #92400e;
  padding-left: 16px;
}
.story-right p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 16px;
}
.story-right p strong {
  color: var(--cream-text);
  font-weight: 600;
}

/* ─── Download ───────────────────────────────────────────────────────────── */
.download { background: var(--surface); border-top: 1px solid var(--border); }
.download-inner { text-align: center; padding: 100px 28px 80px; max-width: 660px; margin: 0 auto; }
.dl-box {
  margin: 32px auto 24px; background: var(--bg);
  border: 1px solid var(--border-l); border-radius: var(--radius); overflow: hidden; text-align: left;
}
.dl-platform-bar { display: flex; border-bottom: 1px solid var(--border); background: var(--surface2); }
.dl-platform-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border: none; background: transparent; color: var(--text-muted);
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s;
  border-bottom: 2px solid transparent; font-family: var(--font);
}
.dl-platform-btn:hover { color: var(--text); }
.dl-platform-btn.active { color: var(--amber); border-bottom-color: var(--amber); background: var(--amber-dim); }
.dl-platform-icon { font-size: 16px; }
.dl-panel { display: none; }
.dl-panel.active { display: block; }
.dl-panel-content { padding: 28px; }
.dl-btn { width: 100%; justify-content: center; padding: 14px !important; font-size: 15px !important; }
.dl-note { font-size: 12px; color: var(--text-dim); margin-top: 12px; text-align: center; }
.dl-mac-note {
  font-size: 11px; color: var(--text-dim); margin-top: 8px; text-align: center;
  padding: 8px 10px; background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2); border-radius: 6px;
}
/* ── Mac chip selector (Apple Silicon / Intel) ───────────────────────────── */
.dl-chip-bar { display: flex; gap: 8px; justify-content: center; margin-bottom: 18px; }
.dl-chip {
  background: rgba(255,255,255,.05);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 13px; font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 130ms;
}
.dl-chip:hover { border-color: var(--border-l); color: var(--text); }
.dl-chip.active {
  background: var(--amber-dim);
  border-color: var(--amber);
  color: var(--amber);
}

.dl-formats { display: flex; gap: 10px; margin-bottom: 20px; }
.dl-format {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; transition: all .15s; text-align: center;
}
.dl-format:hover  { border-color: var(--border-l); }
.dl-format.active { border-color: var(--amber); background: var(--amber-dim); }
.dl-fmt-name  { font-weight: 600; font-size: 13px; color: var(--text); }
.dl-fmt-size  { font-size: 11px; color: var(--text-muted); }
.dl-fmt-label { font-size: 9px; color: var(--amber); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 56px 28px 40px; background: var(--surface); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: flex-start; gap: 56px; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; min-width: 180px; flex: 1; }
.footer-brand-tagline { font-size: 13px; color: var(--text-dim); line-height: 1.5; white-space: nowrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.footer-col a { font-size: 14px; color: var(--text-dim); transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-col a.active { color: var(--amber); }
.footer-bottom {
  width: 100%; border-top: 1px solid var(--border); padding-top: 24px; margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* ─── Modal ──────────────────────────────────────────────────────────────── */
.dl-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.72); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
}
.dl-modal-overlay.hidden { display: none; }
.dl-modal-box {
  width: 440px; max-width: 94vw;
  background: var(--surface); border: 1px solid var(--border-l);
  border-radius: 18px; padding: 40px 40px 32px;
  box-shadow: 0 48px 96px rgba(0,0,0,.6);
}
.dl-modal-header { text-align: center; margin-bottom: 28px; }
.dl-modal-icon   { font-size: 36px; margin-bottom: 12px; }
.dl-modal-title  { font-size: 20px; font-weight: 700; color: var(--text); }
.dl-modal-sub    { font-size: 13px; color: var(--text-dim); line-height: 1.5; margin-top: 6px; }
.dl-modal-optional {
  font-size: 13px; color: var(--text-dim); text-align: center;
  margin-bottom: 18px; padding: 8px 12px; background: var(--surface2); border-radius: 8px;
}
.dl-modal-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.dl-modal-row  { display: flex; gap: 10px; }
.dl-modal-input {
  width: 100%; padding: 12px 16px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font-size: 14px;
  outline: none; font-family: var(--font);
  transition: border-color .2s, box-shadow .2s;
}
.dl-modal-input:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245,158,11,.12); }
.dl-modal-input::placeholder { color: var(--text-muted); }
.dl-modal-form .dl-modal-actions { display: flex; flex-direction: column; gap: 8px; }
.dl-modal-form .dl-modal-actions .btn-primary { width: 100%; justify-content: center; padding: 13px !important; font-size: 15px !important; }
.dl-modal-form .dl-modal-actions .btn-ghost   { width: 100%; justify-content: center; padding: 9px !important; font-size: 13px !important; }

/* ─── Legal + About pages ────────────────────────────────────────────────── */
.page-wrap { max-width: 720px; margin: 0 auto; padding: 60px 28px 100px; }
.page-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 48px; transition: color .15s;
}
.page-back:hover { color: var(--text); }
.page-hero { margin-bottom: 48px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px); font-weight: 700;
  letter-spacing: -.02em; color: var(--text); line-height: 1.1; margin-bottom: 12px;
}
.page-date { font-size: 13px; color: var(--text-muted); }

.legal-summary {
  border-left: 3px solid var(--amber);
  padding: 22px 28px; margin: 0 0 56px;
  background: var(--amber-dim); border-radius: 0 12px 12px 0;
}
.legal-summary-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--amber); margin-bottom: 8px;
}
.legal-summary p { font-size: 15px; color: var(--text); line-height: 1.7; }

.page-section { margin-bottom: 48px; }
.page-section h2 {
  font-size: 18px; font-weight: 700; color: var(--text);
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.page-section p  { font-size: 15px; color: var(--text-dim); line-height: 1.75; margin-bottom: 14px; }
.page-section ul { margin: 0 0 14px 22px; }
.page-section li { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 6px; }
.page-section a  { color: var(--amber); }
.page-section a:hover { text-decoration: underline; }

/* ─── About page ─────────────────────────────────────────────────────────── */
.about-pullquote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px); font-style: italic;
  color: var(--text-dim); line-height: 1.55;
  padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
}
.about-pullquote em { color: var(--amber); font-style: normal; }
.value-row   { display: flex; flex-direction: column; margin-bottom: 48px; }
.value-item  { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.value-item:first-child { border-top: 1px solid var(--border); }
.value-item-icon { font-size: 24px; flex-shrink: 0; width: 40px; text-align: center; padding-top: 2px; }
.value-item-content h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.value-item-content p  { font-size: 14px; color: var(--text-dim); line-height: 1.7; }

/* ─── AI Shield Teaser ───────────────────────────────────────────────────── */
.ai-shield-section { border-top: 1px solid var(--border); }

.ai-shield-inner { text-align: center; }

.ai-shield-badge {
  display: inline-block;
  background: rgba(79,125,255,.15);
  color: var(--accent);
  border: 1px solid rgba(79,125,255,.35);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.ai-shield-heading { margin: 0 auto 20px; }
.ai-shield-accent  { color: var(--accent); }
.ai-shield-sub     { max-width: 760px; margin: 0 auto 52px; }

.ai-shield-pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto 56px;
  padding: 0;
  max-width: 1000px;
}
.ai-shield-pillar {
  background: var(--surface);
  border: 1px solid var(--border-l);
  border-radius: 14px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  transition: border-color .2s, box-shadow .2s;
}
.ai-shield-pillar:hover {
  border-color: rgba(79,125,255,.45);
  box-shadow: 0 0 0 1px rgba(79,125,255,.15), 0 8px 32px rgba(0,0,0,.25);
}
.ai-shield-pillar-icon { display: none; }
.ai-shield-pillar strong { font-size: 14px; font-weight: 700; color: var(--text); }
.ai-shield-pillar span  { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

.ai-shield-waitlist { max-width: 420px; margin: 0 auto; }
.ai-shield-waitlist-label {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.ai-shield-form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.ai-shield-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border-l);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.ai-shield-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,125,255,.15);
}
.ai-shield-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.ai-shield-btn:hover { opacity: .88; }
.ai-shield-waitlist-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 10px;
  min-height: 18px;
}
.ai-shield-waitlist-note.success { color: var(--safe); }
.ai-shield-waitlist-note.error   { color: var(--danger); }

@media (max-width: 900px) {
  .ai-shield-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ai-shield-pillars { grid-template-columns: 1fr; }
  .ai-shield-form    { flex-direction: column; }
  .ai-shield-btn     { width: 100%; }
}

/* ─── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero { animation: fadeUp .8s ease-out; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .tracker-panel { max-width: 500px; margin: 0 auto; }
  .expose-grid  { grid-template-columns: 1fr; gap: 40px; }
  .promise-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 72px 20px 56px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .tracker-panel { display: none; }
  .nav-links a:not(.btn) { display: none; }
  .section-dark, .section-light { padding: 72px 20px; }
  .step-block { grid-template-columns: 52px 1fr; gap: 0 20px; }
  .step-num { font-size: 38px; }
  .expose-stat-row { gap: 28px; }
  .footer-inner { gap: 32px; }
  .page-wrap { padding: 40px 20px 72px; }
  .promise-block { padding: 32px 24px; }
}

/* ─── Track B — redesign additions (2026-05-22) ───────────────────────────── */

/* ── Contrast fix: light-section law tables ───────────────────────────────── */
/* Both pages use cream backgrounds where dark text is invisible. These rules  */
/* override the default dark-theme table styles for light-section variants.    */
.aip-section-light .aip-law-table .law-name { color: var(--cream-text); }
.aip-section-light .aip-law-table th {
  background: var(--cream-surface); color: var(--cream-dim);
  border-bottom-color: var(--cream-border);
}
.aip-section-light .aip-law-table td {
  border-bottom-color: var(--cream-border); color: var(--cream-dim);
}
.aip-section-light .aip-law-table tr:hover td { background: rgba(146,64,14,.05); }

.eth-section-light .eth-table .law-name { color: var(--cream-text); }
.eth-section-light .eth-table th {
  background: var(--cream-surface); color: var(--cream-dim);
  border-bottom-color: var(--cream-border);
}
.eth-section-light .eth-table td {
  border-bottom-color: var(--cream-border); color: var(--cream-dim);
}
.eth-section-light .eth-table tr:hover td { background: rgba(146,64,14,.05); }

/* ── General body text on light section backgrounds ──────────────────────── */
/* Overrides dark-theme text colors (--text / --text-dim) that are invisible  */
/* on the cream background used by aip-section-light and eth-section-light.   */
.aip-section-light h2,
.aip-section-light h3 { color: var(--cream-text); }
.aip-section-light p,
.aip-section-light li,
.aip-section-light .cmp-tool,
.aip-section-light .cmp-note,
.aip-section-light .cmp-date { color: var(--cream-dim); }

.eth-section-light h2,
.eth-section-light h3 { color: var(--cream-text); }
.eth-section-light p,
.eth-section-light li { color: var(--cream-dim); }

/* ── Data-flow step cards inside cream sections ───────────────────────────── */
/* The dark card backgrounds and near-white text look wrong on cream.          */
/* Flip them to the cream surface palette so they integrate cleanly.           */
.aip-section-light .aip-flow-step {
  background: var(--cream-surface);
  border-color: var(--cream-border);
}
.aip-section-light .aip-flow-step h4 { color: var(--cream-text); }
.aip-section-light .aip-flow-step p  { color: var(--cream-dim);  }
/* Arrow between cards — use darker amber so it reads on cream */
.aip-section-light .aip-flow-step:not(:last-child)::after { color: #b45309; }

/* ── WAPI report badge (pill at top of hero) ──────────────────────────────── */
.wapi-report-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(79,125,255,.1); border: 1px solid rgba(79,125,255,.3);
  border-radius: 100px; padding: 6px 16px 6px 8px;
  font-size: 12px; color: var(--accent); font-weight: 600; margin-bottom: 24px;
}
.wapi-report-badge-chip {
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 100px;
  letter-spacing: .05em; text-transform: uppercase;
}

/* ── Editorial pull quote ─────────────────────────────────────────────────── */
.pull-quote-band {
  background: var(--surface2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 52px 28px;
}
.pull-quote-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.pull-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.5vw, 27px); font-style: italic;
  color: var(--text); line-height: 1.5; margin-bottom: 14px;
}
.pull-quote-text em { color: var(--amber); font-style: normal; }
.pull-quote-attr {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-muted);
}

/* ── WAPI leaderboard strip (ai-privacy.html) ────────────────────────────── */
/* Full-width grade grid — immediately after hero, first thing visitors see.  */
.wapi-leader-band {
  background: var(--surface2); border-bottom: 1px solid var(--border); padding: 80px 28px;
}
.wapi-leader-inner { max-width: var(--max-w); margin: 0 auto; }
.wapi-leader-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.wapi-leader-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  line-height: 1.15; letter-spacing: -.025em; color: var(--text); margin-bottom: 14px;
}
.wapi-leader-sub {
  font-size: 16px; color: var(--text-dim); margin-bottom: 48px;
  max-width: 900px; line-height: 1.75;
}
/* Grid of grade cards — auto-fill, minimum 170px each */
.wapi-leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}
.wapi-pill {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface);
  border-radius: 14px; padding: 18px 16px; text-decoration: none;
  transition: transform .18s;
}
.wapi-pill:hover {
  transform: translateY(-3px);
}
/* Grade letter — large, color-coded */
.wapi-pill-grade {
  font-family: var(--font-serif); font-size: 40px; font-weight: 800; line-height: 1;
  flex-shrink: 0; width: 50px; text-align: center;
  border-radius: 10px; padding: 6px 0;
}
.wapi-pill-grade.grade-a { color: #10b981; background: rgba(16,185,129,.12); }
.wapi-pill-grade.grade-b { color: #34d399; background: rgba(52,211,153,.12); }
.wapi-pill-grade.grade-c { color: var(--amber); background: rgba(245,158,11,.12); }
.wapi-pill-grade.grade-d { color: #f97316; background: rgba(249,115,22,.12); }
.wapi-pill-grade.grade-f { color: #ef4444; background: rgba(239,68,68,.12); }
.wapi-pill-name { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.2; }
.wapi-pill-maker { font-size: 11px; color: var(--text-muted); display: block; margin-top: 3px; }
.wapi-leader-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 700; color: var(--accent);
  text-decoration: none; transition: opacity .15s;
}
.wapi-leader-cta:hover { opacity: .75; }
@media (max-width: 640px) {
  .wapi-leader-grid { grid-template-columns: 1fr 1fr; }
  .wapi-pill-grade  { font-size: 30px; width: 40px; }
}

/* ── Enhanced grade letter on tool cards ──────────────────────────────────── */
/* Override the default 28px size with a larger, color-backed badge.          */
.aip-tool-grade {
  width: 52px !important; height: 52px !important;
  font-size: 34px !important; line-height: 1 !important;
  display: flex !important; align-items: center !important;
  justify-content: center !important; border-radius: 10px; flex-shrink: 0;
}
.aip-tool-grade.grade-a { background: rgba(16,185,129,.12); }
.aip-tool-grade.grade-b { background: rgba(52,211,153,.12); }
.aip-tool-grade.grade-c { background: rgba(245,158,11,.12); }
.aip-tool-grade.grade-d { background: rgba(249,115,22,.12); }
.aip-tool-grade.grade-f { background: rgba(239,68,68,.12); }

/* ── Tool card verdict sentence ───────────────────────────────────────────── */
/* One pithy editorial verdict per tool, shown before the tag pills.          */
.aip-tool-verdict {
  font-size: 12px; font-weight: 600; line-height: 1.45;
  margin: 10px 0 8px; padding: 9px 12px; border-radius: 8px;
}
.verdict-a { background: rgba(16,185,129,.08); color: #10b981; border-left: 3px solid #10b981; }
.verdict-b { background: rgba(52,211,153,.08);  color: #34d399; border-left: 3px solid #34d399; }
.verdict-c { background: rgba(245,158,11,.08); color: var(--amber); border-left: 3px solid var(--amber); }
.verdict-d { background: rgba(249,115,22,.08);  color: #f97316; border-left: 3px solid #f97316; }
.verdict-f { background: rgba(239,68,68,.08);  color: #ef4444; border-left: 3px solid #ef4444; }


/* ── Homepage WAPI Index Section ─────────────────────────────────────────── */
/* Full section between hero and The Problem — 8 grade tiles, big serif grade  */
/* letters, immediate visual impact. Replaces old compact teaser strip.        */
.wapi-index-section {
  border-top: 1px solid var(--border);
}
.wapi-index-section .section-heading em {
  font-style: italic; color: #ef4444;
}
/* 4-column grid on desktop, 2-column on mobile */
.wapi-grade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 52px 0 44px;
}
.wapi-grade-tile {
  border-radius: 18px;
  padding: 32px 20px 24px;
  text-align: center;
  transition: transform .2s ease;
}
.wapi-grade-tile:hover {
  transform: translateY(-6px);
}
.wapi-tile-f { background: rgba(239,68,68,.08); }
.wapi-tile-d { background: rgba(249,115,22,.08); }
.wapi-tile-c { background: rgba(245,158,11,.08); }
.wapi-tile-b { background: rgba(52,211,153,.08); }
.wapi-tile-a { background: rgba(16,185,129,.10); }
/* Grade letter — dominant visual element */
.wapi-tile-grade {
  font-family: var(--font-serif);
  font-size: 72px; font-weight: 800; line-height: 1; margin-bottom: 14px;
  letter-spacing: -.03em;
}
.wapi-tile-f .wapi-tile-grade { color: #ef4444; }
.wapi-tile-d .wapi-tile-grade { color: #f97316; }
.wapi-tile-c .wapi-tile-grade { color: var(--amber); }
.wapi-tile-b .wapi-tile-grade { color: #34d399; }
.wapi-tile-a .wapi-tile-grade { color: #10b981; }
.wapi-tile-name  { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.wapi-tile-maker { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; }
.wapi-tile-verdict {
  font-size: 12px; color: var(--text-dim); line-height: 1.5; font-style: italic;
}
.wapi-index-footer { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.wapi-index-note  { font-size: 13px; color: var(--text-muted); }
@media (max-width: 860px)  { .wapi-grade-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .wapi-tile-grade { font-size: 52px; } }

/* ── Ethics page accountability section (light bg) text fix ──────────────── */
/* §5 accountability actions are in eth-section-light but cards use dark vars. */
.eth-section-light .eth-action { background: var(--cream-surface); border-color: var(--cream-border); }
.eth-section-light .eth-action h4 { color: var(--cream-text); }
.eth-section-light .eth-action p  { color: var(--cream-dim); }

/* ── AI-Privacy page: two-column hero layout ─────────────────────────────── */
/* Makes the hero span the full max-width with text left, grade tiles right.   */
.aip-hero-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
/* Right column — stacked grade tiles showing the headline story */
.aip-hero-grades { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.aip-hero-tile {
  display: flex; align-items: center; gap: 16px;
  border-radius: 14px; padding: 16px 18px;
  text-decoration: none;
  transition: transform .18s;
}
.aip-hero-tile:hover { transform: translateX(4px); }
.aip-ht-f  { background: rgba(239,68,68,.08); }
.aip-ht-d  { background: rgba(249,115,22,.08); }
.aip-ht-a  { background: rgba(16,185,129,.1); }
.aip-ht-grade {
  font-family: var(--font-serif); font-size: 52px; font-weight: 800; line-height: 1;
  min-width: 56px; text-align: center; border-radius: 10px; padding: 4px 0; flex-shrink: 0;
}
.aip-ht-f  .aip-ht-grade { color: #ef4444; }
.aip-ht-d  .aip-ht-grade { color: #f97316; }
.aip-ht-a  .aip-ht-grade { color: #10b981; }
.aip-ht-body {}
.aip-ht-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.aip-ht-note { font-size: 11px; color: var(--text-dim); line-height: 1.5; }
/* Hero divider between grade tiles */
.aip-ht-divider {
  height: 1px; background: var(--border); margin: 4px 0;
}
/* All-tools preview link */
.aip-ht-more {
  font-size: 13px; font-weight: 700; color: var(--accent);
  text-decoration: none; padding: 10px 0; display: block;
  transition: opacity .15s;
}
.aip-ht-more:hover { opacity: .75; }
/* Collapse right column on small screens */
@media (max-width: 860px) {
  .aip-hero-layout { grid-template-columns: 1fr; }
  .aip-hero-grades { display: none; }
}

/* ── Conversion strip — bottom of research pages ─────────────────────────── */
/* Bridges research content to the product download. Sits above the footer.   */
.convert-strip {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 80px 28px;
}
.convert-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 56px; align-items: center;
}
.convert-strip-left {}
.convert-strip-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--amber); margin-bottom: 14px;
}
.convert-strip-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.15;
  color: var(--text); margin-bottom: 14px;
}
.convert-strip-sub {
  font-size: 16px; color: var(--text-dim); line-height: 1.75; max-width: 720px;
}
.convert-strip-right {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0;
}
.convert-strip-note {
  font-size: 12px; color: var(--text-muted); text-align: right;
}
@media (max-width: 760px) {
  .convert-strip-inner { grid-template-columns: 1fr; gap: 28px; }
  .convert-strip-right { align-items: flex-start; }
  .convert-strip-note  { text-align: left; }
}

/* ── Hero download CTA (research pages) ──────────────────────────────────── */
/* Small inline prompt at the bottom of the hero's left column.               */
/* ── Research paper download callout (ai-privacy hero) ───────────────────── */
.hero-paper-cta {
  margin-top: 20px; margin-bottom: 8px;
  padding: 14px 18px;
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 12px; display: flex; align-items: flex-start; gap: 12px;
}
.hero-paper-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.hero-paper-body { display: flex; flex-direction: column; gap: 4px; }
.hero-paper-body strong { font-size: 13px; color: var(--text); }
.hero-paper-sub { font-size: 11px; color: var(--text-dim); line-height: 1.5; }
.hero-paper-links { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.hero-paper-btn {
  font-size: 11px; font-weight: 600; padding: 5px 12px;
  background: rgba(99,102,241,.7); color: #fff;
  border-radius: 6px; text-decoration: none; white-space: nowrap;
}
.hero-paper-btn:hover { background: rgba(99,102,241,1); }
.hero-paper-btn-ghost {
  background: transparent;
  border: 1px solid rgba(99,102,241,.4);
  color: rgba(165,180,252,.9);
}
.hero-paper-btn-ghost:hover { border-color: rgba(99,102,241,.8); color: #fff; background: rgba(99,102,241,.15); }

.hero-dl-cta {
  margin-top: 28px; padding: 16px 20px;
  background: rgba(245,158,11,.06);
  border-radius: 12px; display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.hero-dl-cta-text {
  font-size: 13px; color: var(--text-dim); flex: 1; line-height: 1.5;
}
.hero-dl-cta-text strong { color: var(--text); }

/* ── Press page ──────────────────────────────────────────────────────────── */
.press-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 40px 0 48px;
}
.press-stat {
  background: var(--surface);
  border-radius: 12px; padding: 24px 20px; text-align: center;
}
.press-stat-num {
  font-family: var(--font-serif); font-size: 38px; font-weight: 800;
  color: var(--text); letter-spacing: -.03em; margin-bottom: 4px;
}
.press-stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; }
.press-asset-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0;
}
.press-asset {
  background: var(--surface);
  border-radius: 10px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
}
.press-asset-icon { font-size: 24px; flex-shrink: 0; }
.press-asset-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.press-asset-meta { font-size: 12px; color: var(--text-muted); }
@media (max-width: 560px) {
  .press-stat-row  { grid-template-columns: 1fr; }
  .press-asset-grid { grid-template-columns: 1fr; }
}

/* ─── Product app mockup (HTML/CSS fake screenshot) ──────────────────────── */
.app-mock {
  background: #12141f;
  border: 1px solid #252738;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
  width: 100%;
}
.app-mock-bar {
  background: #1a1c2a; border-bottom: 1px solid #252738;
  padding: 11px 16px;
  display: flex; align-items: center; gap: 10px;
}
.app-mock-dots { display: flex; gap: 6px; flex-shrink: 0; }
.app-mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: #2e3145; }
.app-mock-dots span:nth-child(1) { background: #ef4444; }
.app-mock-dots span:nth-child(2) { background: #f59e0b; }
.app-mock-dots span:nth-child(3) { background: #10b981; }
.app-mock-title { flex: 1; text-align: center; font-size: 11px; font-weight: 500; color: #4a4f6a; }
.app-mock-live { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: #10b981; }
.app-mock-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; animation: pulse 1.6s ease-in-out infinite; }
.app-mock-body { display: grid; grid-template-columns: 130px 1fr; min-height: 300px; }
.app-mock-sidebar { background: #0c0d18; border-right: 1px solid #252738; padding: 12px 0; }
.app-mock-nav-item {
  padding: 8px 14px; font-size: 11px; font-weight: 500; color: #4a4f6a; cursor: default;
}
.app-mock-nav-item.active {
  color: #f59e0b; background: rgba(245,158,11,.08);
  border-right: 2px solid #f59e0b;
}
.app-mock-sidebar-stats {
  margin-top: 14px; padding: 12px 14px;
  border-top: 1px solid #252738;
}
.app-mock-stat-row { display: flex; justify-content: space-between; font-size: 10px; margin-bottom: 6px; }
.app-mock-stat-row:last-child { margin-bottom: 0; }
.app-mock-stat-label { color: #4a4f6a; }
.app-mock-stat-val { font-weight: 700; }
.app-mock-stat-val.red    { color: #ef4444; }
.app-mock-stat-val.amber  { color: #f59e0b; }
.app-mock-stat-val.green  { color: #10b981; }
.app-mock-main { background: #12141f; overflow: hidden; }
.app-mock-main-header {
  padding: 9px 14px; border-bottom: 1px solid #252738;
  font-size: 9px; font-weight: 700; color: #4a4f6a;
  text-transform: uppercase; letter-spacing: .08em;
}
.app-mock-conn {
  padding: 9px 14px;
  display: grid; grid-template-columns: 22px 72px 1fr auto;
  align-items: center; gap: 8px;
  border-bottom: 1px solid #1a1c2a;
  font-size: 11px;
}
.app-mock-conn:last-child { border-bottom: none; }
.app-mock-conn-icon {
  width: 20px; height: 20px; background: #1a1c2a; border: 1px solid #252738;
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 700; color: #4a4f6a;
  letter-spacing: -.02em; text-transform: uppercase;
}
.app-mock-conn-app    { color: #b0a898; font-weight: 500; }
.app-mock-conn-domain { color: #4a4f6a; font-size: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.app-mock-conn-badge  {
  font-size: 8px; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; padding: 2px 6px; border-radius: 3px; white-space: nowrap;
}
.app-mock-conn-badge.blocked { background: rgba(239,68,68,.15); color: #ef4444; }
.app-mock-conn-badge.tracker { background: rgba(245,158,11,.15); color: #f59e0b; }
.app-mock-conn-badge.broker  { background: rgba(168,85,247,.15); color: #a855f7; }
.app-mock-conn-badge.telem   { background: rgba(79,125,255,.15);  color: #4f7dff; }
.app-mock-conn-badge.safe    { background: rgba(16,185,129,.15);  color: #10b981; }

/* ─── How-it-works: two-column with sticky mock ──────────────────────────── */
.how-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  max-width: var(--max-w); margin: 64px auto 0;
}
.how-steps { display: flex; flex-direction: column; }
.how-mock-wrap { position: sticky; top: 100px; }
@media (max-width: 900px) {
  .how-layout { grid-template-columns: 1fr; }
  .how-mock-wrap { position: static; }
}

/* ─── Product showcase section (cream background) ────────────────────────── */
.prod-section { background: var(--cream); padding: 100px 28px; }
.prod-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 72px; align-items: center;
}
.prod-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #92400e; margin-bottom: 20px;
}
.prod-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 38px); font-weight: 800;
  line-height: 1.15; color: #1c1917; letter-spacing: -.02em; margin-bottom: 20px;
}
.prod-body { font-size: 15px; color: #57534e; line-height: 1.8; margin-bottom: 36px; }
.prod-features { display: flex; flex-direction: column; margin-bottom: 36px; }
.prod-feature {
  display: flex; gap: 20px; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid #e5ddd0;
}
.prod-feature:last-child { border-bottom: none; }
.prod-feature-num {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: #e5ddd0; flex-shrink: 0; width: 28px; line-height: 1;
}
.prod-feature-content h4 { font-size: 14px; font-weight: 700; color: #1c1917; margin-bottom: 3px; }
.prod-feature-content p  { font-size: 13px; color: #57534e; line-height: 1.65; }
@media (max-width: 900px) { .prod-inner { grid-template-columns: 1fr; } }
@media (max-width: 640px)  { .prod-section { padding: 72px 20px; } }

/* ─── Amber callout band (research pages) ────────────────────────────────── */
/* ── By the numbers — stat strip (ai-privacy.html) ──────────────────────── */
.aip-stats-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 28px;
}
.aip-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.aip-stats-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 36px;
}
.aip-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.aip-stat-card {
  background: var(--bg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.aip-stat-card--warn  { border-top: 3px solid rgba(245,158,11,.6); }
.aip-stat-card--danger{ border-top: 3px solid rgba(239,68,68,.6); }
.aip-stat-card--good  { border-top: 3px solid rgba(16,185,129,.6); }
.aip-stat-num {
  font-family: var(--font-serif);
  font-size: 52px; font-weight: 800; line-height: 1;
  color: var(--text); letter-spacing: -.03em;
}
.aip-stat-pct {
  font-size: 28px; font-weight: 700;
  color: var(--amber); margin-left: 2px;
}
.aip-stat-card--danger .aip-stat-pct { color: #ef4444; }
.aip-stat-card--good   .aip-stat-pct { color: #10b981; }
.aip-stat-label {
  font-size: 13px; font-weight: 600; color: var(--text);
  line-height: 1.4;
}
.aip-stat-note {
  font-size: 11px; color: var(--text-muted); line-height: 1.55;
  margin-top: 4px;
}
.aip-stats-source {
  font-size: 11px; color: var(--text-muted); line-height: 1.6;
}
@media (max-width: 900px) {
  .aip-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .aip-stats-grid { grid-template-columns: 1fr; }
  .aip-stat-num { font-size: 44px; }
}

.amber-call-band {
  background: linear-gradient(135deg, rgba(245,158,11,.10) 0%, rgba(245,158,11,.05) 100%);
  border-top: 1px solid rgba(245,158,11,.18);
  border-bottom: 1px solid rgba(245,158,11,.18);
  padding: 36px 28px;
}
.amber-call-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.amber-call-left { flex: 1; min-width: 220px; }
.amber-call-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 5px;
}
.amber-call-text  { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.5; }
.amber-call-sub   { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ─── Research pages: open list for principles & data items ─────────────── */
/* Replaces boxed cards with clean horizontal rule layout */
.eth-principles-open {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border); margin-top: 36px;
}
.eth-principle-row {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 32px; padding: 22px 0;
  border-bottom: 1px solid var(--border); align-items: baseline;
}
.eth-principle-row:last-child { border-bottom: none; }
.eth-principle-row h4 { font-size: 14px; font-weight: 700; color: var(--amber); }
.eth-principle-row p  { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
@media (max-width: 600px) {
  .eth-principle-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ─── Promise section: open three-col, no surrounding box ─────────────────── */
.promise-open {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 64px;
}
.promise-open-item {
  padding: 0 44px 0 0; border-right: 1px solid var(--border);
}
.promise-open-item:last-child  { border-right: none; padding-right: 0; }
.promise-open-item:not(:first-child) { padding-left: 44px; }
.promise-open-item h3 {
  font-size: 20px; font-weight: 800; color: var(--text);
  margin-bottom: 12px; letter-spacing: -.02em;
}
.promise-open-item h3 em { color: var(--amber); font-style: normal; }
.promise-open-item p  { font-size: 14px; color: var(--text-dim); line-height: 1.75; }
@media (max-width: 760px) {
  .promise-open { grid-template-columns: 1fr; }
  .promise-open-item { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 0; }
  .promise-open-item:last-child { border-bottom: none; }
  .promise-open-item:not(:first-child) { padding-left: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* WEBSITE REBUILD v2 — Digital Sovereignty positioning                        */
/* Added 2026-05-22                                                            */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ── Nav dropdown hover bridge (fixes 14px gap where hover is lost) ──────── */
.nav-dropdown-trigger { position: relative; }
.nav-dropdown-trigger::after {
  content: ''; position: absolute;
  bottom: -14px; left: -12px; right: -12px; height: 14px;
}

/* ── Nav: "Coming soon" badge inside dropdown ────────────────────────────── */
.dd-soon {
  font-size: 9px; font-weight: 800; letter-spacing: .06em;
  color: var(--amber); margin-left: 5px; vertical-align: middle;
}

/* ── Manifesto strip — between hero and AI index ─────────────────────────── */
.manifesto-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 28px;
}
.manifesto-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 64px; align-items: start;
}
.manifesto-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 14px;
}
.manifesto-claim {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800; line-height: 1.2;
  color: var(--text); letter-spacing: -.02em;
}
.manifesto-claim em { font-style: italic; color: var(--amber); }
.manifesto-beliefs {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border);
}
.manifesto-belief {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 28px; padding: 18px 0;
  border-bottom: 1px solid var(--border); align-items: baseline;
}
.manifesto-belief:last-child { border-bottom: none; }
.manifesto-belief-label { font-size: 13px; font-weight: 700; color: var(--amber); }
.manifesto-belief-text { font-size: 13px; color: var(--text-dim); line-height: 1.7; }
@media (max-width: 860px) {
  .manifesto-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .manifesto-belief { grid-template-columns: 1fr; gap: 4px; }
}

/* ── Mid-page CTA band ───────────────────────────────────────────────────── */
.mid-cta-band {
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 28px;
  text-align: center;
}
.mid-cta-band p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.mid-cta-band strong { color: var(--text); }

/* ── Browser Privacy Scanner ─────────────────────────────────────────────── */
.scan-section {
  padding: 96px 28px;
  background: var(--cream);
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}
.scan-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.scan-step { width: 100%; }
.scan-step.hidden { display: none; }
.scan-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #92400e; margin-bottom: 18px;
}
.scan-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -.025em; color: var(--cream-text);
  margin-bottom: 18px;
}
.scan-heading em { font-style: italic; color: #b45309; }
.scan-sub {
  font-size: 16px; color: var(--cream-dim); line-height: 1.75;
  max-width: 720px; margin: 0 auto 36px;
}
.scan-start-btn {
  font-size: 16px; padding: 16px 36px; gap: 10px;
}
.scan-note {
  font-size: 12px; color: var(--cream-dim); margin-top: 16px; line-height: 1.6;
}
/* Scanning state */
.scan-anim-ring {
  width: 72px; height: 72px; margin: 0 auto 28px;
  border: 3px solid var(--border);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: scanSpin 1s linear infinite;
}
@keyframes scanSpin { to { transform: rotate(360deg); } }
.scan-status-text {
  font-size: 15px; font-weight: 600; color: var(--text-dim);
  margin-bottom: 24px; min-height: 24px;
  transition: opacity .3s;
}
.scan-progress-bar {
  width: 100%; max-width: 400px; margin: 0 auto 12px;
  height: 4px; background: var(--surface2); border-radius: 2px; overflow: hidden;
}
.scan-progress-fill {
  height: 100%; background: var(--amber); border-radius: 2px;
  width: 0%; transition: width .4s ease;
}
.scan-scanning-note { font-size: 12px; color: var(--text-muted); }
/* Results state */
.scan-result-header {
  display: flex; gap: 40px; align-items: center;
  margin-bottom: 36px; text-align: left;
}
.scan-score-wrap { flex-shrink: 0; text-align: center; }
.scan-score-circle {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--surface2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.scan-score-num {
  font-family: var(--font-serif); font-size: 44px; font-weight: 800;
  line-height: 1; letter-spacing: -.04em;
}
.scan-score-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-top: 2px;
}
.scan-score-caption { font-size: 11px; color: var(--cream-muted); }
.scan-result-intro h3 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 800;
  color: var(--cream-text); margin-bottom: 8px; letter-spacing: -.02em;
}
.scan-result-intro p { font-size: 14px; color: var(--cream-dim); line-height: 1.7; }
.scan-findings {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--cream-border); margin-bottom: 36px;
  text-align: left;
}
.scan-finding {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--cream-border); gap: 16px;
}
.scan-finding:last-child { border-bottom: none; }
.scan-finding-left { display: flex; flex-direction: column; gap: 2px; }
.scan-finding-name { font-size: 13px; font-weight: 600; color: var(--cream-text); }
.scan-finding-detail { font-size: 12px; color: var(--cream-muted); line-height: 1.5; }
.scan-finding-badge {
  font-size: 10px; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 6px;
  flex-shrink: 0; white-space: nowrap;
}
.finding-risk { background: rgba(239,68,68,.12); color: #ef4444; }
.finding-warn { background: rgba(245,158,11,.12); color: var(--amber); }
.finding-safe { background: rgba(16,185,129,.12); color: #10b981; }
.scan-cta { text-align: center; padding-top: 8px; }
.scan-cta-context {
  font-size: 14px; color: var(--cream-dim); max-width: 680px;
  margin: 0 auto 22px; line-height: 1.7;
}
.scan-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.scan-browser-note {
  font-size: 12px; color: var(--text-muted); margin-top: 14px; font-style: italic;
}
@media (max-width: 600px) {
  .scan-result-header { flex-direction: column; text-align: center; }
  .scan-result-intro { text-align: center; }
}

/* ── Privacy Philosophy section ──────────────────────────────────────────── */
.phil-section {
  padding: 96px 28px;
  background: var(--cream);
  border-top: 1px solid var(--cream-border);
}
.phil-section .section-eyebrow { color: #92400e; }
.phil-section .section-heading { color: var(--cream-text); }
.phil-section .section-sub { color: var(--cream-dim); }
.phil-inner { max-width: var(--max-w); margin: 0 auto; }
.phil-beliefs {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--cream-border); margin-top: 52px;
}
.phil-belief {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 48px; padding: 28px 0;
  border-bottom: 1px solid var(--cream-border); align-items: baseline;
}
.phil-belief:last-child { border-bottom: none; }
.phil-belief-label {
  font-family: var(--font-serif); font-size: 17px; font-weight: 800;
  color: var(--cream-text); letter-spacing: -.01em; line-height: 1.3;
}
.phil-belief-label em { color: #b45309; font-style: normal; }
.phil-belief-text { font-size: 14px; color: var(--cream-dim); line-height: 1.8; }
.phil-section .btn-outline {
  color: var(--cream-text);
  border-color: rgba(0,0,0,.18);
}
.phil-section .btn-outline:hover { border-color: #b45309; color: #b45309; }
@media (max-width: 760px) {
  .phil-belief { grid-template-columns: 1fr; gap: 8px; }
}

/* ── Competitive comparison ──────────────────────────────────────────────── */
.comp-section {
  padding: 96px 28px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.comp-inner { max-width: var(--max-w); margin: 0 auto; }
.comp-intro { max-width: 900px; margin-bottom: 48px; }
.comp-table-wrap { overflow-x: auto; }
.comp-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.comp-table th {
  padding: 12px 16px; text-align: left;
  background: var(--surface); color: var(--text-muted);
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
.comp-table th:first-child { border-radius: 0; }
.comp-table th.col-wzdom { color: var(--amber); background: rgba(245,158,11,.06); }
.comp-table td {
  padding: 13px 16px; border-bottom: 1px solid var(--border);
  color: var(--text-dim); vertical-align: middle;
}
.comp-table td:first-child { font-weight: 600; color: var(--text); }
.comp-table td.col-wzdom { background: rgba(245,158,11,.04); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-yes { color: #10b981; font-weight: 700; }
.comp-no  { color: var(--text-muted); }
.comp-partial { color: var(--amber); font-weight: 600; }
.comp-note {
  font-size: 12px; color: var(--text-muted); margin-top: 20px; line-height: 1.6;
}

/* ── Vision / OS / Product pages ─────────────────────────────────────────── */
.vision-hero {
  padding: 100px 28px 80px;
  border-bottom: 1px solid var(--border);
}
.vision-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.vision-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.03em; color: var(--text);
  margin-bottom: 28px; max-width: 820px;
}
.vision-hero h1 em { font-style: italic; color: var(--amber); }
.vision-hero-sub {
  font-size: 18px; color: var(--text-dim); line-height: 1.8;
  max-width: 860px; margin-bottom: 0;
}
.vision-section {
  padding: 88px 28px; border-bottom: 1px solid var(--border);
}
.vision-section-dark  { background: var(--bg); }
.vision-section-mid   { background: var(--surface); }
.vision-section-light { background: var(--cream); }
.vision-inner { max-width: var(--max-w); margin: 0 auto; }
.vision-prose {
  font-size: 16px; color: var(--text-dim); line-height: 1.85;
  max-width: 720px; margin-bottom: 28px;
}
.vision-prose strong { color: var(--text); }
.vision-section-light .vision-prose { color: var(--cream-dim); }
.vision-section-light h2 { color: var(--cream-text); }
.vision-section-light .section-eyebrow { color: #92400e; }
.vision-beliefs {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border); margin-top: 48px;
}
.vision-belief {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 40px; padding: 26px 0;
  border-bottom: 1px solid var(--border); align-items: baseline;
}
.vision-belief:last-child { border-bottom: none; }
.vision-belief-label { font-size: 14px; font-weight: 700; color: var(--amber); line-height: 1.4; }
.vision-belief-text  { font-size: 14px; color: var(--text-dim); line-height: 1.8; }
.vision-section-light .vision-belief { border-bottom-color: var(--cream-border); }
.vision-section-light .vision-belief-label { color: #92400e; }
.vision-section-light .vision-belief-text  { color: var(--cream-dim); }
.vision-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 52px;
  border-top: 1px solid var(--border);
}
.vision-two-col-item {
  padding: 36px 48px 36px 0; border-bottom: 1px solid var(--border);
}
.vision-two-col-item:nth-child(even) { padding-left: 48px; padding-right: 0; border-left: 1px solid var(--border); }
.vision-two-col-item:nth-last-child(-n+2) { border-bottom: none; }
.vision-two-col-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 10px;
}
.vision-two-col-item h3 {
  font-family: var(--font-serif); font-size: 20px; font-weight: 800;
  color: var(--text); margin-bottom: 10px; letter-spacing: -.02em;
}
.vision-two-col-item p { font-size: 14px; color: var(--text-dim); line-height: 1.75; }
@media (max-width: 760px) {
  .vision-belief { grid-template-columns: 1fr; gap: 8px; }
  .vision-two-col { grid-template-columns: 1fr; }
  .vision-two-col-item { padding: 28px 0; border-left: none !important; }
}

/* OS page terminal readout ─────────────────────────────────────────────── */
.os-terminal {
  background: #0a0b12; border-radius: 12px;
  padding: 36px 40px; max-width: 520px; margin: 52px auto 0;
  font-family: 'Courier New', monospace; font-size: 14px;
  line-height: 2; text-align: left;
}
.os-terminal-title {
  color: var(--text-muted); font-size: 12px;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.os-terminal-row { display: flex; gap: 12px; }
.os-terminal-key { color: var(--text-muted); min-width: 160px; }
.os-terminal-val { color: var(--amber); font-weight: 700; }
.os-terminal-val.green { color: #10b981; }
.os-terminal-val.red   { color: #ef4444; }
.os-terminal-val.bar   { color: #10b981; letter-spacing: -2px; }

/* OS waitlist ─────────────────────────────────────────────────────────── */
.os-waitlist-wrap {
  max-width: 480px; margin: 0 auto; text-align: center;
}
.os-waitlist-form {
  display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap;
  justify-content: center;
}
.os-waitlist-input {
  flex: 1; min-width: 220px; padding: 13px 16px;
  background: var(--surface2); border: 1px solid var(--border-l);
  border-radius: 10px; color: var(--text); font-family: var(--font); font-size: 14px;
  outline: none; transition: border-color .2s;
}
.os-waitlist-input:focus { border-color: var(--amber); }
.os-waitlist-input::placeholder { color: var(--text-muted); }
.os-waitlist-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }
.os-waitlist-msg { font-size: 14px; color: #10b981; margin-top: 12px; min-height: 20px; }

/* Product page comparison table ────────────────────────────────────────── */
.prod-page-hero {
  padding: 96px 28px 72px; border-bottom: 1px solid var(--border);
}
.prod-page-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center;
}
.prod-page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.025em; color: var(--text); margin-bottom: 20px;
}
.prod-page-hero-sub {
  font-size: 17px; color: var(--text-dim); line-height: 1.75; margin-bottom: 32px;
}
.prod-page-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 28px; margin-top: 4px;
}
.prod-page-stat { padding-right: 28px; margin-right: 28px; border-right: 1px solid var(--border); }
.prod-page-stat:last-child { border-right: none; }
.prod-page-stat strong { display: block; font-size: 20px; font-weight: 800; color: var(--amber); }
.prod-page-stat span { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
@media (max-width: 900px) {
  .prod-page-hero-inner { grid-template-columns: 1fr; }
}

/* Mobile email capture (replaces download panel on mobile) ─────────────── */
.mobile-capture-wrap {
  display: none;
  text-align: center; padding: 32px 0;
}
.mobile-capture-wrap p { font-size: 15px; color: var(--text-dim); margin-bottom: 20px; line-height: 1.6; }
.mobile-capture-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.mobile-capture-input {
  padding: 13px 16px; background: var(--surface2); border: 1px solid var(--border-l);
  border-radius: 10px; color: var(--text); font-family: var(--font); font-size: 14px;
  outline: none; min-width: 220px; transition: border-color .2s;
}
.mobile-capture-input:focus { border-color: var(--amber); }
.mobile-capture-input::placeholder { color: var(--text-muted); }
.mobile-capture-msg { font-size: 13px; color: #10b981; margin-top: 10px; }
@media (max-width: 768px) {
  .mobile-capture-wrap { display: block; }
  .dl-box { display: none; }
}

/* ─── Manifesto v2 — Editorial single-column layout ─────────────────────── */
.manifesto-v2-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-v2-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 20px;
}
.manifesto-v2-headline {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -.025em; color: var(--text);
  margin-bottom: 28px;
}
.manifesto-v2-headline em { font-style: italic; color: var(--amber); }
.manifesto-v2-body { margin-bottom: 32px; }
.manifesto-v2-body p {
  font-size: 16px; color: var(--text-dim); line-height: 1.85;
  max-width: 760px; margin: 0 auto 18px;
}
.manifesto-v2-body p:last-child { margin-bottom: 0; }
.manifesto-v2-body strong { color: var(--text); font-weight: 700; }
.manifesto-v2-body em { font-style: italic; color: var(--amber); }

/* ─── WAPI Teaser Band ───────────────────────────────────────────────────── */
.wapi-teaser-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 28px;
}
.wapi-teaser-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.wapi-teaser-left { display: flex; flex-direction: column; gap: 4px; }
.wapi-teaser-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--amber);
}
.wapi-teaser-claim { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin: 0; }
.wapi-teaser-claim strong { color: var(--text); }
.wapi-teaser-link { white-space: nowrap; flex-shrink: 0; font-size: 13px; }
@media (max-width: 680px) {
  .wapi-teaser-inner { flex-direction: column; align-items: flex-start; }
}

/* ─── Browser Privacy Scan — Terminal UI ─────────────────────────────────── */
/* Replaces the spinner/progress-bar scanning state */
.scan-consent {
  font-size: 12px; color: var(--cream-muted);
  max-width: 680px; margin: 14px auto 0;
  line-height: 1.65; text-align: center;
}
.scan-terminal {
  background: #0a0b14;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; overflow: hidden;
  max-width: 660px; margin: 0 auto;
  text-align: left;
  box-shadow: 0 8px 48px rgba(0,0,0,.35);
  transition: opacity .45s ease;
}
.scan-terminal-bar {
  background: #12141f;
  padding: 11px 16px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
/* macOS-style traffic-light dots */
.scan-terminal-dot { width: 11px; height: 11px; border-radius: 50%; }
.scan-terminal-dot:nth-child(1) { background: #ff5f57; }
.scan-terminal-dot:nth-child(2) { background: #febc2e; }
.scan-terminal-dot:nth-child(3) { background: #28c840; }
.scan-terminal-title {
  margin-left: 10px;
  font-size: 11px; color: rgba(255,255,255,.28);
  font-family: var(--font-mono); letter-spacing: .04em;
}
.scan-terminal-body {
  padding: 22px 26px 24px;
  min-height: 200px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
}
/* Individual log line */
.scan-terminal-line {
  display: flex; align-items: baseline;
  margin-bottom: 9px;
  opacity: 0; transform: translateY(3px);
  transition: opacity .22s ease, transform .22s ease;
}
.scan-terminal-line.visible { opacity: 1; transform: translateY(0); }
.scan-tl-arrow { color: rgba(255,255,255,.18); margin-right: 8px; flex-shrink: 0; }
.scan-tl-label {
  color: rgba(255,255,255,.55); white-space: nowrap;
  flex-shrink: 0; min-width: 220px;
}
/* Dot fill between label and result */
.scan-tl-fill {
  flex: 1; overflow: hidden; white-space: nowrap;
  color: rgba(255,255,255,.1); font-size: 12px;
  padding: 0 4px; letter-spacing: 3px;
}
.scan-tl-result {
  flex-shrink: 0; white-space: nowrap;
  font-weight: 600; min-width: 60px; text-align: right;
}
.scan-tl-result.tl-pending { color: rgba(255,255,255,.2); font-weight: 400; font-style: italic; }
.scan-tl-result.tl-clean   { color: #10b981; }
.scan-tl-result.tl-warn    { color: var(--amber); }
.scan-tl-result.tl-exposed { color: #ef4444; }
.scan-tl-result.tl-info    { color: rgba(255,255,255,.4); font-weight: 400; }
/* Divider */
.scan-terminal-divider {
  border: none; border-top: 1px solid rgba(255,255,255,.06);
  margin: 14px 0; opacity: 0; transition: opacity .3s;
}
.scan-terminal-divider.visible { opacity: 1; }
/* "Building report" status line */
.scan-terminal-status {
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255,255,255,.28); margin-top: 6px;
  opacity: 0; transition: opacity .3s;
}
.scan-terminal-status.visible { opacity: 1; }

/* ─── Sticky Download CTA ────────────────────────────────────────────────── */
.sticky-dl-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(18,20,31,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 13px 28px;
  display: flex; align-items: center;
  justify-content: center; gap: 20px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 32px rgba(0,0,0,.4);
}
.sticky-dl-bar.visible { transform: translateY(0); }
.sticky-dl-text { font-size: 13px; color: var(--text-dim); white-space: nowrap; }
.sticky-dl-text strong { color: var(--text); font-weight: 600; }
.sticky-dl-dismiss {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--text-muted);
  font-size: 20px; cursor: pointer; line-height: 1;
  padding: 5px 10px; transition: color .15s;
}
.sticky-dl-dismiss:hover { color: var(--text); }
@media (max-width: 600px) {
  .sticky-dl-bar { flex-direction: column; gap: 10px; padding: 16px 20px 20px; text-align: center; }
  .sticky-dl-text { white-space: normal; }
  .sticky-dl-dismiss { top: 10px; right: 10px; transform: none; }
}

/* ─── Paper Download Email Gate ──────────────────────────────────────────── */
#paper-gate-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000; padding: 20px;
  animation: pgFadeIn .18s ease;
}
#paper-gate-overlay.hidden { display: none; }
@keyframes pgFadeIn { from { opacity: 0; } to { opacity: 1; } }

.paper-gate-modal {
  background: var(--surface2);
  border: 1px solid rgba(245, 158, 11, .25);
  border-radius: 18px;
  padding: 36px 32px 28px;
  max-width: 420px; width: 100%;
  position: relative; text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .6);
  animation: pgSlideUp .22s cubic-bezier(.4, 0, .2, 1);
}
@keyframes pgSlideUp { from { transform: translateY(12px); opacity: 0; } to { transform: none; opacity: 1; } }

.paper-gate-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: var(--text-muted);
  font-size: 20px; cursor: pointer; line-height: 1; padding: 4px 8px;
  border-radius: 6px; transition: color .15s, background .15s;
}
.paper-gate-close:hover { color: var(--text); background: rgba(255,255,255,.06); }

.paper-gate-icon { font-size: 38px; margin-bottom: 14px; display: block; }
.paper-gate-title {
  font-size: 20px; font-weight: 700; color: var(--text);
  margin: 0 0 8px; font-family: 'Playfair Display', serif;
}
.paper-gate-sub {
  font-size: 13px; color: var(--text-dim); margin: 0 0 20px; line-height: 1.65;
}
.paper-gate-field { text-align: left; margin-bottom: 4px; }
.paper-gate-input {
  width: 100%; padding: 12px 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border-l);
  border-radius: 9px; color: var(--text); font-size: 14px;
  box-sizing: border-box; outline: none; transition: border-color .2s;
  font-family: inherit;
}
.paper-gate-input:focus { border-color: var(--amber); }
.paper-gate-input.pg-error { border-color: var(--critical); }
.paper-gate-err-msg {
  font-size: 12px; color: var(--critical); margin-top: 5px; padding-left: 2px;
}
.paper-gate-err-msg.hidden { display: none; }
.paper-gate-submit {
  margin-top: 14px; width: 100%; padding: 13px 20px;
  background: var(--amber); color: #0c0d18;
  border: none; border-radius: 9px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background .2s, transform .1s; font-family: inherit;
}
.paper-gate-submit:hover:not(:disabled) { background: var(--amber-h); }
.paper-gate-submit:active:not(:disabled) { transform: scale(.98); }
.paper-gate-submit:disabled { opacity: .55; cursor: default; }
.paper-gate-note {
  font-size: 11.5px; color: var(--text-muted); margin: 12px 0 0; line-height: 1.5;
}
@media (max-width: 480px) {
  .paper-gate-modal { padding: 28px 20px 22px; border-radius: 14px; }
  .paper-gate-title { font-size: 18px; }
}
