/* ============================================
   MIMIC — mimicparenting.com
   Editorial / literary aesthetic
   Warm amber on near-black
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600&family=Caveat:wght@500&display=swap');

:root {
  --bg: #0d0a08;
  --bg-elevated: #14100d;
  --bg-card: #1a1411;
  --ink: #f4ebe0;
  --ink-dim: #a89a8b;
  --ink-faint: #6b6055;
  --amber: #e3c891;
  --amber-bright: #f0d8a8;
  --amber-deep: #b89758;
  --amber-soft: #e8c89a;
  --line: #2a221a;
  --line-bright: #3d3225;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --hand: 'Caveat', cursive;

  --max: 1200px;
  --measure: 640px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* Typography */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); letter-spacing: -0.015em; }
p { max-width: var(--measure); }
em { font-family: var(--serif); font-style: italic; color: var(--amber); font-weight: 400; }
a { color: var(--amber); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--amber-bright); }

/* Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
section { position: relative; z-index: 2; }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; background: rgba(13, 10, 8, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-brand { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; letter-spacing: 0.02em; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.nav-brand:hover { color: var(--ink); }
.nav-brand-icon { width: 36px; height: 36px; object-fit: contain; display: inline-block; transition: transform 0.3s ease; }
.nav-brand:hover .nav-brand-icon { transform: scale(1.05); }
.nav-links { display: flex; gap: 32px; align-items: center; font-family: var(--sans); font-size: 0.92rem; }
.nav-links a { color: var(--ink-dim); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { padding: 8px 18px; border: 1px solid var(--amber); border-radius: 999px; color: var(--amber) !important; font-weight: 500; transition: all 0.2s ease; }
.nav-cta:hover { background: var(--amber); color: var(--bg) !important; }
@media (max-width: 720px) { .nav-links { gap: 18px; } .nav-links .nav-link-hide { display: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; font-family: var(--sans); font-size: 1rem; font-weight: 500; border: none; border-radius: 999px; cursor: pointer; transition: all 0.25s cubic-bezier(0.2, 0.7, 0.3, 1); text-decoration: none; }
.btn-primary { background: var(--amber); color: var(--bg); }
.btn-primary:hover { background: var(--amber-bright); color: var(--bg); transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(227, 200, 145, 0.5); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-bright); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- HERO ---------- */
.hero { padding: 160px 0 80px; position: relative; text-align: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); width: 80vw; height: 80vw; max-width: 900px; max-height: 900px; background: radial-gradient(circle, rgba(227, 200, 145, 0.12) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.hero-icon { display: block; width: 96px; height: 96px; object-fit: contain; margin: 0 auto 48px; opacity: 0; animation: fade-in 1.2s ease-out 0.1s forwards; }
.hero-overline { font-family: var(--sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber); margin-bottom: 32px; opacity: 0; animation: fade-up 0.9s ease-out 0.3s forwards; }
.hero h1 { margin: 0 auto 32px; max-width: 880px; }
.hero h1 .word { display: inline-block; opacity: 0; transform: translateY(20px); animation: word-rise 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; }
.hero h1 em { display: block; font-style: italic; color: var(--amber); }
.hero-sub { font-size: 1.2rem; color: var(--ink-dim); margin: 0 auto 32px; max-width: 580px; line-height: 1.55; opacity: 0; animation: fade-up 0.9s ease-out 1.4s forwards; }

.waitlist-counter { display: inline-flex; align-items: center; gap: 10px; margin: 0 auto 28px; padding: 8px 18px; background: rgba(227, 200, 145, 0.08); border: 1px solid rgba(227, 200, 145, 0.25); border-radius: 999px; font-size: 0.85rem; color: var(--ink); opacity: 0; animation: fade-up 0.9s ease-out 1.5s forwards; }
.waitlist-counter::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 12px var(--amber); animation: pulse 2s ease-in-out infinite; }
.counter-num { font-family: var(--serif); font-weight: 500; color: var(--amber); font-variant-numeric: tabular-nums; }

.hero-form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; opacity: 0; animation: fade-up 0.9s ease-out 1.7s forwards; }
.hero-form input { flex: 1; min-width: 240px; padding: 16px 22px; background: var(--bg-elevated); border: 1px solid var(--line-bright); border-radius: 999px; color: var(--ink); font-family: var(--sans); font-size: 1rem; outline: none; transition: border-color 0.2s ease; }
.hero-form input::placeholder { color: var(--ink-faint); }
.hero-form input:focus { border-color: var(--amber); }
.hero-microcopy { margin-top: 20px; font-size: 0.85rem; color: var(--ink-faint); opacity: 0; animation: fade-up 0.9s ease-out 1.9s forwards; }

/* Hero phones */
.hero-product { margin-top: 96px; opacity: 0; animation: fade-up 1.2s ease-out 2.2s forwards; }
.hero-phones { display: flex; justify-content: center; align-items: flex-end; gap: 24px; flex-wrap: wrap; perspective: 1200px; }
.hero-phones .phone-frame { flex-shrink: 0; }
.hero-phones .phone-frame:nth-child(1) { transform: rotate(-3deg) translateY(20px); }
.hero-phones .phone-frame:nth-child(2) { transform: rotate(0deg) translateY(-30px); z-index: 2; }
.hero-phones .phone-frame:nth-child(3) { transform: rotate(3deg) translateY(20px); }
@media (max-width: 900px) {
  .hero-phones .phone-frame:nth-child(1), .hero-phones .phone-frame:nth-child(3) { display: none; }
  .hero-phones .phone-frame:nth-child(2) { transform: none; }
}

/* ---------- PHONE FRAME ---------- */
.phone-frame { width: 280px; height: 580px; position: relative; background: #000; border-radius: 42px; padding: 8px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset; }
.phone-screen { width: 100%; height: 100%; border-radius: 34px; background: linear-gradient(180deg, #0a0e1a 0%, #1a1d2e 100%); overflow: hidden; position: relative; padding: 32px 20px 16px; display: flex; flex-direction: column; }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: #000; border-radius: 0 0 16px 16px; z-index: 5; }

/* Phone-screen mockup elements */
.mock-overline { font-family: var(--sans); font-size: 7px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244, 235, 224, 0.4); margin-bottom: 8px; }
.mock-overline.amber { color: rgba(227, 200, 145, 0.7); }
.mock-h { font-family: var(--serif); font-weight: 300; color: #f4ebe0; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 8px; }
.mock-h.lg { font-size: 16px; }
.mock-h.xl { font-size: 20px; }
.mock-h em { color: #e8c89a; font-style: italic; }
.mock-body { font-family: var(--sans); font-size: 9px; line-height: 1.5; color: rgba(244, 235, 224, 0.7); }
.mock-card { background: linear-gradient(135deg, rgba(232, 200, 154, 0.08), rgba(232, 200, 154, 0.02)); border: 1px solid rgba(232, 200, 154, 0.15); border-radius: 14px; padding: 12px; margin-bottom: 8px; }
.mock-eye { width: 36px; height: 36px; border: 1px solid rgba(232, 200, 154, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.mock-eye-inner { width: 22px; height: 22px; border: 1px solid rgba(232, 200, 154, 0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mock-eye-inner::after { content: ""; width: 8px; height: 8px; background: #e8c89a; border-radius: 50%; }
.mock-progress { display: flex; gap: 4px; margin-bottom: 16px; }
.mock-progress-bar { flex: 1; height: 2px; background: rgba(244, 235, 224, 0.1); border-radius: 999px; }
.mock-progress-bar.active { background: rgba(232, 200, 154, 0.6); }
.mock-btn { background: #f4ebe0; color: #1a1d2e; font-size: 9px; font-weight: 500; padding: 9px 12px; border-radius: 14px; text-align: center; margin-top: auto; }
.mock-btn.ghost { background: transparent; color: rgba(244, 235, 224, 0.6); border: 1px solid rgba(244, 235, 224, 0.15); }
.mock-pill { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; background: rgba(232, 200, 154, 0.1); border: 1px solid rgba(232, 200, 154, 0.2); border-radius: 999px; font-size: 7px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(232, 200, 154, 0.8); }
.mock-row { display: flex; align-items: center; gap: 8px; padding: 8px; background: rgba(244, 235, 224, 0.04); border: 1px solid rgba(244, 235, 224, 0.08); border-radius: 12px; margin-bottom: 6px; }
.mock-circle { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(232, 200, 154, 0.4); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.mock-circle.checked { background: #e8c89a; border-color: #e8c89a; }
.mock-circle.checked::after { content: "✓"; color: #1a1d2e; font-size: 11px; font-weight: bold; }
.mock-row-label { flex: 1; font-family: var(--sans); font-size: 9px; color: #f4ebe0; }
.mock-row-sub { font-size: 7px; color: rgba(244, 235, 224, 0.4); font-style: italic; }
.mock-counter { text-align: center; margin: 16px 0; }
.mock-counter-num { font-family: var(--serif); font-weight: 300; font-size: 44px; color: #f4ebe0; line-height: 1; }
.mock-counter-label { font-size: 7px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(232, 200, 154, 0.6); margin-top: 4px; }

.mock-photo { aspect-ratio: 3 / 4; border-radius: 16px; background: radial-gradient(circle at 50% 35%, rgba(251, 191, 36, 0.2) 0%, rgba(120, 113, 108, 0.4) 40%, rgba(28, 25, 23, 0.95) 100%); position: relative; overflow: hidden; margin-bottom: 12px; }
.mock-photo::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to top, rgba(28, 25, 23, 0.7), transparent); }
.mock-photo-figure { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0.4; }
.mock-photo-figure-head { width: 40px; height: 40px; background: rgba(232, 200, 154, 0.25); border-radius: 50%; margin-bottom: 2px; }
.mock-photo-figure-body { width: 32px; height: 40px; background: rgba(232, 200, 154, 0.25); border-radius: 16px 16px 0 0; }

/* ---------- GUT-PUNCH ---------- */
.gut-punch { padding: 140px 0; border-top: 1px solid var(--line); }
.gut-punch-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.gut-punch-overline { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 32px; }
.gut-punch h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15; margin-bottom: 36px; }
.gut-punch h2 em { display: block; margin-top: 8px; }
.gut-punch p { color: var(--ink-dim); font-size: 1.15rem; line-height: 1.65; max-width: 560px; margin: 0 auto 24px; }
.gut-punch-stat { display: flex; justify-content: center; align-items: baseline; gap: 16px; margin-top: 60px; padding-top: 60px; border-top: 1px solid var(--line); }
.gut-punch-stat .num { font-family: var(--serif); font-size: clamp(3rem, 8vw, 5rem); color: var(--amber); font-variant-numeric: tabular-nums; line-height: 1; }
.gut-punch-stat .label { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink-dim); text-align: left; max-width: 240px; }

/* ---------- THESIS ---------- */
.thesis { padding: 140px 0; border-top: 1px solid var(--line); }
.thesis-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.25; color: var(--ink); max-width: 880px; margin: 0 auto; text-align: center; letter-spacing: -0.015em; }
.thesis-quote .accent { color: var(--amber); font-style: italic; }
.thesis-attribution { text-align: center; margin-top: 40px; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- PILLARS ---------- */
.pillars { padding: 140px 0; border-top: 1px solid var(--line); }
.section-overline { font-family: var(--sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber); margin-bottom: 24px; }
.section-title { margin-bottom: 24px; max-width: 640px; }
.section-title em { display: block; }
.section-intro { color: var(--ink-dim); font-size: 1.1rem; max-width: 580px; margin-bottom: 80px; }
.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 800px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: 4px; padding: 48px 40px; transition: border-color 0.4s ease, transform 0.4s ease; }
.pillar:hover { border-color: var(--line-bright); transform: translateY(-4px); }
.pillar-num { font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--amber); margin-bottom: 32px; letter-spacing: 0.05em; }
.pillar-title { margin-bottom: 16px; }
.pillar-title em { font-style: italic; }
.pillar-desc { color: var(--ink-dim); margin-bottom: 32px; font-size: 1.02rem; }
.pillar-tiers { list-style: none; padding: 0; border-top: 1px solid var(--line); padding-top: 24px; }
.pillar-tiers li { display: flex; gap: 14px; align-items: baseline; margin-bottom: 12px; font-size: 0.95rem; color: var(--ink-dim); }
.pillar-tiers li:last-child { margin-bottom: 0; }
.pillar-tiers .tier-label { font-family: var(--serif); font-style: italic; color: var(--amber); flex-shrink: 0; min-width: 90px; }

/* ---------- DAILY FLOW (with phone screens) ---------- */
.flow { padding: 140px 0; border-top: 1px solid var(--line); background: var(--bg-elevated); }
.flow-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 80px; align-items: end; }
@media (max-width: 1000px) { .flow-showcase { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .flow-showcase { grid-template-columns: 1fr; gap: 48px; } }
.flow-card { text-align: left; }
.flow-card .phone-frame { width: 100%; max-width: 240px; height: auto; aspect-ratio: 280 / 580; margin: 0 auto 24px; }
.flow-card .phone-screen { padding: 28px 16px 14px; }
.flow-step-num { font-family: var(--serif); font-style: italic; font-size: 0.85rem; color: var(--amber); margin-bottom: 8px; letter-spacing: 0.05em; }
.flow-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.flow-card p { color: var(--ink-dim); font-size: 0.95rem; }
.flow-time { display: block; text-align: center; margin-top: 60px; font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--amber); }

/* ---------- ANTI-PATTERNS ---------- */
.anti { padding: 140px 0; border-top: 1px solid var(--line); }
.anti-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
@media (max-width: 800px) { .anti-grid { grid-template-columns: 1fr; gap: 40px; } }
.anti-col h3 { font-family: var(--sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 32px; }
.anti-col.no h3 { color: var(--ink-faint); }
.anti-col.yes h3 { color: var(--amber); }
.anti-col ul { list-style: none; padding: 0; }
.anti-col li { font-family: var(--serif); font-size: 1.25rem; line-height: 1.4; padding: 16px 0; border-bottom: 1px solid var(--line); }
.anti-col.no li { color: var(--ink-faint); text-decoration: line-through; text-decoration-color: var(--line-bright); }
.anti-col.yes li { color: var(--ink); font-style: italic; }

/* ---------- PRICING (editorial) ---------- */
.pricing { padding: 140px 0; border-top: 1px solid var(--line); background: var(--bg-elevated); }
.pricing-editorial { max-width: 720px; margin: 0 auto; text-align: center; }
.pricing-statement { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.4; color: var(--ink); margin-bottom: 48px; letter-spacing: -0.01em; }
.pricing-statement .price { color: var(--amber); font-style: italic; font-weight: 500; white-space: nowrap; }
.pricing-meta { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin: 60px 0 40px; padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-meta-item { font-family: var(--sans); font-size: 0.9rem; color: var(--ink-dim); }
.pricing-meta-item strong { font-family: var(--serif); font-style: italic; color: var(--amber); font-weight: 500; }
.pricing-fineprint { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink-dim); max-width: 520px; margin: 0 auto; }
.pricing-anchor { max-width: 540px; margin: 0 auto 24px; padding: 28px 32px; background: rgba(227, 200, 145, 0.06); border: 1px solid rgba(227, 200, 145, 0.25); border-radius: 4px; text-align: center; }
.pricing-anchor-line { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 14px; line-height: 1.3; }
.pricing-anchor-line .strike { color: var(--ink-faint); text-decoration: line-through; text-decoration-color: var(--ink-faint); font-weight: 400; }
.pricing-anchor-line .anchor-now { color: var(--amber); font-style: italic; font-weight: 500; }
.pricing-anchor-note { font-family: var(--sans); font-size: 0.92rem; color: var(--ink-dim); line-height: 1.55; max-width: 100%; margin: 0 0 14px; }
.pricing-anchor-note strong { color: var(--ink); }
.pricing-anchor-tag { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--ink); margin: 0; max-width: 100%; }

/* ---------- FAQ ---------- */
.faq { padding: 140px 0; border-top: 1px solid var(--line); }
.faq-list { margin-top: 60px; max-width: 760px; }
.faq-item { border-top: 1px solid var(--line); padding: 28px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; font-family: var(--serif); font-size: 1.6rem; color: var(--amber); font-weight: 300; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a { margin-top: 16px; color: var(--ink-dim); font-size: 1rem; line-height: 1.65; max-width: 100%; }

/* ---------- FOUNDER NOTE ---------- */
.founder { padding: 140px 0; border-top: 1px solid var(--line); }
.founder-inner { max-width: 680px; margin: 0 auto; }
.founder-card { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: 4px; padding: 60px 50px; }
@media (max-width: 600px) { .founder-card { padding: 40px 28px; } }
.founder-overline { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 24px; }
.founder-text { font-family: var(--serif); font-size: 1.15rem; line-height: 1.65; color: var(--ink); }
.founder-text p { margin-bottom: 18px; max-width: 100%; }
.founder-sig { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.founder-sig-name { font-family: var(--hand); font-size: 2.4rem; color: var(--amber); line-height: 1; margin-bottom: 8px; display: block; }
.founder-sig-meta { font-size: 0.85rem; color: var(--ink-faint); font-family: var(--sans); display: block; margin-bottom: 6px; }
.founder-sig-email { font-size: 0.9rem; color: var(--amber); font-family: var(--sans); display: inline-block; border-bottom: 1px solid transparent; transition: border-color 0.2s ease; }
.founder-sig-email:hover { border-bottom-color: var(--amber); color: var(--amber-bright); }

/* ---------- FINAL CTA ---------- */
.final-cta { padding: 180px 0; border-top: 1px solid var(--line); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%); width: 100vw; height: 100vw; max-width: 1200px; max-height: 1200px; background: radial-gradient(circle, rgba(227, 200, 145, 0.1) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { margin: 0 auto 32px; max-width: 760px; }
.final-cta h2 em { display: block; }
.final-cta-sub { color: var(--ink-dim); font-size: 1.15rem; max-width: 520px; margin: 0 auto 48px; }

/* ---------- THANKS / REFERRAL STATE ---------- */
.thanks-state { display: none; max-width: 540px; margin: 0 auto; text-align: center; padding: 32px; background: var(--bg-elevated); border: 1px solid var(--amber); border-radius: 8px; animation: thanks-rise 0.6s cubic-bezier(0.2, 0.7, 0.3, 1); }
.thanks-state.visible { display: block; }
.thanks-state .check { width: 48px; height: 48px; border-radius: 50%; background: var(--amber); color: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: bold; margin: 0 auto 24px; }
.thanks-state h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 12px; color: var(--ink); }
.thanks-state h3 em { display: inline; color: var(--amber); }
.thanks-state .pos { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--amber); margin-bottom: 20px; }
.thanks-state .pos .num { font-weight: 500; font-variant-numeric: tabular-nums; }
.thanks-state p { color: var(--ink-dim); font-size: 0.95rem; margin: 0 auto 20px; }
.thanks-share { display: flex; gap: 8px; margin-top: 16px; }
.thanks-share-link { flex: 1; padding: 12px 14px; background: var(--bg); border: 1px solid var(--line-bright); border-radius: 999px; font-family: var(--sans); font-size: 0.85rem; color: var(--ink-dim); text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.thanks-copy-btn { padding: 12px 20px; background: var(--amber); color: var(--bg); border: none; border-radius: 999px; font-family: var(--sans); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: background 0.2s ease; }
.thanks-copy-btn:hover { background: var(--amber-bright); }

/* ---------- FOOTER ---------- */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--line); background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin-bottom: 12px; }
.footer-brand-img { display: block; height: 40px; width: auto; margin-bottom: 12px; opacity: 0.85; }
.footer-brand-img-small { height: 28px; margin-bottom: 24px; opacity: 0.65; }
.footer-tag { color: var(--ink-faint); font-family: var(--serif); font-style: italic; font-size: 0.95rem; }
.footer h4 { font-family: var(--sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 20px; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: var(--ink-dim); font-size: 0.95rem; }
.footer ul a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; color: var(--ink-faint); }
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--ink-dim); }

/* ---------- LEGAL PAGE ---------- */
.legal-page { padding: 140px 0 100px; }
.legal-header { border-bottom: 1px solid var(--line); padding-bottom: 32px; margin-bottom: 60px; }
.legal-header h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); margin-bottom: 12px; }
.legal-meta { color: var(--ink-faint); font-size: 0.9rem; font-family: var(--sans); }
.legal-content { max-width: 760px; font-size: 1rem; line-height: 1.7; color: var(--ink); }
.legal-content h2 { font-size: 1.6rem; margin: 48px 0 16px; letter-spacing: -0.01em; }
.legal-content h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 600; margin: 32px 0 12px; color: var(--ink); letter-spacing: 0; }
.legal-content p { margin-bottom: 16px; color: var(--ink-dim); max-width: 100%; }
.legal-content ul, .legal-content ol { margin: 16px 0 16px 24px; color: var(--ink-dim); }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--ink); font-weight: 500; }
.legal-content a { border-bottom: 1px solid var(--amber-deep); }

/* ---------- MANIFESTO ---------- */
.manifesto { padding: 140px 0 100px; }
.manifesto-inner { max-width: 680px; margin: 0 auto; }
.manifesto-eyebrow { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber); margin-bottom: 24px; text-align: center; }
.manifesto-title { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; margin-bottom: 16px; line-height: 1.05; letter-spacing: -0.025em; }
.manifesto-title em { display: block; color: var(--amber); }
.manifesto-deck { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink-dim); text-align: center; margin: 0 auto 80px; max-width: 540px; }
.manifesto-body { font-family: var(--serif); font-size: 1.2rem; line-height: 1.7; color: var(--ink); }
.manifesto-body p { margin-bottom: 28px; max-width: 100%; }
.manifesto-body p:first-of-type::first-letter { font-family: var(--serif); font-size: 4.2rem; font-weight: 400; float: left; line-height: 0.85; margin: 8px 12px 0 0; color: var(--amber); }
.manifesto-body em { color: var(--amber); }
.manifesto-pullquote { margin: 60px 0; padding: 0 0 0 32px; border-left: 2px solid var(--amber); font-family: var(--serif); font-style: italic; font-size: 1.6rem; line-height: 1.4; color: var(--ink); }
.manifesto-section-break { display: flex; align-items: center; justify-content: center; margin: 80px 0; gap: 12px; }
.manifesto-section-break::before, .manifesto-section-break::after { content: ""; flex: 1; height: 1px; background: var(--line); max-width: 80px; }
.manifesto-section-break-symbol { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.manifesto-h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; letter-spacing: -0.015em; color: var(--ink); margin: 60px 0 24px; }
.manifesto-cta { margin-top: 80px; padding-top: 60px; border-top: 1px solid var(--line); text-align: center; }
.manifesto-cta p { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink-dim); margin: 0 auto 24px; }

/* ---------- FORM STATES ---------- */
.form-status { margin-top: 16px; font-size: 0.92rem; font-family: var(--serif); font-style: italic; color: var(--amber); min-height: 24px; }
.form-status.error { color: var(--amber-bright); }

/* ---------- ANIMATIONS ---------- */
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes word-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.2); } }
@keyframes thanks-rise { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes pupil-look { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(-2px, 1px); } 50% { transform: translate(0, -1px); } 75% { transform: translate(2px, 1px); } }
.eye-pupil { animation: pupil-look 6s ease-in-out infinite; transform-origin: center; }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(0.2, 0.7, 0.3, 1), transform 1s cubic-bezier(0.2, 0.7, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

::selection { background: var(--amber); color: var(--bg); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line-bright); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber-deep); }
