/* ============================================================
   HELLO FAMILY — V2.0
   "The companion that fills their days."
   Design system + section styles
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --cream:        #FAF5EC;
  --cream-2:      #F3EADC;
  --cream-3:      #E9DCC9;
  --card:         #FFFCF6;

  --ink:          #262129;
  --ink-soft:     #5E5862;
  --ink-faint:    #908A95;
  --navy:         #1E2C49;
  --plum:         #5A3F58;

  --coral:        #E5764C;
  --coral-deep:   #C85C32;
  --coral-soft:   #F6CDB7;
  --coral-tint:   #FBE6D9;

  --teal:         #3E948C;
  --teal-soft:    #BFDDD7;
  --teal-tint:    #DEEDE9;

  --green:        #7BA77E;
  --green-deep:   #5E8C61;
  --green-tint:   #E4EEE0;

  --blue:         #5E84BC;
  --blue-tint:    #E1E9F4;

  --amber:        #DDA13C;
  --amber-deep:   #C2842A;
  --amber-tint:   #F6E8CC;

  --display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --sh-sm: 0 2px 12px rgba(63, 45, 30, 0.06);
  --sh-md: 0 16px 44px -20px rgba(73, 50, 32, 0.30);
  --sh-lg: 0 44px 100px -44px rgba(73, 50, 32, 0.42);
  --sh-coral: 0 18px 42px -16px rgba(200, 92, 50, 0.46);

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 68px);
  --radius: 28px;
  --radius-sm: 16px;
  --radius-lg: 40px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--coral-soft); color: var(--ink); }

/* ---------- Helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 960px; }
.section { padding-block: clamp(76px, 11vw, 156px); position: relative; }
.section-sm { padding-block: clamp(56px, 8vw, 104px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral-deep);
}
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 2px; background: currentColor; }
.eyebrow.teal { color: var(--teal); }
.eyebrow.amber { color: var(--amber-deep); }
.eyebrow.light { color: var(--coral-soft); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.03; letter-spacing: -0.025em; color: var(--ink); }
h2 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.62rem); letter-spacing: -0.018em; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.32rem); color: var(--ink-soft); line-height: 1.55; }
.serif-em { font-style: italic; }

.section-head { max-width: 740px; }
.section-head h2 { margin-top: 20px; }
.section-head p { margin-top: 22px; }
.center { text-align: center; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 1rem;
  padding: 16px 28px; border-radius: 100px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .3s, color .3s;
  will-change: transform;
}
.btn .arr { transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: var(--sh-coral); }
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 24px 50px -16px rgba(200,92,50,.56); }
.btn-ghost { background: rgba(38,33,41,0.04); color: var(--ink); box-shadow: inset 0 0 0 1.5px rgba(38,33,41,0.16); }
.btn-ghost:hover { background: rgba(38,33,41,0.07); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--sh-md); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-lg { padding: 19px 34px; font-size: 1.06rem; }
.btn-text { background: none; color: var(--ink); padding: 12px 16px; }
.btn-text:hover { color: var(--coral-deep); }

/* ============================================================
   AUTH MODAL
   ============================================================ */
.auth-overlay { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; background: rgba(30, 22, 16, 0.55); backdrop-filter: blur(6px); animation: authFade .25s ease; }
.auth-overlay[hidden] { display: none; }
@keyframes authFade { from { opacity: 0; } to { opacity: 1; } }
.auth-modal { position: relative; width: 100%; max-width: 420px; background: var(--card); border-radius: var(--radius); box-shadow: var(--sh-lg); padding: clamp(28px, 4vw, 40px); animation: authPop .3s cubic-bezier(.2,.8,.2,1); }
@keyframes authPop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.auth-close { position: absolute; top: 16px; right: 18px; width: 36px; height: 36px; border-radius: 50%; font-size: 1.6rem; line-height: 1; color: var(--ink-soft); display: grid; place-items: center; transition: background .2s; }
.auth-close:hover { background: var(--cream-2); }
.auth-brand { margin-bottom: 18px; }
.auth-modal h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); }
.auth-sub { color: var(--ink-soft); margin-top: 8px; font-size: 0.98rem; }
.auth-form { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.auth-form[hidden] { display: none; }
.auth-social { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.auth-soc { display: flex; align-items: center; justify-content: center; gap: 11px; width: 100%; padding: 13px 16px; border-radius: 12px; background: var(--card); box-shadow: inset 0 0 0 1.5px var(--cream-3); font-family: var(--body); font-weight: 600; font-size: 0.98rem; color: var(--ink); transition: background .2s, box-shadow .2s, transform .2s; }
.auth-soc svg { flex: none; }
.auth-soc:hover { background: var(--cream); box-shadow: inset 0 0 0 1.5px var(--coral-soft); transform: translateY(-1px); }
.auth-or { display: flex; align-items: center; gap: 14px; margin-top: 8px; color: var(--ink-faint); font-size: 0.82rem; }
.auth-or::before, .auth-or::after { content: ""; flex: 1; height: 1px; background: var(--cream-3); }
.auth-social[hidden] { display: none; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field span { font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); }
.auth-field input { font-family: var(--body); font-size: 1rem; padding: 13px 15px; border-radius: 12px; background: var(--cream); border: 1.5px solid var(--cream-3); color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.auth-field input::placeholder { color: var(--ink-faint); }
.auth-field input:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-tint); }
.auth-field textarea { font-family: var(--body); font-size: 1rem; padding: 13px 15px; border-radius: 12px; background: var(--cream); border: 1.5px solid var(--cream-3); color: var(--ink); resize: vertical; transition: border-color .2s, box-shadow .2s; }
.auth-field textarea::placeholder { color: var(--ink-faint); }
.auth-field textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-tint); }
.auth-field[hidden] { display: none; }
.auth-info { margin-top: 18px; color: var(--ink-soft); font-size: 0.97rem; line-height: 1.6; max-height: 56vh; overflow-y: auto; }
.auth-info[hidden] { display: none; }
.auth-info p { margin-bottom: 12px; }
.auth-info b { color: var(--ink); font-weight: 600; }
.auth-info h4 { font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--ink); margin: 18px 0 6px; letter-spacing: -0.01em; }
.auth-info .auth-meta { font-size: 0.84rem; color: var(--ink-faint); padding-bottom: 12px; border-bottom: 1px solid var(--cream-3); margin-bottom: 16px; }
.auth-modal--wide { max-width: 560px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }
.auth-submit { width: 100%; margin-top: 4px; }
.auth-switch { margin-top: 18px; text-align: center; font-size: 0.92rem; color: var(--ink-soft); }
.auth-switch button { color: var(--coral-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.auth-success { text-align: center; padding: 8px 0 4px; }
.auth-success[hidden] { display: none; }
.auth-tick { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: var(--green); box-shadow: 0 0 0 8px var(--green-tint); }
.auth-success h3 { font-size: 1.4rem; }
.auth-success p { color: var(--ink-soft); margin-top: 10px; font-size: 0.98rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; justify-content: center; transition: background .4s, box-shadow .4s, backdrop-filter .4s; }
.nav-inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding: 18px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav.scrolled { background: rgba(250,245,236,0.82); backdrop-filter: blur(14px) saturate(1.2); box-shadow: 0 1px 0 rgba(38,33,41,0.06); }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 1.24rem; letter-spacing: -0.02em; }
.brand-mark { width: 38px; height: 38px; border-radius: 13px; position: relative; background: radial-gradient(125% 125% at 30% 22%, #F08A5D 0%, var(--coral) 42%, var(--coral-deep) 78%, #a94d2b 100%); box-shadow: 0 6px 16px -6px rgba(200,92,50,0.6), inset 0 1px 1px rgba(255,255,255,0.4); flex: none; display: grid; place-items: center; overflow: hidden; }
.brand-mark::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16); pointer-events: none; }
.brand-mark svg { width: 23px; height: 23px; position: relative; z-index: 1; filter: drop-shadow(0 1px 1px rgba(140,60,30,0.28)); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-weight: 500; font-size: 0.96rem; color: var(--ink-soft); padding: 9px 14px; border-radius: 100px; transition: color .25s, background .25s; }
.nav-links a:hover { color: var(--ink); background: rgba(38,33,41,0.05); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 22px; font-size: 0.95rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { position: absolute; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle span { position: relative; }
.nav-toggle span::before { content: ""; top: -6px; }
.nav-toggle span::after { content: ""; top: 6px; }

.mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--cream); display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: var(--gutter); transform: translateY(-100%); transition: transform .5s cubic-bezier(.7,0,.2,1); }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--display); font-weight: 600; font-size: 1.7rem; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--cream-3); }
.mobile-menu .btn { margin-top: 24px; }
.mobile-menu .mm-close { position: absolute; top: 22px; right: var(--gutter); width: 44px; height: 44px; font-size: 2rem; display: grid; place-items: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: block;
  position: relative;
  width: 100%;
  padding-top: clamp(132px, 17vh, 196px);
  padding-bottom: clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero-bg-blob { position: absolute; border-radius: 50%; filter: blur(72px); pointer-events: none; z-index: 0; }
.hero-bg-blob.b1 { width: 540px; height: 540px; top: -130px; right: -90px; background: radial-gradient(circle, var(--coral-soft), transparent 70%); opacity: .5; }
.hero-bg-blob.b2 { width: 480px; height: 480px; bottom: -160px; left: -130px; background: radial-gradient(circle, var(--teal-soft), transparent 70%); opacity: .45; }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero-pill { display: inline-flex; align-items: center; gap: 10px; background: var(--card); box-shadow: var(--sh-sm); padding: 8px 16px 8px 10px; border-radius: 100px; font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); }
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-tint); }
.hero-pill b { color: var(--ink); font-weight: 600; }
.hero h1 { font-size: clamp(2.7rem, 6vw, 5.1rem); margin-top: 24px; }
.hero h1 .accent { color: var(--coral-deep); font-style: italic; }
.hero-sub { margin-top: 26px; max-width: 540px; }
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-sub strong::before { content: ""; }
.hero-cta { margin-top: 34px; display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; color: var(--ink-faint); font-size: 0.9rem; font-weight: 500; }
.hero-trust .ht { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .ht svg { color: var(--teal); flex: none; }
.hero-trust .sep { width: 1px; height: 16px; background: var(--cream-3); }

/* hero scene: orb + rotating conversation */
.hero-stage { position: relative; }
.scene-orb { position: absolute; top: -38px; right: -10px; width: 150px; height: 150px; z-index: 1; }
.scene-orb canvas { width: 100%; height: 100%; }
.scene-orb .badge { position: absolute; inset: auto 0 -6px 0; margin-inline: auto; width: max-content; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral-deep); }

.convo-card { position: relative; z-index: 2; background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--sh-lg); overflow: hidden; }
.convo-top { display: flex; align-items: center; gap: 14px; padding: 18px 22px; border-bottom: 1px solid var(--cream-2); }
.convo-ava { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex: none; box-shadow: var(--sh-sm); position: relative; }
.convo-ava img { width: 100%; height: 100%; object-fit: cover; }
.convo-who { min-width: 0; }
.convo-who b { display: block; font-family: var(--display); font-weight: 600; font-size: 1.06rem; letter-spacing: -0.01em; }
.convo-who span { display: block; font-size: 0.86rem; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.convo-live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 0.74rem; font-weight: 600; color: var(--teal); white-space: nowrap; }
.convo-live .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: pulse 1.7s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }

.convo-photo { position: relative; height: 196px; overflow: hidden; }
.convo-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.convo-photo .ph-tint { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(30,21,15,0.55)); }
.convo-tag { position: absolute; left: 16px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; background: rgba(255,252,246,0.92); backdrop-filter: blur(6px); color: var(--ink); font-size: 0.8rem; font-weight: 600; padding: 7px 13px; border-radius: 100px; box-shadow: var(--sh-sm); }
.convo-tag .ic { width: 16px; height: 16px; color: var(--coral-deep); }

.convo-body { padding: 22px 22px 22px; }
.vc-said { display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; font-size: 0.9rem; font-style: italic; color: var(--ink-faint); }
.vc-said svg { color: var(--teal); flex: none; }
.vc-speaker { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-deep); }
.vc-speaker svg { flex: none; }
.vc-speaker em { color: var(--ink-faint); font-style: normal; font-weight: 600; }
.convo-wave { display: flex; align-items: center; justify-content: center; gap: 4px; height: 32px; margin-top: 10px; }
.convo-wave i { width: 4px; border-radius: 4px; background: var(--coral); height: 22%; transition: height .3s cubic-bezier(.4,0,.2,1); }
.vc-caption { margin-top: 12px; font-family: var(--display); font-weight: 600; font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.42; letter-spacing: -0.01em; color: var(--ink); text-align: center; min-height: 4.3em; }
.vc-caption .w { opacity: 0; }
.vc-caption .w.on { opacity: 1; transition: opacity .26s ease; }
.convo-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 16px; }
.convo-dots { display: flex; gap: 7px; }
.convo-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--cream-3); cursor: pointer; transition: width .3s, background .3s; }
.convo-dots i.on { width: 22px; border-radius: 4px; background: var(--coral); }
.convo-nav { display: flex; gap: 8px; }
.convo-nav button { width: 40px; height: 40px; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; color: var(--ink); transition: background .25s, color .25s, transform .2s; }
.convo-nav button:hover { background: var(--coral); color: #fff; transform: translateY(-1px); }
.convo-nav button:active { transform: scale(.93); }
.convo-track.swap { animation: cfade .4s ease; }
@keyframes cfade { from { opacity: .2; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   LOGO / CHANNEL STRIP
   ============================================================ */
.channels { padding-block: clamp(48px, 7vw, 84px); }
.ch-head { max-width: 720px; }
.ch-head h2 { margin-top: 16px; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.ch-head p { margin-top: 16px; }
.ch-cols { margin-top: 48px; display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(24px, 4vw, 56px); align-items: stretch; }
.ch-col { display: flex; flex-direction: column; }
.ch-divider { width: 1px; background: var(--cream-3); align-self: stretch; }
.ch-label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--body); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 22px; }
.ch-label .cl-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.ch-label .cl-ic.live { background: var(--teal-tint); color: var(--teal); }
.ch-label .cl-ic.manage { background: var(--coral-tint); color: var(--coral-deep); }
.ch-chips { display: flex; flex-wrap: wrap; gap: 11px; }
.brand-chip { display: inline-flex; align-items: center; gap: 10px; background: var(--card); box-shadow: var(--sh-sm); padding: 10px 17px 10px 11px; border-radius: 100px; font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.brand-chip .bc-ic { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex: none; color: #fff; }
.brand-chip .bc-ic svg { display: block; }
.ch-note { margin-top: 18px; font-size: 0.95rem; color: var(--ink-faint); }
.ch-foot { margin-top: 40px; text-align: center; font-family: var(--display); font-weight: 600; font-size: clamp(1.05rem, 1.8vw, 1.35rem); letter-spacing: -0.01em; color: var(--ink); }
.ch-foot .hl { color: var(--coral-deep); }

/* ============================================================
   REPOSITION STATEMENT
   ============================================================ */
.reposition { background: var(--navy); color: #fff; overflow: hidden; }
.reposition .wrap { position: relative; z-index: 2; }
.reposition .rep-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .4; z-index: 1; }
.reposition .rep-blob.r1 { width: 420px; height: 420px; background: var(--coral); top: -160px; right: -80px; }
.reposition .rep-blob.r2 { width: 360px; height: 360px; background: var(--teal); bottom: -160px; left: -60px; opacity: .32; }
.rep-eyebrow { color: var(--coral-soft); }
.rep-statement { font-family: var(--display); font-weight: 600; font-size: clamp(1.9rem, 4.4vw, 3.3rem); line-height: 1.18; letter-spacing: -0.025em; max-width: 1000px; margin-top: 26px; }
.rep-statement .muted { color: rgba(255,255,255,0.42); }
.rep-statement .hl { color: var(--coral-soft); }
.rep-foot { margin-top: 40px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.rep-foot .chip { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.08); padding: 9px 16px; border-radius: 100px; font-size: 0.92rem; font-weight: 500; color: #fff; }
.rep-foot .chip .d { width: 8px; height: 8px; border-radius: 50%; }

/* ============================================================
   WEDGES — what it brings to their day
   ============================================================ */
.wedges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; }
.wcard { background: var(--card); border-radius: var(--radius); padding: 32px 30px 30px; box-shadow: var(--sh-sm); position: relative; overflow: hidden; transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s; display: flex; flex-direction: column; }
.wcard:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.wcard .w-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px; }
.wcard .w-emotion { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.wcard h3 { margin-bottom: 11px; }
.wcard p { color: var(--ink-soft); font-size: 0.99rem; }
.wcard .w-eg { margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--cream-3); display: flex; gap: 11px; align-items: flex-start; }
.wcard .w-eg .q { width: 26px; height: 26px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; }
.wcard .w-eg p { font-size: 0.92rem; font-style: italic; color: var(--ink); }
/* color variants */
.w-coral .w-ic { background: var(--coral-tint); color: var(--coral-deep); } .w-coral .w-emotion { color: var(--coral-deep); } .w-coral .w-eg .q { background: var(--coral); }
.w-teal  .w-ic { background: var(--teal-tint); color: var(--teal); } .w-teal .w-emotion { color: var(--teal); } .w-teal .w-eg .q { background: var(--teal); }
.w-amber .w-ic { background: var(--amber-tint); color: var(--amber-deep); } .w-amber .w-emotion { color: var(--amber-deep); } .w-amber .w-eg .q { background: var(--amber); }
.w-blue  .w-ic { background: var(--blue-tint); color: var(--blue); } .w-blue .w-emotion { color: var(--blue); } .w-blue .w-eg .q { background: var(--blue); }
.w-green .w-ic { background: var(--green-tint); color: var(--green-deep); } .w-green .w-emotion { color: var(--green-deep); } .w-green .w-eg .q { background: var(--green); }
.w-plum  .w-ic { background: #efe2ee; color: var(--plum); } .w-plum .w-emotion { color: var(--plum); } .w-plum .w-eg .q { background: var(--plum); }

/* ============================================================
   A DAY FULL OF JOY — timeline
   ============================================================ */
.day { background: var(--cream-2); overflow: hidden; }
.day-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(34px, 5vw, 70px); margin-top: 56px; align-items: start; }
.day-photo { position: sticky; top: 100px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 3/4; }
.day-photo img { width: 100%; height: 100%; object-fit: cover; }
.day-photo .dp-tint { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(30,21,15,0.62)); }
.day-photo .dp-cap { position: absolute; left: 22px; right: 22px; bottom: 22px; color: #fff; }
.day-photo .dp-cap b { font-family: var(--display); font-size: 1.3rem; font-weight: 600; }
.day-photo .dp-cap span { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.82); margin-top: 3px; }

.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(var(--coral), var(--amber), var(--teal)); opacity: .35; }
.tl-item { position: relative; padding: 0 0 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -30px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--card); box-shadow: 0 0 0 4px var(--cream-2), inset 0 0 0 3px var(--coral); }
.tl-item.amber::before { box-shadow: 0 0 0 4px var(--cream-2), inset 0 0 0 3px var(--amber); }
.tl-item.teal::before { box-shadow: 0 0 0 4px var(--cream-2), inset 0 0 0 3px var(--teal); }
.tl-item.blue::before { box-shadow: 0 0 0 4px var(--cream-2), inset 0 0 0 3px var(--blue); }
.tl-item.green::before { box-shadow: 0 0 0 4px var(--cream-2), inset 0 0 0 3px var(--green); }
.tl-time { font-family: var(--display); font-weight: 600; font-size: 0.92rem; color: var(--coral-deep); letter-spacing: 0.02em; }
.tl-item.amber .tl-time { color: var(--amber-deep); } .tl-item.teal .tl-time { color: var(--teal); } .tl-item.blue .tl-time { color: var(--blue); } .tl-item.green .tl-time { color: var(--green-deep); }
.tl-card { background: var(--card); border-radius: 20px; padding: 18px 22px; box-shadow: var(--sh-sm); margin-top: 8px; }
.tl-card h4 { font-family: var(--display); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.01em; margin-bottom: 5px; }
.tl-card p { font-size: 0.96rem; color: var(--ink-soft); }
.tl-card .said { margin-top: 12px; font-size: 0.94rem; font-style: italic; color: var(--ink); padding-left: 13px; border-left: 2px solid var(--coral-soft); }

/* ============================================================
   INTERACTIVE — it actually talks back
   ============================================================ */
.talk { background: var(--navy); color: #fff; overflow: hidden; }
.talk .wrap { position: relative; z-index: 2; }
.talk-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; z-index: 1; }
.talk-blob.t1 { width: 380px; height: 380px; background: var(--coral); top: -140px; left: -60px; }
.talk-blob.t2 { width: 340px; height: 340px; background: var(--teal); bottom: -150px; right: -50px; opacity: .3; }
.talk-head { text-align: center; max-width: 720px; margin-inline: auto; }
.talk-head h2 { color: #fff; }
.talk-head .eyebrow { justify-content: center; color: var(--coral-soft); }
.talk-head p { color: rgba(255,255,255,0.74); margin-top: 20px; }

.talk-demo { margin-top: 52px; max-width: 880px; margin-inline: auto; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 36px); backdrop-filter: blur(6px); }
.vstage { min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 16px; }
.vring { position: relative; width: 92px; height: 92px; display: grid; place-items: center; flex: none; }
.vring b { width: 30px; height: 30px; border-radius: 50%; display: block; z-index: 2; background: radial-gradient(circle at 35% 30%, #F39A6F, var(--coral-deep)); box-shadow: 0 0 26px rgba(229,118,76,.75); transition: background .4s, box-shadow .4s; }
.vring i { position: absolute; inset: 0; margin: auto; width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--coral); opacity: 0; }
.vstage.speaking .vring i { animation: vpulse 2.2s ease-out infinite; }
.vstage.listening .vring i { animation: vpulse 1.5s ease-out infinite; }
.vring i:nth-child(2) { animation-delay: .73s; }
.vring i:nth-child(3) { animation-delay: 1.46s; }
.vstage.listening .vring b { background: radial-gradient(circle at 35% 30%, #8ddbd2, var(--teal)); box-shadow: 0 0 26px rgba(63,148,140,.75); }
.vstage.listening .vring i { border-color: var(--teal); }
@keyframes vpulse { 0% { transform: scale(.55); opacity: .55; } 100% { transform: scale(2.5); opacity: 0; } }
.vstage-speaker { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-soft); }
.vstage.listening .vstage-speaker { color: var(--teal-soft); }
.vstage-wave { display: flex; align-items: center; justify-content: center; gap: 4px; height: 40px; }
.vstage-wave i { width: 4px; border-radius: 4px; background: var(--coral-soft); height: 18%; transition: height .3s cubic-bezier(.4,0,.2,1); }
.vstage.listening .vstage-wave i { background: var(--teal-soft); }
.vstage-caption { font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem, 1.9vw, 1.6rem); line-height: 1.4; letter-spacing: -0.015em; color: #fff; max-width: 640px; min-height: 2.9em; }
.vstage-caption .w { opacity: 0; }
.vstage-caption .w.on { opacity: 1; transition: opacity .26s ease; }
.vstage-memory { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: var(--amber); background: rgba(221,161,60,0.12); padding: 7px 14px; border-radius: 100px; opacity: 0; transition: opacity .4s; }
.vstage-memory.on { opacity: 1; }
.vstage-memory svg { flex: none; }

/* ============================================================
   CREDIBILITY / RESEARCH
   ============================================================ */
.credo { background: var(--cream-2); overflow: hidden; }
.credo-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(34px, 5vw, 70px); align-items: center; margin-top: 12px; }
.credo-lead h2 { margin-top: 18px; }
.credo-lead .lead { margin-top: 20px; }
.credo-quote { margin-top: 26px; padding-left: 20px; border-left: 3px solid var(--coral); font-family: var(--display); font-size: clamp(1.1rem, 1.7vw, 1.35rem); font-style: italic; line-height: 1.4; color: var(--ink); }
.credo-by { margin-top: 16px; font-size: 0.95rem; color: var(--ink-soft); }
.credo-by b { color: var(--ink); font-weight: 600; }
.credo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.credo-card { background: var(--card); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--sh-sm); }
.credo-card .cc-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; }
.credo-card h4 { font-family: var(--display); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; margin-bottom: 7px; }
.credo-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; }
.credo-card.wide { grid-column: 1 / -1; display: flex; gap: 18px; align-items: center; }
.credo-card.wide .cc-ic { margin-bottom: 0; flex: none; }
.credo-now { margin-top: 44px; background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; box-shadow: var(--sh-lg); position: relative; overflow: hidden; }
.credo-now .cn-ic { width: 58px; height: 58px; border-radius: 17px; background: rgba(255,255,255,0.1); display: grid; place-items: center; flex: none; color: var(--coral-soft); }
.credo-now .cn-eyebrow { color: var(--coral-soft); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.credo-now h3 { color: #fff; font-size: clamp(1.2rem, 2vw, 1.6rem); }
.credo-now p { color: rgba(255,255,255,0.82); margin-top: 8px; font-size: 1rem; max-width: 760px; }
.credo-card .cc-ic.ic-teal { background: var(--teal-tint); color: var(--teal); }
.credo-card .cc-ic.ic-coral { background: var(--coral-tint); color: var(--coral-deep); }
.credo-card .cc-ic.ic-green { background: var(--green-tint); color: var(--green-deep); }
@media (max-width: 860px) {
  .credo-grid { grid-template-columns: 1fr; }
  .credo-now { grid-template-columns: 1fr; text-align: left; }
}

/* ============================================================
   PHOTO → CONVERSATION (signature feature)
   ============================================================ */
.photoconv { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); overflow: hidden; }
.pc-flow { margin-top: 56px; display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(18px, 3vw, 40px); align-items: center; }
.pc-card { position: relative; }
.pc-step { display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }

/* Instagram post */
.ig { background: var(--card); border-radius: 22px; box-shadow: var(--sh-lg); overflow: hidden; max-width: 380px; }
.ig-top { display: flex; align-items: center; gap: 10px; padding: 13px 15px; }
.ig-ava { width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 0.82rem; background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF); }
.ig-top b { font-size: 0.9rem; font-weight: 600; display: block; line-height: 1.1; }
.ig-top span { font-size: 0.76rem; color: var(--ink-faint); }
.ig-logo { margin-left: auto; color: #DD2A7B; }
.ig-photo { position: relative; aspect-ratio: 4/3.4; overflow: hidden; background: linear-gradient(140deg, #6E92C4 0%, #3E948C 55%, #84AE86 100%); display: grid; place-items: center; }
.ig-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ig-photo .ph-grad { text-align: center; color: #fff; z-index: 1; }
.ig-photo .ph-grad svg { filter: drop-shadow(0 6px 14px rgba(0,0,0,.25)); }
.ig-photo .ph-grad span { display: block; margin-top: 10px; font-family: var(--display); font-weight: 600; font-size: 1.05rem; opacity: .95; }
.ig-photo .ph-conf { position: absolute; inset: 0; pointer-events: none; }
.ig-photo .ph-conf i { position: absolute; width: 8px; height: 8px; border-radius: 2px; opacity: .85; }
.ig-actions { display: flex; align-items: center; gap: 14px; padding: 12px 15px 6px; color: var(--ink); }
.ig-actions .sp { margin-left: auto; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.ig-actions svg { color: var(--ink); }
.ig-actions .heart { color: #ED4956; }
.ig-cap { padding: 0 15px 15px; font-size: 0.88rem; line-height: 1.4; color: var(--ink); }
.ig-cap b { font-weight: 600; }

/* connector */
.pc-arrow { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--coral); }
.pc-arrow .pa-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral-deep); max-width: 90px; text-align: center; line-height: 1.3; }
.pc-arrow svg { flex: none; }

/* grandma hears (voice) */
.pc-hears { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 3.4vw, 40px); box-shadow: var(--sh-lg); }
.pc-hears .pc-step { color: rgba(255,255,255,0.6); }
.pc-voice { text-align: center; }
.pc-orb { width: 64px; height: 64px; border-radius: 50%; margin: 4px auto 16px; background: radial-gradient(circle at 35% 30%, #F39A6F, var(--coral-deep)); box-shadow: 0 0 30px rgba(229,118,76,.6); position: relative; }
.pc-orb::after, .pc-orb::before { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid var(--coral); opacity: 0; }
@media (prefers-reduced-motion: no-preference) { .pc-orb::after { animation: vpulse 2.4s ease-out infinite; } .pc-orb::before { animation: vpulse 2.4s ease-out infinite 1.2s; } }
.pc-who { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-soft); margin-bottom: 16px; }
.pc-said { font-family: var(--display); font-weight: 600; font-size: clamp(1.2rem, 2.1vw, 1.7rem); line-height: 1.36; letter-spacing: -0.015em; color: #fff; }
.pc-said .hl { color: var(--coral-soft); }
.pc-hears .wave { display: flex; align-items: center; justify-content: center; gap: 4px; height: 32px; margin-top: 22px; }
.pc-hears .wave i { width: 4px; border-radius: 4px; background: var(--coral-soft); height: 20%; transition: height .3s cubic-bezier(.4,0,.2,1); }
.pc-note { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; gap: 11px; font-size: 0.96rem; color: rgba(255,255,255,0.84); }
.pc-note svg { flex: none; color: var(--coral-soft); }
.td-prompts { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; text-align: center; }
.td-label { width: 100%; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 2px; text-align: center; }
.td-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: #fff; font-size: 0.92rem; font-weight: 500; padding: 11px 17px; border-radius: 100px; transition: background .25s, transform .2s, border-color .25s; }
.td-chip:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }
.td-chip.active { background: var(--coral); border-color: var(--coral); }
.td-chip svg { flex: none; opacity: .8; }

/* ============================================================
   MEMORY
   ============================================================ */
.memory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: center; margin-top: 50px; }
.mem-board { position: relative; background: var(--card); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--sh-lg); }
.mem-board .mb-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.mem-board .mb-orb { width: 40px; height: 40px; border-radius: 50%; background: radial-gradient(120% 120% at 30% 25%, var(--coral), var(--coral-deep)); box-shadow: 0 0 18px rgba(229,118,76,.5); flex: none; }
.mem-board .mb-head b { font-family: var(--display); font-weight: 600; font-size: 1.1rem; }
.mem-board .mb-head span { font-size: 0.84rem; color: var(--ink-soft); display: block; }
.mem-list { display: flex; flex-direction: column; gap: 11px; }
.mem-fact { display: flex; align-items: center; gap: 13px; padding: 13px 16px; background: var(--cream); border-radius: 14px; font-size: 0.96rem; }
.mem-fact .mf-ic { width: 30px; height: 30px; border-radius: 9px; flex: none; display: grid; place-items: center; }
.mem-fact b { font-weight: 600; }
.mem-fact .mf-new { margin-left: auto; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-deep); background: var(--green-tint); padding: 4px 9px; border-radius: 100px; }
.mem-benefits { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.mem-benefit { display: flex; gap: 16px; align-items: flex-start; }
.mem-benefit .mb-num { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--coral); flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--coral-tint); display: grid; place-items: center; }
.mem-benefit h4 { font-family: var(--display); font-weight: 600; font-size: 1.16rem; letter-spacing: -0.01em; margin-bottom: 5px; }
.mem-benefit p { color: var(--ink-soft); font-size: 0.99rem; }

/* ============================================================
   PHOTO BANDS (why / final)
   ============================================================ */
.photo-band { position: relative; color: #fff; overflow: hidden; }
.photo-band .photo { position: absolute; inset: 0; z-index: 0; }
.photo-band .photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-band .tint { position: absolute; inset: 0; }
.photo-band .tint.coral { background: linear-gradient(120deg, rgba(180,72,40,0.82), rgba(30,44,73,0.7)); mix-blend-mode: multiply; }
.photo-band .tint.shade { background: linear-gradient(180deg, rgba(20,14,10,0.30), rgba(20,14,10,0.55)); }
.photo-band .wrap { position: relative; z-index: 2; }
.photo-band .eyebrow { color: var(--coral-soft); }
.photo-band h2 { color: #fff; }

.why-inner { max-width: 760px; }
.why-inner h2 { margin-top: 22px; font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.why-inner .lead { color: rgba(255,255,255,0.86); margin-top: 24px; }
.why-stats { margin-top: 44px; display: flex; gap: clamp(24px, 5vw, 60px); flex-wrap: wrap; }
.why-stat b { font-family: var(--display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3rem); display: block; letter-spacing: -0.02em; }
.why-stat span { font-size: 0.95rem; color: rgba(255,255,255,0.78); max-width: 220px; display: block; margin-top: 6px; }

/* ============================================================
   FAMILIES (peace of mind)
   ============================================================ */
.families-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(34px, 5vw, 64px); align-items: center; margin-top: 50px; }
.fam-points { display: flex; flex-direction: column; gap: 18px; margin-top: 6px; }
.fam-point { display: flex; gap: 15px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--cream-3); }
.fam-point .fp-ic { width: 44px; height: 44px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--teal-tint); color: var(--teal); }
.fam-point h4 { font-family: var(--display); font-weight: 600; font-size: 1.12rem; margin-bottom: 4px; letter-spacing: -0.01em; }
.fam-point p { color: var(--ink-soft); font-size: 0.97rem; }
.digest-card { background: var(--card); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--sh-lg); }
.digest-card .dc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.digest-card .dc-top b { font-family: var(--display); font-weight: 600; font-size: 1.12rem; }
.digest-card .dc-badge { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-deep); background: var(--green-tint); padding: 5px 11px; border-radius: 100px; }
.digest-row { display: flex; gap: 13px; align-items: flex-start; padding: 13px 0; border-top: 1px solid var(--cream-2); }
.digest-row .dr-ic { width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center; }
.digest-row b { font-weight: 600; font-size: 0.96rem; }
.digest-row p { font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   EFFORTLESS (voice)
   ============================================================ */
.ease { background: var(--coral); color: #fff; overflow: hidden; position: relative; }
.ease .wrap { position: relative; z-index: 2; }
.ease-blob { position: absolute; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%); top: -210px; right: -160px; z-index: 1; }
.ease-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.ease h2 { color: #fff; }
.ease p { color: rgba(255,255,255,0.92); margin-top: 22px; font-size: 1.14rem; }
.ease-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.ease-list .el { display: flex; align-items: center; gap: 13px; font-size: 1.02rem; color: #fff; }
.ease-list .el .c { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.2); display: grid; place-items: center; flex: none; }
.voice-bubble { background: #fff; color: var(--ink); border-radius: 32px 32px 32px 8px; padding: clamp(30px, 4vw, 46px); box-shadow: var(--sh-lg); }
.voice-bubble .vb-label { display: flex; align-items: center; gap: 10px; color: var(--ink-faint); font-size: 0.84rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.voice-bubble .vb-label .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); animation: pulse 1.6s ease-in-out infinite; }
.voice-bubble q { font-family: var(--display); font-size: clamp(1.5rem, 2.8vw, 2.3rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.16; quotes: none; }
.voice-bubble .vb-wave { display: flex; align-items: center; gap: 5px; height: 34px; margin-top: 26px; }
.voice-bubble .vb-wave i { width: 5px; border-radius: 5px; background: var(--coral-soft); height: 30%; transition: height .34s cubic-bezier(.4,0,.2,1); }

/* ============================================================
   TRUST
   ============================================================ */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 50px; }
.trust-item { display: flex; align-items: center; gap: 14px; background: var(--card); border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--sh-sm); }
.trust-item .ti-ic { width: 40px; height: 40px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--teal-tint); color: var(--teal); }
.trust-item span { font-weight: 500; font-size: 1rem; }
.trust-note { margin-top: 28px; font-size: 0.95rem; color: var(--ink-faint); max-width: 740px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--cream-2); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; align-items: stretch; }
.price-card { background: var(--card); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; position: relative; }
.price-card.featured { background: var(--navy); color: #fff; box-shadow: var(--sh-lg); transform: scale(1.03); z-index: 2; }
.price-card .pc-tag { font-family: var(--display); font-weight: 600; font-size: 1.4rem; margin-bottom: 6px; }
.price-card .pc-for { font-size: 0.95rem; color: var(--ink-soft); min-height: 44px; }
.price-card.featured .pc-for { color: rgba(255,255,255,0.7); }
.price-card .pc-badge { position: absolute; top: 24px; right: 24px; background: var(--coral); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; }
.price-card .pc-list { list-style: none; margin: 26px 0 22px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.price-card .pc-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.97rem; color: var(--ink-soft); }
.price-card.featured .pc-list li { color: rgba(255,255,255,0.85); }
.price-card .pc-list li svg { flex: none; margin-top: 3px; color: var(--green-deep); }
.price-card .pc-list li strong { color: var(--ink); font-weight: 700; }
.price-card.featured .pc-list li strong { color: #fff; }
.price-card.featured .pc-list li svg { color: var(--coral-soft); }
.price-card .divider { height: 1px; background: var(--cream-3); margin-bottom: 26px; }
.price-card.featured .divider { background: rgba(255,255,255,0.12); }
.pc-price { font-family: var(--display); font-weight: 700; font-size: 2.1rem; letter-spacing: -0.02em; margin: 14px 0 0; }
.pc-price small { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0; }
.price-card.featured .pc-price small { color: rgba(255,255,255,0.62); }
.pc-best { margin: 0 0 18px; padding-top: 18px; border-top: 1px solid var(--cream-3); font-size: 0.85rem; line-height: 1.45; color: var(--ink-faint); }
.pc-best b { color: var(--ink-soft); font-weight: 600; }
.price-card.featured .pc-best { color: rgba(255,255,255,0.6); border-top-color: rgba(255,255,255,0.14); }
.price-card.featured .pc-best b { color: rgba(255,255,255,0.85); }
.pc-plus { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 6px; }
.price-card.featured .pc-plus { color: var(--coral-soft); }

/* Senior Living banner */
.price-enterprise { margin-top: 22px; background: var(--navy); color: #fff; border-radius: var(--radius); padding: clamp(28px, 4vw, 46px); display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(24px, 4vw, 48px); align-items: center; box-shadow: var(--sh-lg); position: relative; overflow: hidden; }
.pe-intro .pe-eyebrow { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-soft); }
.pe-intro h3 { color: #fff; font-size: clamp(1.4rem, 2.3vw, 1.9rem); margin-top: 12px; }
.pe-intro p { color: rgba(255,255,255,0.8); margin-top: 12px; font-size: 1rem; }
.pe-intro .pe-price { font-family: var(--display); font-weight: 700; font-size: 1.4rem; margin-top: 16px; }
.pe-intro .btn { margin-top: 22px; }
.pe-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px; }
.pe-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; color: rgba(255,255,255,0.86); }
.pe-list li svg { flex: none; margin-top: 3px; color: var(--coral-soft); }

/* Included with every plan */
.price-included { margin-top: 22px; background: var(--card); border-radius: var(--radius); box-shadow: var(--sh-sm); padding: 24px clamp(20px, 3vw, 36px); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 28px; }
.price-included .pi-label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); width: 100%; text-align: center; margin-bottom: 4px; }
.price-included span.pi { display: inline-flex; align-items: center; gap: 8px; font-size: 0.93rem; font-weight: 500; color: var(--ink-soft); }
.price-included span.pi svg { flex: none; color: var(--green-deep); }
@media (max-width: 860px) {
  .price-enterprise { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pe-list { grid-template-columns: 1fr; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final .why-inner { max-width: 760px; }
.final h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.final p { color: rgba(255,255,255,0.88); margin-top: 22px; font-size: 1.14rem; }
.final .cta-row { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 50px; max-width: 880px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--cream-3); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 4px; text-align: left; font-family: var(--display); font-weight: 600; font-size: clamp(1.1rem, 1.7vw, 1.32rem); color: var(--ink); letter-spacing: -0.01em; }
.faq-q .pm { width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--cream-2); position: relative; transition: background .3s; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--coral-deep); border-radius: 2px; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.faq-q .pm::before { width: 14px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 14px; }
.faq-item.open .faq-q .pm { background: var(--coral); }
.faq-item.open .faq-q .pm::before, .faq-item.open .faq-q .pm::after { background: #fff; }
.faq-item.open .faq-q .pm::after { transform: scaleY(0); }
.faq-a { overflow: hidden; height: 0; }
.faq-a-inner { padding: 0 4px 28px; color: var(--ink-soft); font-size: 1.05rem; max-width: 760px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding-block: 72px 40px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer-blurb { font-size: 0.98rem; max-width: 330px; line-height: 1.6; }
.footer h4 { color: #fff; font-family: var(--body); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 0.97rem; color: rgba(255,255,255,0.66); transition: color .25s; }
.footer ul a:hover { color: #fff; }
.footer-bottom { margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.footer-disclaimer { max-width: 640px; line-height: 1.5; }

/* ============================================================
   REVEAL (content visible by default; JS adds .reveals-armed)
   ============================================================ */
.reveals-armed .reveal { opacity: 0; }
.reveals-armed .reveal-stagger > * { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { max-width: 480px; margin-inline: auto; order: -1; }
  .scene-orb { width: 116px; height: 116px; top: -30px; }
  .hero-sub { max-width: none; }
  .wedges-grid { grid-template-columns: repeat(2, 1fr); }
  .day-grid { grid-template-columns: 1fr; }
  .day-photo { position: relative; top: 0; max-width: 460px; aspect-ratio: 16/11; }
  .memory-grid, .families-grid, .ease-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .wedges-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .why-stats { gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-cta .btn { flex: 1; }
  .td-row { max-width: 96%; }
}
@media (max-width: 760px) {
  .ch-cols { grid-template-columns: 1fr; gap: 36px; }
  .ch-divider { width: auto; height: 1px; }
}
@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
}
