:root {
  --bg: #14100f;
  --bg-alt: #1b1514;
  --ink: #f6ece3;
  --ink-dim: #cdbdb2;
  --ink-faint: #9c8b82;
  --rose: #d98a94;
  --rose-deep: #b95d6c;
  --gold: #cfa15c;
  --card-bg: #1f1817;
  --card-border: #33262323;
  --border: rgba(246, 236, 227, 0.1);
  --radius: 18px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

em { color: var(--rose); font-style: italic; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

a { color: inherit; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 16, 15, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.logo-dot { color: var(--rose); }

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-dim);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta { font-size: 0.85rem; padding: 10px 18px; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #1a1112;
  box-shadow: 0 8px 24px -8px rgba(217, 138, 148, 0.6);
}
.btn-primary:hover { box-shadow: 0 10px 30px -6px rgba(217, 138, 148, 0.75); }
.btn-primary:disabled { opacity: 0.6; cursor: default; box-shadow: none; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }

.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
}
.hero-glow-a {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--rose-deep), transparent 70%);
  top: -180px; left: -120px;
}
.hero-glow-b {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  bottom: -200px; right: -100px;
  opacity: 0.35;
}

.hero-inner { position: relative; z-index: 1; max-width: 780px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--ink);
}
.hero h1 .dot { color: var(--rose); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-dim);
  max-width: 560px;
  margin: 20px auto 36px;
}

.hero-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-form input {
  flex: 1 1 240px;
  min-width: 0;
}

input[type="email"], input[type="text"], textarea {
  background: rgba(246, 236, 227, 0.06);
  border: 1px solid var(--border);
  color: var(--ink);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s;
}
input[type="email"]:focus, input[type="text"]:focus, textarea:focus {
  outline: none;
  border-color: var(--rose);
}
input::placeholder, textarea::placeholder { color: var(--ink-faint); }

.form-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--ink-dim);
}

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-align: center;
}
.section-lead {
  text-align: center;
  color: var(--ink-dim);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.02rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--rose); }
.card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--ink-dim); font-size: 0.95rem; margin: 0; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.step { text-align: left; }
.step-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--rose);
  opacity: 0.6;
  margin-bottom: 8px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--ink-dim); font-size: 0.95rem; margin: 0; }

/* Band */
.band {
  text-align: center;
  padding: 70px 0;
}
.band-inner { max-width: 640px; margin: 0 auto; }
.band h2 { font-size: clamp(1.6rem, 4vw, 2.1rem); }
.band p { color: var(--ink-dim); }

/* Privacy */
.privacy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.privacy-grid .section-title, .privacy-grid .section-lead { text-align: left; margin-left: 0; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 14px;
  color: var(--ink-dim);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.privacy-visual { display: flex; justify-content: center; }
.privacy-box {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  background: linear-gradient(160deg, #241b1a, #171212);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-4deg);
}
.privacy-box-label {
  font-family: var(--serif);
  color: var(--ink-faint);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

@media (max-width: 800px) {
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-grid .section-title, .privacy-grid .section-lead { text-align: center; }
  .privacy-visual { order: -1; }
}

/* Waitlist + quiz */
.waitlist-header { margin-bottom: 50px; }
.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 860px) {
  .waitlist-grid { grid-template-columns: 1fr; }
}

.panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.panel h3 { font-size: 1.3rem; margin-bottom: 6px; }
.panel-sub { color: var(--ink-dim); font-size: 0.9rem; margin: 0 0 22px; }
.panel label { display: block; font-size: 0.85rem; color: var(--ink-dim); margin-bottom: 8px; }
#waitlist-form input { margin-bottom: 16px; }

.form-status {
  margin: 14px 0 0;
  font-size: 0.88rem;
  min-height: 1.2em;
  color: var(--rose);
}
.form-status.success { color: #8fcf9f; }
.form-status.error { color: #e08a8a; }

/* Quiz */
.quiz-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(246,236,227,0.08);
  overflow: hidden;
  margin-bottom: 24px;
}
.quiz-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transition: width 0.3s ease;
}

.quiz-step legend {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 16px;
  padding: 0;
}
.legend-hint { color: var(--ink-faint); font-weight: 400; font-size: 0.82em; }

.radio-opt, .check-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(246,236,227,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--ink-dim);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.radio-opt:hover, .check-opt:hover { border-color: var(--rose); color: var(--ink); }
.radio-opt input, .check-opt input { accent-color: var(--rose); width: 16px; height: 16px; flex-shrink: 0; }
.radio-opt:has(input:checked), .check-opt:has(input:checked) {
  border-color: var(--rose);
  background: rgba(217, 138, 148, 0.1);
  color: var(--ink);
}

.quiz-email-label { margin-top: 18px; }

.quiz-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--rose);
  font-size: 1.3rem;
  margin-left: 12px;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-dim); margin: 12px 0 0; font-size: 0.95rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-tag { color: var(--ink-faint); font-size: 0.85rem; margin: 6px 0 0; }
.footer-copy { color: var(--ink-faint); font-size: 0.85rem; margin: 0; }
