:root {
  --bg: #fff9fa;
  --surface: #ffffff;
  --surface-soft: #fff2f5;
  --surface-warm: #fff8f8;
  --text: #171218;
  --muted: #5f5662;
  --line: rgba(23, 18, 24, 0.1);
  --primary: #ff4967;
  --primary-dark: #d91f58;
  --secondary: #ff8b7d;
  --shadow: 0 20px 60px rgba(204, 39, 86, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 117, 141, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 154, 134, 0.12), transparent 24%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.legal-shell {
  width: min(calc(100% - 32px), 900px);
  margin: 52px auto 90px;
}
.legal-card,
.start-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 64px);
}
.legal-card h1,
.start-card h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  margin: 0 0 24px;
}
.legal-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 36px 0 10px;
}
.legal-card p,
.start-lede,
.legal-links {
  color: var(--muted);
  line-height: 1.75;
}
.legal-card a,
.legal-links a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.start-shell { max-width: 960px; }
.start-lede { font-size: 1.08rem; }
.start-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0;
}
.start-steps div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
}
.start-steps strong {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  background: var(--primary-dark);
}
.consent-box {
  border: 1px solid rgba(217, 31, 88, 0.24);
  background: var(--surface-warm);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 28px 0 18px;
}
.consent-label {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}
.consent-label input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary-dark);
  flex: 0 0 auto;
}
.consent-label + .consent-label { margin-top: 16px; }
.registration-form { margin-top: 28px; }
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.field-grid label,
.single-field {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}
.field-grid input,
.single-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font: inherit;
  background: white;
}
.single-field { max-width: 360px; margin-bottom: 18px; }
.registration-form .button + .button { margin-left: 10px; }
.is-hidden { display: none !important; }
.success-message {
  padding: 18px;
  border-radius: var(--radius-md);
  background: #eefaf2;
  color: #155c33;
  font-weight: 700;
}
.sms-fallback {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}
.sms-fallback p { color: var(--muted); line-height: 1.55; }
.sms-fallback__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.button--small { padding: 10px 16px; font-size: 0.9rem; }
.copy-status { min-height: 1.4em; margin-bottom: 0; font-size: 0.9rem; }
.compact-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.compact-consent input { margin-top: 3px; accent-color: var(--primary-dark); }
.button:disabled { opacity: 0.55; cursor: wait; }
.start-button { margin-top: 4px; }
.start-button.is-disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.footer--legal { margin-top: 0; }

.site-shell { min-height: 100vh; }

.topbar,
.hero,
.section,
.footer {
  width: min(calc(100% - 32px), var(--content));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 249, 250, 0.78);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand__logo,
.footer__logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.brand__name {
  font-weight: 3000;
  letter-spacing: -0.05em;
  font-size: 2.96rem;
}
.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}
.nav a:hover { color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-1px); }
.button--primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 12px 32px rgba(217, 31, 88, 0.28);
}
.button--outline {
  background: white;
  border-color: var(--line);
}
.button--ghost {
  border-color: var(--line);
  background: rgba(255,255,255,0.7);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  padding: 56px 0 72px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 14px;
}
.eyebrow--light { color: #ffb8c5; }

.hero h1,
.section-heading h2,
.split-panel h2,
.cta-box h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  margin: 0 0 18px;
}
.hero h1 span {
  color: var(--primary-dark);
}
.hero__lede {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 60ch;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 28px;
}
.hero__proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.hero__proof div {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero__proof strong {
  display: block;
  margin-bottom: 8px;
}
.hero__proof span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.hero__visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.hero-card--glow {
  position: absolute;
  inset: 8% 8% auto 8%;
  height: 58%;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,238,242,0.72));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.8);
}
.phone-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.phone {
  position: absolute;
  width: 36%;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(41, 19, 29, 0.22);
  border: 10px solid #111;
  background: #111;
}
.phone--left { left: 0; top: 18%; transform: rotate(-9deg); }
.phone--center { left: 31%; top: 6%; z-index: 2; }
.phone--right { right: 0; top: 22%; transform: rotate(8deg); }

.section {
  padding: 90px 0;
}
.section--white { background: transparent; }
.section--blush {
  background: linear-gradient(180deg, rgba(255, 241, 244, 0.8), rgba(255, 250, 250, 0.8));
  border-radius: 42px;
}
.section--dark {
  background: linear-gradient(135deg, #22121a, #341623 45%, #4f1d33);
  color: white;
  border-radius: 42px;
}
.section--cta { padding-top: 60px; }

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: end;
}
.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin: 0 0 14px;
}
.section-heading p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.steps,
.feature-grid,
.pillars {
  display: grid;
  gap: 22px;
}
.steps { grid-template-columns: repeat(3, 1fr); }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.pillars { grid-template-columns: repeat(3, 1fr); }

.step-card,
.feature-card,
.gallery-card,
.pillar,
.cta-box,
.split-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.step-card,
.feature-card,
.pillar {
  padding: 24px;
  background: rgba(255,255,255,0.9);
}
.step-card h3,
.feature-card h3,
.pillar h3 {
  margin-top: 8px;
  margin-bottom: 10px;
}
.step-card p,
.feature-card p,
.pillar p {
  color: var(--muted);
  line-height: 1.65;
}
.step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  color: white;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.feature-card--accent {
  background: linear-gradient(135deg, rgba(255, 110, 136, 0.12), rgba(255, 180, 165, 0.22));
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-card {
  overflow: hidden;
  background: white;
}
.gallery-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.gallery-card figcaption {
  padding: 16px 18px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.gallery-card.wide {
  grid-column: 1 / -1;
}
.gallery-card.wide img {
  max-height: 560px;
  width: auto;
  margin: 0 auto;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 36px;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
.split-panel p { color: rgba(255,255,255,0.8); line-height: 1.75; }
.pillar {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
.pillar p { color: rgba(255,255,255,0.8); }

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.92);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.faq-list summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p {
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255, 240, 244, 0.96));
}
.cta-box h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  margin: 0 0 12px;
}
.cta-box p {
  color: var(--muted);
  line-height: 1.7;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.waitlist-form input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font: inherit;
  background: white;
}
.form-note {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0 54px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.93rem;
}
.footer__links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .hero,
  .section-heading--split,
  .split-panel,
  .cta-box { grid-template-columns: 1fr; }
  .steps,
  .feature-grid,
  .pillars,
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero__visual { min-height: 700px; }
  .phone { width: 42%; }
  .phone--center { left: 29%; }
  .form-note { grid-column: auto; }
}

@media (max-width: 820px) {
  .topbar { flex-wrap: wrap; justify-content: center; }
  .nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .hero { padding-top: 34px; }
  .steps,
  .feature-grid,
  .pillars,
  .gallery { grid-template-columns: 1fr; }
  .hero__proof { grid-template-columns: 1fr; }
  .hero__visual { min-height: 540px; }
  .phone { width: 52%; border-width: 8px; }
  .phone--center { left: 24%; }
  .phone--left { top: 26%; }
  .phone--right { top: 28%; }
  .footer { flex-direction: column; align-items: flex-start; }
  .start-steps { grid-template-columns: 1fr; }
  .legal-shell { margin-top: 28px; }
  .field-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .topbar,
  .hero,
  .section,
  .footer { width: min(calc(100% - 20px), var(--content)); }
  .brand__name { font-size: 0.98rem; }
  .nav { gap: 12px; font-size: 0.9rem; }
  .hero__visual { min-height: 430px; }
  .phone { width: 56%; }
  .phone--center { left: 22%; }
  .cta-box,
  .split-panel { padding: 24px; }
}
