:root {
  --ink: #432b31;
  --muted: #80656b;
  --paper: #fff8f5;
  --surface: #fffdfb;
  --cream: #fff1dc;
  --blush: #ffe6ee;
  --rose: #cf4d78;
  --rose-dark: #9f2e58;
  --peach: #f29b85;
  --cocoa: #6e4c3f;
  --sage: #8aa28a;
  --line: rgba(136, 78, 92, 0.18);
  --shadow: 0 22px 54px rgba(178, 76, 105, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff8f5 0%, #fff2ec 48%, #fffaf6 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 248, 245, 0.82);
  border-bottom: 1px solid rgba(136, 78, 92, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.solid {
  position: sticky;
  color: var(--ink);
  background: rgba(255, 248, 245, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
  color: var(--rose-dark);
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
  color: var(--rose-dark);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.language-switcher select {
  width: auto;
  min-width: 118px;
  padding: 9px 32px 9px 12px;
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  padding: 132px clamp(18px, 6vw, 84px) 76px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 248, 245, 0.98) 0%, rgba(255, 236, 229, 0.92) 48%, rgba(255, 226, 236, 0.76) 100%),
    url("/assets/hero-prenatal-voice.png") 72% center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 248, 245, 0.1), rgba(255, 218, 228, 0.42));
  pointer-events: none;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--rose-dark);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: 4.7rem;
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.08;
}

h3 {
  margin: 12px 0 8px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--cocoa);
  font-size: 1.22rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-pills span,
.audience-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(207, 77, 120, 0.22);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-actions,
.form-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 12px 24px rgba(207, 77, 120, 0.22);
}

.button.primary:hover {
  background: var(--rose-dark);
}

.button.secondary {
  color: var(--rose-dark);
  border-color: rgba(207, 77, 120, 0.32);
  background: rgba(255, 255, 255, 0.62);
}

.trust-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(136, 78, 92, 0.12);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 26px clamp(18px, 5vw, 64px);
  background: var(--surface);
}

.proof-strip div:first-child {
  background: #fff2ea;
}

.proof-strip div:last-child {
  background: #ffe8f0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 84px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.voice-section {
  background: #fff7ef;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.evidence-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(207, 77, 120, 0.16);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(117, 61, 74, 0.07);
}

.evidence-grid article:nth-child(2) {
  background: #fff0f5;
}

.evidence-grid article:nth-child(3) {
  background: #fff9e9;
}

.evidence-stat {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(242, 155, 133, 0.34);
  border-radius: 8px;
  color: var(--cocoa);
  background: #fff3e7;
  font-size: 0.88rem;
  font-weight: 900;
}

.evidence-grid p {
  color: var(--muted);
}

.evidence-grid a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.research-note {
  max-width: 860px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.content-link-list {
  width: min(860px, 100%);
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.content-link-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(207, 77, 120, 0.2);
  border-radius: 8px;
  background: #fffdfb;
  box-shadow: 0 10px 28px rgba(117, 61, 74, 0.07);
}

.content-link-strip strong,
.content-link-strip span {
  display: block;
}

.content-link-strip strong {
  color: var(--rose-dark);
}

.content-link-strip span {
  margin-top: 3px;
  color: var(--muted);
}

.audience-section {
  background: #fffaf6;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.audience-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(207, 77, 120, 0.16);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(117, 61, 74, 0.08);
}

.audience-grid article:nth-child(2) {
  background: #fff0f5;
}

.audience-grid article:nth-child(3) {
  background: #fff3e7;
}

.audience-grid article:nth-child(4) {
  background: #fff9e9;
}

.audience-grid p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(207, 77, 120, 0.16);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(117, 61, 74, 0.07);
}

.step-number {
  color: var(--peach);
  font-weight: 900;
}

.steps p,
.copy-stack p {
  color: var(--muted);
}

.product-demo-section {
  background: #fff2ec;
}

.product-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  grid-template-areas:
    "copy visual"
    "steps visual";
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.product-demo-copy {
  grid-area: copy;
}

.product-demo-copy .section-heading {
  margin-bottom: 26px;
}

.product-steps {
  grid-area: steps;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-steps article:nth-child(2) {
  background: #fff0f5;
}

.product-steps article:nth-child(3) {
  background: #fff9e9;
}

.product-steps article:nth-child(4) {
  background: #f1fbf3;
}

.product-demo-visual {
  grid-area: visual;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.product-story-figure {
  width: min(430px, 100%);
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(207, 77, 120, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 42px rgba(142, 74, 90, 0.14);
}

.product-story-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
}

.product-story-figure figcaption {
  display: grid;
  gap: 4px;
  padding: 12px 8px 4px;
}

.product-story-figure strong,
.article-product-demo-copy h2 {
  color: var(--rose-dark);
}

.product-story-figure span {
  color: var(--muted);
  font-size: 0.9rem;
}

.voice-demo-phone {
  width: min(390px, 100%);
  min-height: 650px;
  padding: 18px;
  border: 1px solid rgba(207, 77, 120, 0.18);
  border-radius: 28px;
  color: var(--ink);
  background: #fffdfb;
  box-shadow: 0 28px 70px rgba(178, 76, 105, 0.2);
}

.demo-motion-cues {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(430px, 100%);
}

.demo-motion-cues span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(207, 77, 120, 0.18);
  border-radius: 8px;
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  animation: cuePulse 5.6s ease-in-out infinite;
}

.demo-motion-cues span:nth-child(2) {
  animation-delay: 240ms;
}

.demo-motion-cues span:nth-child(3) {
  animation-delay: 480ms;
}

.voice-demo-topbar {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  color: var(--rose-dark);
  text-align: center;
  font-size: 0.92rem;
}

.voice-demo-topbar span {
  width: 26px;
  height: 8px;
  border-radius: 999px;
  background: #ffdce8;
}

.voice-demo-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 14px 0;
}

.voice-demo-tabs span,
.mode-pill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(207, 77, 120, 0.18);
  border-radius: 8px;
  padding: 0 8px;
  color: var(--muted);
  background: #fff7ef;
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
}

.voice-demo-tabs span:first-child,
.mode-pill.active {
  color: #fff;
  background: var(--rose);
  border-color: var(--rose);
}

.voice-demo-card {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(207, 77, 120, 0.16);
  border-radius: 8px;
  background: #fff7ef;
}

.voice-demo-card small {
  color: var(--rose-dark);
  font-weight: 900;
}

.voice-demo-card h3 {
  margin-top: 6px;
}

.voice-demo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.demo-wave {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  background: #fff;
}

.demo-wave span {
  width: 7px;
  height: 22px;
  border-radius: 999px;
  background: var(--rose);
  animation: demoWave 1.25s ease-in-out infinite;
}

.demo-wave span:nth-child(2) {
  height: 36px;
  background: var(--peach);
  animation-delay: 120ms;
}

.demo-wave span:nth-child(3) {
  height: 48px;
  background: #7fae96;
  animation-delay: 240ms;
}

.demo-wave span:nth-child(4) {
  height: 34px;
  background: var(--peach);
  animation-delay: 360ms;
}

.demo-wave span:nth-child(5) {
  height: 26px;
  animation-delay: 480ms;
}

.voice-handoff {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, 1.08fr) minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin: 14px 0;
}

.voice-person {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(138, 162, 138, 0.34);
  border-radius: 8px;
  padding: 0 8px;
  color: #57755c;
  background: #f1fbf3;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.authorization-card {
  min-height: 64px;
  display: grid;
  place-items: center;
  gap: 2px;
  border: 1px solid rgba(207, 77, 120, 0.22);
  border-radius: 8px;
  padding: 10px;
  color: var(--rose-dark);
  background: #fff0f5;
  box-shadow: 0 10px 20px rgba(207, 77, 120, 0.12);
  text-align: center;
  animation: consentSlide 4s ease-in-out infinite;
}

.authorization-card span {
  font-size: 0.72rem;
  font-weight: 900;
}

.authorization-card strong {
  font-size: 1rem;
}

.permission-mode-demo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.permission-mode-demo .mode-pill:last-child {
  animation: modeGlow 4s ease-in-out infinite;
}

.voice-storyboard {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid rgba(207, 77, 120, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #fff6ee 100%);
}

.voice-storyboard::before {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 12px;
  left: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(207, 77, 120, 0.16);
}

.voice-storyboard span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--cocoa);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
  animation: storyboardPulse 5.6s ease-in-out infinite;
}

.voice-storyboard span::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 0 0 0 3px rgba(207, 77, 120, 0.16);
}

.voice-storyboard span:nth-child(2) {
  animation-delay: 220ms;
}

.voice-storyboard span:nth-child(2)::before,
.voice-storyboard span:nth-child(4)::before {
  background: var(--peach);
}

.voice-storyboard span:nth-child(3) {
  animation-delay: 440ms;
}

.voice-storyboard span:nth-child(3)::before,
.voice-storyboard span:nth-child(5)::before {
  background: #7fae96;
}

.voice-storyboard span:nth-child(4) {
  animation-delay: 660ms;
}

.voice-storyboard span:nth-child(5) {
  animation-delay: 880ms;
}

.playback-card {
  background: #fff9e9;
}

.playback-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(207, 77, 120, 0.16);
}

.playback-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), #7fae96);
  animation: progressFill 5s ease-in-out infinite;
}

.revoked-card {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  margin-top: 12px;
  border: 1px dashed rgba(159, 46, 88, 0.36);
  border-radius: 8px;
  padding: 14px;
  color: var(--muted);
  background: #fff;
  text-align: center;
  animation: revokedFade 5s ease-in-out infinite;
}

.revoked-card strong {
  color: var(--rose-dark);
}

.visual-product-demo-link {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  background: #fff7f1;
  overflow: hidden;
}

.article-product-demo-media {
  display: grid;
  gap: 10px;
}

.article-product-demo-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(207, 77, 120, 0.14);
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(142, 74, 90, 0.12);
}

.article-mini-flow {
  display: grid;
  gap: 8px;
}

.article-mini-flow span {
  position: relative;
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 8px 12px 8px 34px;
  border: 1px solid rgba(207, 77, 120, 0.14);
  border-radius: 999px;
  color: var(--cocoa);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  animation: articleFlowPulse 5s ease-in-out infinite;
}

.article-mini-flow span::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--rose);
}

.article-mini-flow span:nth-child(2) {
  animation-delay: 420ms;
}

.article-mini-flow span:nth-child(3) {
  animation-delay: 840ms;
}

.article-mini-flow span:nth-child(4) {
  animation-delay: 1260ms;
}

.article-mini-flow span:nth-child(5) {
  animation-delay: 1680ms;
}

.article-product-demo-copy {
  min-width: 0;
}

.article-product-demo-copy p {
  margin-top: 10px;
}

.article-product-demo-copy .button {
  margin-top: 18px;
}

@keyframes demoWave {
  0%,
  100% {
    transform: scaleY(0.62);
  }

  50% {
    transform: scaleY(1.08);
  }
}

@keyframes consentSlide {
  0%,
  100% {
    transform: translateX(-8px);
  }

  50% {
    transform: translateX(8px);
  }
}

@keyframes modeGlow {
  0%,
  100% {
    border-color: rgba(207, 77, 120, 0.18);
    background: #fff7ef;
  }

  50% {
    border-color: rgba(138, 162, 138, 0.42);
    background: #f1fbf3;
  }
}

@keyframes progressFill {
  0% {
    width: 0%;
  }

  70% {
    width: 86%;
  }

  100% {
    width: 86%;
  }
}

@keyframes revokedFade {
  0%,
  62% {
    opacity: 0.48;
  }

  78%,
  100% {
    opacity: 1;
  }
}

@keyframes articleFlowPulse {
  0%,
  100% {
    transform: translateX(0);
    border-color: rgba(207, 77, 120, 0.14);
  }

  48% {
    transform: translateX(6px);
    border-color: rgba(207, 77, 120, 0.34);
  }
}

@keyframes storyboardPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.76;
  }

  45% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes cuePulse {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(207, 77, 120, 0.18);
    box-shadow: none;
  }

  45% {
    transform: translateY(-2px);
    border-color: rgba(207, 77, 120, 0.34);
    box-shadow: 0 10px 22px rgba(207, 77, 120, 0.12);
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 80px);
  background: #ffeaf0;
}

.copy-stack {
  display: grid;
  gap: 18px;
  align-content: start;
  font-size: 1.08rem;
}

.waitlist-section {
  background: #fff8f5;
}

.waitlist-form {
  width: min(980px, 100%);
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.96);
  box-shadow: var(--shadow);
}

.waitlist-form[hidden],
.external-waitlist[hidden] {
  display: none;
}

.external-waitlist {
  width: min(980px, 100%);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.96);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(136, 78, 92, 0.24);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(207, 77, 120, 0.18);
  border-color: var(--rose);
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

#form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(18px, 6vw, 84px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fffdfb;
}

.plain-page {
  background: #fff8f5;
}

.legal-page,
.thank-you,
.article-page {
  width: calc(100% - 36px);
  max-width: 860px;
  margin: 0 auto;
  padding: 76px 0 96px;
}

.legal-page h1,
.thank-you h1,
.article-page h1 {
  color: var(--ink);
  font-size: 3.6rem;
  line-height: 1.08;
}

.legal-page h2,
.article-page h2 {
  margin-top: 34px;
  font-size: 1.4rem;
}

.legal-page p,
.thank-you p,
.article-page p,
.article-page li {
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.article-hero {
  padding: 44px 0 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.breadcrumb [aria-hidden="true"] {
  color: #b69498;
}

.breadcrumb span:last-child {
  overflow-wrap: anywhere;
}

.article-deck {
  font-size: 1.2rem;
}

.article-updated {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 14px 0 0;
  padding: 7px 12px;
  border: 1px solid rgba(207, 77, 120, 0.18);
  border-radius: 999px;
  color: #7b4a58;
  background: rgba(255, 245, 248, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.article-body {
  display: grid;
  gap: 8px;
}

.article-body section {
  padding-top: 6px;
}

.article-body a {
  color: var(--rose-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.article-body ul {
  padding-left: 22px;
}

.article-callout,
.article-cta {
  margin: 24px 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(207, 77, 120, 0.18);
  border-radius: 8px;
  background: #fff0f5;
  box-shadow: 0 10px 28px rgba(117, 61, 74, 0.07);
}

.article-cta {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  background: #fff9e9;
}

.product-demo-link {
  background: #f1fbf3;
}

.article-cta h2,
.article-cta p {
  flex-basis: 100%;
}

.source-list li + li {
  margin-top: 8px;
}

.thank-you {
  min-height: 70svh;
  display: grid;
  align-content: center;
}

@media (max-width: 1080px) {
  .site-header {
    gap: 18px;
  }

  .nav {
    gap: 12px;
  }

  .hero {
    min-height: 72svh;
    padding-top: 118px;
    background-position: 78% center;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.38rem;
  }

  .evidence-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .product-demo-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "steps";
  }

  .product-demo-visual {
    justify-content: flex-start;
  }

  .visual-product-demo-link {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .language-switcher {
    align-self: stretch;
    justify-content: space-between;
  }

  .language-switcher select {
    min-width: 140px;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 30px;
    background:
      linear-gradient(90deg, rgba(255, 248, 245, 0.98) 0%, rgba(255, 236, 229, 0.92) 58%, rgba(255, 226, 236, 0.88) 100%),
      url("/assets/hero-prenatal-voice.png") 68% center / cover no-repeat;
  }

  h1 {
    font-size: 2.18rem;
  }

  h2,
  .legal-page h1,
  .thank-you h1,
  .article-page h1 {
    font-size: 2rem;
  }

  .section-heading h2 {
    font-size: 1.88rem;
  }

  .article-deck {
    font-size: 1.04rem;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1.03rem;
  }

  .hero-actions,
  .form-footer {
    margin-top: 22px;
  }

  .proof-strip,
  .evidence-grid,
  .audience-grid,
  .steps,
  .product-steps,
  .split-section,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .content-link-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .waitlist-form {
    padding: 18px;
  }

  .voice-demo-phone {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 1.96rem;
  }

  h2,
  .legal-page h1,
  .thank-you h1,
  .article-page h1 {
    font-size: 1.74rem;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
    background-position: 76% center;
  }

  .hero-actions,
  .form-footer,
  .article-cta {
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .button {
    width: 100%;
  }

  .content-link-strip,
  .evidence-grid article,
  .audience-grid article,
  .steps article,
  .visual-product-demo-link,
  .voice-demo-card,
  .waitlist-form,
  .external-waitlist,
  .article-callout,
  .article-cta {
    padding: 16px;
  }

  .voice-demo-phone {
    padding: 14px;
    border-radius: 22px;
  }

  .product-story-figure {
    border-radius: 22px;
  }

  .article-product-demo-media img,
  .product-story-figure img {
    border-radius: 16px;
  }

  .voice-demo-tabs,
  .voice-handoff,
  .permission-mode-demo,
  .voice-storyboard,
  .demo-motion-cues {
    grid-template-columns: 1fr;
  }

  .voice-storyboard::before {
    display: none;
  }

  .voice-storyboard span {
    grid-template-columns: 18px 1fr;
    justify-items: start;
    align-items: center;
    font-size: 0.76rem;
    text-align: left;
  }

  .authorization-card {
    animation-name: consentSlideSmall;
  }

  .legal-page,
  .thank-you,
  .article-page {
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 42px;
    padding-bottom: 68px;
  }

  .legal-page h1,
  .thank-you h1,
  .article-page h1,
  .legal-page p,
  .thank-you p,
  .article-page p,
  .article-page li {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .legal-page p,
  .thank-you p,
  .article-page p,
  .article-page li {
    font-size: 1rem;
  }
}

@keyframes consentSlideSmall {
  0%,
  100% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .demo-wave span,
  .authorization-card,
  .permission-mode-demo .mode-pill:last-child,
  .voice-storyboard span,
  .playback-progress span,
  .revoked-card,
  .demo-motion-cues span,
  .article-mini-flow span {
    animation: none;
  }

  .playback-progress span {
    width: 72%;
  }
}
