:root {
  --bg: #fff8f2;
  --surface: #ffffff;
  --ink: #372c36;
  --muted: #74626d;
  --soft: #ffe4ec;
  --pink: #f6a9bf;
  --pink-strong: #d95f8d;
  --lavender: #c7b3ff;
  --cream: #fff0df;
  --line: rgba(82, 58, 73, 0.14);
  --shadow: 0 22px 70px rgba(105, 62, 84, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 248, 242, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 220px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
  color: #fff;
  background: #3b2d36;
  box-shadow: 0 14px 34px rgba(59, 45, 54, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.button-outline {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(105, 62, 84, 0.2);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(64px, 9vw, 116px) clamp(20px, 7vw, 96px) clamp(90px, 9vw, 120px);
  background:
    linear-gradient(90deg, rgba(55, 44, 54, 0.76), rgba(55, 44, 54, 0.34), rgba(255, 248, 242, 0.12)),
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.56), transparent 30%),
    linear-gradient(135deg, #fde1e9 0%, #fff4ea 48%, #eee7ff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: linear-gradient(to bottom, rgba(255, 248, 242, 0), var(--bg));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg img {
  position: absolute;
  filter: drop-shadow(0 26px 48px rgba(76, 44, 61, 0.22));
  object-fit: cover;
}

.hero-baby {
  right: clamp(8px, 8vw, 110px);
  top: clamp(54px, 10vw, 120px);
  width: min(43vw, 560px);
  height: min(31vw, 370px);
  min-width: 320px;
  border-radius: 34px;
}

.hero-scan {
  right: min(42vw, 520px);
  bottom: clamp(70px, 9vw, 130px);
  width: min(24vw, 310px);
  height: min(16vw, 205px);
  min-width: 200px;
  transform: rotate(-5deg);
  border-radius: 24px;
}

.hero-poster {
  right: clamp(32px, 5vw, 78px);
  bottom: clamp(46px, 7vw, 90px);
  width: min(20vw, 230px);
  height: min(14vw, 165px);
  min-width: 150px;
  transform: rotate(4deg);
  border-radius: 28px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  color: #fff;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 900;
}

.hero p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.76) !important;
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -40px auto 0;
  width: min(1040px, calc(100% - 40px));
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-proof div {
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
}

.quick-proof strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
}

.quick-proof span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: clamp(70px, 10vw, 124px) clamp(20px, 6vw, 80px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.trust h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
}

.section-heading p,
.trust p,
.final-cta p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.steps,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.steps article,
.price-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(105, 62, 84, 0.08);
}

.steps article {
  padding: 28px;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--soft);
  color: #934d6a;
  font-weight: 900;
}

.steps h3,
.price-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.steps p,
.price-card li,
.faq-list p {
  color: var(--muted);
  line-height: 1.55;
}

.packages {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 228, 236, 0.58));
}

.early-access {
  padding-top: clamp(46px, 7vw, 86px);
}

.signup-panel {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 169, 191, 0.28), transparent 34%),
    linear-gradient(135deg, #ffffff, #fff2f6 56%, #f1ebff);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.signup-copy {
  padding: clamp(8px, 3vw, 24px);
}

.signup-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 900;
}

.signup-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.signup-copy ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.signup-copy li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 800;
}

.signup-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: inset 0 0 0 5px #fff;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
}

.waitlist-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.waitlist-form .button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.success {
  color: #327456;
}

.form-status.error {
  color: #a33d57;
}

.price-card {
  position: relative;
  padding: 30px;
}

.price-card.featured {
  background: #3b2d36;
  color: #fff;
  transform: translateY(-14px);
}

.recommended {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #3b2d36;
  background: #fff0df;
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 14px 0 20px;
  font-size: 42px;
  font-weight: 900;
}

.price-card ul {
  min-height: 128px;
  margin: 0 0 28px;
  padding-left: 18px;
}

.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.sample-layout {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: 18px;
  align-items: stretch;
}

.sample-layout figure {
  margin: 0;
  min-width: 0;
}

.sample-layout img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #fff;
}

.sample-layout figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.trust {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.faq-list {
  width: min(880px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
}

.final-cta {
  margin: 40px auto 0;
  width: min(1000px, calc(100% - 40px));
  padding: clamp(58px, 8vw, 90px) 24px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #3b2d36, #77445f);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .button {
  margin-top: 28px;
  color: #3b2d36;
  background: #fff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px clamp(20px, 6vw, 80px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-footer img {
  width: 190px;
}

.form-page {
  min-height: 100vh;
  padding: 42px 20px;
  background: linear-gradient(145deg, #fff8f2, #ffe5ee 60%, #eee7ff);
}

.form-shell {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.form-shell .brand {
  display: inline-block;
  margin-bottom: 28px;
}

.form-shell .brand img {
  width: 230px;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label,
legend {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.admin-page {
  min-height: 100vh;
  background: #fff8f2;
  padding: 34px clamp(16px, 4vw, 48px);
}

.admin-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-header img {
  width: 220px;
  margin-bottom: 22px;
}

.admin-header h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
}

.admin-header p,
.admin-note {
  color: var(--muted);
  font-weight: 700;
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-actions button {
  border: 0;
  cursor: pointer;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.admin-summary div {
  padding: 24px;
  background: #fff;
}

.admin-summary strong {
  display: block;
  font-size: 34px;
  font-weight: 900;
}

.admin-summary span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.admin-table th,
.admin-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(39px, 10vw, 64px);
    line-height: 1.03;
  }

  .hero p {
    max-width: 540px;
  }

  .hero-baby {
    opacity: .24;
    right: -150px;
    top: 130px;
    width: 520px;
    height: 360px;
  }

  .hero-scan,
  .hero-poster {
    display: none;
  }

  .quick-proof,
  .steps,
  .pricing-grid,
  .sample-layout,
  .trust,
  .order-form,
  .signup-panel,
  .waitlist-form,
  .admin-summary {
    grid-template-columns: 1fr;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-card.featured {
    transform: none;
  }

  .trust {
    width: min(100% - 28px, 1060px);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    width: 172px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 39px;
    line-height: 1.03;
  }

  .hero p {
    max-width: 330px;
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-baby {
    opacity: .24;
    right: -150px;
    top: 150px;
    min-width: 420px;
    height: 330px;
  }

  .hero-scan,
  .hero-poster {
    display: none;
  }

  .quick-proof {
    margin-top: -28px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  html {
    scroll-behavior: auto;
    transition: none !important;
  }
}
