/* ============================================================
   heeybaby — Landing "Editorial Warmth"
   Typography-led, GSAP-driven. Colors / logos from the
   heeybaby design system (css/tokens.css).
   Type: Bricolage Grotesque + Instrument Serif (accents).
   ============================================================ */

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

:root {
  --font-sans: "Bricolage Grotesque", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
  --pad-x: clamp(20px, 5vw, 72px);
  --radius-xl: clamp(24px, 3.5vw, 44px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--hb-cream);
  color: var(--hb-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--hb-pink); color: var(--hb-navy); }

img { display: block; }
a { color: inherit; text-decoration: none; }

/* grain overlay */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.15s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn--sm { font-size: 15px; padding: 10px 22px; }
.btn--lg { font-size: clamp(16px, 1.2vw, 18px); padding: 16px 34px; }
.btn--navy { background: var(--hb-navy); color: var(--hb-on-dark); }
.btn--navy:hover { background: var(--hb-navy-700); }
.btn--rose { background: var(--hb-pink); color: var(--hb-navy); }
.btn--rose:hover { background: var(--hb-pink-600); box-shadow: 0 12px 36px -8px rgba(253, 164, 175, 0.85); }
.btn--ghost { background: transparent; color: var(--hb-navy); border-color: var(--hb-navy); }
.btn--ghost:hover { background: var(--hb-navy); color: var(--hb-on-dark); }

/* ============ Kicker / section heads ============ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hb-pink-600);
}
.kicker i {
  font-style: normal;
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  border: 1.5px solid var(--hb-pink);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--hb-pink-600);
}
.kicker--ondark { color: var(--hb-pink); }
.kicker--ondark i { border-color: var(--hb-pink); color: var(--hb-pink); }

.sect-head {
  padding: clamp(90px, 12vh, 150px) var(--pad-x) clamp(36px, 5vh, 64px);
  max-width: 1080px;
  display: grid;
  gap: 22px;
}
.sect-title {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.sect-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--hb-pink-600);
}
.sect-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--hb-ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ============ NAV (floating glass pill) ============ */
.nav {
  position: fixed;
  inset: 14px 0 auto 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding: 0 clamp(12px, 2vw, 24px);
  pointer-events: none;
}
.nav__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
  width: 100%;
  max-width: 1180px;
  padding: 9px 10px 9px 20px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--hb-white) 50%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid color-mix(in oklab, var(--hb-white) 65%, transparent);
  box-shadow: 0 10px 40px -20px rgba(27, 58, 92, 0.28);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.is-scrolled .nav__pill {
  background: color-mix(in oklab, var(--hb-white) 78%, transparent);
  border-color: var(--hb-border-soft);
  box-shadow: 0 14px 44px -20px rgba(27, 58, 92, 0.38);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--hb-pink-600);
}
.nav__brand b { font-weight: 800; color: var(--hb-navy); }
.nav__brand img { height: 30px; width: 30px; }
.nav__links {
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 15px;
  font-weight: 600;
}
.nav__links a { position: relative; padding: 6px 0; color: var(--hb-ink-soft); transition: color 0.25s var(--ease); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--hb-pink);
  border-radius: 2px;
  transition: right 0.3s var(--ease);
}
.nav__links a:hover { color: var(--hb-navy); }
.nav__links a:hover::after { right: 0; }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0 9px;
  background: var(--hb-navy);
  border: none;
  border-radius: 999px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--hb-on-dark);
  border-radius: 2px;
  transition: transform 0.35s var(--ease);
  transform-origin: center;
}
body.menu-open .nav__burger span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav__burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* fullscreen menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: var(--pad-x);
  background: var(--hb-navy);
  color: var(--hb-on-dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu__links { display: grid; gap: 6px; }
.menu__links a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 6px 0;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), color 0.25s;
}
.menu__links a:hover { color: var(--hb-pink); }
.menu__links a i {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--hb-pink);
}
body.menu-open .menu__links a { transform: none; opacity: 1; }
body.menu-open .menu__links a:nth-child(2) { transition-delay: 0.05s; }
body.menu-open .menu__links a:nth-child(3) { transition-delay: 0.1s; }
body.menu-open .menu__links a:nth-child(4) { transition-delay: 0.15s; }
body.menu-open .menu__links a:nth-child(5) { transition-delay: 0.2s; }
body.menu-open .menu__links a:nth-child(6) { transition-delay: 0.25s; }
.menu .btn { align-self: flex-start; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 24px) var(--pad-x) 90px;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: clamp(20px, 3vh, 30px);
  max-width: 1100px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hb-ink-soft);
  background: color-mix(in oklab, var(--hb-white) 75%, transparent);
  border: 1px solid var(--hb-border-soft);
  padding: 8px 18px 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero__badge b { color: var(--hb-navy); }
.hero__avatars { display: inline-flex; }
.hero__avatars span {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--hb-white);
  font-size: 11px;
  font-weight: 800;
  color: var(--hb-navy);
  background: var(--hb-pink-300);
}
.hero__avatars span:nth-child(2) { background: var(--hb-sand); margin-left: -8px; }
.hero__avatars span:nth-child(3) { background: var(--hb-rose-tint); margin-left: -8px; }

.hero__title {
  font-size: clamp(2.9rem, 8.6vw, 7.6rem);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero__title .line { display: block; overflow: hidden; padding: 0.04em 0; }
.hero__title .line > .inner { display: inline-block; will-change: transform; }
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--hb-pink-600);
}
.hero__title .dot { color: var(--hb-pink); }

.hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: var(--hb-ink-soft);
  max-width: 62ch;
  text-wrap: pretty;
}
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.hero__note { font-size: 14px; color: var(--hb-ink-muted); }

.hero__scrollhint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--hb-ink-muted);
  border-radius: 999px;
  z-index: 2;
}
.hero__scrollhint span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--hb-pink-600);
  animation: hint 1.8s var(--ease) infinite;
}
@keyframes hint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ MARQUEE ============ */
.marq {
  background: var(--hb-navy);
  color: var(--hb-cream);
  overflow: hidden;
  padding: 18px 0;
  transform: rotate(-1.2deg) scale(1.02);
}
.marq__track { display: flex; width: max-content; }
.marq__group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding-right: clamp(28px, 4vw, 56px);
}
.marq__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.marq__sep {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--hb-pink);
}

/* ============ INTRO STATEMENT ============ */
.intro {
  padding: clamp(110px, 16vh, 200px) var(--pad-x);
  max-width: 1150px;
}
.intro__text {
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}
.intro__text .w { opacity: 0.16; transition: opacity 0.3s linear; }
.intro__text .w.on { opacity: 1; }

/* ============ FEATURES — stacked cards ============ */
.feats { padding-bottom: clamp(80px, 10vh, 140px); }
.stack {
  display: grid;
  gap: 22px;
  padding: 0 var(--pad-x);
  max-width: 1240px;
  margin: 0 auto;
}
.scard {
  position: sticky;
  top: calc(var(--nav-h) + 10px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  min-height: clamp(360px, 52vh, 500px);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4.5vw, 64px);
  border: 1px solid var(--hb-border-soft);
  box-shadow: 0 -12px 40px -22px rgba(27, 58, 92, 0.25);
  overflow: hidden;
  will-change: transform;
}
.scard--white { background: var(--hb-white); }
.scard--rose  { background: var(--hb-pink-100); }
.scard--sand  { background: var(--hb-sand); }
.scard--cream { background: var(--hb-cream-200); }
.scard--navy  { background: var(--hb-navy); color: var(--hb-on-dark); border-color: var(--hb-navy-500); }
.scard--navy p { color: color-mix(in oklab, var(--hb-on-dark) 78%, var(--hb-navy)); }

.scard__body { display: grid; gap: 16px; align-content: center; }
.scard__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--hb-pink-600);
}
.scard--navy .scard__num { color: var(--hb-pink); }
.scard h3 {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.scard p {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  color: var(--hb-ink-soft);
  max-width: 46ch;
  text-wrap: pretty;
}
.scard__panel {
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: clamp(220px, 30vh, 300px);
  border-radius: 28px;
  padding: clamp(22px, 2.8vw, 38px);
  background: color-mix(in oklab, var(--hb-white) 55%, transparent);
  border: 1px solid color-mix(in oklab, var(--hb-white) 70%, transparent);
}
.scard__panel--center { justify-items: center; }
.scard--white .scard__panel { background: var(--hb-cream); border-color: var(--hb-border-soft); }
.scard--cream .scard__panel { background: var(--hb-white); border-color: var(--hb-border-soft); }
.scard--navy .scard__panel { background: color-mix(in oklab, var(--hb-navy-500) 38%, var(--hb-navy)); border-color: var(--hb-navy-500); }

/* mini demos inside cards */
.scard__demo { width: 100%; }
.scard__demo--uheft { display: grid; gap: 10px; }
.urow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  background: var(--hb-white);
  border: 1px solid var(--hb-border-soft);
  border-radius: 14px;
  padding: 12px 16px;
  color: var(--hb-ink-soft);
}
.scard--navy .urow { background: color-mix(in oklab, var(--hb-navy-500) 38%, var(--hb-navy)); border-color: var(--hb-navy-500); color: var(--hb-on-dark); }
.urow b { color: inherit; font-weight: 800; white-space: nowrap; }
.urow > span { flex: 1; }
.urow em { margin-left: auto; font-style: normal; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.urow em.ok { background: var(--hb-success-bg); color: var(--hb-success); }
.scard--navy .urow em.ok { background: color-mix(in oklab, var(--hb-success) 25%, transparent); }
.urow em.due { background: var(--hb-pink-100); color: var(--hb-pink-600); }
.urow em.open { background: var(--hb-cream); color: var(--hb-ink-muted); }
.scard--navy .urow em.open { background: color-mix(in oklab, var(--hb-on-dark) 12%, transparent); color: var(--hb-ink-muted); }
.scard--navy .urow em.due { background: color-mix(in oklab, var(--hb-pink) 28%, transparent); color: var(--hb-pink-300); }
.urow.hot { border-color: var(--hb-pink); }

.scard__demo--pill, .scard__demo--steps { display: flex; flex-wrap: wrap; gap: 8px; }
.dpill, .dstep {
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--hb-white);
  border: 1px solid var(--hb-border-soft);
  color: var(--hb-ink-muted);
}
.dpill.on { background: var(--hb-navy); border-color: var(--hb-navy); color: var(--hb-on-dark); }
.scard--navy .dpill { background: transparent; border-color: var(--hb-navy-500); color: var(--hb-ink-muted); }
.scard--navy .dpill.on { background: var(--hb-pink); border-color: var(--hb-pink); color: var(--hb-navy); }
.dstep.done { color: var(--hb-ink-soft); text-decoration: line-through; }
.dstep.now { background: var(--hb-navy); border-color: var(--hb-navy); color: var(--hb-on-dark); }

/* ============ STEPS ============ */
.steps { background: var(--hb-white); border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.steps__rail {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 10px var(--pad-x) clamp(100px, 13vh, 170px);
}
.steps__line {
  position: absolute;
  top: 0;
  bottom: clamp(100px, 13vh, 170px);
  left: calc(var(--pad-x) + 31px);
  width: 4px;
  height: auto;
}
.steps__list { list-style: none; display: grid; gap: clamp(48px, 7vh, 80px); }
.step { display: flex; gap: clamp(20px, 3vw, 40px); align-items: flex-start; }
.step__num {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--hb-pink-100);
  border: 2px solid var(--hb-pink);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--hb-navy);
  position: relative;
  z-index: 1;
}
.step__tx { display: grid; gap: 10px; padding-top: 8px; }
.step__tx h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 800; letter-spacing: -0.02em; }
.step__tx p { color: var(--hb-ink-soft); max-width: 58ch; text-wrap: pretty; }
.step__code {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  margin-top: 6px;
  padding: 10px 18px;
  border-radius: 14px;
  background: var(--hb-cream);
  border: 1px dashed var(--hb-pink);
  font-weight: 800;
  letter-spacing: 0.12em;
}
.step__code i { font-style: normal; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--hb-ink-muted); }

/* ============ DARK BAND (tracker) ============ */
.dark {
  background: var(--hb-navy);
  color: var(--hb-on-dark);
  border-radius: var(--radius-xl);
  margin: 0 clamp(8px, 1.2vw, 20px);
  overflow: hidden;
}
.dark .sect-title { color: var(--hb-on-dark); }
.dark .sect-title em { color: var(--hb-pink); }
.dark .sect-lead { color: color-mix(in oklab, var(--hb-on-dark) 72%, var(--hb-navy)); }

.dark__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(90px, 12vh, 150px) var(--pad-x) clamp(60px, 8vh, 100px);
  max-width: 1240px;
  margin: 0 auto;
}
.dark__copy { display: grid; gap: 22px; justify-items: start; }
.dark__chips { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; max-width: 480px; margin-top: 8px; }
.dchip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 18px;
  background: color-mix(in oklab, var(--hb-navy-500) 32%, var(--hb-navy));
  border: 1px solid var(--hb-navy-500);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.dchip:hover { transform: translateY(-3px); border-color: var(--hb-pink); }
.dchip__ic {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--hb-pink) 18%, transparent);
  color: var(--hb-pink);
}
.dchip span { display: grid; line-height: 1.3; }
.dchip b { font-size: 15px; }
.dchip i { font-style: normal; font-size: 12.5px; color: var(--hb-ink-muted); }

.tpanel {
  background: color-mix(in oklab, var(--hb-navy-500) 26%, var(--hb-navy));
  border: 1px solid var(--hb-navy-500);
  border-radius: 28px;
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 14px;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.5);
}
.tpanel__head { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 15px; }
.tpanel__head span { font-size: 12px; font-weight: 700; color: var(--hb-pink); background: color-mix(in oklab, var(--hb-pink) 18%, transparent); padding: 4px 12px; border-radius: 999px; }
.tpanel__big { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.tpanel__big b { font-variant-numeric: tabular-nums; }
.tpanel__delta { font-size: 13.5px; color: var(--hb-success); font-weight: 700; }
.tpanel__bars { display: flex; align-items: flex-end; gap: 10px; height: 130px; margin-top: 6px; }
.tpanel__bars i {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: color-mix(in oklab, var(--hb-pink) 38%, var(--hb-navy));
  transform-origin: bottom;
}
.tpanel__bars i.hi { background: var(--hb-pink); }
.tpanel__days { display: flex; gap: 10px; font-size: 12px; color: var(--hb-ink-muted); }
.tpanel__days span { flex: 1; text-align: center; }
.tpanel__sync {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--hb-navy-500);
  font-size: 13.5px;
  font-weight: 600;
}
.tpanel__sync i { font-style: normal; color: var(--hb-ink-muted); }
.ava {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--hb-sand);
  color: var(--hb-navy);
  font-size: 12px;
  font-weight: 800;
}

/* ============ PRIVACY (light) ============ */
.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 10px var(--pad-x) clamp(40px, 6vh, 80px);
  max-width: 1240px;
  margin: 0 auto;
}
.pitem {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 28px 26px;
  border-radius: 22px;
  background: var(--hb-white);
  border: 1px solid var(--hb-border-soft);
  box-shadow: 0 20px 44px -32px rgba(27, 58, 92, 0.3);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pitem:hover { transform: translateY(-4px); border-color: var(--hb-pink); }
.pitem h3 { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.01em; color: var(--hb-navy); }
.pitem p { font-size: 14.5px; color: var(--hb-ink-soft); }

/* ============ TESTIMONIALS ============ */
.voices { padding-bottom: clamp(40px, 6vh, 80px); }
.voices__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 var(--pad-x);
  max-width: 1240px;
  margin: 0 auto;
}
.vcard {
  display: grid;
  gap: 18px;
  align-content: start;
  background: var(--hb-white);
  border: 1px solid var(--hb-border-soft);
  border-radius: 26px;
  padding: clamp(26px, 2.6vw, 38px);
  box-shadow: 0 24px 50px -34px rgba(27, 58, 92, 0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.vcard:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -34px rgba(27, 58, 92, 0.45); }
.vcard--lift { transform: translateY(-18px); }
.vcard--lift:hover { transform: translateY(-24px); }
.vcard__stars { color: var(--hb-pink-600); letter-spacing: 4px; font-size: 15px; }
.vcard blockquote {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.vcard figcaption { display: flex; align-items: center; gap: 12px; }
.vcard figcaption span:last-child { display: grid; line-height: 1.35; }
.vcard b { font-size: 14.5px; }
.vcard i { font-style: normal; font-size: 13px; color: var(--hb-ink-muted); }
.ava--rose { background: var(--hb-pink-300); }
.ava--pink { background: var(--hb-rose-tint); }
.ava--sand { background: var(--hb-sand); }
.vcard .ava { width: 38px; height: 38px; font-size: 14px; }

/* ============ PRICING ============ */
.pricing { background: var(--hb-white); border-radius: var(--radius-xl); margin: clamp(40px, 6vh, 80px) clamp(8px, 1.2vw, 20px) 0; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 var(--pad-x) clamp(90px, 12vh, 150px);
  max-width: 1280px;
  margin: 0 auto;
}
.plan {
  position: relative;
  display: grid;
  gap: 8px;
  align-content: start;
  border: 1px solid var(--hb-border);
  border-radius: 24px;
  padding: 28px 26px;
  background: var(--hb-white);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.plan:hover { transform: translateY(-6px); border-color: var(--hb-pink); box-shadow: 0 30px 60px -36px rgba(27, 58, 92, 0.4); }
.plan h3 { font-size: 1.05rem; font-weight: 800; }
.plan__price { font-size: clamp(2.1rem, 2.8vw, 2.7rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.plan__price span { font-size: 0.95rem; font-weight: 600; color: var(--hb-ink-muted); letter-spacing: 0; }
.plan__note { font-size: 13.5px; color: var(--hb-ink-muted); padding-bottom: 12px; border-bottom: 1px solid var(--hb-border-soft); }
.plan ul { list-style: none; display: grid; gap: 10px; padding-top: 14px; }
.plan li {
  position: relative;
  font-size: 14.5px;
  color: var(--hb-ink-soft);
  padding-left: 26px;
}
.plan li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--hb-pink-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 7.5L5.5 10.5L11.5 3.5' stroke='%231B3A5C' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center / 9px no-repeat;
}
.plan--hot { background: var(--hb-pink-100); border-color: var(--hb-pink); box-shadow: 0 30px 60px -32px rgba(253, 164, 175, 0.9); }
.plan--hot li::before { background-color: var(--hb-pink); }
.plan__badge {
  position: absolute;
  top: -13px;
  left: 22px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--hb-navy);
  color: var(--hb-on-dark);
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============ FAQ ============ */
.faq__list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(90px, 12vh, 150px);
}
.faq__item {
  background: var(--hb-white);
  border: 1px solid var(--hb-border-soft);
  border-radius: 20px;
  padding: 0 clamp(20px, 2.4vw, 30px);
  transition: border-color 0.3s var(--ease);
}
.faq__item[open] { border-color: var(--hb-pink); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: clamp(18px, 2vw, 24px) 0;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__ic {
  flex: 0 0 auto;
  position: relative;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--hb-pink-100);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.faq__ic::before, .faq__ic::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  margin: -1px 0 0 -6px;
  border-radius: 2px;
  background: var(--hb-navy);
}
.faq__ic::after { transform: rotate(90deg); }
.faq__item[open] .faq__ic { transform: rotate(135deg); background: var(--hb-pink); }
.faq__item p {
  color: var(--hb-ink-soft);
  padding: 0 0 clamp(18px, 2vw, 24px);
  max-width: 68ch;
  text-wrap: pretty;
}

/* ============ CTA ============ */
.cta { padding: 0 clamp(8px, 1.2vw, 20px) clamp(40px, 6vh, 80px); }
.cta__card {
  position: relative;
  overflow: hidden;
  background: var(--hb-navy);
  color: var(--hb-on-dark);
  border-radius: var(--radius-xl);
  padding: clamp(80px, 11vh, 140px) var(--pad-x);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 20px;
}
.cta__heart {
  position: absolute;
  right: -4%;
  bottom: -18%;
  width: clamp(220px, 30vw, 420px);
  opacity: 0.14;
  pointer-events: none;
}
.cta__card h2 {
  position: relative;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 18ch;
  text-wrap: balance;
}
.cta__card h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--hb-pink);
}
.cta__card p {
  position: relative;
  color: color-mix(in oklab, var(--hb-on-dark) 72%, var(--hb-navy));
  max-width: 52ch;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  text-wrap: pretty;
}
.cta__stores { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 10px; }
.store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--hb-cream);
  color: var(--hb-navy);
  border-radius: 16px;
  padding: 12px 22px;
  transition: background 0.3s var(--ease), transform 0.15s var(--ease), box-shadow 0.3s var(--ease);
}
.store:hover { background: var(--hb-white); box-shadow: 0 14px 36px -10px rgba(253, 164, 175, 0.5); }
.store:active { transform: scale(0.97); }
.store span { display: grid; text-align: left; line-height: 1.2; }
.store i { font-style: normal; font-size: 11.5px; font-weight: 600; color: var(--hb-ink-soft); }
.store b { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }

/* ============ FOOTER ============ */
.footer { position: relative; overflow: hidden; padding: clamp(60px, 8vh, 100px) var(--pad-x) 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 60px);
  max-width: 1240px;
  margin: 0 auto;
}
.footer__brand { display: grid; gap: 16px; align-content: start; justify-items: start; }
.footer__brand p { color: var(--hb-ink-soft); font-size: 15px; max-width: 34ch; text-wrap: pretty; }
.footer__col { display: grid; gap: 10px; align-content: start; }
.footer__col h4 { font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hb-ink-muted); margin-bottom: 6px; }
.footer__col a { font-size: 15px; font-weight: 600; color: var(--hb-ink-soft); width: fit-content; transition: color 0.25s; }
.footer__col a:hover { color: var(--hb-pink-600); }
.footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1240px;
  margin: clamp(40px, 6vh, 70px) auto 0;
  padding: 22px 0;
  border-top: 1px solid var(--hb-border);
  font-size: 14px;
  color: var(--hb-ink-muted);
}
.footer__giant {
  font-size: clamp(5rem, 17vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.78;
  text-align: center;
  color: var(--hb-pink-600);
  -webkit-text-stroke: 2px var(--hb-pink-600);
  -webkit-text-fill-color: transparent;
  user-select: none;
  margin-bottom: -0.06em;
  opacity: 0.55;
}
.footer__giant b { -webkit-text-stroke-color: var(--hb-navy); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .pgrid, .pricing__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { row-gap: 26px; }
  .voices__row { grid-template-columns: 1fr; max-width: 640px; }
  .vcard--lift, .vcard--lift:hover { transform: none; }
  .dark__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__pill { padding-left: 16px; }
  .scard { grid-template-columns: 1fr; min-height: 0; gap: 24px; }
  .scard__panel { min-height: 0; }
  .steps__line { display: none; }
  .step { flex-direction: column; gap: 14px; }
  .step__num { width: 54px; height: 54px; font-size: 1.4rem; }
  .pgrid, .pricing__grid, .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1 1 auto; }
  .hero__scrollhint { display: none; }
  .footer__meta { flex-direction: column; gap: 8px; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .intro__text .w { opacity: 1; }
}

/* ============================================================
   Rich feature demos: Info-Fokus (U-Heft, Impfung, Beikost,
   Phase, Elterngeld-Schritte, Notfallpass) + iPhone-Mockup
   ============================================================ */

/* --- U5-Fokus (Themen + Mitbringen) --- */
.ufocus {
  display: grid;
  gap: 8px;
  background: var(--hb-white);
  border: 1px solid var(--hb-border-soft);
  border-radius: 14px;
  padding: 14px 16px;
}
.ufocus__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hb-ink-muted);
  margin-top: 4px;
}
.ufocus__label:first-child { margin-top: 0; }
.ufocus__topics, .ufocus__bring { display: flex; flex-wrap: wrap; gap: 6px; }
.ufocus__topics span {
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--hb-pink-100);
  color: var(--hb-pink-600);
}
.ufocus__bring span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--hb-cream);
  border: 1px dashed var(--hb-border);
  color: var(--hb-ink-soft);
}
.ufocus__bring span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--hb-pink);
}

/* --- Impf-Detail (6-fach) --- */
.vdetail {
  display: grid;
  gap: 8px;
  background: var(--hb-white);
  border: 1px solid var(--hb-border-soft);
  border-radius: 14px;
  padding: 14px 16px;
}
.vdetail__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--hb-navy);
}
.vdetail p { font-size: 13px; color: var(--hb-ink-soft); line-height: 1.45; max-width: none; }
.vdetail__doses {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.vdetail__doses i {
  width: 26px; height: 8px;
  border-radius: 999px;
  background: var(--hb-cream);
  border: 1px solid var(--hb-border-soft);
}
.vdetail__doses i.done { background: var(--hb-success); border-color: var(--hb-success); }
.vdetail__doses i.now { background: var(--hb-pink); border-color: var(--hb-pink); }
.vdetail__doses span { font-size: 12px; font-weight: 600; color: var(--hb-ink-muted); margin-left: 6px; }

/* --- Beikost-Bereiche --- */
.scard__demo--areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.darea {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 14px;
  border-radius: 12px;
  background: var(--hb-white);
  border: 1px solid var(--hb-border-soft);
  color: var(--hb-ink-soft);
}
.darea::before {
  content: '';
  flex: 0 0 auto;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hb-border);
}
.darea.done { color: var(--hb-ink-muted); }
.darea.done::before { background: var(--hb-success); }
.darea.now { border-color: var(--hb-pink); color: var(--hb-navy); box-shadow: 0 6px 18px -10px rgba(251, 140, 154, 0.7); }
.darea.now::before { background: var(--hb-pink); }

/* --- Meilenstein-Phase --- */
.scard__demo--phase { display: grid; gap: 12px; }
.phase__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.phase__head b { font-size: 16px; font-weight: 800; color: var(--hb-navy); }
.phase__head span {
  font-size: 12px;
  font-weight: 700;
  color: var(--hb-pink-600);
  background: var(--hb-pink-100);
  padding: 4px 12px;
  border-radius: 999px;
}
.phase__list { list-style: none; display: grid; gap: 7px; margin: 0; padding: 0; }
.phase__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 12px;
  background: var(--hb-white);
  border: 1px solid var(--hb-border-soft);
  color: var(--hb-ink-soft);
}
.phase__list li::before {
  content: '';
  flex: 0 0 auto;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--hb-border);
  background: var(--hb-white);
}
.phase__list li.done::before {
  background: var(--hb-success);
  border-color: var(--hb-success);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5 7 11l5-6' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.phase__list li.done { color: var(--hb-ink-muted); }
.phase__list li.now { border-color: var(--hb-pink); color: var(--hb-navy); }
.phase__list li.now::before { border-color: var(--hb-pink); background: var(--hb-pink-100); }

/* --- Elterngeld-Schritte (navy card) --- */
.scard__demo--asteps { display: grid; gap: 12px; }
.asteps__title { font-size: 14px; font-weight: 800; color: var(--hb-on-dark); }
.asteps { list-style: none; display: grid; gap: 8px; margin: 0; padding: 0; }
.asteps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  padding: 10px 14px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--hb-navy-500) 38%, var(--hb-navy));
  border: 1px solid var(--hb-navy-500);
  color: color-mix(in oklab, var(--hb-on-dark) 80%, var(--hb-navy));
}
.asteps li b {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  background: color-mix(in oklab, var(--hb-on-dark) 12%, transparent);
  color: var(--hb-ink-muted);
}
.asteps li.done b {
  background: color-mix(in oklab, var(--hb-success) 30%, transparent);
  color: var(--hb-success);
}
.asteps li.done { color: var(--hb-ink-muted); }
.asteps li.now { border-color: var(--hb-pink); color: var(--hb-on-dark); }
.asteps li.now b { background: var(--hb-pink); color: var(--hb-navy); }

/* --- Notfallpass --- */
.scard__panel--pass { padding: clamp(14px, 1.8vw, 22px); }
.epass {
  display: grid;
  gap: 14px;
  background: var(--hb-white);
  border: 1px solid var(--hb-border-soft);
  border-radius: 22px;
  padding: clamp(18px, 2.2vw, 26px);
  box-shadow: 0 24px 50px -28px rgba(27, 58, 92, 0.45);
}
.epass__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hb-border-soft);
}
.epass__ava {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--hb-pink-100);
  color: var(--hb-pink-600);
  font-weight: 800;
  font-size: 18px;
}
.epass__id { display: grid; line-height: 1.25; }
.epass__id b { font-size: 16px; font-weight: 800; color: var(--hb-navy); }
.epass__id i { font-style: normal; font-size: 12.5px; color: var(--hb-ink-muted); }
.epass__badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hb-error);
  background: var(--hb-error-bg);
  padding: 5px 12px;
  border-radius: 999px;
}
.epass__vitals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.epass__vitals span {
  display: grid;
  gap: 2px;
  text-align: center;
  background: var(--hb-cream);
  border: 1px solid var(--hb-border-soft);
  border-radius: 12px;
  padding: 10px 6px;
}
.epass__vitals i { font-style: normal; font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--hb-ink-muted); }
.epass__vitals b { font-size: 15px; font-weight: 800; color: var(--hb-navy); }
.epass__rows { display: grid; gap: 6px; }
.epass__rows > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--hb-cream);
}
.epass__rows i { font-style: normal; font-weight: 700; color: var(--hb-ink-muted); white-space: nowrap; }
.epass__rows b { font-weight: 700; color: var(--hb-navy); text-align: right; }
.epass__rows .epass__sos { background: var(--hb-error-bg); }
.epass__rows .epass__sos i { color: var(--hb-error); }

/* --- iPhone-Mockup (dark band) --- */
.phone {
  position: relative;
  width: min(340px, 100%);
  margin: 0 auto;
  border-radius: 52px;
  background: #08111d;
  border: 1px solid color-mix(in oklab, var(--hb-navy-500) 70%, var(--hb-navy));
  padding: 12px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.06),
    0 50px 100px -40px rgba(0, 0, 0, 0.7);
}
.phone__island {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  border-radius: 999px;
  background: #05090f;
  z-index: 2;
}
.phone__screen {
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(180deg, color-mix(in oklab, var(--hb-navy-500) 20%, var(--hb-navy)), var(--hb-navy));
  padding: 16px 14px 18px;
  display: grid;
  gap: 12px;
}
.phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--hb-on-dark);
  padding: 2px 10px 0;
}
.phone__status-ic { display: inline-flex; gap: 3px; align-items: center; }
.phone__status-ic i {
  width: 14px; height: 9px;
  border-radius: 3px;
  background: color-mix(in oklab, var(--hb-on-dark) 35%, transparent);
}
.phone__status-ic i:last-child { width: 20px; background: color-mix(in oklab, var(--hb-on-dark) 75%, transparent); }
.phone__app {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 700;
  color: var(--hb-on-dark);
  padding: 2px 10px;
}
.phone__app b { color: var(--hb-pink); }
.phone__app img { width: 20px; height: 20px; }
.tpanel--phone {
  box-shadow: none;
  border-radius: 24px;
  padding: 18px 16px 20px;
}
.tpanel--phone .tpanel__bars { height: 96px; }
.tpanel--phone .tpanel__big { font-size: 2.1rem; }

@media (max-width: 760px) {
  .scard__demo--areas { grid-template-columns: 1fr; }
  .epass__vitals { grid-template-columns: repeat(3, 1fr); }
  .phone { width: min(300px, 100%); }
}
