:root {
  --blush: #fbf1ef;
  --blush-soft: #fdf8f7;
  --white: #ffffff;
  --mauve: #96626e;
  --mauve-dark: #7a4e59;
  --mauve-light: #c79aa3;
  --ink: #3a2c2e;
  --ink-muted: #8b7377;
  --border: #efe0dc;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow: 0 20px 40px -20px rgba(122, 78, 89, 0.25);
  --radius: 20px;
}

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

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--mauve);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn--primary:hover { background: var(--mauve-dark); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--mauve-dark);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--mauve-light); background: var(--blush-soft); }
.btn--small { padding: 10px 22px; font-size: 14px; }
.btn--large { padding: 18px 42px; font-size: 16px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav__logo { height: 26px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; font-weight: 500; font-size: 15px; color: var(--ink-muted); }
.nav__links a:not(.btn):hover { color: var(--mauve-dark); }

/* Hero */
.hero { background: linear-gradient(180deg, var(--blush) 0%, var(--white) 100%); padding: 72px 0 40px; }
.hero__inner { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 600;
  color: var(--mauve);
  margin-bottom: 18px;
}
.eyebrow--center { text-align: center; }
.hero h1 {
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 19px;
  color: var(--ink-muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.hero__note { font-size: 14px; color: var(--ink-muted); }
.hero__art { position: relative; }
.hero__img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Pain strip */
.pain { background: var(--mauve); padding: 28px 0; }
.pain__text { color: var(--white); text-align: center; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.pain__text span { display: block; font-family: var(--sans); font-size: 14px; font-weight: 400; opacity: 0.85; margin-top: 6px; }

/* Section titles */
.section-title {
  font-size: clamp(30px, 4vw, 42px);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  color: var(--ink);
}

/* Features */
.features { padding: 96px 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--blush-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  color: var(--mauve);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(122,78,89,0.12);
}
.feature-card h3 { font-size: 21px; margin-bottom: 10px; color: var(--ink); }
.feature-card p { font-size: 15px; color: var(--ink-muted); }

/* How it works */
.how { padding: 96px 0; background: var(--blush-soft); }
.how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.how__step { text-align: left; }
.how__num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--mauve-light);
  display: block;
  margin-bottom: 8px;
}
.how__step h3 { font-size: 24px; margin-bottom: 10px; }
.how__step p { color: var(--ink-muted); font-size: 15px; }

/* Quote */
.quote { padding: 96px 0; text-align: center; }
.quote__bubble {
  display: inline-block;
  background: var(--blush);
  border-radius: 24px 24px 24px 4px;
  padding: 28px 40px;
  max-width: 520px;
}
.quote__bubble p { font-family: var(--serif); font-size: 26px; color: var(--mauve-dark); font-weight: 600; }
.quote__caption { margin-top: 18px; color: var(--ink-muted); font-size: 14px; }

/* Waitlist */
.waitlist { padding: 110px 0 130px; background: linear-gradient(180deg, var(--white) 0%, var(--blush) 100%); text-align: center; }
.waitlist__inner { max-width: 560px; margin: 0 auto; }
.waitlist__sub { color: var(--ink-muted); font-size: 17px; margin-bottom: 40px; }

/* Footer */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__logo { height: 20px; opacity: 0.8; }
.footer p { color: var(--ink-muted); font-size: 14px; }

/* Responsive */
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.1fr 1fr; }
}
@media (max-width: 640px) {
  .nav__links { gap: 16px; }
  .nav__links a:not(.btn) { display: none; }
  .hero { padding: 48px 0 32px; }
  .pain__text { font-size: 18px; }
  .features, .how, .quote { padding: 64px 0; }
  .waitlist { padding: 72px 0 88px; }
}
