/* =========================================================
   blog2pod — marketing site
   Aesthetic: editorial dark, true black, green accent.
   Type: Geist (sans), Instrument Serif italic (accent), Geist Mono (UI).
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-elev: #111111;
  --bg-card: #141414;
  --bg-app: #000000;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #fafafa;
  --ink-mid: rgba(250, 250, 250, 0.72);
  --ink-low: rgba(250, 250, 250, 0.5);
  --ink-muted: rgba(250, 250, 250, 0.32);
  --accent: #C4B5F4;
  --accent-soft: rgba(196, 181, 244, 0.12);
  --accent-glow: rgba(196, 181, 244, 0.45);
  --warm: #f5d340;

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "SF Pro Display", sans-serif;
  --font-serif: "Instrument Serif", "Iowan Old Style", "Apple Garamond", serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --content: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -200px, rgba(196,181,244,0.10), transparent 60%),
    radial-gradient(800px 600px at -10% 30%, rgba(196,181,244,0.06), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

::selection { background: var(--accent); color: #000; }

/* =========================================================
   Grain overlay — subtle film noise across the whole site
   ========================================================= */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* =========================================================
   Typography
   ========================================================= */
.display {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(48px, 8.4vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
}
.display em,
.section__title em,
.cta__title em,
.manifesto__text em,
.solo__msg em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 18ch;
}

.section__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-low);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 22px;
}

.section__head {
  padding: 0 var(--gutter);
  max-width: var(--content);
  margin: 0 auto 56px;
}

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(10, 10, 10, 0.65);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand__mark {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 8px 24px -8px var(--accent-glow);
  flex-shrink: 0;
  object-fit: cover;
}
.brand__word { font-size: 16px; }

.nav__links {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
}
.nav__links a { transition: color 0.18s ease; }
.nav__links a:hover { color: var(--ink); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: rgba(255,255,255,0.02);
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.nav__cta:hover {
  background: var(--ink);
  color: #000;
  border-color: var(--ink);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 140px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero__glow--a {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: 8%;
  right: -120px;
}
.hero__glow--b {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(196,181,244,0.28), transparent 70%);
  bottom: -300px;
  left: -200px;
}

/* Hero waveform decoration */
.wave {
  position: absolute;
  bottom: 12%;
  left: 4%;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 60px;
  opacity: 0.45;
}
.wave span {
  display: block;
  width: 3px;
  background: var(--ink);
  border-radius: 3px;
  height: 12px;
  animation: wave 1.6s cubic-bezier(0.4,0,0.6,1) calc(var(--i) * 80ms) infinite;
}
@keyframes wave {
  0%, 100% { height: 12px; }
  50% { height: 56px; }
}
@media (max-width: 900px) { .wave { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .wave span { animation: none; height: 24px; }
}

.hero__inner {
  position: relative;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero__copy { animation: rise 0.9s cubic-bezier(0.16,1,0.3,1) both; }
.hero__copy > * + * { margin-top: 28px; }
.hero__copy > .display + .hero__lede { margin-top: 40px; }
.hero__copy > .hero__cta + .hero__meta { margin-top: 36px; }
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 52ch;
  margin: 0;
  letter-spacing: -0.005em;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.appbadge {
  display: inline-block;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.appbadge:hover { transform: translateY(-2px); filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4)); }
.appbadge img { height: 54px; width: auto; }
.appbadge--lg img { height: 68px; }

.ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-mid);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.ghost:hover { color: var(--ink); border-color: var(--ink); }

.hero__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-low);
  letter-spacing: 0.02em;
}
.hero__meta li { display: inline-flex; gap: 8px; align-items: center; }
.hero__meta span { color: var(--accent); }

/* ===== Phone mockup ===== */
.hero__phone-wrap {
  position: relative;
  display: grid;
  place-items: center;
  animation: rise 1s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}

.phone {
  --phone-w: 320px;
  --phone-h: 660px;
  position: relative;
  width: var(--phone-w);
  height: var(--phone-h);
  border-radius: 52px;
  background: linear-gradient(145deg, #2a2a2a 0%, #0d0d0d 100%);
  padding: 11px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.08),
    inset 0 0 0 4px #1a1a1a,
    0 60px 120px -40px rgba(0,0,0,0.9),
    0 0 0 1px rgba(255,255,255,0.02);
  transform: rotate(-2.5deg);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.phone:hover { transform: rotate(0deg) translateY(-6px); }
.phone__notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 4;
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg-app);
  border-radius: 42px;
  overflow: hidden;
  font-family: -apple-system, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  color: #fff;
  padding: 18px 20px 0;
}
.phone__shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(196,181,244,0.18), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

@media (max-width: 980px) {
  .phone { --phone-w: 280px; --phone-h: 580px; transform: rotate(0); margin-top: 20px; }
}

.screen__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.screen__icons { display: flex; gap: 5px; align-items: center; color: #fff; }

.screen__topbar {
  display: flex;
  justify-content: space-between;
  padding: 4px 0 18px;
}
.screen__pill {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
}

.screen__title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}

.screen__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.ep {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  align-items: flex-start;
}
.ep:last-child { border-bottom: none; }
.ep__art {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.ep__art svg { width: 100%; height: 100%; }
.ep__body { min-width: 0; }
.ep__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
}
.ep__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 11px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
}
.badge--ready {
  background: rgba(196, 181, 244, 0.10);
  color: #C4B5F4;
}
.badge__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #C4B5F4;
}
.badge--voice {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.ep__time {
  margin-left: auto;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
}
.ep__url {
  margin: 0;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Marquee ===== */
.marquee {
  margin-top: clamp(56px, 8vw, 100px);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 8%, transparent 92%, var(--bg) 100%),
    var(--bg);
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  width: max-content;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink-mid);
}
.marquee__track span:nth-child(even) {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 18px;
  color: var(--ink-muted);
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* =========================================================
   How (steps)
   ========================================================= */
.how {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--gutter);
  max-width: var(--content);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  position: relative;
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  border-right: 1px solid var(--line);
}
.step:last-child { border-right: none; }
@media (max-width: 880px) {
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
}
.step__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 60px;
  line-height: 0.85;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.step h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 6px 0 8px;
}
.step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mid);
}

/* =========================================================
   Manifesto
   ========================================================= */
.manifesto {
  padding: clamp(60px, 8vw, 120px) var(--gutter);
}
.manifesto__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}
.manifesto__text {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 24px 0 40px;
}
.manifesto__text em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
}

.manifesto__sigs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
@media (max-width: 760px) {
  .manifesto__sigs { grid-template-columns: 1fr; gap: 18px; }
}
.sig {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.sig:last-child { border-right: none; }
@media (max-width: 760px) { .sig { border-right: none; } }
.sig__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-low);
}
.sig__value {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* =========================================================
   Features
   ========================================================= */
.features {
  padding: clamp(60px, 8vw, 120px) 0;
}
.features__grid {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 980px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features__grid { grid-template-columns: 1fr; } }

.feat {
  padding: 36px 32px;
  background: var(--bg);
  position: relative;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feat:hover { background: var(--bg-elev); }
.feat--lg {
  grid-column: span 2;
  grid-row: span 1;
}
@media (max-width: 980px) { .feat--lg { grid-column: span 2; } }
@media (max-width: 600px) { .feat--lg { grid-column: span 1; } }

.feat__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(196, 181, 244, 0.06);
  color: var(--accent);
  border: 1px solid rgba(196,181,244,0.2);
}
.feat h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.feat p {
  margin: 0;
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.55;
  max-width: 38ch;
}

.feat__visual--chapters {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
}
.ch {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  color: var(--ink-mid);
}
.ch span {
  color: var(--ink-low);
  font-weight: 500;
}
.ch--active {
  background: rgba(196,181,244,0.06);
  border-color: rgba(196,181,244,0.25);
  color: var(--ink);
}
.ch--active span { color: var(--accent); }

/* =========================================================
   Voices
   ========================================================= */
.voices {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.voices__grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .voices__grid { grid-template-columns: 1fr; } }

.voices__copy .section__title { margin-top: 0; }
.voices__lede {
  margin-top: 22px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 44ch;
}
.disclaimer {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-low);
  text-transform: uppercase;
}

.voicelist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.voice {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 6px 18px;
  align-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.voice:hover {
  border-color: var(--line-strong);
  transform: translateX(4px);
}
.voice__top {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.voice__name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.voice__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(196,181,244,0.25);
}
.voice__tag--alt {
  background: rgba(255,255,255,0.04);
  color: var(--ink-mid);
  border-color: var(--line);
}
.voice__desc {
  grid-column: 1;
  margin: 0;
  font-size: 13px;
  color: var(--ink-low);
}
.voice__bars {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}
.voice__bars span {
  display: block;
  width: 3px;
  background: var(--ink-mid);
  border-radius: 2px;
}
.voice__bars span:nth-child(1) { height: 30%; }
.voice__bars span:nth-child(2) { height: 60%; }
.voice__bars span:nth-child(3) { height: 90%; }
.voice__bars span:nth-child(4) { height: 50%; }
.voice__bars span:nth-child(5) { height: 75%; }
.voice__bars span:nth-child(6) { height: 40%; }
.voice__bars span:nth-child(7) { height: 85%; }
.voice__bars span:nth-child(8) { height: 55%; }
.voice__bars span:nth-child(9) { height: 70%; }
.voice__bars span:nth-child(10) { height: 35%; }
.voice:hover .voice__bars span { background: var(--accent); }

/* =========================================================
   Privacy
   ========================================================= */
.privacy {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: linear-gradient(180deg, var(--bg) 0%, #060606 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.privacy__inner {
  max-width: var(--content);
  margin: 0 auto;
}
.privacy .section__title { margin-bottom: 56px; }

.privacy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 720px) { .privacy__grid { grid-template-columns: 1fr; } }

.priv {
  background: var(--bg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.priv h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.priv h4::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.priv p {
  margin: 0;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.55;
}

/* =========================================================
   Solo dev
   ========================================================= */
.solo {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
}
.solo__card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 80% 0%, rgba(196,181,244,0.12), transparent 50%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.solo__sig {
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}
.solo__msg {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.solo__msg em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
}
.solo__attr {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-low);
}

/* =========================================================
   Final CTA
   ========================================================= */
.cta {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,181,244,0.22), transparent 60%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}
.cta__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}
.cta__sub {
  font-size: 17px;
  color: var(--ink-mid);
  margin: 0 0 36px;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px var(--gutter) 32px;
  background: #060606;
}
.footer__top {
  max-width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.footer__links {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-low);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.footer__links a:hover { color: var(--ink); }
.footer__legal {
  max-width: var(--content);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Stagger feature reveal */
.features__grid .reveal:nth-child(1) { transition-delay: 0ms; }
.features__grid .reveal:nth-child(2) { transition-delay: 60ms; }
.features__grid .reveal:nth-child(3) { transition-delay: 120ms; }
.features__grid .reveal:nth-child(4) { transition-delay: 180ms; }
.features__grid .reveal:nth-child(5) { transition-delay: 240ms; }
.features__grid .reveal:nth-child(6) { transition-delay: 300ms; }

.steps .reveal:nth-child(1) { transition-delay: 0ms; }
.steps .reveal:nth-child(2) { transition-delay: 100ms; }
.steps .reveal:nth-child(3) { transition-delay: 200ms; }

.privacy__grid .reveal:nth-child(1) { transition-delay: 0ms; }
.privacy__grid .reveal:nth-child(2) { transition-delay: 80ms; }
.privacy__grid .reveal:nth-child(3) { transition-delay: 160ms; }
.privacy__grid .reveal:nth-child(4) { transition-delay: 240ms; }

.voicelist .reveal:nth-child(1) { transition-delay: 0ms; }
.voicelist .reveal:nth-child(2) { transition-delay: 80ms; }
.voicelist .reveal:nth-child(3) { transition-delay: 160ms; }
.voicelist .reveal:nth-child(4) { transition-delay: 240ms; }
