/* ————— Mumly brand system ————— */
:root {
  --bg: #FDF2F5;
  --bg-deep: #FCEAEF;
  --card: #FFFFFF;
  --ink: #1C1C1E;
  --muted: #6B6B6F;
  --pink: #F8C8D6;
  --pink-light: #FDE2EA;
  --primary: #D4728A;
  --primary-deep: #B85C8A;
  --violet: #8E7CC3;
  --water: #7EA8D2;
  --sage: #7EBE8E;
  --peach: #E4A27A;
  --radius: 24px;
  --shadow: 0 12px 40px rgba(184, 92, 138, 0.10);
  --shadow-soft: 0 4px 16px rgba(184, 92, 138, 0.07);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: var(--primary-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ————— Nav ————— */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 242, 245, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 114, 138, 0.10);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1120px; margin: 0 auto;
}
.nav-logo img { height: 44px; width: auto; display: block; mix-blend-mode: multiply; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--primary-deep); text-decoration: none; }
.pill {
  background: var(--primary); color: #fff !important;
  padding: 9px 18px; border-radius: 999px; font-size: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pill:hover { transform: translateY(-1px); box-shadow: var(--shadow); text-decoration: none; }

/* ————— Hero ————— */
.hero {
  position: relative;
  padding: 84px 0 40px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -20% -10% auto auto;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(248, 200, 214, 0.55), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary-deep);
  background: var(--pink-light);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(38px, 5.2vw, 60px); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--primary-deep); }
.hero .sub {
  font-size: 19px; color: var(--muted); max-width: 46ch; margin-bottom: 32px;
}
.cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-weight: 800; font-size: 16px;
  padding: 16px 30px; border-radius: 999px;
  box-shadow: 0 10px 28px rgba(212, 114, 138, 0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(212, 114, 138, 0.45); text-decoration: none; }
.cta-note { font-size: 14px; color: var(--muted); }

/* phones */
.phones { position: relative; height: 560px; }
.phone {
  position: absolute;
  width: 264px; height: 520px;
  border-radius: 42px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 30px 70px rgba(184, 92, 138, 0.22), 0 4px 14px rgba(184, 92, 138, 0.12);
  overflow: hidden;
}
.phone img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  border-radius: 34px; display: block;
}
.phone-a { left: 6%; top: 24px; transform: rotate(-5deg); z-index: 2; }
.phone-b { right: 4%; top: 76px; transform: rotate(4deg); }
.float-heart {
  position: absolute; font-size: 28px; opacity: 0.85;
  animation: bob 4.5s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* reveal on load */
.reveal { opacity: 0; transform: translateY(18px); animation: rise .8s ease forwards; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .2s; } .d3 { animation-delay: .34s; }
.d4 { animation-delay: .48s; } .d5 { animation-delay: .62s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ————— Sections ————— */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feature {
  background: var(--card); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }
.tint-pink { background: var(--pink-light); }
.tint-violet { background: rgba(142, 124, 195, 0.16); }
.tint-water { background: rgba(126, 168, 210, 0.16); }
.tint-sage { background: rgba(126, 190, 142, 0.16); }
.tint-peach { background: rgba(228, 162, 122, 0.16); }

/* stages */
.stage-band { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 50%, var(--bg) 100%); }
.stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stage {
  background: var(--card); border-radius: var(--radius); padding: 34px 28px;
  border-top: 5px solid var(--primary);
  box-shadow: var(--shadow-soft);
}
.stage:nth-child(2) { border-top-color: var(--violet); }
.stage:nth-child(3) { border-top-color: var(--sage); }
.stage .big { font-size: 34px; margin-bottom: 10px; display: block; }
.stage h3 { font-size: 22px; margin-bottom: 10px; }
.stage p { color: var(--muted); font-size: 15px; }

/* premium */
.premium {
  background: var(--card); border-radius: 32px;
  padding: 56px 48px; text-align: center;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.premium::after {
  content: "💗"; position: absolute; font-size: 200px; opacity: 0.05;
  right: -30px; bottom: -60px; transform: rotate(-12deg);
}
.premium h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 12px; }
.premium p { color: var(--muted); max-width: 52ch; margin: 0 auto 26px; }
.price-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.price {
  background: var(--bg); border-radius: 18px; padding: 18px 30px; min-width: 190px;
}
.price strong { font-family: "Fraunces", serif; font-size: 26px; display: block; }
.price span { color: var(--muted); font-size: 14px; }
.badge-trial {
  display: inline-block; background: var(--primary-deep); color: #fff;
  font-size: 13px; font-weight: 800; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}

/* waitlist */
.waitlist { max-width: 520px; margin: 0 auto; }
.waitlist-title { font-family: "Fraunces", serif; font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.waitlist-form { display: flex; gap: 10px; }
.waitlist-form input {
  flex: 1; min-width: 0;
  font: inherit; font-size: 16px;
  padding: 14px 20px;
  border: 2px solid var(--pink);
  border-radius: 999px;
  background: #fff; color: var(--ink);
  outline: none;
  transition: border-color .2s ease;
}
.waitlist-form input:focus { border-color: var(--primary); }
.waitlist-form .btn-primary { border: 0; cursor: pointer; font-family: inherit; white-space: nowrap; }
.waitlist-form .btn-primary:disabled { opacity: .6; cursor: default; transform: none; }
.waitlist-msg { margin-top: 12px; font-size: 15px; font-weight: 600; min-height: 1em; }
.waitlist-msg.ok { color: var(--primary-deep); }
.waitlist-msg.err { color: #C0392B; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
@media (max-width: 520px) { .waitlist-form { flex-direction: column; } }

/* privacy band */
.privacy-band { text-align: center; }
.privacy-band .lock { font-size: 40px; display: block; margin-bottom: 14px; }
.privacy-band h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 12px; }
.privacy-band p { color: var(--muted); max-width: 56ch; margin: 0 auto; }

/* ————— Footer ————— */
footer {
  border-top: 1px solid rgba(212, 114, 138, 0.14);
  padding: 44px 0 36px; margin-top: 40px;
}
.foot-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.foot-logo img { height: 40px; mix-blend-mode: multiply; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-links a { color: var(--ink); font-size: 14px; font-weight: 600; }
.disclaimer {
  margin-top: 26px; font-size: 13px; color: var(--muted); max-width: 76ch;
}
.copyright { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* ————— Legal pages ————— */
.legal { max-width: 760px; margin: 0 auto; padding: 64px 24px 80px; }
.legal h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 24px; margin: 40px 0 12px; }
.legal p, .legal li { color: #3a3a3d; font-size: 16px; }
.legal ul { padding-left: 22px; margin: 12px 0; }
.legal li { margin-bottom: 8px; }
.legal .card-note {
  background: var(--pink-light); border-radius: 16px; padding: 18px 22px;
  font-size: 15px; margin: 24px 0;
}

/* ————— Responsive ————— */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phones { height: 480px; margin-top: 12px; }
  .phone { width: 220px; height: 434px; }
  .phone-a { left: 4%; }
  .phone-b { right: 2%; }
  .feature-grid, .stages { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .feature-grid, .stages { grid-template-columns: 1fr; }
  .nav-links a:not(.pill) { display: none; }
  .hero { padding-top: 48px; }
  .premium { padding: 40px 24px; }
}
