/* ── Grain ───────────────────────────────────────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: screen;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Base ────────────────────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s4) var(--s8);
  transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out);
}

#nav.nav--scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
}
.nav-logo svg { width: 26px; height: 26px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s7);
  list-style: none;
}
.nav-links a {
  font-size: 0.825rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white-muted);
  transition: color 150ms;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bg-0);
  background: var(--white);
  padding: 9px var(--s5);
  border-radius: var(--r-full);
  transition: background 150ms, transform 150ms;
}
.nav-cta:hover { background: var(--white-mid); transform: translateY(-1px); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 68% 46%, #0f0a04 0%, var(--bg-0) 58%);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 48%, rgba(245, 166, 35, 0.055) 0%, transparent 52%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: clamp(var(--s7), 8vw, var(--s10));
  max-width: min(540px, 48vw);
}

/* ── Hero visual (right side) ────────────────────────────────────────────── */
.hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 54%;
  z-index: 2;
  pointer-events: none;
}

.hero-prompter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(18, 14, 8, 0.88);
  border: 1px solid rgba(245, 166, 35, 0.18);
  border-radius: 20px;
  padding: 28px 32px;
  width: 340px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 0 80px rgba(245, 166, 35, 0.06),
    0 40px 100px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.prompter-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: var(--s4);
}

.prompter-input {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
  min-height: 58px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.prompter-typetext { color: var(--white); }

.prompter-status {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-top: 18px;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--sage);
  letter-spacing: 0.04em;
}

.prompter-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  animation: prompterPulse 2.2s ease-in-out infinite;
}

@keyframes prompterPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(93, 184, 112, 0.45); }
  60%       { opacity: 0.7; box-shadow: 0 0 0 7px rgba(93, 184, 112, 0); }
}

/* Floating tab verdict chips */
.ftab {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(14, 12, 8, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.ftab-domain {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--white-muted);
}

.ftab-verdict {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 3px 9px;
  border-radius: var(--r-full);
}

.ftab-allow {
  color: var(--sage);
  background: var(--sage-dim);
  border: 1px solid rgba(93, 184, 112, 0.22);
}

.ftab-block {
  color: var(--danger);
  background: var(--danger-dim);
  border: 1px solid rgba(224, 79, 62, 0.22);
}

/* Individual tab positions (relative to .hero-visual) */
.ftab--1 { top: 16%;  left: 6%; }
.ftab--2 { top: 20%;  right: 5%; }
.ftab--3 { top: 50%;  left: 0%; }
.ftab--4 { bottom: 24%; right: 3%; }
.ftab--5 { bottom: 11%; left: 10%; }
.ftab--6 { bottom: 21%; right: 18%; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-muted);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 5px var(--s4);
  border-radius: var(--r-full);
  margin-bottom: var(--s6);
}

.hero-eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: var(--s5);
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}

.hl-line { display: block; }

.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--white-muted);
  max-width: 400px;
  margin-bottom: var(--s7);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--bg-0);
  background: var(--white);
  padding: 12px var(--s6);
  border-radius: var(--r-full);
  transition: background 150ms, box-shadow 250ms;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--white-mid);
  box-shadow: 0 0 40px rgba(247,247,245,0.12);
}
.btn-primary:active { transform: scale(0.97); }
.btn-primary .arrow { transition: transform 150ms; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--white-muted);
  border-bottom: 1px solid var(--white-dim);
  padding-bottom: 2px;
  transition: color 150ms, border-color 150ms;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white-muted); }

.scroll-hint {
  position: absolute;
  bottom: var(--s7);
  left: clamp(var(--s7), 8vw, var(--s10));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
}
.scroll-hint-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.75; }
}

/* ── Divider ─────────────────────────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  margin: 0 var(--s8);
}

/* ── Trust strip ─────────────────────────────────────────────────────────── */
#trust {
  background: var(--bg-1);
  padding: var(--s5) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s7);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--s8);
}

.trust-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.trust-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white-muted);
  white-space: nowrap;
  text-align: center;
}

/* ── How it works ────────────────────────────────────────────────────────── */
#how {
  padding: calc(var(--s10) * 1.2) 0 calc(var(--s10) * 2);
}

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--s8);
  align-items: start;
}

.how-left { padding-top: var(--s8); }

.how-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: var(--s4);
}

.how-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: var(--s8);
}

h1 em, h2 em { font-style: italic; color: var(--amber); }

.steps-list { display: flex; flex-direction: column; gap: 0; }

.step-item {
  display: flex;
  gap: var(--s5);
  padding: var(--s7) 0;
  min-height: 180px;
  border-top: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
  transition: border-color 250ms;
}
.step-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.step-item.active { border-top-color: rgba(255,255,255,0.3); }

.step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--white-dim);
  padding-top: 5px;
  flex-shrink: 0;
  width: 28px;
  transition: color 250ms;
}
.step-item.active .step-num { color: var(--white-muted); }

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white-dim);
  margin-bottom: var(--s2);
  letter-spacing: -0.01em;
  transition: color 250ms;
}
.step-item.active .step-body h3 { color: var(--white); }

.step-body p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.65;
  max-width: 300px;
  transition: color 250ms;
}
.step-item.active .step-body p { color: var(--white-muted); }

/* Right sticky visual */
.how-right {
  position: sticky;
  top: calc(50vh - 240px);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
}

.mockup-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.step-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}
.step-panel.active { pointer-events: auto; }

/* Step 0: Goal popup */
.popup-mockup {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  width: 300px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
}

.popup-header {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4) var(--s5);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: var(--bg-1);
}
.popup-header-logo { width: 20px; height: 20px; }
.popup-header span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.popup-body { padding: var(--s5); }
.popup-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: var(--s3);
}

.goal-field {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: var(--s3) var(--s4);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--white);
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.cursor-blink {
  color: var(--amber);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.popup-mode-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--s4);
}
.popup-mode-label { font-size: 0.78rem; font-weight: 300; color: var(--white-muted); }
.mode-pill {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--amber);
  background: var(--amber-glow);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--r-full);
  padding: 3px 10px;
}

/* Step 1: Browser */
.browser-mockup {
  width: 340px;
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.browser-chrome {
  background: var(--bg-1);
  padding: var(--s3) var(--s4);
  display: flex;
  gap: var(--s2);
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tab {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--white-muted);
  background: var(--bg-2);
  padding: 4px var(--s3);
  border-radius: 4px 4px 0 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab.active { background: var(--bg-0); color: var(--white); }
.tab.muted  { color: var(--white-dim); opacity: 0.5; }

.browser-body { padding: var(--s6); }
.page-line {
  height: 7px;
  border-radius: var(--r-full);
  background: var(--bg-3);
  margin-bottom: var(--s3);
}
.page-line.long  { width: 90%; }
.page-line.med   { width: 68%; }
.page-line.short { width: 44%; }

/* Step 2: Pipeline */
.pipeline-mockup {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.pipeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s4);
  min-width: 80px;
  transition: border-color 250ms;
}
.pipeline-node span {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--white-muted);
  text-align: center;
  white-space: nowrap;
}
.pipeline-node svg { width: 20px; height: 20px; color: var(--white-muted); }
.pipeline-node.allow {
  border-color: rgba(93,184,112,0.3);
  background: var(--sage-dim);
}
.pipeline-node.allow svg { color: var(--sage); }
.pipeline-node.allow span { color: var(--sage); }

.pipeline-arrow {
  display: flex;
  align-items: center;
  color: var(--white-dim);
}
.flow-dots { display: flex; gap: 4px; }
.flow-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--white-muted);
  animation: flowDot 1.4s ease-in-out infinite;
}
.flow-dot:nth-child(2) { animation-delay: 0.2s; }
.flow-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes flowDot { 0%,100% { opacity: 0.15; } 50% { opacity: 0.9; } }

/* Step 3: Block */
.block-mockup {
  width: 340px;
  height: 220px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(224,79,62,0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.block-bg { position: absolute; inset: 0; background: var(--bg-0); }
.block-bg-lines { padding: var(--s5); opacity: 0.2; }
.block-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  text-align: center;
  padding: var(--s6);
}
.block-icon-wrap {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--danger-dim);
  border: 1px solid rgba(224,79,62,0.3);
  display: flex; align-items: center; justify-content: center;
}
.block-icon-wrap svg { width: 16px; height: 16px; color: var(--danger); }
.block-overlay h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.block-overlay p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.5;
}
.block-actions { display: flex; gap: var(--s2); margin-top: var(--s2); }
.block-btn {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--white-muted);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  padding: 4px var(--s3);
  cursor: pointer;
  transition: border-color 150ms, color 150ms;
  font-family: var(--font-body);
}
.block-btn:hover { border-color: var(--white-muted); color: var(--white); }

/* ── Modes ───────────────────────────────────────────────────────────────── */
#modes {
  padding: var(--s10) var(--s8);
  background: var(--bg-1);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.modes-container { max-width: 1100px; margin: 0 auto; }

.modes-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: var(--s2);
}
.modes-sub {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--white-muted);
  margin-bottom: var(--s8);
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
}

.mode-card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s5);
  cursor: default;
  transition: border-color 250ms, box-shadow 300ms;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.mode-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--card-accent, rgba(255,255,255,0.12));
  opacity: 0;
  transition: opacity 250ms;
}
.mode-card:hover { border-color: rgba(255,255,255,0.14); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.mode-card:hover::after { opacity: 1; }

.mode-card--focused  { --card-accent: var(--amber); border-color: rgba(245,166,35,0.15); }
.mode-card--focused::after  { opacity: 1; }
.mode-card--reading  { --card-accent: var(--sage); }
.mode-card--lockdown { --card-accent: var(--danger); }

.mode-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s4);
}
.mode-icon svg { width: 16px; height: 16px; }

.mode-card--off      .mode-icon { background: rgba(255,255,255,0.06); }
.mode-card--off      .mode-icon svg { color: var(--white-dim); }
.mode-card--reading  .mode-icon { background: var(--sage-dim); }
.mode-card--reading  .mode-icon svg { color: var(--sage); }
.mode-card--focused  .mode-icon { background: var(--amber-glow); }
.mode-card--focused  .mode-icon svg { color: var(--amber); }
.mode-card--lockdown .mode-icon { background: var(--danger-dim); }
.mode-card--lockdown .mode-icon svg { color: var(--danger); }

.mode-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-glow);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--r-full);
  padding: 2px 9px;
  margin-bottom: var(--s3);
}
.mode-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: var(--s2);
}
.mode-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.6;
}

/* ── Privacy ─────────────────────────────────────────────────────────────── */
#privacy {
  padding: var(--s10) var(--s8);
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.priv-rings {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  pointer-events: none; z-index: 0;
}
.priv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.045);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 5s ease-in-out infinite;
}
.priv-ring:nth-child(1) { width: 160px; height: 160px; animation-delay: 0s;   border-color: rgba(255,255,255,0.07); }
.priv-ring:nth-child(2) { width: 320px; height: 320px; animation-delay: 0.6s; }
.priv-ring:nth-child(3) { width: 480px; height: 480px; animation-delay: 1.2s; }
.priv-ring:nth-child(4) { width: 640px; height: 640px; animation-delay: 1.8s; }
@keyframes ringPulse {
  0%,100% { opacity: 0.45; }
  50%      { opacity: 0.85; }
}

.priv-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.priv-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: var(--s5);
}
.priv-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: var(--s8);
}

.priv-stats { display: flex; justify-content: center; gap: var(--s9); flex-wrap: wrap; }
.priv-stat { display: flex; flex-direction: column; align-items: center; gap: var(--s2); }
.stat-count {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--white-muted);
  text-align: center;
  max-width: 140px;
}

/* ── Why ─────────────────────────────────────────────────────────────────── */
#why {
  padding: var(--s10) var(--s8);
  background: var(--bg-1);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.why-inner { max-width: 860px; margin: 0 auto; }

.why-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: var(--s4);
}
.why-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: var(--s8);
}

.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table thead tr { border-bottom: 1px solid rgba(255,255,255,0.1); }
.cmp-table th {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 0 var(--s4) 0;
  text-align: left;
}
.cmp-table th:first-child { color: var(--white-dim); width: 50%; }
.cmp-table th:last-child  { color: var(--white-muted); }

.cmp-row td {
  padding: var(--s5) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9375rem;
  font-weight: 300;
  vertical-align: middle;
}
.cmp-row td:first-child { color: var(--white-dim); padding-right: var(--s6); }
.cmp-row td:last-child  { color: var(--white); font-weight: 400; }
.cmp-check { display: inline-flex; align-items: center; gap: var(--s2); }
.cmp-check::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */
#cta {
  padding: var(--s10) var(--s8);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-0);
  border-top: 1px solid rgba(255,255,255,0.05);
}
#cta::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,247,245,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--s5);
}
.cta-sub {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--white-muted);
  margin-bottom: var(--s7);
  line-height: 1.65;
}
.cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}
.cta-btn-wrap .btn-primary { font-size: 1rem; padding: 14px var(--s8); }
.cta-footnote {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white-dim);
}
.cta-footnote a {
  color: var(--white-muted);
  border-bottom: 1px solid var(--white-dim);
  transition: color 150ms, border-color 150ms;
}
.cta-footnote a:hover { color: var(--white); border-color: var(--white-muted); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-1);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--s7) var(--s8);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s5);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-muted);
}
.footer-logo svg { width: 20px; height: 20px; }
.footer-tagline { font-size: 0.75rem; font-weight: 300; color: var(--white-dim); margin-top: 5px; }

.footer-links { display: flex; gap: var(--s6); list-style: none; }
.footer-links a {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white-dim);
  transition: color 150ms;
}
.footer-links a:hover { color: var(--white-muted); }
.footer-privacy { font-size: 0.72rem; color: var(--white-dim); }

/* ── Reduced motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .modes-grid { grid-template-columns: repeat(2, 1fr); }
  .how-inner  { grid-template-columns: 1fr; }
  .how-right  { display: none; }
  #how        { padding-bottom: var(--s10); }
}
@media (max-width: 768px) {
  .hero-visual { display: none; }
  #nav { padding: var(--s3) var(--s5); }
  .nav-links { display: none; }
  .hero-content { padding-left: var(--s6); padding-right: var(--s5); max-width: 100%; }
  .scroll-hint { left: var(--s6); }
  .trust-inner { padding: 0 var(--s5); }
  .trust-text { font-size: 0.7rem; white-space: normal; text-align: center; }
  .trust-divider { display: none; }
  #how, #modes, #privacy, #why, #cta { padding: var(--s8) var(--s5); }
  .modes-grid { grid-template-columns: 1fr; }
  .priv-stats { gap: var(--s7); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-headline { font-size: 2.8rem; }
  .modes-headline, .priv-headline, .why-headline, .cta-headline { font-size: 2rem; }
}
