/* BabyCheck marketing one-pager — content × design × conversion */

:root {
  /* From app icon: dusty rose + warm stone (no sky blue) */
  --pink: #c96b6e;
  --pink-deep: #b05558;
  --pink-light: #e09294;
  --pink-soft: #f7eaea;
  --blue: #9a8580;
  --blue-soft: #f3ebe9;
  --dark: #4a3f3c;
  --ink: #352e2c;
  --muted: #746865;
  --white: #ffffff;
  --cream: #faf6f5;
  --sand: #f3ebe9;
  --line: rgba(74, 63, 60, 0.12);
  --shadow: 0 28px 70px rgba(53, 46, 44, 0.16);
  --radius: 22px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --container: 1140px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.has-mobile-cta {
  padding-bottom: 5.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2.75rem, var(--container));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(250, 246, 245, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(74, 63, 60, 0.06);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--dark);
  flex-shrink: 0;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.header-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.header-nav a:hover,
.header-nav a.is-active {
  color: var(--pink);
}

.header-nav a.is-active {
  font-weight: 650;
}

.header-cta {
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--white);
  background: var(--pink);
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(201, 107, 110, 0.28);
}

.header-cta:hover {
  background: var(--pink-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(176, 85, 88, 0.32);
}

.header-cta:focus-visible,
.store-badge:focus-visible,
.brand-mark:focus-visible,
.btn-primary:focus-visible,
.header-nav a:focus-visible,
.footer-nav a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: clip;
  padding: 3.25rem 0 5rem;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, #f8ecec 0%, #faf6f5 42%, #f3ebe9 100%);
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.orb-a {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  left: -8%;
  top: -12%;
  background: radial-gradient(circle, rgba(222, 133, 135, 0.38), transparent 68%);
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-b {
  width: min(48vw, 480px);
  height: min(48vw, 480px);
  right: -6%;
  top: 8%;
  background: radial-gradient(circle, rgba(154, 133, 128, 0.28), transparent 68%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.orb-c {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  left: 38%;
  bottom: -18%;
  background: radial-gradient(circle, rgba(234, 153, 154, 0.26), transparent 70%);
  animation: drift 16s ease-in-out infinite alternate;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(74, 63, 60, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black 35%, transparent 92%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.5rem 3.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 36rem;
}

.hero-brand {
  font-family: var(--display);
  font-size: clamp(3.1rem, 6.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--pink);
  margin-bottom: 0.9rem;
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.1rem;
  max-width: 16ch;
}

.hero-support {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 33rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.store-badge {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}

.store-badge:hover {
  transform: translateY(-2px);
}

.store-badge img {
  width: 168px;
  height: auto;
}

.trust-line {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.template-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.template-chips li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

/* Phone */

.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1400px;
  padding: 1.5rem 0;
}

.phone-glow {
  position: absolute;
  width: 78%;
  height: 70%;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(222, 133, 135, 0.4), rgba(154, 133, 128, 0.2) 45%, transparent 70%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  aspect-ratio: 9 / 19.4;
  border-radius: 46px;
  background: linear-gradient(160deg, #323848, #1a1e28 55%, #0f1218);
  padding: 12px;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.phone-float {
  animation: phone-float 5.5s ease-in-out infinite;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 2;
}

.phone-island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 98px;
  height: 28px;
  background: #0b0d12;
  border-radius: 20px;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  overflow: hidden;
  background: var(--pink-soft);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Sections */

.section {
  padding: 6rem 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.85rem;
}

.section h2,
.journey-intro h2,
.how-intro h2,
.trust-copy h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.65;
}

.section-intro {
  margin-bottom: 2.75rem;
  max-width: 40rem;
}

.section-intro .lead {
  margin-top: 0.25rem;
}

/* Journey */

.journey {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7eaea 100%);
  border-top: 1px solid rgba(201, 107, 110, 0.1);
}

.journey-intro {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.journey-intro h2 {
  max-width: 18ch;
}

.phase-rail {
  --dot-size: 14px;
  --rail-gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: var(--rail-gap);
  position: relative;
}

/* Line from center of first dot to center of last (accounts for column-gap) */
.phase-rail::before {
  content: "";
  position: absolute;
  top: calc(var(--dot-size) / 2 - 1px);
  left: calc((100% - 3 * var(--rail-gap)) / 8);
  right: calc((100% - 3 * var(--rail-gap)) / 8);
  height: 2px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-light), #c4a8a4);
  opacity: 0.45;
  z-index: 0;
}

.phase-rail li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.phase-dot {
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--pink);
  box-shadow: 0 0 0 6px rgba(201, 107, 110, 0.14);
  margin-bottom: 0.65rem;
  flex-shrink: 0;
}

.phase-rail li:nth-child(2) .phase-dot { border-color: var(--pink-light); }
.phase-rail li:nth-child(3) .phase-dot { border-color: #c4a8a4; }
.phase-rail li:nth-child(4) .phase-dot { border-color: var(--blue); }

.phase-rail strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.phase-rail span:last-child {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 18ch;
  margin-inline: auto;
}

/* Checklist catalog */

.catalog {
  background:
    radial-gradient(ellipse 45% 50% at 100% 0%, rgba(201, 107, 110, 0.08), transparent 55%),
    var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.catalog-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffafb 0%, #ffffff 100%);
}

.catalog-card h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pink);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(201, 107, 110, 0.18);
}

.catalog-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.catalog-card li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.98rem;
  color: var(--dark);
  line-height: 1.35;
}

.catalog-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.catalog-card:nth-child(1) li::before { background: var(--pink-deep); }
.catalog-card:nth-child(2) li::before { background: var(--pink); }
.catalog-card:nth-child(3) li::before { background: var(--pink-light); }
.catalog-card:nth-child(4) li::before { background: #c4a8a4; }

/* Features / benefits */

.features {
  background: var(--white);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.benefit {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, padding 0.2s ease;
}

.benefit:hover {
  background: linear-gradient(90deg, rgba(247, 234, 234, 0.85), transparent 70%);
}

.benefit-copy h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 0.45rem;
}

.benefit-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 46rem;
  line-height: 1.6;
}

.benefit-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--pink-soft);
  white-space: nowrap;
  margin-top: 0.2rem;
}

.mid-cta {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(201, 107, 110, 0.08), rgba(154, 133, 128, 0.1));
  border: 1px solid var(--line);
}

/* Screenshots gallery */

.screenshots {
  background:
    linear-gradient(180deg, #f7eaea 0%, #f3ebe9 100%);
  overflow: clip;
}

.shot-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.5rem;
  align-items: start;
  justify-items: center;
}

.shot-item {
  width: min(100%, 260px);
  text-align: center;
}

.shot-phone {
  position: relative;
  border-radius: 36px;
  background: linear-gradient(160deg, #323848, #151922);
  padding: 10px;
  box-shadow: 0 22px 50px rgba(74, 63, 60, 0.22);
  transition: transform 0.3s var(--ease);
}

.shot-item:hover .shot-phone {
  transform: translateY(-6px);
}

.shot-island {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #0b0d12;
  border-radius: 16px;
  z-index: 2;
}

.shot-phone img {
  width: 100%;
  aspect-ratio: 9 / 19.4;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  background: var(--pink-soft);
}

.shot-caption {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.screenshots .placeholder-note code {
  font-size: 0.8em;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.mid-cta p {
  font-weight: 600;
  color: var(--dark);
  flex: 1;
  min-width: 16rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--white);
  background: var(--pink);
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(201, 107, 110, 0.28);
  transition: transform 0.2s var(--ease), background 0.2s ease;
}

.btn-primary:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
}

/* How it works */

.how {
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(154, 133, 128, 0.08), transparent 55%),
    linear-gradient(180deg, #faf6f5 0%, #ffffff 100%);
}

.how-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.how-intro h2 {
  max-width: 12ch;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.15rem;
  row-gap: 0.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.step-num {
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--pink);
  letter-spacing: -0.03em;
  min-width: 2.2rem;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.step p {
  color: var(--muted);
  font-size: 0.98rem;
  grid-column: 2;
}

/* Social */

.social {
  background:
    linear-gradient(180deg, #f7eaea 0%, #f3ebe9 100%);
}

.social-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.social-head h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.95rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(74, 63, 60, 0.06);
}

.rating-score {
  font-family: var(--display);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--pink);
}

.rating-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.stars {
  color: #c9956a;
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.rating-count,
.rating-label {
  font-size: 0.88rem;
  color: var(--muted);
}

.rating-label {
  font-weight: 600;
  color: var(--dark);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.review-card {
  padding: 1.6rem 1.45rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(74, 63, 60, 0.1);
}

.review-card blockquote p {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.review-card cite {
  margin-top: auto;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-card cite [data-reviewer] {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.review-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.placeholder-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.85;
}

/* Trust */

.trust {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.trust-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 2.75rem;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 55% 80% at 10% 20%, rgba(201, 107, 110, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 70% at 95% 80%, rgba(154, 133, 128, 0.18), transparent 50%),
    linear-gradient(135deg, #f7eaea, #f3ebe9);
  border: 1px solid var(--line);
}

.trust-copy h2 {
  max-width: 14ch;
}

.trust-policy {
  margin-top: 1.15rem;
}

.trust-policy a {
  color: var(--pink-deep);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.trust-policy a:hover {
  color: var(--pink);
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-points li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.trust-points strong {
  font-size: 1.02rem;
  color: var(--dark);
}

.trust-points span {
  font-size: 0.92rem;
  color: var(--muted);
}

/* FAQ */

.faq {
  background: var(--white);
  border-top: 1px solid rgba(74, 63, 60, 0.06);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.faq-intro h2 {
  max-width: 14ch;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 250, 251, 0.8);
  padding: 0 1.15rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(201, 107, 110, 0.28);
  box-shadow: 0 10px 28px rgba(74, 63, 60, 0.06);
  background: var(--white);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--dark);
  padding: 1.15rem 1.75rem 1.15rem 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--pink);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 0 1.2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 40rem;
}

/* Mobile sticky CTA */

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.75rem 0.9rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 36px rgba(74, 63, 60, 0.12);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
  display: none;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  max-width: var(--container);
  margin-inline: auto;
}

.mobile-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.mobile-cta-copy strong {
  font-size: 0.95rem;
  color: var(--dark);
}

.mobile-cta-copy span {
  font-size: 0.8rem;
  color: var(--muted);
}

.mobile-cta-btn {
  flex-shrink: 0;
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--white);
  background: var(--pink);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(201, 107, 110, 0.28);
}

/* Final CTA */

.final-cta {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7eaea 55%, #f3ebe9 100%);
  position: relative;
  overflow: clip;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -60px;
  background: radial-gradient(circle, rgba(201, 107, 110, 0.18), transparent 65%);
  pointer-events: none;
}

.final-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.final-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(201, 107, 110, 0.28);
  margin-bottom: 0.35rem;
}

.final-brand {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: -0.03em;
}

.final-inner h2 {
  max-width: 18ch;
  margin-bottom: 0.15rem;
}

.final-inner .lead {
  margin-bottom: 0.65rem;
}

.final-inner .trust-line {
  margin-top: 0.25rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2.75rem;
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--dark);
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.footer-nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--pink);
}

.footer-copy {
  font-size: 0.88rem;
  color: var(--muted);
  justify-self: end;
}

/* Motion */

.hero-copy > * {
  opacity: 0;
  transform: translateY(20px);
  animation: rise-in 0.75s var(--ease) forwards;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.23s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.32s; }

.hero-phone {
  opacity: 0;
  animation: rise-in 0.9s var(--ease) 0.18s forwards;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, 24px, 0) scale(1.05);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

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

.benefit-list .reveal:nth-child(2) { transition-delay: 0.06s; }
.benefit-list .reveal:nth-child(3) { transition-delay: 0.12s; }
.benefit-list .reveal:nth-child(4) { transition-delay: 0.18s; }
.catalog-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.catalog-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.catalog-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.review-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.review-grid .reveal:nth-child(3) { transition-delay: 0.16s; }

/* Reduced motion */

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

  .hero-copy > *,
  .hero-phone,
  .reveal,
  .orb,
  .phone-float,
  .mobile-cta {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .phone-frame {
    transition: none;
  }

  .benefit:hover,
  .review-card:hover,
  .shot-item:hover .shot-phone,
  .header-cta:hover,
  .store-badge:hover,
  .btn-primary:hover {
    transform: none;
  }
}

/* Responsive */

@media (max-width: 980px) {
  .header-nav {
    display: none;
  }

  .mobile-cta {
    display: block;
  }

  .hero-grid,
  .how-grid,
  .trust-panel,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shot-gallery {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .shot-item {
    width: min(100%, 240px);
  }

  .faq-intro {
    text-align: center;
    margin-inline: auto;
  }

  .faq-intro h2,
  .faq-intro .lead {
    margin-inline: auto;
  }

  .template-chips {
    justify-content: center;
  }

  .hero-grid {
    gap: 2.5rem;
    text-align: center;
  }

  .hero-copy {
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-headline {
    max-width: 18ch;
  }

  .hero-actions {
    align-items: center;
  }

  .hero {
    min-height: auto;
    padding: 2.25rem 0 3.5rem;
  }

  .phone-frame {
    width: min(100%, 270px);
  }

  .phase-rail {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
  }

  .phase-rail::before {
    display: none;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .social-head {
    align-items: flex-start;
  }

  .journey-intro,
  .section-intro,
  .how-intro {
    text-align: center;
    margin-inline: auto;
  }

  .journey-intro h2,
  .section-intro h2,
  .how-intro h2,
  .trust-copy h2 {
    margin-inline: auto;
  }

  .journey-intro .lead,
  .section-intro .lead,
  .how-intro .lead,
  .trust-copy .lead {
    margin-inline: auto;
  }

  .trust-copy {
    text-align: center;
  }

  .mid-cta {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-copy {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.75rem, var(--container));
  }

  .section {
    padding: 4.25rem 0;
  }

  .benefit {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.5rem 1.1rem;
  }

  .phase-rail,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .trust-panel {
    padding: 2.25rem 1.35rem;
  }

  .hero-brand {
    font-size: 2.75rem;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .step-num {
    grid-row: auto;
  }
}

@media (min-width: 981px) {
  .phone-frame.is-tilting {
    animation: none;
    transition: transform 0.08s ease-out;
  }
}

/* Legal / Privacy Policy */

.legal-page .mobile-cta {
  display: none;
}

.legal {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(247, 234, 234, 0.9), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(243, 235, 233, 0.85), transparent 50%),
    var(--cream);
}

.legal-wrap {
  max-width: 44rem;
}

.legal-hero {
  margin-bottom: 2.75rem;
}

.legal-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1rem;
}

.legal-hero .lead {
  max-width: none;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-prose h2 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--dark);
  margin: 2.5rem 0 0.85rem;
}

.legal-prose h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1.65rem 0 0.55rem;
}

.legal-prose p,
.legal-prose li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-prose p + p {
  margin-top: 0.85rem;
}

.legal-prose ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.legal-prose li {
  margin: 0.4rem 0;
  padding-left: 0.15rem;
}

.legal-prose li::marker {
  color: var(--pink);
}

.legal-prose a {
  color: var(--pink-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

.legal-prose a:hover {
  color: var(--pink);
}

.legal-prose strong {
  color: var(--dark);
  font-weight: 600;
}

.legal-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem !important;
}
