/* ── tokens ───────────────────────────────────────────────────────── */
:root {
  --ivory:      #E4ECF3;
  --bg-surface: #EFF5FA;
  --midnight:   #2A1530;
  --ink:        #1A1623;
  --ink-2:      #3C3444;
  --ink-3:      #6E6478;
  --ink-4:      #A79DAF;
  --petal:      #FBD4DC;
  --coral:      #FF5A3C;
  --coral-deep: #D93B20;
  --peach:      #FFD4A8;
  --rose:       #EFA7B5;
  --lilac:      #DFD0F2;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, sans-serif;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  --border-hair: rgba(26,22,35,0.08);
  --border-soft: rgba(26,22,35,0.14);
}

/* ── reset ──────────────────────────────────────────────────────────*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--midnight); color: var(--petal); }

/* ── layout ─────────────────────────────────────────────────────────*/
.wrap       { width: min(1160px, calc(100% - 80px)); margin: 0 auto; }
.wrap-tight { width: min(780px,  calc(100% - 80px)); margin: 0 auto; }

/* ── grain ──────────────────────────────────────────────────────────*/
.grain { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.4; 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.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── nav ────────────────────────────────────────────────────────────*/
.nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  width: min(1200px, calc(100% - 40px));
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  transition: background 320ms ease, border-color 320ms ease, backdrop-filter 320ms ease;
}
.nav.scrolled {
  background: rgba(239,245,250,0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-color: rgba(26,22,35,0.07);
}
.nav .brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-style: italic;
  font-size: 24px; color: var(--midnight); letter-spacing: -0.01em;
}
.nav .brand svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── hero ───────────────────────────────────────────────────────────*/
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero .blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero .b1 {
  position: absolute; width: 900px; height: 900px;
  left: -220px; top: -200px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFB897 0%, #FF9FB8 35%, #EFA7B5 60%, transparent 75%);
  filter: blur(60px);
}
.hero .b2 {
  position: absolute; width: 700px; height: 700px;
  right: -120px; top: 100px; opacity: 0.65; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #FFC24A 0%, #FFB897 35%, transparent 70%);
  filter: blur(60px);
}
.hero .b3 {
  position: absolute; width: 640px; height: 640px;
  left: 35%; bottom: -200px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #DFD0F2 0%, #C9D4F2 40%, transparent 75%);
  filter: blur(60px);
}
.hero-inner {
  position: relative; z-index: 2;
  width: min(900px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 32px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,90,60,0.4); }
  70%  { box-shadow: 0 0 0 10px rgba(255,90,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,60,0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--midnight);
  margin-bottom: 40px;
  text-transform: lowercase;
}
.hero h1 em { font-style: italic; color: var(--coral-deep); }
.hero-lede {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 52px;
}

/* ── waitlist form ──────────────────────────────────────────────────*/
.form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-hair);
  border-radius: var(--r-xl);
  padding: 44px 48px;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(60,52,68,0.09), 0 2px 6px rgba(60,52,68,0.05);
  text-align: left;
}
.form-card .form-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400; font-style: italic;
  color: var(--midnight); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.form-card .form-sub {
  font-size: 13.5px; color: var(--ink-3);
  line-height: 1.55; margin-bottom: 28px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 7px; font-weight: 500;
}
.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 15px;
  color: var(--ink); background: white;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.form-group input:focus {
  border-color: var(--midnight);
  box-shadow: 0 0 0 3px rgba(42,21,48,0.08);
}
.form-group input::placeholder { color: var(--ink-4); }

/* ── RGPD opt-in ────────────────────────────────────────────────────*/
.rgpd-row {
  display: flex; align-items: flex-start; gap: 11px;
  margin: 20px 0 26px;
}
.rgpd-row input[type="checkbox"] {
  width: 17px; height: 17px; flex-shrink: 0;
  margin-top: 2px; accent-color: var(--midnight);
  cursor: pointer;
}
.rgpd-row label {
  font-size: 12.5px; color: var(--ink-3); line-height: 1.5;
  cursor: pointer;
}
.rgpd-row label a {
  color: var(--midnight);
  border-bottom: 1px solid rgba(42,21,48,0.3);
  transition: border-color 140ms ease;
}
.rgpd-row label a:hover { border-color: var(--midnight); }

.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px 24px;
  background: var(--midnight); color: var(--petal);
  border: none; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(42,21,48,0.18);
  transition: transform 200ms cubic-bezier(0.22,1,0.36,1), box-shadow 200ms cubic-bezier(0.22,1,0.36,1), opacity 160ms ease;
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(42,21,48,0.24);
}
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-submit svg { width: 16px; height: 16px; }

.form-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--ink-4);
  margin-top: 14px; justify-content: center;
  text-align: center;
}
.form-note svg { width: 12px; height: 12px; flex-shrink: 0; opacity: 0.7; }

/* ── success state ──────────────────────────────────────────────────*/
.success-state { display: none; text-align: center; padding: 16px 0; }
.success-state .check-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(217,59,32,0.10);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-state .check-circle svg { width: 24px; height: 24px; color: var(--coral-deep); }
.success-state h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 22px; color: var(--midnight); margin-bottom: 10px;
}
.success-state p { font-size: 14px; color: var(--ink-3); line-height: 1.55; }

/* ── form error ─────────────────────────────────────────────────────*/
.form-error {
  display: none;
  font-size: 12.5px; color: #c0392b;
  margin-top: 10px; text-align: center;
}

/* ── manifesto ──────────────────────────────────────────────────────*/
.manifesto { padding: 140px 0; text-align: center; }
.manifesto .eyebrow {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 32px;
}
.manifesto blockquote {
  font-family: var(--font-display);
  font-weight: 300; font-style: italic;
  font-size: clamp(28px, 4vw, 60px);
  line-height: 1.12; letter-spacing: -0.015em;
  color: var(--midnight);
  max-width: 820px; margin: 0 auto;
  text-wrap: balance;
}
.manifesto blockquote em { font-style: normal; color: var(--coral-deep); }

/* ── final CTA ──────────────────────────────────────────────────────*/
.final {
  padding: 140px 0;
  position: relative; overflow: hidden; isolation: isolate;
  text-align: center;
}
.final .fb1 {
  position: absolute; width: 900px; height: 900px;
  left: -8%; top: -18%; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #FF9FB8 0%, #FFB897 35%, transparent 70%);
  filter: blur(60px); z-index: -1;
}
.final .fb2 {
  position: absolute; width: 760px; height: 760px;
  right: -12%; bottom: -22%; opacity: 0.9; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #DFD0F2 0%, #FFC24A 60%, transparent 80%);
  filter: blur(70px); z-index: -1;
}
.final .eyebrow {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 28px;
}
.final h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.96; letter-spacing: -0.022em;
  color: var(--midnight); margin-bottom: 40px;
  text-transform: lowercase;
}
.final h2 em { font-style: italic; }
.final-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--midnight); color: var(--petal);
  padding: 20px 40px; border-radius: var(--r-pill);
  font-size: 16px; font-weight: 500;
  box-shadow: 0 12px 36px rgba(42,21,48,0.20);
  transition: transform 200ms cubic-bezier(0.22,1,0.36,1), box-shadow 200ms cubic-bezier(0.22,1,0.36,1);
  cursor: pointer; border: none;
}
.final-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(42,21,48,0.26);
}
.final-cta svg { width: 16px; height: 16px; }
.final-micro {
  margin-top: 18px;
  font-size: 14px; color: var(--ink-3);
  font-family: var(--font-display); font-style: italic;
}

/* ── footer ─────────────────────────────────────────────────────────*/
.footer {
  background: var(--midnight);
  color: var(--petal);
  padding: 72px 0 40px;
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251,212,220,0.12);
  flex-wrap: wrap;
}
.footer-brand .logo {
  font-family: var(--font-display); font-style: italic;
  font-size: 36px; color: var(--petal);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-brand .logo svg { width: 24px; height: 24px; }
.footer-brand p {
  font-size: 14px; line-height: 1.6;
  color: rgba(251,212,220,0.65); max-width: 280px;
}
.footer-brand p em { font-style: italic; color: var(--petal); }
.footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(251,212,220,0.45); font-weight: 500;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 13.5px; color: rgba(251,212,220,0.75);
  transition: color 140ms ease;
}
.footer-col ul a:hover { color: var(--petal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; flex-wrap: wrap; gap: 12px;
  font-size: 11.5px; color: rgba(251,212,220,0.4);
}
.footer-bottom .scrim {
  font-family: var(--font-display); font-style: italic; font-size: 13px;
}

/* ── privacy policy page specific ───────────────────────────────────*/
.policy-page {
  padding: 160px 0 120px;
}
.policy-page h1 {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--midnight); margin-bottom: 16px;
}
.policy-page .last-updated {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 64px;
}
.policy-body { max-width: 680px; }
.policy-body h2 {
  font-size: 16px; font-weight: 500;
  color: var(--midnight); margin: 40px 0 10px;
  letter-spacing: -0.005em;
}
.policy-body h2:first-of-type { margin-top: 0; }
.policy-body p {
  font-size: 15px; line-height: 1.7; color: var(--ink-2);
  margin-bottom: 10px;
}
.policy-body a {
  color: var(--midnight);
  border-bottom: 1px solid rgba(42,21,48,0.3);
  transition: border-color 140ms ease;
}
.policy-body a:hover { border-color: var(--midnight); }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--midnight);
  border-bottom: 1px solid rgba(42,21,48,0.25);
  margin-bottom: 56px;
  transition: border-color 140ms ease;
}
.back-link:hover { border-color: var(--midnight); }
.back-link svg { width: 14px; height: 14px; }

/* ── responsive ─────────────────────────────────────────────────────*/
@media (max-width: 860px) {
  .wrap, .wrap-tight { width: calc(100% - 40px); }
  .hero { padding: 140px 0 80px; }
  .hero h1 { font-size: clamp(44px, 11vw, 80px); }
  .form-card { padding: 32px 28px; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 40px; }
  .policy-page { padding: 120px 0 80px; }
}
@media (max-width: 540px) {
  .nav .brand { font-size: 20px; }
}
