/* ==========================================================================
   RevScaled — design system
   Implements design/SPEC.md. Palette #FF4D4D on #000, Inter variable (self-hosted).
   Pages: index.html (home) · antiviral.html · privacy.html
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Variable.woff2') format('woff2-variations'),
       url('/fonts/Inter-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #FF4D4D;
  --accent-hover: #ff6060;
  --bg: #000000;
  --bg-card: #0C0C12;
  --bg-card-glass: rgba(12, 12, 18, 0.5);
  --white: #FAFAFA;

  --ink-85: rgba(255, 255, 255, 0.85);
  --ink-75: rgba(255, 255, 255, 0.75);
  --ink-65: rgba(255, 255, 255, 0.65);
  --ink-60: rgba(255, 255, 255, 0.6);
  --ink-55: rgba(255, 255, 255, 0.55);
  --ink-50: rgba(255, 255, 255, 0.5);
  --ink-45: rgba(255, 255, 255, 0.45);
  --ink-42: rgba(255, 255, 255, 0.42);
  --ink-40: rgba(255, 255, 255, 0.4);
  --ink-35: rgba(255, 255, 255, 0.35);

  --border: rgba(255, 255, 255, 0.08);
  --hairline: rgba(255, 255, 255, 0.06);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --pad-x: clamp(20px, 5vw, 56px);
  --sect-y: clamp(80px, 10vw, 150px);

  --glow-eyebrow: 0 0 14px rgba(255, 77, 77, 0.55);
  --glow-display: 0 0 30px rgba(255, 77, 77, 0.4), 0 0 60px rgba(255, 77, 77, 0.15);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% -200px, rgba(255, 77, 77, var(--ambient, 0.07)) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.page { position: relative; z-index: 1; overflow-x: clip; }

a { color: var(--white); text-decoration: none; }
a:hover { color: var(--accent); }
::selection { background: rgba(255, 77, 77, 0.35); color: var(--white); }
input::placeholder { color: var(--ink-35); }
button:disabled { opacity: 0.6; cursor: default; }
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

img { max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-1080 { max-width: 1080px; margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-980 { max-width: 980px; margin: 0 auto; }
.wrap-900 { max-width: 900px; margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-880 { max-width: 880px; margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-860 { max-width: 860px; margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-840 { max-width: 840px; margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-820 { max-width: 820px; margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-read { max-width: 680px; margin: 0 auto; }

.section { padding: var(--sect-y) 0; }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */

.display {
  font-size: clamp(40px, 7vw, 82px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.03;
  color: var(--white);
  margin: 0 auto;
}
.display .hl { color: var(--accent); font-weight: 600; text-shadow: var(--glow-display); }

.h2 {
  font-size: clamp(31px, 4.4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
}
.h2 .hl { color: var(--accent); text-shadow: 0 0 20px rgba(255, 77, 77, 0.4); }
.h2 .dim { color: var(--ink-35); }

.h2-read {
  font-size: clamp(25px, 3.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 24px;
}
.h2-read .step { color: var(--accent); text-shadow: 0 0 16px rgba(255, 77, 77, 0.4); }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: var(--glow-eyebrow);
  margin-bottom: 18px;
}

.body-lg { font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--ink-60); margin: 0; }
.body-read { font-size: 17px; font-weight: 300; line-height: 1.85; color: var(--ink-65); margin: 0 0 20px; }
.body-read:last-child { margin-bottom: 0; }
.body { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--ink-55); margin: 0; }

.statement {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--ink-85);
}
.statement .hl { color: var(--accent); text-shadow: 0 0 14px rgba(255, 77, 77, 0.4); }

.caps {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: var(--white);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-primary {
  color: #000000;
  background: var(--white);
  padding: 16px 36px;
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.15), 0 0 40px rgba(255, 77, 77, 0.08), 0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 40px rgba(255, 77, 77, 0.35), 0 0 80px rgba(255, 77, 77, 0.15), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.25s var(--ease);
}
.btn-secondary:hover {
  color: var(--white);
  border-color: var(--accent);
  background: rgba(255, 77, 77, 0.08);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.1);
}

.btn-lg { font-size: 15px; padding: 17px 42px; }
.btn-sm { padding: 14px 32px; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(30px, 3.6vw, 42px) clamp(26px, 3.2vw, 38px);
}

.card-glass {
  background: var(--bg-card-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(30px, 3.6vw, 42px) clamp(26px, 3.2vw, 38px);
  transition: all 0.35s var(--ease);
}
.card-glass:hover {
  border-color: rgba(255, 77, 77, 0.2);
  box-shadow: 0 0 40px rgba(255, 77, 77, 0.06), 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.card-outline {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(26px, 3.2vw, 34px);
}

.grid { display: grid; gap: 16px; }
.grid-290 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid-340 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.grid-320 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-280 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }

/* Bulleted lists with the red dot marker */
.dot-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.dot-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-65);
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 77, 77, 0.12);
  border: 1px solid var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   Ambient atmosphere
   -------------------------------------------------------------------------- */

@keyframes drift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(40px, 20px) scale(1.08); } }
@keyframes drift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-30px, 15px) scale(0.95); } }
@keyframes drift3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -15px); } }
@keyframes drift4 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, 15px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.ambient { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; }
.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%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");
}

/* --------------------------------------------------------------------------
   01 · Nav
   -------------------------------------------------------------------------- */

.nav-shell {
  position: fixed;
  top: 14px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 clamp(14px, 3vw, 32px);
}
.nav {
  width: 100%;
  max-width: 1060px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 77, 77, 0.1);
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0 8px 0 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03), inset 0 0 20px rgba(255, 77, 77, 0.03);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-shadow: 0 0 20px rgba(255, 77, 77, 0.15);
}
.wordmark:hover { color: var(--white); }
.wordmark img {
  width: 20px; height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 77, 77, 0.4));
}
.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-50);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: rgba(255, 255, 255, 0.9); }
.btn-nav {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: var(--accent);
  padding: 11px 24px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  box-shadow: 0 0 16px rgba(255, 77, 77, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.btn-nav:hover {
  background: var(--accent-hover);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 77, 77, 0.4);
}

@media (min-width: 780px) {
  .nav-links { display: flex; }
}

/* --------------------------------------------------------------------------
   02 · Hero + 03 · Proof strip
   -------------------------------------------------------------------------- */

.hero { position: relative; overflow: hidden; padding: clamp(150px, 22vh, 200px) 0 0; }
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero .display { max-width: 1000px; }
.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-60);
  max-width: 640px;
  margin: 28px auto 0;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

.orb-1 { width: min(520px, 64vw); height: 400px; background: radial-gradient(ellipse at 40% 50%, rgba(255, 30, 30, 0.5) 0%, rgba(200, 15, 15, 0.22) 35%, transparent 70%); filter: blur(50px); top: -80px; left: 12%; animation: drift1 6s ease-in-out infinite; }
.orb-2 { width: min(420px, 52vw); height: 340px; background: radial-gradient(ellipse at 60% 40%, rgba(180, 20, 50, 0.4) 0%, transparent 70%); filter: blur(40px); top: -40px; right: -4%; animation: drift2 8s ease-in-out infinite; }
.orb-3 { width: 300px; height: 250px; background: radial-gradient(ellipse, rgba(255, 80, 20, 0.3) 0%, transparent 70%); filter: blur(60px); top: 140px; left: 30%; animation: drift3 10s ease-in-out infinite; }
.orb-4 { width: 320px; height: 280px; background: radial-gradient(ellipse, rgba(10, 20, 60, 0.55) 0%, transparent 70%); filter: blur(60px); top: 80px; right: 18%; animation: drift4 12s ease-in-out infinite; }
.hero .grain { opacity: 0.045; }
.hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 180px; background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.55) 45%, #000000 100%); }

.proof-strip { display: flex; justify-content: center; margin-top: clamp(56px, 8vw, 88px); padding-bottom: clamp(64px, 9vw, 104px); }
/* Plain type, no pill and no status dot. Both read as UI: the bordered pill
   sat under two real CTAs and looked like a third button, and the animated
   ping badge is a stock AI-landing-page tell. This is a claim, not a control. */
.proof-pill {
  display: inline-flex;
  align-items: center;
}
.proof-pill span.label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-55);
  text-align: center;
}

/* --------------------------------------------------------------------------
   04 · Problem
   -------------------------------------------------------------------------- */

.problem { padding: var(--sect-y) 0 clamp(84px, 10vw, 150px); }
.problem .h2 { max-width: 760px; line-height: 1.12; }
.problem-grid { margin-top: clamp(40px, 5vw, 60px); }
.problem-card { position: relative; overflow: hidden; }
.problem-card .num {
  position: absolute;
  top: 18px; right: 24px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(255, 77, 77, 0.07);
  line-height: 1;
}
.problem-card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--white);
  margin: 0 0 14px;
  padding-right: 44px;
  position: relative;
}
.problem-card p { position: relative; }
.problem-close { margin: clamp(48px, 6vw, 72px) auto 0; max-width: 820px; text-align: center; }

.divider { position: relative; height: 1px; background: var(--border); max-width: min(1200px, 88vw); margin: 0 auto; }
.divider::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: min(320px, 60vw);
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
  border-radius: 2px;
}
.divider::after {
  content: '';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  width: min(400px, 70vw);
  height: 24px;
  background: radial-gradient(ellipse, rgba(255, 77, 77, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   05 · Thesis
   -------------------------------------------------------------------------- */

.prose-stack { display: flex; flex-direction: column; gap: 24px; }
.thesis-head { margin-top: 36px; }
.reel-compare { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 16px; margin: 28px 0; }
.reel-card {
  border-radius: 16px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reel-card .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.reel-card p {
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.45;
  margin: 0;
}
.reel-viral { background: transparent; border: 1px solid rgba(255, 255, 255, 0.1); }
.reel-viral p { color: var(--ink-45); }
.reel-anti {
  background: linear-gradient(180deg, rgba(255, 77, 77, 0.07) 0%, rgba(12, 12, 18, 0.5) 100%);
  border: 1px solid rgba(255, 77, 77, 0.28);
  box-shadow: 0 0 40px rgba(255, 77, 77, 0.07);
}
.reel-anti .tag { color: var(--accent); text-shadow: var(--glow-eyebrow); }
.reel-anti p { color: var(--white); }
.thesis-trade { font-size: 18px; font-weight: 500; line-height: 1.7; color: var(--ink-85); margin: 0; }
.thesis-close {
  font-size: clamp(20px, 2.6vw, 25px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--white);
  margin: 16px 0 0;
}
.thesis-close .hl { color: var(--accent); text-shadow: 0 0 20px rgba(255, 77, 77, 0.4); }

/* --------------------------------------------------------------------------
   06 · The system
   -------------------------------------------------------------------------- */

.section-anchor { scroll-margin-top: 90px; }
.system .h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.15;
  max-width: 900px;
}
.system .h2 .dim { color: var(--ink-45); }
/* SPEC calls this grid "system 2x2". auto-fit would give 3+1 at desktop
   widths and leave a lone card on the second row, so pin it to two columns. */
.system-grid { margin-top: clamp(40px, 5vw, 60px); grid-template-columns: 1fr; }
@media (min-width: 780px) {
  .system-grid { grid-template-columns: 1fr 1fr; }
}
.sys-head { display: flex; align-items: center; gap: 14px; }
.sys-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 77, 77, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sys-head h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: var(--white); margin: 0; }
.system-grid p { margin: 18px 0 0; }

/* --------------------------------------------------------------------------
   07 · Results
   -------------------------------------------------------------------------- */

.results-h2 { max-width: 760px; }
.results-frame { margin: 24px 0 0; max-width: 900px; }

.honia {
  margin-top: clamp(40px, 5vw, 60px);
  background: var(--bg-card);
  border: 1px solid rgba(255, 77, 77, 0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255, 77, 77, 0.05);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}
/* 16:9 per SPEC. The text column is usually taller, so centre the frame in
   its cell rather than stretching the video out of ratio. */
.honia-video { position: relative; aspect-ratio: 16 / 9; align-self: center; width: 100%; }
.honia-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.honia-body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 22px; }
.honia-name { display: flex; align-items: center; gap: 16px; }
.honia-name img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.honia-name h3 {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  margin: 0;
}
.result-copy { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--ink-60); margin: 0; }
.result-copy b { color: var(--white); font-weight: 600; }
.honia-ratio {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.55;
  color: var(--ink-85);
  margin: 0;
}
.pullquote { margin: 4px 0 0; padding: 2px 0 2px 18px; border-left: 2px solid var(--accent); }
.pullquote blockquote {
  margin: 0;
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--white);
}
.pullquote figcaption {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.results-row { margin-top: 16px; }
.result-card { padding: clamp(28px, 3.4vw, 38px) clamp(24px, 3vw, 34px); }
.result-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.result-head img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.result-head h3 { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; color: var(--white); margin: 0; }
.result-anon {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: clamp(28px, 3.4vw, 38px) clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.result-anon h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--ink-75); margin: 0; }
.result-anon .note { font-size: 12px; font-weight: 400; color: rgba(255, 255, 255, 0.38); letter-spacing: 0.02em; }
.result-anon b { color: var(--ink-85); font-weight: 600; }

/* --------------------------------------------------------------------------
   08 · Sound like me
   -------------------------------------------------------------------------- */

.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(32px, 4vw, 56px);
}
.voice-sticky { position: sticky; top: 120px; align-self: start; }
.voice-sticky .h2 { line-height: 1.15; }
.voice-sticky p { margin: 24px 0 0; max-width: 480px; }
.voice-cards { display: flex; flex-direction: column; gap: 14px; }
.voice-card { padding: clamp(26px, 3.2vw, 36px); }
.voice-card p { margin: 12px 0 0; }

/* --------------------------------------------------------------------------
   09 · Pricing
   -------------------------------------------------------------------------- */

.pricing-head { text-align: center; }
.pricing-grid { max-width: 980px; margin: clamp(40px, 5vw, 60px) auto 0; }
.tier { display: flex; flex-direction: column; gap: 22px; }
.tier-featured {
  border-color: rgba(255, 77, 77, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 77, 77, 0.15), 0 0 50px rgba(255, 77, 77, 0.06);
}
.tier-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: var(--glow-eyebrow);
}
.tier-price {
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
}
.tier-price span { font-size: 15px; font-weight: 400; color: var(--ink-50); letter-spacing: 0; }
.tier .dot-list { margin-top: 2px; }

.pricing-note { margin: clamp(40px, 5vw, 56px) auto 0; max-width: 760px; text-align: center; font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--ink-65); }
.pricing-cadence { margin: 18px auto 0; max-width: 640px; text-align: center; font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--ink-45); }
.pricing-extras { max-width: 980px; margin: clamp(36px, 4vw, 48px) auto 0; }
.extra-card { display: flex; flex-direction: column; gap: 18px; }
.extra-card h3 { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; color: var(--ink-75); margin: 0; }
.extra-card .dot-list { gap: 12px; }
.extra-card .dot-list li { color: var(--ink-55); line-height: 1.65; }
.extra-card .dot-list b { color: var(--ink-85); font-weight: 500; }
.studio-card { gap: 14px; }
.studio-card h3 { line-height: 1.7; }
.studio-card h3 .hl { color: var(--accent); text-shadow: 0 0 14px rgba(255, 77, 77, 0.4); }
.studio-card p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--ink-55); margin: 0; }
.pricing-cta { display: flex; justify-content: center; margin-top: clamp(40px, 5vw, 56px); }

/* --------------------------------------------------------------------------
   10 · YouTube
   -------------------------------------------------------------------------- */

.yt-section { padding: clamp(24px, 3vw, 40px) 0 clamp(70px, 8vw, 110px); }
.yt-card {
  background: var(--bg-card-glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(28px, 3.6vw, 42px);
  display: flex;
  gap: clamp(18px, 2.6vw, 28px);
  align-items: flex-start;
  flex-wrap: wrap;
}
.yt-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 77, 77, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.yt-body { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 16px; }
.yt-body h3 {
  font-size: clamp(20px, 2.6vw, 25px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--white);
  margin: 0;
}
.yt-price {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-85);
}

/* --------------------------------------------------------------------------
   11 · Who it's for
   -------------------------------------------------------------------------- */

.qualify { padding: clamp(60px, 8vw, 110px) 0; }
.qualify-card { padding: clamp(28px, 3.6vw, 42px); display: flex; flex-direction: column; gap: 20px; }
.qualify-card h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; margin: 0; }
.qualify-for h3 { color: var(--accent); text-shadow: var(--glow-eyebrow); }
.qualify-not { background: transparent; }
.qualify-not h3 { color: var(--ink-50); }
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-65);
}
.check-list svg { flex-shrink: 0; margin-top: 4px; }
.qualify-not .check-list li { color: var(--ink-45); }

/* --------------------------------------------------------------------------
   12 · Team
   -------------------------------------------------------------------------- */

.team .h2 { max-width: 720px; line-height: 1.12; }
.team-grid { margin-top: clamp(40px, 5vw, 56px); }
.team-card { padding: clamp(28px, 3.6vw, 40px); display: flex; flex-direction: column; gap: 20px; }
.team-head { display: flex; align-items: center; gap: 18px; }
.team-head img {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.team-name { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; color: var(--white); line-height: 1.2; }
.team-title { font-size: 13px; font-weight: 400; color: var(--ink-50); margin-top: 4px; }
.team-role { font-size: 15px; font-weight: 500; line-height: 1.6; color: var(--ink-85); margin: 0; }
.team-detail { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--ink-50); margin: 10px 0 0; }

/* --------------------------------------------------------------------------
   13 · Process
   -------------------------------------------------------------------------- */

.process { padding: clamp(60px, 8vw, 120px) 0; }
.process-list { margin-top: clamp(28px, 4vw, 44px); border-bottom: 1px solid var(--hairline); }
.process-step {
  display: grid;
  grid-template-columns: clamp(52px, 8vw, 80px) 1fr;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(24px, 3vw, 32px) 0;
  border-top: 1px solid var(--hairline);
}
.process-num {
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  text-shadow: 0 0 14px rgba(255, 77, 77, 0.4);
  line-height: 1;
}
.process-step h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: var(--white); margin: 0; }
.process-step p { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--ink-55); margin: 10px 0 0; }

/* --------------------------------------------------------------------------
   14 · FAQ
   -------------------------------------------------------------------------- */

.faq { padding: clamp(60px, 8vw, 120px) 0; }
.faq .eyebrow { margin-bottom: 28px; }
.faq-list { border-bottom: 1px solid var(--hairline); }
.faq-item { border-top: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  font-family: inherit;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: clamp(16px, 1.9vw, 17px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
}
.faq-icon {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
/* visibility (not just max-height) so collapsed answers are hidden from screen
   readers too, otherwise SRs read all ten while the buttons say collapsed.
   Delayed on close so the height transition still plays. */
.faq-a {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.45s var(--ease), visibility 0s linear 0.45s;
}
.faq-a.is-open { visibility: visible; transition: max-height 0.45s var(--ease), visibility 0s; }
.faq-a p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-55);
  margin: 0;
  padding: 0 40px 24px 0;
}

/* --------------------------------------------------------------------------
   15 · Final CTA
   -------------------------------------------------------------------------- */

.final { position: relative; overflow: hidden; padding: clamp(90px, 12vw, 170px) 0; }
.final .orb-final {
  position: absolute;
  left: 50%; top: -140px;
  transform: translateX(-50%);
  width: min(720px, 92vw);
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 40, 40, 0.2) 0%, transparent 65%);
  filter: blur(60px);
  animation: drift1 8s ease-in-out infinite;
}
.final .grain { opacity: 0.04; }
.final-inner { position: relative; z-index: 2; text-align: center; }
.final h2 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--white);
  margin: 0;
}
.final h2 .hl { color: var(--accent); font-weight: 600; text-shadow: var(--glow-display); }
.final-sub {
  font-size: clamp(16px, 2vw, 17px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-60);
  max-width: 580px;
  margin: 26px auto 0;
}
.final-cta { display: flex; justify-content: center; margin-top: 36px; }
.final-alt {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-50);
  max-width: 520px;
  margin: clamp(48px, 6vw, 64px) auto 0;
}
.final-alt-cta { display: flex; justify-content: center; margin-top: 22px; }

/* --------------------------------------------------------------------------
   16 · Footer
   -------------------------------------------------------------------------- */

.site-footer { border-top: 1px solid var(--border); padding: clamp(48px, 6vw, 72px) 0 40px; }
.site-footer .wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  text-shadow: 0 0 20px rgba(255, 77, 77, 0.2);
}
.footer-mark img { width: 20px; height: 20px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(255, 77, 77, 0.4)); }
.footer-line { font-size: 13px; font-weight: 300; color: var(--ink-45); letter-spacing: 0.02em; }
.socials { display: flex; gap: 10px; margin-top: 6px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-65);
  transition: all 0.25s;
}
.socials a:hover { color: var(--accent); border-color: rgba(255, 77, 77, 0.3); }
.footer-rule { width: 100%; height: 1px; background: var(--hairline); margin: 14px 0 4px; }
.footer-entity { font-size: 12px; font-weight: 300; color: var(--ink-35); letter-spacing: 0.02em; }
.footer-legal { display: flex; align-items: center; gap: 20px; font-size: 12px; color: var(--ink-45); }
.footer-legal a { color: var(--ink-45); transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent); }
.footer-legal .sep { color: rgba(255, 255, 255, 0.2); }

/* --------------------------------------------------------------------------
   /antiviral + /privacy — minimal chrome, reading column
   -------------------------------------------------------------------------- */

.chrome { padding: 26px var(--pad-x); }
.chrome .wordmark { display: inline-flex; font-size: 14px; }
.chrome .wordmark img { width: 18px; height: 18px; }

.read-page { padding: 0 var(--pad-x) clamp(64px, 8vw, 96px); }
.read-hero { padding: clamp(48px, 8vh, 96px) var(--pad-x) clamp(56px, 8vw, 80px); }
.read-hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}
.read-hero h1 .hl { color: var(--accent); text-shadow: var(--glow-display); }
.byline { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.byline img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255, 255, 255, 0.12); flex-shrink: 0; }
.byline span { font-size: 13px; font-weight: 400; color: var(--ink-50); letter-spacing: 0.02em; }
.read-lede {
  font-size: clamp(18px, 2.4vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-75);
  margin: 28px 0 0;
}
.read-sub { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--ink-55); margin: 22px 0 0; }

.read-section { padding-top: clamp(48px, 7vw, 72px); scroll-margin-top: 32px; }
.read-section:first-of-type { padding-top: clamp(40px, 6vw, 64px); }
.read-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 12px; }
.read-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-65);
}
.read-list .dot { margin-top: 9px; }
.read-list a { color: var(--accent); }
.lede-line { font-size: 19px; font-weight: 400; line-height: 1.7; color: var(--ink-85); margin: 0 0 20px; }
.read-quote {
  margin: 36px 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--accent);
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--white);
}

/* Sticky progress rail */
.rail { display: none; }
@media (min-width: 1240px) {
  .rail {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: calc(50% - 560px);
    top: 50%;
    transform: translateY(-50%);
    width: 170px;
    z-index: 50;
  }
  .rail a {
    display: block;
    padding: 7px 0 7px 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s, border-color 0.2s;
  }
  .rail a:hover { color: var(--accent); }
  .rail a.is-active { color: var(--accent); border-left-color: rgba(255, 77, 77, 0.8); font-weight: 600; }
}

/* Tool blocks (audit checklist + ledger) */
.tool-block {
  background: var(--bg-card);
  border: 1px solid rgba(255, 77, 77, 0.2);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 32px);
  margin: 0 0 28px;
  box-shadow: 0 0 40px rgba(255, 77, 77, 0.04);
}
.tool-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.tool-head .kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: var(--glow-eyebrow);
}
.tool-head .lead { font-size: 13.5px; font-weight: 400; color: var(--ink-60); }
/* Horizontal scroll is for narrow viewports only. The default scrollbar is a
   bright grey slab that sits badly on the near-black card, so make it a thin
   dark thumb. */
.tool-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.tool-scroll::-webkit-scrollbar { height: 6px; }
.tool-scroll::-webkit-scrollbar-track { background: transparent; }
.tool-scroll::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.16); border-radius: 100px; }
.tool-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.28); }

.audit-table { min-width: 540px; }
.audit-row { display: grid; grid-template-columns: 64px 120px 1fr 110px; gap: 12px; }
.audit-head { padding: 0 0 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.audit-head span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.audit-head span.wide { letter-spacing: 0.06em; }
.audit-body .audit-row { align-items: center; height: 38px; border-bottom: 1px solid var(--hairline); }
.audit-body .audit-row span:first-child { font-size: 12px; font-weight: 500; color: var(--ink-60); }
.tool-block > p.note { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--ink-55); margin: 20px 0 0; }

/* 600, not 640: the reading column only offers ~614px, so 640 overflowed by
   26px and parked a permanent scrollbar on desktop for nothing. */
.ledger { min-width: 600px; }
.ledger-row { display: grid; grid-template-columns: 1fr 1.4fr 0.9fr 1.2fr 1.1fr; gap: 14px; }
.ledger-head { padding: 0 0 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.ledger-head span { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; line-height: 1.5; color: var(--ink-75); }
.ledger-head span em { color: var(--ink-40); font-weight: 400; font-style: normal; }
.ledger-body .ledger-row { height: 42px; border-bottom: 1px solid var(--hairline); }

/* --------------------------------------------------------------------------
   Email capture form (four states)
   -------------------------------------------------------------------------- */

.capture-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.capture-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  padding: 14px 22px;
  font-size: 14px;
  font-family: inherit;
  color: var(--white);
  transition: border-color 0.2s;
}
.capture-form input[type="email"]:focus { border-color: rgba(255, 77, 77, 0.5); }
.capture-form button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
}
.spinner {
  width: 12px; height: 12px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-top-color: #000000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
  display: none;
}
.is-busy .spinner { display: block; }
.btn-secondary .spinner { border-color: rgba(255, 255, 255, 0.25); border-top-color: var(--white); }

.form-error { font-size: 13px; font-weight: 400; color: var(--accent); margin: 12px 0 0; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 15px 22px;
  border: 1px solid rgba(255, 77, 77, 0.3);
  border-radius: 100px;
  background: rgba(255, 77, 77, 0.06);
}
.form-success svg { flex-shrink: 0; }
.form-success span { font-size: 14px; font-weight: 400; color: var(--ink-85); line-height: 1.5; }
[hidden] { display: none !important; }

.start-reading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(36px, 5vw, 52px);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-45);
  transition: color 0.2s;
}
.start-reading:hover { color: var(--accent); }
.start-reading .arrow { display: flex; animation: nudge 2s ease-in-out infinite; }

/* Mid-page capture */
.capture-block {
  margin-top: clamp(48px, 7vw, 72px);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: clamp(26px, 3.4vw, 36px);
}
.capture-block h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--white); margin: 0; }
.capture-block p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--ink-55); margin: 10px 0 0; }
.capture-block .capture-form { margin-top: 20px; }
.capture-block .capture-form input[type="email"] { min-width: 200px; padding: 13px 22px; }
.capture-block .capture-form button { padding: 13px 28px; }
.capture-block .form-success { margin-top: 20px; padding: 14px 22px; }

/* End block */
.end-block {
  margin-top: clamp(56px, 8vw, 88px);
  background: linear-gradient(180deg, rgba(255, 77, 77, 0.06) 0%, rgba(12, 12, 18, 0.6) 100%);
  border: 1px solid rgba(255, 77, 77, 0.25);
  border-radius: 24px;
  padding: clamp(30px, 4.4vw, 48px);
  box-shadow: 0 0 60px rgba(255, 77, 77, 0.06);
}
.end-block h2 {
  font-size: clamp(24px, 3.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
}
.end-block > p { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--ink-60); margin: 18px 0 0; }
.end-cta { margin-top: 28px; }
.end-cta .btn-primary { padding: 15px 34px; }
.end-block .or-take { font-size: 14px; font-weight: 400; color: var(--ink-50); margin: 32px 0 0; }
.end-block .capture-form { margin-top: 14px; }
.end-block .capture-form input[type="email"] { min-width: 200px; padding: 13px 22px; }
.end-block .capture-form button { padding: 13px 28px; }
.end-block .form-success { margin-top: 14px; padding: 14px 22px; }

/* Reading-page footer */
.read-footer { border-top: 1px solid var(--border); padding: clamp(36px, 5vw, 52px) var(--pad-x); }
.read-footer .inner { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.read-footer .brand { display: inline-flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.read-footer .brand:hover { color: var(--white); }
.read-footer .brand img { width: 15px; height: 15px; object-fit: contain; align-self: center; }
.read-footer .brand .name { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--white); text-shadow: 0 0 20px rgba(255, 77, 77, 0.2); }
.read-footer .brand .tag { font-size: 13px; font-weight: 300; color: var(--ink-45); }
.read-footer .legal { font-size: 12px; font-weight: 300; line-height: 1.8; color: var(--ink-35); }
.read-footer .legal a { color: var(--ink-45); transition: color 0.2s; }
.read-footer .legal a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   /privacy
   -------------------------------------------------------------------------- */

.privacy-main { padding: clamp(40px, 7vh, 80px) var(--pad-x) clamp(72px, 10vw, 120px); }
.privacy-main .col { max-width: 640px; margin: 0 auto; }
.privacy-main h1 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
}
.privacy-intro { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--ink-60); margin: 24px 0 0; }
.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: clamp(36px, 5vw, 52px);
  border-top: 1px solid var(--border);
  padding-top: clamp(36px, 5vw, 48px);
}
.privacy-list h2 { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; line-height: 1.6; color: var(--white); margin: 0; }
.privacy-list h2.accent { color: var(--accent); text-shadow: 0 0 14px rgba(255, 77, 77, 0.4); }
.privacy-list p { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--ink-55); margin: 10px 0 0; }
.privacy-list p a { color: var(--accent); }
.privacy-date {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-35);
  margin: clamp(36px, 5vw, 48px) 0 0;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* --------------------------------------------------------------------------
   Motion preferences
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb, .orb-final, .start-reading .arrow, .spinner { animation: none !important; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   PORTED FROM OLD SITE (2026-07-18) — scroll reveals · hover density ·
   CTA pulse · hero particles. All motion is gated: html.js (JS present)
   and prefers-reduced-motion. Without JS every element renders visible.
   ========================================================================== */

/* ---- Scroll-reveal system -------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {

  html.js main .h2,
  html.js .problem-close,
  html.js .prose-stack,
  html.js .thesis-trade,
  html.js .thesis-close,
  html.js .results-frame,
  html.js .honia,
  html.js .pricing-note,
  html.js .pricing-cadence,
  html.js .pricing-cta,
  html.js .yt-card,
  html.js .faq-list,
  html.js .final-inner,
  html.js .problem-grid > *,
  html.js .system-grid > *,
  html.js .results-row > *,
  html.js .voice-cards > *,
  html.js .pricing-grid > *,
  html.js .pricing-extras > *,
  html.js .qualify .grid > *,
  html.js .team-grid > *,
  html.js .process-list > *,
  html.js .reel-compare > * {
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  }

  html.js main .h2:not(.is-visible),
  html.js .problem-close:not(.is-visible),
  html.js .prose-stack:not(.is-visible),
  html.js .thesis-trade:not(.is-visible),
  html.js .thesis-close:not(.is-visible),
  html.js .results-frame:not(.is-visible),
  html.js .honia:not(.is-visible),
  html.js .pricing-note:not(.is-visible),
  html.js .pricing-cadence:not(.is-visible),
  html.js .pricing-cta:not(.is-visible),
  html.js .yt-card:not(.is-visible),
  html.js .faq-list:not(.is-visible),
  html.js .final-inner:not(.is-visible),
  html.js .problem-grid:not(.is-visible) > *,
  html.js .system-grid:not(.is-visible) > *,
  html.js .results-row:not(.is-visible) > *,
  html.js .voice-cards:not(.is-visible) > *,
  html.js .pricing-grid:not(.is-visible) > *,
  html.js .pricing-extras:not(.is-visible) > *,
  html.js .qualify .grid:not(.is-visible) > *,
  html.js .team-grid:not(.is-visible) > *,
  html.js .process-list:not(.is-visible) > *,
  html.js .reel-compare:not(.is-visible) > * {
    opacity: 0;
    transform: translateY(22px);
  }

  /* Stagger: children of revealed groups cascade, old-site cadence */
  html.js :is(.problem-grid, .system-grid, .results-row, .voice-cards,
              .pricing-grid, .pricing-extras, .qualify .grid, .team-grid,
              .process-list, .reel-compare) > :nth-child(2) { transition-delay: 0.09s; }
  html.js :is(.problem-grid, .system-grid, .results-row, .voice-cards,
              .pricing-grid, .pricing-extras, .qualify .grid, .team-grid,
              .process-list, .reel-compare) > :nth-child(3) { transition-delay: 0.18s; }
  html.js :is(.system-grid, .pricing-extras, .qualify .grid,
              .process-list) > :nth-child(4) { transition-delay: 0.27s; }
  html.js .process-list > :nth-child(5) { transition-delay: 0.36s; }
}

/* ---- Hover density pass (old-site microinteraction coverage) ---------- */
.card-glass,
.card,
.card-outline {
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease),
              opacity 0.55s var(--ease);
}
.card-glass:hover,
.card:hover,
.card-outline:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.tier-featured:hover {
  border-color: rgba(255, 77, 77, 0.45);
  box-shadow: 0 12px 36px rgba(255, 77, 77, 0.12);
}
.faq-q { transition: color 0.2s; }
.faq-q:hover { color: #fafafa; }
.faq-icon { transition: transform 0.3s var(--ease), color 0.2s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: #FF4D4D; }
.socials a { transition: color 0.25s, transform 0.25s var(--ease); }
.socials a:hover { color: #FF4D4D; transform: translateY(-2px); }
.footer-legal a { transition: color 0.2s; }
.footer-legal a:hover { color: #fafafa; }
.wordmark { transition: opacity 0.2s; }
.wordmark:hover { opacity: 0.8; }
.pullquote blockquote { transition: color 0.3s; }
.honia:hover .pullquote blockquote { color: rgba(250, 250, 250, 0.9); }

/* ---- Primary CTA pulse (old vsl-cta-glow, retargeted) ------------------ */
@media (prefers-reduced-motion: no-preference) {
  @keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 77, 77, 0.15),
                           0 0 40px rgba(255, 77, 77, 0.08),
                           0 4px 12px rgba(0, 0, 0, 0.3); }
    50%      { box-shadow: 0 0 32px rgba(255, 77, 77, 0.3),
                           0 0 64px rgba(255, 77, 77, 0.14),
                           0 4px 12px rgba(0, 0, 0, 0.3); }
  }
  .hero .btn-primary,
  .final .btn-primary { animation: cta-pulse 3.6s ease-in-out infinite; }
  .hero .btn-primary:hover,
  .final .btn-primary:hover { animation: none; }
}

/* ---- Hero particles canvas (old-site port, JS-driven) ------------------ */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
