:root {
  --ink: #201627;
  --ink-soft: #665c6d;
  --ink-faint: #968c9c;
  --cream: #fffaf7;
  --paper: #fffdfb;
  --card: rgba(255, 255, 255, 0.72);
  --line: rgba(76, 48, 83, 0.11);
  --coral: #ff686d;
  --coral-deep: #ee4c63;
  --peach: #ffb696;
  --violet: #8068e8;
  --violet-soft: #bcaef7;
  --blue: #67bde0;
  --teal: #5ac7b4;
  --shadow: 0 30px 90px rgba(73, 38, 82, 0.14);
  --font-display: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  color: var(--ink);
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body::before {
  background-image:
    linear-gradient(rgba(61, 37, 67, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 37, 67, 0.027) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 66%);
  pointer-events: none;
  position: fixed;
  z-index: -3;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(128, 104, 232, 0.42);
  outline-offset: 4px;
}

.ambient {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

.orb {
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.34;
  position: absolute;
}

.orb-coral {
  animation: driftOne 15s ease-in-out infinite;
  background: radial-gradient(circle at 35% 30%, #ffbd9c, #ff6f75 55%, transparent 72%);
  height: 590px;
  right: -230px;
  top: 48px;
  width: 590px;
}

.orb-violet {
  animation: driftTwo 18s ease-in-out infinite;
  background: radial-gradient(circle at 50% 50%, #d2c5ff, #9c84ef 55%, transparent 74%);
  height: 510px;
  left: -260px;
  top: 570px;
  width: 510px;
}

.orb-blue {
  background: radial-gradient(circle, #bfeeff, #8ed4ee 50%, transparent 72%);
  bottom: 10%;
  height: 420px;
  opacity: 0.22;
  right: -220px;
  width: 420px;
}

.noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  inset: 0;
  opacity: 0.035;
  position: absolute;
}

@keyframes driftOne {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-36px, 42px, 0) scale(1.08); }
}

@keyframes driftTwo {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(46px, -22px, 0); }
}

.section-shell,
.site-header {
  margin-inline: auto;
  max-width: 1220px;
  width: calc(100% - 48px);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px) saturate(160%);
  background: rgba(255, 252, 249, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(75, 48, 82, 0.08);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto 1fr;
  left: 50%;
  padding: 10px 12px 10px 18px;
  position: fixed;
  top: 18px;
  transform: translateX(-50%);
  transition: box-shadow 220ms ease, background 220ms ease, top 220ms ease;
  z-index: 100;
}

.site-header.is-scrolled {
  background: rgba(255, 252, 249, 0.91);
  box-shadow: 0 14px 44px rgba(61, 37, 67, 0.13);
  top: 10px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 750;
  gap: 9px;
  justify-self: start;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, #fff4ec, #ffd5ce);
  border: 1px solid rgba(255, 104, 109, 0.17);
  border-radius: 12px;
  color: var(--coral-deep);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  overflow: hidden;
  width: 38px;
}

.brand-mark img {
  border-radius: inherit;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 30px;
}

.site-nav a,
.site-footer nav a {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: var(--coral-deep);
}

.nav-cta {
  align-items: center;
  background: var(--ink);
  border-radius: 13px;
  color: white;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  gap: 9px;
  justify-self: end;
  padding: 12px 15px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover {
  box-shadow: 0 10px 22px rgba(32, 22, 39, 0.2);
  transform: translateY(-2px);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(38px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.85fr);
  min-height: min(920px, 100vh);
  padding-bottom: 80px;
  padding-top: 138px;
}

.hero-copy {
  padding-bottom: 24px;
  position: relative;
  z-index: 2;
}

.pill,
.section-kicker {
  color: var(--coral-deep);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 104, 109, 0.16);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(75, 48, 82, 0.07);
  display: inline-flex;
  gap: 9px;
  margin-bottom: 24px;
  padding: 9px 13px;
}

.pill-dot {
  animation: blink 1.7s ease-in-out infinite;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 104, 109, 0.13);
  height: 7px;
  width: 7px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.062em;
}

h1 {
  font-size: clamp(3.4rem, 6.8vw, 6.65rem);
  font-weight: 760;
  line-height: 0.92;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  font-weight: 730;
  line-height: 0.98;
}

h3 {
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 730;
  line-height: 1;
}

.gradient-text {
  -webkit-background-clip: text;
  background-image: linear-gradient(100deg, var(--coral-deep) 0%, #ff8879 38%, var(--violet) 92%);
  background-clip: text;
  color: transparent;
}

.hero-lede {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.68;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 16px;
  display: inline-flex;
  font-size: 0.91rem;
  font-weight: 820;
  gap: 13px;
  justify-content: center;
  min-height: 54px;
  padding: 14px 19px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--coral-deep), #ff796f 52%, #f78e76);
  box-shadow: 0 14px 32px rgba(238, 76, 99, 0.27), inset 0 1px rgba(255, 255, 255, 0.5);
  color: white;
}

.button-primary:hover {
  box-shadow: 0 19px 38px rgba(238, 76, 99, 0.34), inset 0 1px rgba(255, 255, 255, 0.5);
}

.button-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.button-ghost {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(66, 41, 72, 0.1);
  color: var(--ink);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(73, 38, 82, 0.1);
}

.ios-launch-note {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.76rem;
  gap: 7px;
  margin: 15px 0 0;
}

.ios-launch-note > span {
  color: var(--violet);
  font-size: 1rem;
}

.ios-launch-note strong {
  color: var(--ink);
}

.ios-launch-note a {
  color: var(--coral-deep);
  font-weight: 800;
  text-underline-offset: 3px;
}

.play-icon {
  align-items: center;
  background: rgba(128, 104, 232, 0.1);
  border-radius: 50%;
  color: var(--violet);
  display: inline-flex;
  font-size: 0.62rem;
  height: 28px;
  justify-content: center;
  padding-left: 2px;
  width: 28px;
}

.trust-row {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  align-items: center;
  background: white;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(65, 39, 71, 0.13);
  display: inline-flex;
  font-size: 1rem;
  height: 36px;
  justify-content: center;
  margin-left: -8px;
  width: 36px;
}

.trust-row p {
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.45;
  margin: 0;
}

.trust-row strong {
  color: var(--ink);
  font-size: 0.8rem;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 670px;
  position: relative;
}

.visual-halo {
  background:
    radial-gradient(circle at 40% 32%, rgba(255, 255, 255, 0.98), transparent 27%),
    conic-gradient(from 210deg, rgba(255, 104, 109, 0.4), rgba(128, 104, 232, 0.28), rgba(103, 189, 224, 0.22), rgba(255, 182, 150, 0.38), rgba(255, 104, 109, 0.4));
  border-radius: 50%;
  filter: blur(1px);
  height: min(44vw, 570px);
  max-height: 570px;
  max-width: 570px;
  opacity: 0.95;
  position: absolute;
  transform: rotate(-10deg);
  width: min(44vw, 570px);
}

.visual-halo::after {
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  content: "";
  inset: 24px;
  position: absolute;
}

.phone-shell {
  background: linear-gradient(145deg, #34293b, #160e1d 68%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 48px;
  box-shadow: 0 45px 90px rgba(54, 27, 64, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.13);
  padding: 10px;
  position: relative;
  transform: rotate(3.2deg);
  width: min(342px, 74vw);
  z-index: 2;
}

.phone-edge {
  background: #2b1e31;
  border-radius: 8px 0 0 8px;
  height: 64px;
  left: -4px;
  position: absolute;
  top: 130px;
  width: 4px;
}

.phone-screen {
  background: #fffafa;
  border-radius: 39px;
  min-height: 636px;
  overflow: hidden;
  padding: 0 19px 76px;
  position: relative;
}

.phone-screen::before {
  background: #1c1321;
  border-radius: 999px;
  content: "";
  height: 21px;
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 92px;
  z-index: 3;
}

.phone-status {
  align-items: center;
  color: #2e2432;
  display: flex;
  font-size: 0.59rem;
  font-weight: 850;
  justify-content: space-between;
  padding: 12px 5px 0;
}

.app-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 26px 2px 17px;
}

.app-header p {
  color: #9a8f9e;
  font-size: 0.68rem;
  margin-bottom: 3px;
}

.app-header h2 {
  font-family: var(--font-body);
  font-size: 1.14rem;
  letter-spacing: -0.04em;
  margin: 0;
}

.baby-avatar {
  align-items: center;
  background: linear-gradient(145deg, #ffd8c7, #ff9d8e);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(238, 76, 99, 0.16);
  color: white;
  display: flex;
  font-size: 0.78rem;
  font-weight: 850;
  height: 41px;
  justify-content: center;
  width: 41px;
}

.today-card {
  background: linear-gradient(135deg, #2f2036, #211628);
  border-radius: 20px;
  box-shadow: 0 16px 28px rgba(45, 25, 52, 0.17);
  color: white;
  padding: 16px 16px 15px;
}

.today-top {
  align-items: center;
  display: flex;
  font-size: 0.61rem;
  font-weight: 760;
  justify-content: space-between;
}

.today-top span:last-child {
  color: #c9becd;
  font-weight: 600;
}

.mini-stats {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.mini-stats div {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr;
}

.stat-icon {
  align-items: center;
  border-radius: 9px;
  display: flex;
  font-size: 0.77rem;
  grid-row: span 2;
  height: 28px;
  justify-content: center;
  margin-right: 7px;
  width: 28px;
}

.stat-feed { background: rgba(255, 111, 117, 0.21); color: #ff8e91; }
.stat-sleep { background: rgba(128, 104, 232, 0.22); color: #bcaefa; }
.stat-diaper { background: rgba(90, 199, 180, 0.2); color: #85ddce; }

.mini-stats strong {
  font-size: 0.74rem;
}

.mini-stats small {
  color: #bdb2c1;
  font-size: 0.48rem;
}

.quick-label {
  color: #aa9dad;
  font-size: 0.5rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin: 19px 0 9px;
}

.quick-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.quick-card {
  border: 1px solid rgba(68, 40, 75, 0.06);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  font-size: 0.57rem;
  gap: 7px;
  padding: 12px 10px;
}

.quick-card span { font-size: 1.18rem; }
.quick-card strong { color: #403246; }
.quick-feed { background: #fff0ed; color: var(--coral); }
.quick-sleep { background: #f1edff; color: var(--violet); }
.quick-diaper { background: #eafaf6; color: #35a48f; }

.timeline-head {
  align-items: center;
  display: flex;
  font-size: 0.68rem;
  justify-content: space-between;
  margin: 18px 2px 10px;
}

.timeline-head span {
  color: var(--coral-deep);
  font-size: 0.55rem;
  font-weight: 750;
}

.timeline-item {
  align-items: center;
  background: white;
  border: 1px solid rgba(68, 40, 75, 0.07);
  border-radius: 13px;
  display: grid;
  gap: 9px;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 7px;
  padding: 9px;
}

.timeline-dot {
  align-items: center;
  border-radius: 10px;
  display: flex;
  font-size: 0.78rem;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.coral-bg { background: #ffefec; color: var(--coral); }
.violet-bg { background: #f1edff; color: var(--violet); }

.timeline-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.timeline-item strong { font-size: 0.6rem; }
.timeline-item small { color: #9a8d9d; font-size: 0.49rem; }
.timeline-item time { color: #8f8292; font-size: 0.48rem; }

.tab-bar {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(68, 40, 75, 0.06);
  bottom: 0;
  display: flex;
  height: 66px;
  justify-content: space-around;
  left: 0;
  padding: 7px 10px 11px;
  position: absolute;
  right: 0;
}

.tab-bar span {
  align-items: center;
  color: #afa3b2;
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  gap: 3px;
}

.tab-bar small { font-size: 0.44rem; font-weight: 700; }
.tab-bar .active { color: var(--coral-deep); }

.float-card {
  align-items: center;
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 17px;
  box-shadow: 0 18px 45px rgba(66, 36, 75, 0.17);
  display: flex;
  gap: 10px;
  padding: 12px 13px;
  position: absolute;
  z-index: 4;
}

.float-card > div:not(.sync-avatars) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.float-card strong { font-size: 0.7rem; }
.float-card small { color: var(--ink-soft); font-size: 0.56rem; }

.float-icon {
  align-items: center;
  border-radius: 11px;
  display: flex;
  font-size: 1rem;
  height: 35px;
  justify-content: center;
  width: 35px;
}

.coral-icon { background: #ffefeb; color: var(--coral-deep); }

.check {
  align-items: center;
  background: #e5f8f0;
  border-radius: 50%;
  color: #2eaa83;
  display: inline-flex;
  font-size: 0.6rem;
  font-weight: 900;
  height: 21px;
  justify-content: center;
  margin-left: 3px;
  width: 21px;
}

.float-voice {
  animation: floatCard 5s ease-in-out infinite;
  left: -30px;
  top: 155px;
}

.float-sync {
  animation: floatCard 5.8s ease-in-out 700ms infinite;
  bottom: 125px;
  right: -42px;
}

.sync-avatars {
  display: flex;
}

.sync-avatars span {
  align-items: center;
  background: linear-gradient(145deg, #b8a9f4, #826ae6);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 0.56rem;
  font-weight: 850;
  height: 31px;
  justify-content: center;
  width: 31px;
}

.sync-avatars span:last-child {
  background: linear-gradient(145deg, #ffc6ab, #ff7a76);
  margin-left: -9px;
}

.live-dot {
  background: #43c693;
  border: 3px solid #e8f9f2;
  border-radius: 50%;
  height: 12px;
  margin-left: 2px;
  width: 12px;
}

.spark {
  color: white;
  filter: drop-shadow(0 8px 16px rgba(73, 38, 82, 0.18));
  position: absolute;
  z-index: 3;
}

.spark-one { font-size: 2.3rem; right: 4%; top: 12%; transform: rotate(12deg); }
.spark-two { bottom: 18%; font-size: 1.25rem; left: 6%; transform: rotate(-14deg); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.marquee {
  background: linear-gradient(90deg, #2b1b31, #1c1322 48%, #2b1b31);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  overflow: hidden;
  padding: 18px 0;
  transform: rotate(-1deg) scale(1.02);
}

.marquee-track {
  align-items: center;
  animation: marquee 26s linear infinite;
  display: flex;
  gap: 30px;
  min-width: max-content;
  width: max-content;
}

.marquee span {
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.marquee i {
  color: #ff8d84;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.features {
  padding-bottom: 130px;
  padding-top: 150px;
}

.features > .section-kicker {
  text-align: center;
}

.features-heading {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 0.48fr;
  margin: 17px 0 58px;
}

.features-heading h2 {
  margin-bottom: 0;
}

.features-heading p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 9px;
  max-width: 370px;
}

.bento-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.17fr 0.83fr;
}

.bento-card {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 30px;
  box-shadow: 0 18px 60px rgba(63, 36, 72, 0.09);
  min-height: 460px;
  overflow: hidden;
  padding: clamp(26px, 3.5vw, 45px);
  position: relative;
}

.feature-number {
  color: var(--coral-deep);
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 26px;
}

.bento-card h3 {
  margin-bottom: 18px;
}

.bento-card p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.65;
  max-width: 430px;
}

.voice-feature {
  align-items: center;
  background:
    radial-gradient(circle at 83% 20%, rgba(255, 180, 152, 0.48), transparent 30%),
    linear-gradient(145deg, rgba(255, 246, 241, 0.9), rgba(255, 255, 255, 0.76));
  display: grid;
  gap: 28px;
  grid-column: 1 / -1;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 540px;
}

.voice-feature::before {
  border: 1px solid rgba(255, 104, 109, 0.08);
  border-radius: 50%;
  content: "";
  height: 520px;
  position: absolute;
  right: -130px;
  top: -280px;
  width: 520px;
}

.demo-button {
  align-items: center;
  background: white;
  border: 1px solid rgba(69, 41, 75, 0.1);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.77rem;
  font-weight: 800;
  gap: 9px;
  margin-top: 10px;
  padding: 9px 14px 9px 9px;
}

.demo-mic {
  align-items: center;
  background: var(--coral);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 0.5rem;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.demo-button.is-listening .demo-mic {
  animation: micPulse 1s ease-in-out infinite;
}

@keyframes micPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 104, 109, 0.35); }
  50% { box-shadow: 0 0 0 9px rgba(255, 104, 109, 0); }
}

.voice-demo-panel {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(36, 24, 42, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(50, 26, 58, 0.28);
  color: white;
  display: flex;
  flex-direction: column;
  justify-self: stretch;
  min-height: 410px;
  overflow: hidden;
  padding: 38px 28px 30px;
  position: relative;
}

.voice-demo-panel::before {
  background: radial-gradient(circle, rgba(255, 104, 109, 0.25), transparent 68%);
  content: "";
  height: 300px;
  left: 50%;
  position: absolute;
  top: -90px;
  transform: translateX(-50%);
  width: 430px;
}

.voice-orb {
  height: 112px;
  position: relative;
  width: 112px;
}

.voice-orb-core {
  align-items: center;
  background: linear-gradient(145deg, #ff9380, #ee4c63);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  box-shadow: 0 14px 40px rgba(238, 76, 99, 0.43), inset 0 1px rgba(255, 255, 255, 0.6);
  display: flex;
  font-size: 2rem;
  height: 72px;
  justify-content: center;
  left: 20px;
  position: absolute;
  top: 20px;
  width: 72px;
  z-index: 2;
}

.voice-ring {
  border: 1px solid rgba(255, 127, 119, 0.42);
  border-radius: 50%;
  inset: 8px;
  position: absolute;
}

.voice-ring-two {
  inset: -6px;
  opacity: 0.52;
}

.voice-demo-panel.is-listening .voice-ring-one { animation: ripple 1.4s ease-out infinite; }
.voice-demo-panel.is-listening .voice-ring-two { animation: ripple 1.4s ease-out 500ms infinite; }

@keyframes ripple {
  from { opacity: 0.8; transform: scale(0.74); }
  to { opacity: 0; transform: scale(1.35); }
}

.waveform {
  align-items: center;
  display: flex;
  gap: 4px;
  height: 40px;
  justify-content: center;
  margin: 13px 0 16px;
}

.waveform i {
  background: linear-gradient(to top, var(--coral), var(--peach));
  border-radius: 99px;
  display: block;
  height: 7px;
  opacity: 0.78;
  width: 4px;
}

.waveform i:nth-child(2n) { height: 15px; }
.waveform i:nth-child(3n) { height: 27px; }
.waveform i:nth-child(5n) { height: 36px; }

.voice-demo-panel.is-listening .waveform i {
  animation: waveDance 640ms ease-in-out infinite alternate;
}

.voice-demo-panel.is-listening .waveform i:nth-child(2n) { animation-delay: 100ms; }
.voice-demo-panel.is-listening .waveform i:nth-child(3n) { animation-delay: 220ms; }

@keyframes waveDance {
  to { height: 34px; opacity: 1; }
}

.transcript {
  color: #d8cedb !important;
  font-size: 0.86rem !important;
  margin-bottom: 20px;
  text-align: center;
}

.parsed-log {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  display: grid;
  gap: 11px;
  grid-template-columns: auto 1fr auto;
  padding: 12px;
  transition: opacity 180ms ease, transform 180ms ease;
  width: min(100%, 390px);
}

.parsed-log.is-updating {
  opacity: 0.3;
  transform: translateY(4px);
}

.parsed-icon {
  align-items: center;
  background: rgba(255, 104, 109, 0.18);
  border-radius: 11px;
  color: #ff9994;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.parsed-log div { display: flex; flex-direction: column; gap: 4px; }
.parsed-log strong { font-size: 0.73rem; }
.parsed-log small { color: #b9aebd; font-size: 0.61rem; }

.family-feature {
  background:
    radial-gradient(circle at 50% 51%, rgba(128, 104, 232, 0.19), transparent 28%),
    linear-gradient(145deg, #f2efff, #fbf9ff);
  min-height: 540px;
}

.family-feature .feature-number { color: var(--violet); }
.family-feature h3 { font-size: clamp(1.9rem, 3vw, 3rem); }
.family-feature p { bottom: 25px; margin: 0; position: absolute; }

.family-orbit {
  height: 245px;
  margin: 5px auto 45px;
  max-width: 390px;
  position: relative;
}

.orbit-line {
  border: 1px dashed rgba(128, 104, 232, 0.3);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one { height: 170px; width: 270px; }
.orbit-two { height: 112px; width: 188px; }

.orbit-baby,
.orbit-person {
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(71, 46, 87, 0.13);
  display: flex;
  font-weight: 850;
  justify-content: center;
  position: absolute;
}

.orbit-baby {
  background: linear-gradient(145deg, #ffb399, #ff716f);
  border: 6px solid rgba(255, 255, 255, 0.9);
  color: white;
  flex-direction: column;
  font-size: 1.4rem;
  height: 82px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  z-index: 2;
}

.orbit-baby small { font-size: 0.45rem; font-weight: 700; }

.orbit-person {
  background: white;
  border: 4px solid white;
  color: white;
  height: 47px;
  width: 47px;
}

.person-one { background: linear-gradient(145deg, #73d2c0, #3ca78f); left: 14px; top: 75px; }
.person-two { background: linear-gradient(145deg, #9f8af1, #7058d0); right: 12px; top: 78px; }
.person-three { background: linear-gradient(145deg, #ffc279, #ec9251); bottom: 3px; left: 50%; transform: translateX(-50%); }

.sync-pulse {
  animation: syncTravel 3s linear infinite;
  background: var(--violet);
  border-radius: 50%;
  height: 7px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 7px;
}

.pulse-two { animation-delay: 1.5s; }

@keyframes syncTravel {
  0% { opacity: 0; transform: translate(-4px, -4px) rotate(0deg) translateX(85px); }
  15%, 80% { opacity: 1; }
  100% { opacity: 0; transform: translate(-4px, -4px) rotate(360deg) translateX(85px); }
}

.insights-feature {
  align-items: center;
  background: linear-gradient(150deg, #eaf8fc, #fbfdff);
  display: grid;
  gap: 30px;
  grid-column: 1 / -1;
  grid-template-columns: 0.82fr 1.18fr;
}

.insights-feature .feature-number { color: #2886ad; }

.insight-chart {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(45, 133, 168, 0.1);
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(47, 126, 155, 0.12);
  min-height: 310px;
  padding: 26px;
}

.chart-label {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.chart-label span { color: var(--ink-soft); font-size: 0.76rem; font-weight: 700; }
.chart-label strong { font-family: var(--font-display); font-size: 2rem; letter-spacing: -0.05em; }

.bars {
  align-items: end;
  display: flex;
  gap: 12px;
  height: 208px;
  justify-content: space-between;
  padding-top: 30px;
}

.bars > span {
  background: linear-gradient(to top, #73c8e7, #b8e8f5);
  border-radius: 8px 8px 4px 4px;
  height: var(--height);
  max-width: 44px;
  position: relative;
  width: 100%;
}

.bars > span::after {
  background: rgba(255, 255, 255, 0.4);
  border-radius: inherit;
  content: "";
  height: 33%;
  inset: 6px 6px auto;
  position: absolute;
}

.bars > span.current { background: linear-gradient(to top, var(--coral-deep), #ff9a84); }

.bars i {
  bottom: -25px;
  color: #8b969b;
  font-size: 0.58rem;
  font-style: normal;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.offline-feature {
  background:
    radial-gradient(circle at 88% 12%, rgba(90, 199, 180, 0.28), transparent 25%),
    radial-gradient(circle at 15% 48%, rgba(103, 189, 224, 0.13), transparent 31%),
    linear-gradient(145deg, #ecfaf7, #fbfffe);
  min-height: 540px;
}

.offline-feature::before {
  border: 1px solid rgba(58, 160, 154, 0.1);
  border-radius: 50%;
  content: "";
  height: 320px;
  position: absolute;
  right: -195px;
  top: -185px;
  width: 320px;
}

.offline-feature .feature-number { color: #299c87; }
.offline-feature h3 { bottom: 88px; font-size: clamp(2rem, 3vw, 3.1rem); margin: 0; position: absolute; }
.offline-feature p { bottom: 22px; margin: 0; position: absolute; }

.offline-visual {
  display: grid;
  gap: 8px;
  left: clamp(23px, 3vw, 38px);
  position: absolute;
  right: clamp(23px, 3vw, 38px);
  top: 82px;
}

.local-save-card {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(47, 149, 131, 0.12);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(45, 138, 122, 0.11);
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr auto;
  padding: 11px 12px;
}

.device-glyph {
  align-items: center;
  background: linear-gradient(145deg, #d9f7ef, #bcece1);
  border-radius: 11px;
  display: flex;
  height: 38px;
  justify-content: center;
  position: relative;
  width: 38px;
}

.device-glyph::before {
  border: 2px solid #279b84;
  border-radius: 5px;
  content: "";
  height: 20px;
  width: 13px;
}

.device-glyph i {
  background: #279b84;
  border-radius: 50%;
  bottom: 9px;
  height: 2px;
  position: absolute;
  width: 2px;
}

.local-save-copy,
.queue-entry > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.local-save-copy strong,
.queue-entry strong {
  color: #23574f;
  font-size: 0.67rem;
}

.local-save-copy small,
.queue-entry small {
  color: #6f9c94;
  font-size: 0.54rem;
}

.offline-state {
  align-items: center;
  background: #eff8f5;
  border: 1px solid rgba(47, 149, 131, 0.1);
  border-radius: 999px;
  color: #4b8a7e;
  display: inline-flex;
  font-size: 0.52rem;
  font-weight: 800;
  gap: 5px;
  padding: 6px 8px;
}

.offline-state i {
  background: #f0ad5f;
  border: 2px solid #fff4e7;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.offline-queue {
  display: grid;
  gap: 6px;
  padding: 0 10px;
}

.queue-entry {
  align-items: center;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(47, 149, 131, 0.08);
  border-radius: 13px;
  display: grid;
  gap: 9px;
  grid-template-columns: auto 1fr auto;
  padding: 8px 10px;
  transform-origin: center;
}

.queue-entry:nth-child(2) {
  margin-inline: 7px;
  opacity: 0.8;
}

.queue-symbol {
  align-items: center;
  border-radius: 9px;
  display: flex;
  font-size: 0.72rem;
  height: 29px;
  justify-content: center;
  width: 29px;
}

.queue-feed .queue-symbol { background: #fff0ed; color: var(--coral); }
.queue-sleep .queue-symbol { background: #f1edff; color: var(--violet); }

.queue-entry em {
  color: #3ca58f;
  font-size: 0.49rem;
  font-style: normal;
  font-weight: 850;
}

.reconnect-line {
  align-items: center;
  color: #3a786d;
  display: grid;
  font-size: 0.53rem;
  gap: 8px;
  grid-template-columns: 1fr auto auto;
  margin: 1px 10px 0;
}

.reconnect-track {
  background: rgba(54, 166, 145, 0.13);
  border-radius: 999px;
  height: 3px;
  overflow: hidden;
  position: relative;
}

.reconnect-track i {
  animation: reconnectFlow 2.6s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, #4fc1aa, transparent);
  height: 100%;
  left: -55%;
  position: absolute;
  width: 55%;
}

.sync-check {
  align-items: center;
  background: #dff7ef;
  border-radius: 50%;
  color: #269c83;
  display: flex;
  font-size: 0.52rem;
  font-weight: 900;
  height: 20px;
  justify-content: center;
  width: 20px;
}

@keyframes reconnectFlow {
  0%, 18% { left: -55%; }
  80%, 100% { left: 105%; }
}

.flow {
  padding-bottom: 130px;
}

.flow-panel {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 104, 109, 0.17), transparent 26%),
    radial-gradient(circle at 25% 90%, rgba(128, 104, 232, 0.15), transparent 30%),
    #211627;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(45, 24, 52, 0.2);
  color: white;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 0.85fr;
  overflow: hidden;
  padding: clamp(32px, 6vw, 78px);
  position: relative;
}

.flow-panel::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  height: 410px;
  left: -190px;
  position: absolute;
  top: -220px;
  width: 410px;
}

.flow-panel .section-kicker { color: #ff958c; }
.flow-copy h2 { font-size: clamp(2.6rem, 5vw, 5rem); margin: 20px 0 25px; }
.flow-copy p { color: #c9bdcc; line-height: 1.7; max-width: 510px; }

.flow-steps {
  counter-reset: none;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.flow-steps li {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr;
  padding: 16px;
  transition: background 180ms ease, transform 180ms ease;
}

.flow-steps li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.flow-steps > li > span {
  align-items: center;
  background: linear-gradient(145deg, rgba(255, 128, 119, 0.26), rgba(128, 104, 232, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  color: #ff9b91;
  display: flex;
  font-size: 0.75rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.flow-steps div { display: flex; flex-direction: column; gap: 5px; }
.flow-steps strong { font-size: 0.87rem; }
.flow-steps small { color: #b9aebd; font-size: 0.71rem; line-height: 1.45; }

.closing {
  align-items: center;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  overflow: hidden;
  padding: clamp(70px, 10vw, 128px) 24px;
  position: relative;
  text-align: center;
}

.closing-glow {
  background: radial-gradient(circle, rgba(255, 152, 132, 0.36), rgba(155, 128, 239, 0.14) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(7px);
  height: 590px;
  left: 50%;
  position: absolute;
  top: -230px;
  transform: translateX(-50%);
  width: 760px;
}

.closing > *:not(.closing-glow):not(.closing-stars) { position: relative; z-index: 2; }

.closing-mark {
  align-items: center;
  background: linear-gradient(145deg, #fff, #ffe0d6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(238, 76, 99, 0.15);
  display: flex;
  height: 72px;
  justify-content: center;
  margin-bottom: 24px;
  transform: rotate(-7deg);
  width: 72px;
}

.closing-mark img {
  border-radius: 21px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.closing .section-kicker { margin-bottom: 18px; }
.closing h2 { margin-bottom: 22px; }
.closing > p:not(.section-kicker) { color: var(--ink-soft); line-height: 1.65; max-width: 610px; }
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.closing-button { margin-top: 0; }
.closing > small { color: var(--ink-faint); font-size: 0.68rem; margin-top: 15px; }

.closing-stars span {
  color: rgba(255, 104, 109, 0.28);
  position: absolute;
}

.closing-stars span:nth-child(1) { font-size: 2.2rem; left: 14%; top: 24%; transform: rotate(-12deg); }
.closing-stars span:nth-child(2) { color: rgba(128, 104, 232, 0.25); font-size: 1.3rem; right: 18%; top: 20%; }
.closing-stars span:nth-child(3) { bottom: 18%; font-size: 1rem; right: 12%; }

.site-footer {
  align-items: center;
  color: var(--ink-soft);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  padding: 24px 2px 38px;
}

.footer-brand .brand-mark {
  font-size: 1.05rem;
  height: 32px;
  width: 32px;
}

.site-footer p { font-size: 0.68rem; margin: 0; text-align: center; }
.site-footer nav { display: flex; gap: 20px; justify-self: end; }
.site-footer nav a { font-size: 0.7rem; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 120ms;
}

/* The first view must never depend on JavaScript or observer timing. */
.hero > .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1030px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  }

  .phone-shell { width: min(310px, 75vw); }
  .phone-screen { min-height: 576px; }
  .float-voice { left: -36px; }
  .float-sync { right: -25px; }

  .features-heading { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .voice-feature, .insights-feature { grid-column: 1 / -1; }
  .family-feature, .offline-feature { min-height: 530px; }
}

@media (max-width: 820px) {
  .section-shell,
  .site-header { width: calc(100% - 30px); }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 105px;
    text-align: center;
  }

  .hero-copy { margin: 0 auto; max-width: 680px; }
  .hero-lede { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { margin-inline: auto; width: min(100%, 570px); }
  .visual-halo { height: min(96vw, 570px); width: min(96vw, 570px); }

  .features { padding-top: 120px; }
  .features-heading { text-align: center; }
  .features-heading p { margin-inline: auto; }

  .voice-feature,
  .insights-feature {
    grid-template-columns: 1fr;
  }

  .voice-demo-panel { width: 100%; }
  .insights-feature { padding-bottom: 40px; }
  .insight-chart { width: 100%; }

  .flow-panel { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; }
  .site-footer nav { justify-self: center; }
}

@media (max-width: 620px) {
  .section-shell,
  .site-header { width: calc(100% - 22px); }

  .site-header {
    border-radius: 16px;
    padding: 8px 8px 8px 12px;
    top: 10px;
  }

  .brand { font-size: 1.05rem; }
  .brand-mark { border-radius: 10px; height: 34px; width: 34px; }
  .nav-cta { border-radius: 11px; font-size: 0.69rem; padding: 11px 12px; }
  .nav-cta span { display: none; }

  .hero {
    gap: 24px;
    min-height: 0;
    padding-bottom: 86px;
    padding-top: 112px;
  }

  h1 { font-size: clamp(3.18rem, 16vw, 5.2rem); }
  h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
  h3 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .hero-lede { font-size: 0.98rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .ios-launch-note { justify-content: center; }
  .trust-row { align-items: flex-start; text-align: left; }

  .hero-visual { min-height: 615px; transform: scale(0.92); }
  .phone-shell { width: min(310px, 83vw); }
  .float-voice { left: -5px; top: 105px; }
  .float-sync { bottom: 66px; right: -3px; }
  .spark-one { right: 1%; }

  .marquee { padding: 15px 0; }
  .features { padding-bottom: 92px; padding-top: 105px; }
  .features-heading { margin-bottom: 36px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card { border-radius: 24px; grid-column: auto; min-height: 0; padding: 26px 23px; }
  .voice-feature { min-height: 0; }
  .voice-demo-panel { border-radius: 22px; min-height: 365px; padding-inline: 18px; }

  .family-feature { min-height: 560px; }
  .family-feature p { bottom: 24px; left: 23px; right: 23px; }

  .insights-feature { padding-bottom: 28px; }
  .insight-chart { min-height: 280px; padding: 20px; }
  .bars { gap: 7px; height: 180px; }

  .offline-feature { min-height: 505px; }
  .offline-visual { left: 18px; right: 18px; top: 76px; }
  .local-save-card { padding: 10px; }
  .offline-queue { padding-inline: 5px; }
  .reconnect-line { margin-inline: 5px; }
  .offline-feature h3 { bottom: 94px; left: 23px; right: 23px; }
  .offline-feature p { bottom: 22px; left: 23px; right: 23px; }

  .flow { padding-bottom: 92px; }
  .flow-panel { border-radius: 25px; gap: 36px; padding: 36px 23px; }

  .closing { border-radius: 25px; padding-inline: 20px; }
  .closing-actions { flex-direction: column; width: 100%; }
  .closing-stars span:nth-child(1) { left: 5%; }
  .closing-stars span:nth-child(2) { right: 5%; }

  .site-footer p { line-height: 1.5; }
}

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