/* ============================================================
   Nurture — marketing site
   Warm, layered, colorful and professional. Soft gradient
   washes (mint / sky / lavender / gold), real photography,
   gentle depth and micro-interactions everywhere.
   ============================================================ */

/* Brand colours come from brand-tokens.css, generated from the design system. Everything
   below is layout and site-specific tokens only — never a brand colour. */
@import url('./brand-tokens.css');

:root {

  --border: rgba(33, 51, 43, .1);
  --card: #FFFFFF;

  --danger: #C94F4F;

  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --radius: 20px;
  --radius-lg: 30px;

  --shadow-soft: 0 1px 2px rgba(33, 51, 43, .04), 0 6px 20px rgba(33, 51, 43, .06);
  --shadow-card: 0 2px 6px rgba(33, 51, 43, .05), 0 18px 44px rgba(33, 51, 43, .1);
  --shadow-glow: 0 8px 28px rgba(94, 138, 114, .32);

  --max-w: 1140px;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--primary); color: #fff; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); max-width: 22ch; margin-inline: auto; }
h3 { font-size: 1.28rem; font-weight: 550; line-height: 1.25; }

em { font-style: italic; }
img { max-width: 100%; display: block; }
/* Every photo is wrapped in <picture> for AVIF/WebP art direction. <picture> is inline
   by default, so without this the percentage heights below would resolve against it
   rather than against the <figure> that carries the aspect-ratio. */
picture { display: block; width: 100%; height: 100%; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

section { position: relative; overflow: hidden; }

.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--primary), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

/* word-split reveal targets */
.split-words .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  /* room for descenders (g, y, p) inside the clip box */
  padding-bottom: .18em;
  margin-bottom: -.18em;
}
.split-words .word > span {
  display: inline-block;
  transform: translateY(110%);
}
.no-motion .split-words .word > span { transform: none; }

/* ============ decorative gradient blobs ============ */

.blob {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.blob--mint     { background: radial-gradient(circle, #BFE6CE 0%, transparent 65%); }
.blob--gold     { background: radial-gradient(circle, #F4DFAE 0%, transparent 65%); }
.blob--blue     { background: radial-gradient(circle, #BFDCF2 0%, transparent 65%); }
.blob--lavender { background: radial-gradient(circle, #D8CFF0 0%, transparent 65%); }
.blob--peach    { background: radial-gradient(circle, #F6D4BE 0%, transparent 65%); }

section > *:not(.blob) { position: relative; z-index: 1; }

/* ============ nav ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(251, 250, 246, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(33, 51, 43, .07);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
}
.nav__logo-mark { width: 26px; height: 26px; color: var(--primary); }

.nav__links { display: flex; gap: clamp(1rem, 3vw, 2.25rem); }
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  transition: color .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { transform: scaleX(1); }
@media (max-width: 760px) { .nav__links { display: none; } }

/* ============ buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  padding: .8rem 1.7rem;
  font-size: .95rem;
}
.btn:active { transform: scale(.97); }

.btn--primary {
  background: linear-gradient(120deg, var(--primary) 0%, var(--teal) 115%);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(94, 138, 114, .4); }

.btn--ghost {
  background: rgba(255, 255, 255, .6);
  color: var(--fg);
  border-color: rgba(33, 51, 43, .16);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.btn--light {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(10, 40, 28, .25);
}
.btn--light:hover { transform: translateY(-2px); }

.btn--sm { padding: .55rem 1.2rem; font-size: .88rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--xl { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ============ hero ============ */

.hero {
  padding: 9.5rem 1.5rem 5.5rem;
  background: linear-gradient(to bottom, #F3F9F2 0%, var(--bg) 100%);
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 920px) {
  .hero { padding-top: 7.5rem; }
  .hero__inner { grid-template-columns: 1fr; }
}

.hero__lifeline {
  width: min(320px, 70%);
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.hero__lifeline svg { width: 100%; height: auto; display: block; }
.lifeline__draw { stroke: currentColor; opacity: .8; }
.lifeline__heart { stroke: currentColor; }
.no-motion .lifeline__heart { fill: currentColor; }

.hero__title {
  font-size: clamp(2.5rem, 5.2vw, 3.9rem);
  line-height: 1.06;
  margin-inline: 0;
  max-width: none;
}
.hero__title em {
  background: linear-gradient(100deg, var(--primary) 20%, var(--teal) 60%, var(--blue) 105%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  margin-top: 1.4rem;
  max-width: 32rem;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--muted);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.6rem;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .86rem;
  font-weight: 500;
  color: var(--muted);
}
.hero__trust svg { width: 15px; height: 15px; color: var(--primary); }

/* hero media */

.hero__media { position: relative; }

.hero__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(33, 51, 43, .18);
  aspect-ratio: 4 / 4.6;
  outline: 6px solid rgba(255, 255, 255, .65);
  outline-offset: -6px;
}
.hero__photo img {
  width: 100%;
  height: 106%;
  object-fit: cover;
}
@media (max-width: 920px) {
  .hero__photo { aspect-ratio: 4 / 3.6; max-width: 560px; margin: 0 auto; }
}

.hero__float {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(33, 51, 43, .07);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: .85rem 1rem;
  max-width: 260px;
}
.hero__float--chat { bottom: 9%; left: -8%; }
.hero__float--stat { top: 7%; right: -6%; max-width: 210px; }
@media (max-width: 920px) {
  .hero__float--chat { left: 0; }
  .hero__float--stat { right: 0; }
}

.hero__float-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary-soft), var(--teal-soft));
  color: var(--primary);
}
.hero__float-icon--blue { background: linear-gradient(135deg, var(--blue-soft), var(--purple-soft)); color: var(--blue); }
.hero__float-icon svg { width: 18px; height: 18px; }

.hero__float-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__float-text { font-size: .85rem; line-height: 1.45; }

/* ============ problem / 2am ============ */

.problem {
  background: linear-gradient(to bottom, var(--bg) 0%, #F1EFF9 30%, #EEF3F9 100%);
  padding: 6rem 1.5rem 6.5rem;
  text-align: center;
}
.problem__inner { max-width: 800px; margin: 0 auto; }

.problem__intro {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 2.75rem;
}

.problem__lines { display: grid; gap: 1.1rem; }
.problem__line {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  line-height: 1.2;
  color: var(--purple);
}
.problem__line:nth-child(2) { color: var(--blue); }
.problem__line:nth-child(3) { color: var(--teal); }
.problem__line:nth-child(4) { color: var(--peach); }

.problem__resolve {
  margin-top: 2.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
}
.problem__resolve em { color: var(--primary); }

.problem__note {
  margin: 1.5rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1rem;
}

/* ============ chat demo ============ */

.demo {
  padding: 7rem 1.5rem;
  background: linear-gradient(to bottom, #EEF3F9 0%, var(--bg) 35%, #F0F7F1 100%);
}

.demo__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
@media (max-width: 920px) { .demo__inner { grid-template-columns: 1fr; } }

.demo__copy h2 { margin-inline: 0; }

.demo__copy-sub {
  margin-top: 1.4rem;
  color: var(--muted);
  max-width: 30rem;
  font-size: 1.02rem;
}

.demo__points {
  list-style: none;
  margin-top: 1.75rem;
  display: grid;
  gap: .8rem;
}
.demo__points li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .95rem;
  font-weight: 500;
}
.demo__points svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: 50%;
  padding: 4px;
}

/* phone */

.phone-wrap { display: flex; justify-content: center; }

.phone {
  width: min(370px, 92vw);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 44px;
  box-shadow: 0 30px 70px rgba(33, 51, 43, .16);
  padding: 12px;
  position: relative;
}

.phone__notch {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 22px;
  background: var(--fg);
  border-radius: 999px;
  opacity: .92;
  z-index: 2;
}

.phone__screen {
  background: linear-gradient(to bottom, #FDF9F2, #F4F1EA);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  padding-top: 54px;
}

.chat__banner {
  text-align: center;
  font-size: .7rem;
  letter-spacing: .05em;
  padding: .5rem 1rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--blue-soft);
}

.chat__body {
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  flex-grow: 1;
}

.chat__msg {
  border-radius: var(--radius);
  padding: .85rem 1rem;
  font-size: .88rem;
  line-height: 1.55;
  max-width: 90%;
}
.chat__msg p + p, .chat__msg ul + p, .chat__msg p + ul { margin-top: .55rem; }

.chat__msg--user {
  align-self: flex-end;
  background: linear-gradient(120deg, var(--primary), #23997B);
  color: #fff;
  border-bottom-right-radius: 6px;
}
.chat__msg--user .chat__time {
  display: block;
  text-align: right;
  font-size: .66rem;
  opacity: .75;
  margin-top: .3rem;
  font-variant-numeric: tabular-nums;
}

.chat__msg--ai {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-bottom-left-radius: 6px;
  box-shadow: var(--shadow-soft);
}
.chat__msg--ai ul { list-style: none; display: grid; gap: .3rem; }
.chat__msg--ai li { padding-left: 1.05rem; position: relative; }
.chat__msg--ai li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.chat__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}

.chat__typing {
  align-self: flex-start;
  display: flex;
  gap: 5px;
  padding: .8rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-bottom-left-radius: 6px;
}
.chat__typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: typing 1.2s ease-in-out infinite;
}
.chat__typing span:nth-child(2) { animation-delay: .18s; }
.chat__typing span:nth-child(3) { animation-delay: .36s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 1rem 1.1rem;
  padding: .75rem 1.05rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: .88rem;
}
.chat__mic { width: 20px; height: 20px; color: var(--primary); }
.chat__mic svg { width: 100%; height: 100%; }

/* ============ features ============ */

.features {
  padding: 7rem 1.5rem;
  background: linear-gradient(to bottom, #F0F7F1 0%, #EAF4EE 55%, #F4F6EE 100%);
}
.features__head { text-align: center; max-width: 46rem; margin: 0 auto 3.5rem; }

.features__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 980px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features__grid { grid-template-columns: 1fr; } }

.fcard {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .3s ease, border-color .3s ease;
  will-change: transform;
}
.fcard:hover { box-shadow: var(--shadow-card); }

.fcard__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  transition: transform .3s ease;
}
.fcard:hover .fcard__icon { transform: scale(1.08) rotate(-4deg); }
.fcard__icon svg { width: 25px; height: 25px; }

.fcard__icon--green  { background: linear-gradient(135deg, var(--primary-soft), var(--teal-soft)); color: var(--primary); }
.fcard__icon--blue   { background: linear-gradient(135deg, var(--blue-soft), #D6E9F8); color: var(--blue); }
.fcard__icon--purple { background: linear-gradient(135deg, var(--purple-soft), #E3DDF6); color: var(--purple); }
.fcard__icon--teal   { background: linear-gradient(135deg, var(--teal-soft), #D3EFEA); color: var(--teal); }
.fcard__icon--peach  { background: linear-gradient(135deg, var(--peach-soft), #F8DFCE); color: var(--peach); }
.fcard__icon--gold   { background: linear-gradient(135deg, var(--gold-soft), #F6E5BD); color: var(--gold); }

.fcard h3 { margin-bottom: .55rem; }
.fcard p { color: var(--muted); font-size: .94rem; }

/* ============ milestone banner ============ */

.banner {
  padding: 7rem 1.5rem 0;
  background: linear-gradient(to bottom, #F4F6EE 0%, var(--bg) 100%);
}

.banner__figure {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(33, 51, 43, .16);
}
.banner__figure img {
  width: 100%;
  height: clamp(340px, 46vw, 540px);
  object-fit: cover;
  scale: 1.12;
}

.banner__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background: linear-gradient(to top, rgba(23, 38, 30, .66), transparent);
  color: #fff;
}
.banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
}
.banner__text {
  margin-top: .35rem;
  max-width: 34rem;
  font-size: .98rem;
  opacity: .94;
}

/* ============ moments ============ */

.moments {
  padding: 7rem 1.5rem;
  background: linear-gradient(to bottom, var(--bg) 0%, #FAF3E9 60%, #F7EFE6 100%);
}

.moments__head { text-align: center; margin-bottom: 3.5rem; }

.moments__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 880px) { .moments__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

.momcard {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .3s ease;
  will-change: transform;
}
.momcard:hover { box-shadow: var(--shadow-card); }

.momcard__photo { aspect-ratio: 4 / 3.2; overflow: hidden; }
.momcard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.momcard:hover .momcard__photo img { transform: scale(1.05); }

.momcard__body { padding: 1.5rem 1.6rem 1.7rem; }
.momcard__body h3 { margin-bottom: .5rem; }
.momcard__body p { color: var(--muted); font-size: .94rem; }

/* ============ light ============ */

.light {
  text-align: center;
  padding: 8rem 1.5rem 8.5rem;
  background:
    radial-gradient(46rem 26rem at 50% 118%, rgba(244, 224, 166, .9) 0%, rgba(244, 224, 166, 0) 62%),
    linear-gradient(to bottom, #F7EFE6 0%, #EFF6EF 55%, #EAF4EC 100%);
}

.light__title {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 1.08;
}
.light__title span { display: block; }
.light__title em {
  background: linear-gradient(100deg, var(--primary) 10%, var(--teal) 55%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.light__sub {
  margin-top: 1.75rem;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  color: var(--muted);
}

.light__cta { margin-top: 2.25rem; }

/* ============ voices ============ */

.voices {
  padding: 7rem 1.5rem;
  background: linear-gradient(to bottom, #EAF4EC 0%, var(--bg) 45%, #F0F1F8 100%);
}

.voices__head { text-align: center; margin-bottom: 3.5rem; }

.voices__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 980px) { .voices__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .voices__grid { grid-template-columns: 1fr; } }

.vcard {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.4rem 1.8rem 1.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  transition: box-shadow .3s ease, transform .3s ease;
}
.vcard:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

.vcard--mint     { background: linear-gradient(150deg, #FFFFFF 30%, var(--primary-soft) 130%); }
.vcard--blue     { background: linear-gradient(150deg, #FFFFFF 30%, var(--blue-soft) 130%); }
.vcard--lavender { background: linear-gradient(150deg, #FFFFFF 30%, var(--purple-soft) 130%); }
.vcard--peach    { background: linear-gradient(150deg, #FFFFFF 30%, var(--peach-soft) 130%); }

.vcard__mark {
  position: absolute;
  top: .6rem; left: 1.4rem;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  opacity: .3;
  color: var(--primary);
}
.vcard--blue .vcard__mark { color: var(--blue); }
.vcard--lavender .vcard__mark { color: var(--purple); }
.vcard--peach .vcard__mark { color: var(--peach); }

.vcard p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.5;
}
.vcard footer { font-size: .84rem; color: var(--muted); }

.vcard--cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 120%);
  border: none;
  align-items: flex-start;
  padding-top: 1.9rem;
}
.vcard--cta p { color: #fff; font-weight: 550; }

/* ============ pricing ============ */

.pricing {
  padding: 7rem 1.5rem;
  background: linear-gradient(to bottom, #F0F1F8 0%, #ECF1F8 55%, #F3F7F3 100%);
}

.pricing__head { text-align: center; margin-bottom: 3.5rem; }
.pricing__sub { margin-top: 1.1rem; color: var(--muted); font-size: 1.02rem; }

.pricing__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 880px) { .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.pcard {
  position: relative;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .95rem;
  text-align: center;
  transition: box-shadow .3s ease;
  will-change: transform;
}
.pcard:hover { box-shadow: var(--shadow-card); }
.pcard--popular {
  background: #fff;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(120deg, var(--primary), var(--teal), var(--blue));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 18px 48px rgba(94, 138, 114, .18);
  transform: scale(1.03);
}

.pcard__badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--primary), var(--teal));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .35rem 1rem;
  white-space: nowrap;
}

.pcard h3 {
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pcard__price {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pcard__price span { font-size: 1rem; font-family: var(--font-sans); font-weight: 400; color: var(--muted); }

.pcard__note { color: var(--muted); font-size: .92rem; flex-grow: 1; }

.pricing__includes {
  text-align: center;
  margin: 2.75rem auto 0;
  color: var(--muted);
  font-size: .9rem;
  max-width: 46rem;
}

/* ============ trust ============ */

.trust {
  padding: 7rem 1.5rem;
  background: linear-gradient(to bottom, #F3F7F3 0%, var(--bg) 100%);
}
.trust__head { text-align: center; margin-bottom: 3.5rem; }

.trust__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 880px) { .trust__grid { grid-template-columns: 1fr; } }

.tcard {
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .3s ease, transform .3s ease;
}
.tcard:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

.tcard--mint     { background: linear-gradient(160deg, #FFFFFF 40%, var(--primary-soft) 140%); }
.tcard--blue     { background: linear-gradient(160deg, #FFFFFF 40%, var(--blue-soft) 140%); }
.tcard--lavender { background: linear-gradient(160deg, #FFFFFF 40%, var(--purple-soft) 140%); }

.tcard__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
}
.tcard--mint .tcard__icon     { background: linear-gradient(135deg, var(--primary-soft), var(--teal-soft)); color: var(--primary); }
.tcard--blue .tcard__icon     { background: linear-gradient(135deg, var(--blue-soft), #D6E9F8); color: var(--blue); }
.tcard--lavender .tcard__icon { background: linear-gradient(135deg, var(--purple-soft), #E3DDF6); color: var(--purple); }
.tcard__icon svg { width: 23px; height: 23px; }
.tcard h3 { margin-bottom: .55rem; }
.tcard p { color: var(--muted); font-size: .94rem; }

/* ============ cta ============ */

.cta {
  padding: 2rem 1.5rem 7rem;
  background: var(--bg);
}

.cta__panel {
  position: relative;
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(130deg, #4A7159 0%, #5E8A72 40%, #4E8578 75%, #4D809D 130%);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  color: #fff;
  box-shadow: 0 28px 64px rgba(23, 115, 78, .32);
}

.cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}
.cta__glow--1 {
  width: 26rem; height: 26rem;
  background: rgba(244, 224, 166, .28);
  top: -12rem; left: -8rem;
}
.cta__glow--2 {
  width: 22rem; height: 22rem;
  background: rgba(120, 190, 255, .22);
  bottom: -10rem; right: -6rem;
}

.cta__title {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  color: #fff;
  position: relative;
}
.cta__sub { margin-top: 1.1rem; font-size: 1.05rem; opacity: .93; position: relative; }
.cta .btn { margin-top: 2rem; margin-bottom: 1.2rem; position: relative; }
.cta__micro { font-size: .85rem; opacity: .85; position: relative; }
.br-desktop { display: none; }
@media (min-width: 700px) { .br-desktop { display: block; } }

/* ============ footer ============ */

.footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem) 2.25rem;
  background: var(--bg);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
}
.footer__brand p { margin-top: 1rem; color: var(--muted); font-size: .92rem; }

.footer__links { display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: flex-start; }
.footer__links a { color: var(--muted); text-decoration: none; font-size: .9rem; }
.footer__links a:hover { color: var(--fg); }

.footer__disclaimer {
  max-width: var(--max-w);
  margin: 0 auto 1.25rem;
  font-size: .78rem;
  color: var(--muted);

}
.footer__copy {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: .8rem;
  color: var(--muted);
}

/* ============ animation helpers ============ */

.reveal-load, .line-reveal {
  opacity: 0;
  transform: translateY(24px);
}
.no-motion .reveal-load, .no-motion .line-reveal {
  opacity: 1;
  transform: none;
}

/* chat steps hidden until the demo plays */
.chat__body [data-chat] { opacity: 0; }
.no-motion .chat__body [data-chat] { opacity: 1; }
.no-motion .chat__typing { display: none; }

@media (prefers-reduced-motion: reduce) {
  .chat__typing span { animation: none; }
  .fcard:hover .fcard__icon, .momcard:hover .momcard__photo img, .vcard:hover, .tcard:hover { transform: none; }
}
