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

:root {
  --bg: #faf9f7;
  --bg-warm: #f5f0eb;
  --fg: #1a1a1a;
  --fg-soft: #4a4a4a;
  --fg-muted: #8a8a8a;
  --accent: #2c2c2c;
  --border: #e8e2da;
  --serif: 'EB Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--fg) !important;
  color: var(--bg) !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.8; }

/* Container */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--fg);
  color: var(--bg);
}
.btn-primary:hover { opacity: 0.8; }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--fg); }

/* Hero */
.hero {
  padding: 160px 0 100px;
  text-align: center;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-title em {
  font-style: italic;
  color: var(--fg-soft);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-soft);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-disclaimer {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* Sections */
.section {
  padding: 96px 0;
}
.section + .section {
  border-top: 1px solid var(--border);
}

.label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.lede {
  font-size: 18px;
  color: var(--fg-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.lede.highlight {
  color: var(--fg);
  font-style: italic;
  font-family: var(--serif);
  font-size: 20px;
}
.lede.soft { color: var(--fg-muted); }

/* Problem */
.problem { background: var(--bg-warm); }

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  padding: 40px 32px;
  background: var(--bg);
  border-right: 1px solid var(--border);
}
.feature-card:last-child { border-right: none; }
.feature-num {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 15px;
  color: var(--fg-soft);
  line-height: 1.6;
}

/* Bleed Quote */
.bleed-quote {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 32px;
  text-align: center;
}
.bleed-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.bleed-quote p {
  font-size: 16px;
  color: rgba(250,249,247,0.6);
}

/* Examples */
.example-list { margin: 40px 0; }
.example {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--fg);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.example:first-child { border-top: 1px solid var(--border); }
.soft-note {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 24px;
}

/* Diff */
.diff-list {
  list-style: none;
  margin-top: 32px;
}
.diff-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  color: var(--fg-soft);
  padding-left: 24px;
  position: relative;
}
.diff-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--fg-muted);
}

/* Who */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 40px 0 32px;
}
.who-item {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  font-size: 16px;
  color: var(--fg-soft);
  line-height: 1.5;
}
.who-note {
  font-size: 15px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Safety */
.safety { background: var(--bg-warm); }
.safety-list {
  list-style: none;
  margin: 32px 0;
}
.safety-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--fg-soft);
  padding-left: 20px;
  position: relative;
}
.safety-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--fg-muted);
}
.crisis-note {
  font-size: 14px;
  color: #8a4a3a;
  padding: 16px 20px;
  background: #fdf2ef;
  border-radius: var(--radius);
  border-left: 3px solid #c0392b;
  margin-top: 24px;
}

/* 30 days */
.thirty-days .btn { margin-top: 40px; }

/* Brand story */
.brand-story { background: var(--bg-warm); }
.story-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 40px;
}

/* FAQ */
.faq-list { margin-top: 40px; }
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
}
.faq-a {
  font-size: 16px;
  color: var(--fg-soft);
  line-height: 1.6;
}

/* Closing */
.closing {
  background: var(--fg);
  color: var(--bg);
}
.closing h2 {
  color: var(--bg);
  font-size: clamp(28px, 4vw, 48px);
}
.closing-sub {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: rgba(250,249,247,0.6);
  margin-bottom: 40px;
}
.waitlist-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.waitlist-input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(250,249,247,0.2);
  background: rgba(250,249,247,0.08);
  color: var(--bg);
  font-size: 15px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: rgba(250,249,247,0.4); }
.waitlist-input:focus { border-color: rgba(250,249,247,0.5); }
.closing .btn-primary {
  background: var(--bg);
  color: var(--fg);
}
.closing .btn-primary:disabled {
  opacity: 0.5;
  cursor: default;
}
.disclaimer {
  font-size: 13px;
  color: rgba(250,249,247,0.4);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--fg);
}
.footer-tag {
  font-size: 13px;
  color: var(--fg-muted);
  flex: 1;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--fg); }

/* Mobile */
@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 120px 0 80px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .waitlist-form { flex-direction: column; }
  .waitlist-input { min-width: unset; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
