:root {
  --cream: #fbf5ec;
  --cream-deep: #f4ead9;
  --ink: #1b2334;
  --ink-soft: #4a5468;
  --coral: #f4522f;
  --coral-dark: #d43e1f;
  --sun: #ffb52e;
  --sky: #2f7fd4;
  --white: #ffffff;
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}

.display { font-family: 'Fraunces', Georgia, serif; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900; font-style: italic;
  font-size: 28px; letter-spacing: -0.5px; color: var(--ink);
  text-decoration: none;
}
.wordmark span { color: var(--coral); }
.nav-cta {
  background: var(--ink); color: var(--cream);
  padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--coral-dark); }

/* ---------- hero ---------- */
.hero { padding: 56px 0 72px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block;
  background: var(--cream-deep); border: 1px solid #e5d5bb;
  color: var(--ink-soft); font-size: 13.5px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
  letter-spacing: 0.02em;
}
h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900; font-size: clamp(42px, 6vw, 68px);
  line-height: 1.03; letter-spacing: -1.5px; margin-bottom: 20px;
}
h1 em { font-style: italic; color: var(--coral); }
.hero-sub { font-size: 19px; color: var(--ink-soft); max-width: 34em; margin-bottom: 30px; }
.hero-sub strong { color: var(--ink); }

/* ---------- waitlist form ---------- */
.waitlist { max-width: 480px; }
.field-row { display: flex; gap: 10px; margin-bottom: 12px; }
.field-row input[type='email'] {
  flex: 1; padding: 15px 18px; font-size: 16px; font-family: inherit;
  border: 2px solid var(--ink); border-radius: 12px; background: var(--white);
  color: var(--ink); outline: none;
}
.field-row input[type='email']:focus { border-color: var(--coral); }
.btn {
  background: var(--coral); color: var(--white); border: none; cursor: pointer;
  padding: 15px 26px; font-size: 16px; font-weight: 700; font-family: inherit;
  border-radius: 12px; transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:hover { background: var(--coral-dark); transform: translateY(-1px); }
.chips { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip label {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid #d9cbb4; background: var(--white);
  font-size: 14px; font-weight: 600; color: var(--ink-soft); cursor: pointer;
  transition: all 0.12s;
}
.chip input:checked + label { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.consent { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 10px; }
.consent input { margin-top: 4px; accent-color: var(--coral); width: 15px; height: 15px; }
.micro { font-size: 13px; color: var(--ink-soft); }
.form-msg { margin-top: 12px; font-weight: 600; font-size: 15px; }
.form-msg.ok { color: #1b7a3d; }
.form-msg.err { color: var(--coral-dark); }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- hero card ---------- */
.hero-card {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 26px; transform: rotate(1.2deg);
}
.hero-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; }
.hero-card h3 .tag { background: var(--sun); font-size: 11.5px; padding: 3px 10px; border-radius: 999px; font-weight: 700; }
.plan-line { display: flex; justify-content: space-between; font-size: 14.5px; padding: 9px 0; border-bottom: 1px dashed #e4d8c3; }
.plan-line:last-of-type { border-bottom: none; }
.plan-line .ok { color: #1b7a3d; font-weight: 700; }
.plan-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 15.5px; padding-top: 12px; }
.checkline { display: flex; gap: 8px; align-items: center; font-size: 14px; padding: 6px 0; color: var(--ink-soft); }
.checkline b { color: var(--ink); }

/* ---------- proof strip ---------- */
.proof {
  background: var(--ink); color: var(--cream);
  padding: 26px 0; font-size: 16.5px; text-align: center;
}
.proof strong { color: var(--sun); }

/* ---------- sections ---------- */
section { padding: 76px 0; }
.kicker { color: var(--coral); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
h2 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 900;
  font-size: clamp(30px, 4vw, 42px); letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub { color: var(--ink-soft); font-size: 18px; max-width: 40em; margin-bottom: 44px; }

.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  border: 1.5px solid #e8dcc6;
}
.card .emoji { font-size: 30px; margin-bottom: 14px; display: block; }
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.card p { font-size: 15.5px; color: var(--ink-soft); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px; background: var(--cream-deep); border-radius: var(--radius); }
.step .num {
  font-family: 'Fraunces', Georgia, serif; font-weight: 900; font-size: 44px;
  color: var(--coral); line-height: 1; margin-bottom: 14px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.3px; }
.step p { font-size: 15.5px; color: var(--ink-soft); }

/* ---------- parents ---------- */
.parents { background: var(--white); border-radius: 28px; padding: 60px 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; border: 1.5px solid #e8dcc6; }
.parents ul { list-style: none; margin-top: 20px; }
.parents li { display: flex; gap: 12px; padding: 9px 0; font-size: 16px; }
.parents li::before { content: '✓'; color: var(--coral); font-weight: 800; }
.parent-quote {
  background: var(--cream); border-radius: var(--radius); padding: 30px;
  font-size: 17px; font-style: italic; color: var(--ink-soft);
  border-left: 4px solid var(--sun);
}
.parent-quote footer { margin-top: 14px; font-style: normal; font-weight: 600; font-size: 14px; color: var(--ink); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 780px; margin: 0 auto; }
.price-card { background: var(--white); border-radius: var(--radius); padding: 34px; border: 1.5px solid #e8dcc6; }
.price-card.plus { border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--sun); }
.price-card .plan-name { font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.price-card .price { font-family: 'Fraunces', Georgia, serif; font-weight: 900; font-size: 40px; letter-spacing: -1px; }
.price-card .price small { font-size: 16px; font-weight: 600; color: var(--ink-soft); font-family: 'Inter', sans-serif; }
.price-card ul { list-style: none; margin-top: 18px; }
.price-card li { display: flex; gap: 10px; padding: 7px 0; font-size: 15px; color: var(--ink-soft); }
.price-card li::before { content: '✓'; color: var(--coral); font-weight: 800; }
.price-note { text-align: center; margin-top: 26px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- faq ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { background: var(--white); border-radius: 14px; padding: 20px 24px; margin-bottom: 12px; border: 1.5px solid #e8dcc6; }
.faq summary { font-weight: 700; font-size: 16.5px; cursor: pointer; }
.faq p { margin-top: 12px; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- final cta ---------- */
.final { background: var(--coral); border-radius: 28px; padding: 64px 52px; text-align: center; color: var(--white); }
.final h2 { color: var(--white); }
.final .section-sub { color: rgba(255, 255, 255, 0.85); margin-left: auto; margin-right: auto; }
.final .waitlist { margin: 0 auto; }
.final .field-row input[type='email'] { border-color: var(--white); }
.final .btn { background: var(--ink); }
.final .btn:hover { background: #000; }
.final .consent, .final .micro { color: rgba(255, 255, 255, 0.85); }
.final .chip label { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.12); color: var(--white); }
.final .chip input:checked + label { background: var(--ink); border-color: var(--ink); }
.final .form-msg.ok { color: #ffe9a8; }
.final .form-msg.err { color: #ffd6cc; }

/* ---------- footer ---------- */
footer.site { padding: 44px 0 56px; color: var(--ink-soft); font-size: 14px; }
footer.site .cols { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer.site a { color: var(--ink); }
.disclaimer { margin-top: 18px; font-size: 12.5px; max-width: 60em; }

/* ---------- hero CTAs (live mode) ---------- */
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.btn-lg {
  display: inline-block; background: var(--coral); color: var(--white);
  padding: 16px 30px; font-size: 17px; font-weight: 700; border-radius: 12px;
  text-decoration: none; transition: background 0.15s, transform 0.1s;
  border: none; cursor: pointer;
}
.btn-lg:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; padding: 14px 22px; font-size: 15px; font-weight: 600;
  color: var(--ink); text-decoration: none; border-radius: 12px;
  border: 2px solid var(--ink); background: transparent; transition: all 0.12s;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.hero-offer { font-size: 14.5px; color: var(--ink-soft); max-width: 34em; margin-bottom: 10px; }
.hero-offer b { color: var(--ink); }
.final .btn-lg { background: var(--ink); }
.final .btn-lg:hover { background: #000; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-lg, .btn-ghost { text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { transform: none; }
  .cards3, .steps { grid-template-columns: 1fr; }
  .parents { grid-template-columns: 1fr; padding: 40px 28px; }
  .price-grid { grid-template-columns: 1fr; }
  .final { padding: 48px 24px; }
  .field-row { flex-direction: column; }
  section { padding: 56px 0; }
}

/* ---------- phones ---------- */
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .nav { padding: 14px 0; }
  .wordmark { font-size: 23px; }
  .nav-plan { display: none; }               /* hero already has the primary CTA */
  .nav-cta { padding: 9px 16px; font-size: 14px; }
  .hero { padding: 24px 0 40px; }
  h1 { font-size: clamp(34px, 11vw, 46px); letter-spacing: -1px; margin-bottom: 16px; }
  .hero-sub { font-size: 16.5px; margin-bottom: 24px; }
  .eyebrow { margin-bottom: 16px; font-size: 12.5px; }
  section { padding: 44px 0; }
  h2 { font-size: clamp(26px, 8vw, 34px); letter-spacing: -0.6px; }
  .section-sub { font-size: 16px; margin-bottom: 30px; }
  .card, .step { padding: 22px; }
  .parents { padding: 30px 20px; border-radius: 20px; }
  .price-card { padding: 26px; }
  .final { padding: 40px 20px; border-radius: 20px; }
  .btn-lg { padding: 15px 24px; font-size: 16px; }
  footer.site .cols { flex-direction: column; gap: 16px; }
}
