/* ============================================================
   Hello Baby — Landing page
   Ported from "Hello Baby Landing.dc.html" (Claude Design)
   ============================================================ */

:root {
  --cream:      #FFF8F1;
  --sand:       #FBEDE4;
  --sand-line:  #F1DFD1;
  --blush:      #FBE7E9;
  --rose:       #C2697A;
  --rose-dark:  #a5525f;
  --pink-1:     #F7C9D9;
  --pink-2:     #E29CC0;
  --ink:        #3f3029;
  --ink-deep:   #473028;
  --ink-soft:   #5c4a42;
  --ink-black:  #2c211c;
  --muted:      #8a766c;
  --muted-2:    #a08c80;
  --muted-3:    #a89588;
  --muted-4:    #b3a196;
  --line:       #F3E4D8;
  --line-2:     #EEDDD0;
  --green-bg:   #EFF3EA;
  --green:      #6d8259;
  --clay:       #a97b52;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Nunito', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1180px;
  --gutter: 28px;
  --radius-card: 28px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
/* height:auto is required — the imgs carry intrinsic width/height attributes,
   so without it the attribute height wins and the phone shots stretch. */
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; }

a { color: var(--rose); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--rose-dark); }

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--rose);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 14px 0;
  font-weight: 800;
}
.skip-link:focus { left: 0; color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; }

/* ---------- animations ---------- */
@keyframes hb-float  { 0%, 100% { transform: translateY(0); }  50% { transform: translateY(-12px); } }
@keyframes hb-float2 { 0%, 100% { transform: translateY(0); }  50% { transform: translateY(-8px); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 241, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { color: var(--ink); }

.brand__mark {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--pink-1), var(--pink-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 18px -10px rgba(190, 110, 150, .9);
}

.brand__name { font-size: 19px; font-weight: 800; letter-spacing: -.3px; }

.brand--sm .brand__mark { width: 32px; height: 32px; border-radius: 11px; font-size: 17px; }
.brand--sm .brand__name { font-size: 15px; }

.nav__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav__links a { font-size: 14.5px; font-weight: 700; color: var(--muted); }
.nav__links a:hover { color: var(--rose); }

/* language switch */
.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--sand);
  border-radius: 100px;
  padding: 3px;
  flex: none;
}

.lang__btn {
  padding: 6px 13px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: var(--muted-2);
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.lang__btn:hover { color: var(--rose); }
.lang__btn[aria-pressed="true"] {
  background: #fff;
  color: var(--rose);
  box-shadow: 0 4px 10px -6px rgba(150, 110, 95, .8);
}

.nav__cta { height: 42px; padding: 0 20px; font-size: 14px; white-space: nowrap; }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  flex: none;
  border: 1.5px solid var(--line-2);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .22s ease, opacity .18s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--gutter) 20px;
  border-top: 1px solid var(--line);
}
.nav__mobile a { font-size: 16px; font-weight: 700; color: var(--muted); padding: 12px 4px; }
.nav__mobile .btn { margin-top: 8px; height: 48px; justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn--rose {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 12px 24px -14px rgba(194, 105, 122, .95);
}
.btn--rose:hover { background: var(--rose-dark); color: #fff; }

.btn--ghost {
  background: #fff;
  color: var(--rose);
  border: 1.5px solid rgba(226, 156, 192, .65);
}
.btn--ghost:hover { background: #fff; color: var(--rose-dark); }

.btn--lg { height: 54px; padding: 0 30px; font-size: 16px; }
.btn--lg.btn--rose { box-shadow: 0 18px 34px -16px rgba(194, 105, 122, .95); }

/* store buttons */
.store {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 26px 13px 20px;
  border-radius: 100px;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.store:active { transform: translateY(1px); }

.store__icon {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}

.store__text { display: block; text-align: left; line-height: 1.15; }
.store__kicker { display: block; font-size: 11px; font-weight: 700; }
.store__name   { display: block; font-size: 16px; font-weight: 800; }

.store--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 34px -18px rgba(63, 48, 41, .85);
}
.store--dark:hover { background: var(--ink-black); color: #fff; }
.store--dark .store__icon { background: rgba(255, 255, 255, .14); }
.store--dark .store__kicker { opacity: .7; }

.store--light {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
  box-shadow: 0 18px 34px -22px rgba(150, 110, 95, .7);
}
.store--light:hover { border-color: #E0BFAE; color: var(--ink); }
.store--light .store__icon { background: var(--sand); }
.store--light .store__kicker { color: var(--muted-2); }

.store--cream {
  background: var(--cream);
  color: var(--ink);
}
.store--cream:hover { background: #fff; color: var(--ink); }
.store--cream .store__icon { background: var(--sand); }
.store--cream .store__kicker { color: var(--muted-2); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: radial-gradient(110% 90% at 50% 0%, #FCEDE6 0%, var(--cream) 60%);
  padding: 72px var(--gutter) 0;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 217, 220, .7) 0%, rgba(249, 217, 220, 0) 65%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: .2px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(38px, 6.4vw, 64px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink-deep);
  margin: 22px auto 0;
  max-width: 840px;
  text-wrap: pretty;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
  max-width: 620px;
  margin: 20px auto 0;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero__note {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-3);
  margin-top: 16px;
}

/* phone trio */
.phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 26px;
  margin-top: 56px;
}

.phones figure { flex: none; }

.phones__side { width: 230px; opacity: .96; animation: hb-float2 7s ease-in-out infinite; }
.phones__side--b { animation-duration: 7.6s; }
.phones__side img { border-radius: 34px; box-shadow: 0 34px 60px -34px rgba(150, 95, 80, .6); }

.phones__center {
  width: 300px;
  margin-bottom: 34px;
  animation: hb-float 6s ease-in-out infinite;
}
.phones__center img { border-radius: 42px; box-shadow: 0 44px 80px -34px rgba(150, 95, 80, .7); }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--cream); padding: 64px var(--gutter) 0; }

.stats__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--sand);
  border-radius: 30px;
  padding: 34px 28px;
}

.stat { text-align: center; }
.stat__n {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 38px;
  color: var(--rose);
  line-height: 1;
}
.stat__label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.section-head--left { text-align: left; margin: 0; max-width: 580px; }

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  color: var(--ink-deep);
  margin-top: 14px;
  text-wrap: pretty;
}

.section-sub {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 14px;
  text-wrap: pretty;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 96px var(--gutter) 0; }

.feature {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}
.feature--reverse { grid-template-columns: 380px 1fr; }
.feature + .feature { margin-top: 96px; }

.feature__shot { justify-self: center; }
.feature__shot img {
  width: 340px;
  border-radius: 40px;
  box-shadow: 0 40px 70px -34px rgba(150, 95, 80, .6);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
}
.tag > span:first-child { font-size: 16px; }
.tag--rose  { background: var(--blush);    color: var(--rose); }
.tag--green { background: var(--green-bg); color: var(--green); }
.tag--sand  { background: var(--sand);     color: var(--clay); }

.feature__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.22;
  color: var(--ink-deep);
  margin-top: 18px;
  max-width: 460px;
  text-wrap: pretty;
}

.feature__text {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 480px;
  text-wrap: pretty;
}

.checks { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.checks li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}
.checks__dot {
  width: 22px; height: 22px;
  flex: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
}
.checks--rose  .checks__dot { background: var(--blush);    color: var(--rose); }
.checks--green .checks__dot { background: var(--green-bg); color: var(--green); }
.checks--sand  .checks__dot { background: var(--sand);     color: var(--clay); }

/* ============================================================
   FAMILY
   ============================================================ */
.family {
  margin-top: 110px;
  background: linear-gradient(170deg, #FCEDE6 0%, #F7E3DC 100%);
  padding: 88px var(--gutter);
}

.roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.role {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  box-shadow: 0 24px 44px -32px rgba(150, 95, 80, .6);
}

.role__icon {
  width: 52px; height: 52px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}

.role__title { font-size: 19px; font-weight: 800; margin-top: 18px; }

.role__body {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 8px;
  text-wrap: pretty;
}

/* ============================================================
   PLATFORMS
   ============================================================ */
.platforms { padding: 96px var(--gutter) 0; }

.platforms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}

.plat {
  border-radius: 34px;
  padding: 38px 36px;
  position: relative;
  overflow: hidden;
}

.plat__blob {
  position: absolute;
  right: -60px; top: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
}

.plat__content { position: relative; }

.plat--ios { background: var(--ink); color: var(--cream); }
.plat--ios .plat__blob { background: rgba(255, 255, 255, .06); }

.plat--android {
  background: var(--sand);
  border: 1.5px solid var(--sand-line);
  color: var(--ink);
}
.plat--android .plat__blob { background: rgba(255, 255, 255, .5); }

.plat__head { display: flex; align-items: center; gap: 14px; }

.plat__icon {
  width: 52px; height: 52px;
  flex: none;
  border-radius: 17px;
  background: rgba(255, 255, 255, .12);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.plat__icon--green { background: var(--green-bg); }

.plat__title { font-size: 22px; font-weight: 800; }

.plat__req { font-size: 13.5px; font-weight: 600; margin-top: 2px; }
.plat--ios     .plat__req { color: rgba(255, 248, 241, .6); }
.plat--android .plat__req { color: var(--muted-2); }

.plat__list { display: flex; flex-direction: column; gap: 11px; margin-top: 26px; }
.plat__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
}
.plat--ios     .plat__list li { color: rgba(255, 248, 241, .85); }
.plat--ios     .plat__list li > span:first-child { color: var(--pink-1); }
.plat--android .plat__list li { color: var(--ink-soft); }
.plat--android .plat__list li > span:first-child { color: var(--rose); }

.plat__foot {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.plat__foot .store { padding: 13px 24px 13px 18px; gap: 12px; }
.plat__foot .store__icon { width: 32px; height: 32px; }
.plat__foot .store__name { font-size: 15.5px; }

.qr { display: flex; align-items: center; gap: 11px; }

.qr__code {
  width: 64px; height: 64px;
  flex: none;
  border-radius: 14px;
  background: repeating-linear-gradient(45deg, var(--cream) 0 5px, #E7D8CC 5px 10px);
  border: 3px solid var(--cream);
}
.plat--android .qr__code { border-color: #fff; }

.qr__label {
  font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  line-height: 1.4;
  max-width: 60px;
}
.plat--ios     .qr__label { color: rgba(255, 248, 241, .55); }
.plat--android .qr__label { color: var(--muted-2); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 96px var(--gutter) 0; }
.faq__wrap { max-width: 840px; margin: 0 auto; }

.faq__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1.18;
  color: var(--ink-deep);
  text-align: center;
}

.faq__list { display: flex; flex-direction: column; gap: 14px; margin-top: 38px; }

.faq__item {
  background: var(--cream);
  border: 1.5px solid #F1E4DA;
  border-radius: 22px;
  padding: 22px 26px;
}
.faq__q { font-size: 17px; font-weight: 800; color: var(--ink); }
.faq__a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 8px;
  text-wrap: pretty;
}

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 96px var(--gutter) 0; }

.cta__card {
  max-width: var(--wrap);
  margin: 0 auto;
  background: linear-gradient(160deg, var(--cream) 0%, #FCEAE4 52%, #F9D9DC 100%);
  border-radius: 40px;
  padding: 72px 40px;
  text-align: center;
  box-shadow: 0 40px 70px -44px rgba(201, 128, 128, .7);
  position: relative;
  overflow: hidden;
}

.cta__blob {
  position: absolute;
  top: -70px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
}

.cta__content { position: relative; }
.cta__emoji { font-size: 38px; line-height: 1; }

.cta__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  color: var(--ink-deep);
  margin-top: 14px;
  text-wrap: pretty;
}

.cta__sub {
  font-size: 17px;
  font-weight: 500;
  color: #8a5763;
  line-height: 1.6;
  margin: 12px auto 0;
  max-width: 540px;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  padding: 38px var(--gutter) 48px;
}

.footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__spacer { flex: 1; }

.footer__links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__links a { font-size: 13.5px; font-weight: 700; color: var(--muted); }
.footer__links a:hover { color: var(--rose); }

.footer__copy {
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-4);
  margin-top: 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .phones { gap: 18px; }
  .phones__side   { width: 190px; }
  .phones__center { width: 250px; }
  .feature        { grid-template-columns: 1fr 320px; gap: 44px; }
  .feature--reverse { grid-template-columns: 320px 1fr; }
  .feature__shot img { width: 300px; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { gap: 14px; }
  .lang { margin-left: auto; }
  .nav__mobile { display: flex; }
  .nav__mobile[hidden] { display: none; }

  .feature,
  .feature--reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 56px;
  }
  .feature + .feature { margin-top: 72px; }
  .feature--reverse .feature__shot { order: 2; }
  .feature__title, .feature__text { max-width: none; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .roles { grid-template-columns: 1fr; }
  .platforms__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }

  .hero { padding-top: 52px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .store { justify-content: center; }

  .phones { gap: 0; margin-top: 44px; }
  .phones__side { display: none; }
  .phones__center { width: min(260px, 72vw); margin-bottom: 0; }

  .features, .platforms, .faq, .cta { padding-top: 68px; }
  .family { margin-top: 72px; padding: 64px var(--gutter); }
  .stats  { padding-top: 48px; }
  .stats__grid { padding: 28px 20px; border-radius: 26px; }

  .plat { padding: 30px 24px; border-radius: 28px; }
  .plat__foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  .plat__foot .store { width: 100%; justify-content: flex-start; }

  .cta__card { padding: 52px 24px; border-radius: 32px; }
  .cta__actions { flex-direction: column; align-items: stretch; }
  .cta__actions .btn { width: 100%; }

  .faq__item { padding: 20px 20px; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__spacer { display: none; }
  .footer__links { gap: 16px 20px; }
}

@media (max-width: 380px) {
  .stats__grid { grid-template-columns: 1fr; }
}
