:root {
  --berry: #7a1f55;
  --berry-dark: #4b1537;
  --berry-deep: #341026;
  --rose: #d84d7b;
  --coral: #f28c82;
  --peach: #f7b7a3;
  --cream: #fff8f2;
  --warm: #f5ece6;
  --ink: #281c24;
  --muted: #6f5c68;
  --line: #e7d9df;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(63, 22, 47, 0.14);
  --radius: 28px;
  --radius-small: 18px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--white);
  color: var(--berry-dark);
  padding: .7rem 1rem;
  border-radius: 10px;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 248, 242, .9);
  border-bottom: 1px solid rgba(122, 31, 85, .08);
}
.site-header-transparent { position: absolute; width: 100%; background: transparent; backdrop-filter: none; border-bottom: 0; }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; letter-spacing: -.02em; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--berry);
  color: var(--cream);
  font-size: .72rem;
  letter-spacing: .08em;
}
.desktop-nav { display: flex; gap: 28px; align-items: center; }
.desktop-nav a, .text-link { text-decoration: none; font-weight: 600; font-size: .95rem; }
.desktop-nav a:hover, .text-link:hover { color: var(--berry); }

.button {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  background: var(--berry);
  color: var(--white);
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 12px 28px rgba(122, 31, 85, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--berry-dark); box-shadow: 0 15px 34px rgba(122, 31, 85, .3); }
.button:focus-visible, input:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid rgba(216, 77, 123, .36); outline-offset: 3px; }
.button:disabled { opacity: .7; cursor: wait; transform: none; }
.button-small { padding: 11px 18px; font-size: .9rem; }
.button-light { background: var(--cream); color: var(--berry-dark); }
.button-light:hover { background: var(--white); color: var(--berry-dark); }
.button-full { width: 100%; min-height: 54px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--berry);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.eyebrow-light { color: #ffd3df; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: .98;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.35rem, 4.7vw, 4.6rem); }
h3 { line-height: 1.15; letter-spacing: -.02em; }

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 78% 20%, rgba(242,140,130,.22), transparent 27%),
    radial-gradient(circle at 15% 15%, rgba(216,77,123,.12), transparent 31%),
    linear-gradient(180deg, #fff8f2 0%, #fbf0ec 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.17fr .83fr; gap: 74px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 900px; margin-bottom: 18px; }
.hero-punch {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--berry);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero-lede { max-width: 690px; font-size: 1.18rem; color: #5a4954; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin: 30px 0 18px; flex-wrap: wrap; }
.microcopy { font-size: .85rem; color: var(--muted); max-width: 600px; }

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.83);
  border: 1px solid rgba(122,31,85,.12);
  border-radius: 34px;
  padding: 30px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.hero-card-top { display: flex; gap: 8px; align-items: center; color: var(--berry); font-weight: 800; font-size: .74rem; letter-spacing: .14em; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 5px rgba(216,77,123,.12); }
.cycle { margin: 30px 0; }
.cycle-step { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 14px; }
.cycle-step strong { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #f6e4eb; color: var(--berry); }
.cycle-step span { font-weight: 650; }
.cycle-step-accent strong { background: var(--berry); color: var(--white); }
.cycle-step-accent span { color: var(--berry); }
.cycle-line { width: 2px; height: 26px; background: var(--line); margin: 3px 0 3px 18px; }
.card-note { margin: 0; padding-top: 22px; border-top: 1px solid var(--line); font-weight: 600; color: #5f4a57; }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 340px; height: 340px; background: rgba(216,77,123,.11); top: -100px; right: -120px; }
.hero-orb-two { width: 240px; height: 240px; border: 1px solid rgba(122,31,85,.13); bottom: 40px; left: -120px; }

.ticker { overflow: hidden; background: var(--berry); color: var(--cream); padding: 15px 0; }
.ticker-track { white-space: nowrap; font-size: .78rem; font-weight: 800; letter-spacing: .14em; }
.ticker-track span, .ticker-track i { display: inline-block; margin-right: 28px; }
.ticker-track i { color: var(--coral); font-style: normal; }

.section { padding: 120px 0; }
.section-light { background: var(--cream); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.section-heading h2 { max-width: 760px; }
.body-copy { font-size: 1.08rem; color: #5d4c57; }
.body-copy p { margin-bottom: 22px; }
.body-copy strong { color: var(--ink); }

.recognition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 78px; }
.recognition-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; min-height: 300px; box-shadow: 0 14px 35px rgba(59,26,45,.06); }
.recognition-card .number { display: block; color: var(--rose); font-weight: 800; font-size: .75rem; letter-spacing: .14em; margin-bottom: 65px; }
.recognition-card h3 { font-size: 1.45rem; margin-bottom: 14px; }
.recognition-card p { color: var(--muted); margin-bottom: 0; }

.story-section { background: #f1dfe5; position: relative; overflow: hidden; }
.story-section::after { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(122,31,85,.14); right: -160px; bottom: -180px; }
.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: center; }
.story-quote { position: relative; }
.quote-mark { position: absolute; font-family: 'Playfair Display', serif; font-size: 12rem; color: rgba(122,31,85,.09); top: -105px; left: -24px; line-height: 1; }
.story-quote blockquote { position: relative; font-family: 'Playfair Display', serif; font-size: clamp(2.7rem, 4.8vw, 4.8rem); line-height: 1.02; letter-spacing: -.035em; margin: 0; }
.story-quote em { color: var(--berry); }
.signature { color: var(--berry); font-weight: 700; }

.method-section { background: var(--berry-deep); color: var(--cream); }
.method-intro { max-width: 760px; margin-bottom: 60px; }
.method-intro p:last-child { color: #ddcbd4; font-size: 1.08rem; max-width: 650px; }
.method-list { border-top: 1px solid rgba(255,255,255,.17); }
.method-item { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.method-letter { font-family: 'Playfair Display', serif; color: var(--coral); font-size: 4rem; line-height: .9; }
.method-item h3 { font-size: 1.65rem; margin-bottom: 7px; }
.method-item p { color: #d9c6d0; max-width: 760px; margin-bottom: 0; }

.offer-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: center; }
.offer-copy h2 { margin-bottom: 24px; }
.offer-copy p { color: var(--muted); font-size: 1.06rem; }
.offer-copy .button { margin-top: 12px; }
.offer-stack { display: grid; gap: 16px; }
.offer-card { padding: 24px 26px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.offer-card h3 { margin: 10px 0 8px; }
.offer-card p { color: var(--muted); margin: 0; }
.offer-featured { border-color: rgba(122,31,85,.38); box-shadow: 0 13px 30px rgba(59,26,45,.08); }
.pill { display: inline-block; color: var(--berry); background: #f8e8ee; border-radius: 999px; padding: 5px 9px; font-size: .68rem; font-weight: 800; letter-spacing: .11em; }

.belief-section { background: var(--berry); color: var(--white); }
.belief-wrap { max-width: 920px; text-align: center; }
.belief-wrap h2 { margin-bottom: 28px; }
.belief-wrap > p:not(.eyebrow) { color: #f4dfe8; max-width: 700px; margin: 0 auto 32px; font-size: 1.08rem; }

.faq-section { background: #f9f0ec; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq-list details { border-top: 1px solid var(--line); padding: 20px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; font-weight: 700; font-size: 1.08rem; position: relative; padding-right: 40px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 4px; top: -4px; font-size: 1.6rem; color: var(--berry); }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { color: var(--muted); margin: 14px 30px 0 0; }

.final-cta { background: var(--berry-deep); color: var(--white); padding: 100px 0; }
.final-cta-inner { max-width: 820px; text-align: center; }
.final-cta-inner h2 { margin-bottom: 22px; }
.final-cta-inner > p:not(.eyebrow) { color: #d9c5d0; font-size: 1.1rem; }
.final-cta-inner .button { margin-top: 10px; }

.site-footer { background: #24121e; color: #eadce4; padding: 48px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: end; }
.footer-brand { color: var(--white); }
.footer-tagline { margin: 12px 0 0; color: #bdaab5; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #eadce4; text-decoration: none; font-size: .92rem; }
.footer-links a:hover { color: var(--white); }
.copyright { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; margin: 0; color: #988590; font-size: .82rem; }

/* Waitlist */
.waitlist-page { background: #fff7f1; }
.waitlist-main { min-height: 100vh; }
.waitlist-hero { min-height: 780px; padding: 145px 0 100px; position: relative; overflow: hidden; background: linear-gradient(150deg, #fff8f2 0%, #f9e9ec 70%, #f4d6df 100%); }
.waitlist-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: 90px; align-items: center; position: relative; z-index: 2; }
.waitlist-copy h1 { font-size: clamp(3rem, 6vw, 5.7rem); }
.waitlist-lede { font-size: 1.16rem; color: #5e4b56; max-width: 720px; }
.waitlist-benefits { margin: 34px 0; display: grid; gap: 14px; }
.waitlist-benefits > div { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.waitlist-benefits p { margin: 0; }
.check { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: #edd2dd; color: var(--berry); font-weight: 800; font-size: .85rem; }
.waitlist-note { background: rgba(255,255,255,.54); border: 1px solid rgba(122,31,85,.12); border-radius: 16px; padding: 18px 20px; font-size: .95rem; color: #5d4c56; }
.signup-panel { background: var(--berry-deep); color: var(--white); padding: 36px; border-radius: 32px; box-shadow: 0 30px 70px rgba(70,22,51,.24); }
.panel-kicker { font-size: .72rem; letter-spacing: .16em; color: var(--peach); font-weight: 800; margin-bottom: 10px; }
.signup-panel h2 { font-size: 3.2rem; margin-bottom: 10px; }
.signup-panel > p:not(.panel-kicker) { color: #d8c6cf; }
.waitlist-form { margin-top: 28px; }
.field-group { margin-bottom: 16px; }
.field-group label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 7px; color: #f4e6ed; }
.field-group input { width: 100%; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: var(--white); border-radius: 14px; padding: 14px 15px; outline: none; }
.field-group input::placeholder { color: #bca9b3; }
.field-group input:focus { border-color: var(--coral); background: rgba(255,255,255,.12); }
.signup-panel .button { background: var(--coral); color: #32101f; box-shadow: none; margin-top: 5px; }
.signup-panel .button:hover { background: #ffa294; }
.consent { color: #a995a0; font-size: .74rem; margin: 12px 0 0; }
.consent a { color: #decdd5; }
.form-status { min-height: 1.25rem; font-size: .83rem; margin: 10px 0 0; }
.form-status.is-error { color: #ffc3c3; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.panel-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 26px; padding-top: 20px; font-size: .72rem; letter-spacing: .16em; color: #cdb8c3; font-weight: 800; }
.waitlist-proof { padding: 100px 0; background: var(--cream); }
.waitlist-proof-inner { max-width: 820px; }
.waitlist-proof-inner p:last-child { color: var(--muted); font-size: 1.08rem; }
.back-link { color: var(--berry-dark); }

/* Thank-you */
.thanks-page { min-height: 100vh; background: radial-gradient(circle at 85% 20%, rgba(242,140,130,.22), transparent 28%), linear-gradient(145deg, #fff8f2 0%, #f5e0e6 100%); }
.thanks-main { min-height: 100vh; display: grid; place-items: center; padding: 50px 20px; }
.thanks-card { width: min(720px, 100%); background: rgba(255,255,255,.82); border: 1px solid rgba(122,31,85,.12); border-radius: 34px; padding: clamp(30px, 6vw, 60px); box-shadow: var(--shadow); }
.thanks-brand { margin-bottom: 60px; }
.thanks-card h1 { font-size: clamp(3rem, 6vw, 5.3rem); }
.thanks-card > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.thanks-callout { display: grid; gap: 6px; background: #f6e8ed; border-left: 4px solid var(--berry); padding: 18px 20px; border-radius: 12px; margin: 28px 0; }

/* Legal */
.legal-main { padding: 90px 0 120px; }
.legal-copy { max-width: 820px; }
.legal-copy h1 { font-size: clamp(3rem, 6vw, 5.2rem); }
.legal-copy h2 { font-family: 'DM Sans', sans-serif; font-size: 1.4rem; line-height: 1.2; letter-spacing: -.02em; margin: 36px 0 10px; }
.legal-copy p { color: #5e4f58; }
.legal-note { background: #f2e4e9; border-radius: 14px; padding: 16px 18px; margin-top: 36px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .hero { min-height: auto; padding-top: 95px; }
  .hero-grid, .split-grid, .story-grid, .offer-grid, .faq-grid, .waitlist-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-card { max-width: 620px; transform: none; }
  .recognition-grid { grid-template-columns: 1fr; }
  .recognition-card { min-height: auto; }
  .recognition-card .number { margin-bottom: 28px; }
  .section { padding: 90px 0; }
  .story-grid { gap: 60px; }
  .faq-grid { gap: 48px; }
  .waitlist-hero { padding-top: 130px; }
  .signup-panel { max-width: 620px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 68px; }
  .brand > span:last-child { font-size: .94rem; }
  .site-header .button-small { font-size: .78rem; padding: 10px 13px; }
  .hero { padding: 78px 0 70px; }
  h1 { font-size: clamp(2.75rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.8rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-card { padding: 24px; border-radius: 26px; }
  .section { padding: 74px 0; }
  .method-item { grid-template-columns: 56px 1fr; }
  .method-letter { font-size: 3rem; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .copyright { grid-column: 1; }
  .waitlist-hero { padding: 112px 0 74px; }
  .waitlist-copy h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .signup-panel { padding: 26px 22px; border-radius: 26px; }
  .signup-panel h2 { font-size: 2.6rem; }
  .thanks-card { border-radius: 26px; }
}
