/* =========================================================
   Dear Moment — Landing page
   Centred hero · animated Timeline phone · floating moment cards.
   Cream + indigo + amber + olive.
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Kaisei+HarunoUmi:wght@400;500;700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Caveat:wght@500;600&display=swap");

:root {
  --cream:#fef8f1; --paper-soft:#f8efe2; --paper-warm:#f3e6d2; --surface:#ffffff;
  --line:#e9ddc7; --line-strong:#d6c6a6;
  --indigo:#5b5a80; --indigo-deep:#3f3e5a; --indigo-ink:#33324a; --indigo-soft:#8c8ba6;
  --amber:#f48807; --amber-deep:#b75e07; --amber-wash:#fdf2e2;
  --olive:#7c862d; --olive-deep:#535b1e; --olive-wash:#f0f3df;
  --lilac:#b8a4cf;
  --ink:#2a2418; --ink-muted:#6b5d49; --ink-subtle:#9c8b73; --ink-faint:#c2b39b; --ink-inv:#fef8f1;

  --serif:"Kaisei HarunoUmi",Georgia,serif;
  --sans:"Poppins",-apple-system,"Segoe UI",sans-serif;
  --hand:"Caveat",cursive;

  --ease:cubic-bezier(0.16,1,0.3,1);
  --maxw:1320px;
}

* { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; overflow-x:clip; }
body {
  background:var(--cream); color:var(--ink); font-family:var(--sans);
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
a { color:inherit; text-decoration:none; }

/* ---------------- top navigation (centred logo) ---------------- */
.nav {
  position:sticky; top:0; z-index:100;
  padding:24px 0;
  background:rgba(254,248,241,.82);
  backdrop-filter:saturate(140%) blur(14px);
  -webkit-backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color:var(--line); }
.nav-inner {
  max-width:1760px; margin:0 auto; width:100%;
  padding:0 clamp(40px,5vw,120px);
  display:flex; align-items:center; justify-content:space-between;
}
.nav .links { display:flex; align-items:center; gap:clamp(28px,2.8vw,48px); }
.nav .links a {
  font-size:19px; font-weight:500; color:var(--indigo-deep);
  letter-spacing:.01em; position:relative; padding:4px 0;
}
.nav .links a:not(.nav-cta)::after {
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px;
  background:var(--amber); border-radius:2px;
  transform:scaleX(0); transform-origin:left; transition:transform .26s ease;
}
.nav .links a:not(.nav-cta):hover { color:var(--amber-deep); }
.nav .links a:not(.nav-cta):hover::after { transform:scaleX(1); }
.nav-cta {
  padding:10px 22px; border-radius:999px; background:var(--amber); color:#fff !important;
  font-weight:500; box-shadow:0 8px 18px rgba(244,136,7,.26);
  transition:background .2s ease, transform .2s ease;
}
.nav-cta:hover { background:var(--amber-deep); transform:translateY(-1px); }
.brand { display:inline-flex; }
.brand img { height:56px; display:block; }

/* ---------------- hero (two-column: text left · phone right) ---------------- */
.hero {
  position:relative; overflow:hidden;
  display:grid; grid-template-columns:minmax(0,1fr) minmax(0,620px);
  align-items:center; gap:clamp(40px,6vw,140px);
  min-height:clamp(540px,64vh,740px);
  max-width:1760px; margin:0 auto;
  padding:clamp(32px,5vh,72px) clamp(40px,5vw,120px) 0;
}
.hero-head {
  position:relative; z-index:6; text-align:left;
  max-width:680px; margin:0;
  align-self:start; padding-top:clamp(16px,3vh,36px);
}
.eyebrow {
  display:inline-flex; align-items:center; gap:10px; justify-content:center;
  font-size:13px; font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  color:var(--amber-deep);
}
.eyebrow::before, .eyebrow::after {
  content:""; width:26px; height:1.5px; background:var(--amber); border-radius:2px;
}
.hero-head h1 {
  margin-top:0;
  font-family:var(--serif); font-weight:400;
  font-size:clamp(44px,4.4vw,80px); line-height:1.05; letter-spacing:-.02em;
  color:var(--indigo); white-space:normal; text-wrap:balance;
}
.hero-head p {
  margin:26px 0 0; font-weight:300;
  font-size:clamp(20px,1.5vw,26px); line-height:1.5; color:var(--ink-muted);
  max-width:540px; text-wrap:pretty;
}
.hero-cta {
  margin-top:34px; display:flex; align-items:center; justify-content:flex-start; flex-wrap:wrap; gap:14px 26px;
}
.btn-primary {
  display:inline-flex; align-items:center; justify-content:center;
  padding:18px 40px; border-radius:999px;
  background:var(--amber); color:#fff;
  font-size:18px; font-weight:500; letter-spacing:.01em;
  box-shadow:0 12px 26px rgba(244,136,7,.28);
  transition:background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  background:var(--amber-deep); transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(244,136,7,.34);
}
.btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  font-size:16px; font-weight:500; color:var(--indigo-deep);
  transition:color .2s ease;
}
.btn-ghost span { transition:transform .2s ease; }
.btn-ghost:hover { color:var(--amber-deep); }
.btn-ghost:hover span { transform:translateX(4px); }

/* ---------------- stage (phone on a wall of moment tiles) ---------------- */
.stage {
  position:relative; width:100%; max-width:none; margin:0;
  min-height:clamp(500px,60vh,620px); height:100%;
  display:flex; justify-content:center; align-items:center;
  padding-top:0;
}
/* blurred wall of moment tiles behind the phone — randomly scattered */
.grid-wall {
  position:absolute; inset:-6% -12% -12% -22%; z-index:1;
  filter:blur(2.4px) saturate(.98);
  opacity:.7;
  -webkit-mask-image:radial-gradient(ellipse 74% 80% at 56% 46%, #000 38%, transparent 84%);
  mask-image:radial-gradient(ellipse 74% 80% at 56% 46%, #000 38%, transparent 84%);
  pointer-events:none;
}
.gw-tile {
  position:absolute; border-radius:16px; overflow:hidden;
  box-shadow:0 10px 24px rgba(60,45,20,.12);
  background-size:cover; background-position:center;
}
.gw-quote { padding:13px 14px; font-family:var(--serif); font-style:italic; font-size:13.5px; line-height:1.34; color:var(--ink); }
.gw-quote .qm { font-family:var(--serif); font-size:30px; line-height:.5; color:rgba(0,0,0,.2); display:block; margin-bottom:2px; }
.gw-voice { background:#fff; padding:13px; display:flex; flex-direction:column; gap:8px; }
.gw-voice .gw-meta { font-size:9px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--olive-deep); }
.gw-voice .gw-ttl { font-family:var(--serif); font-size:14px; line-height:1.2; color:var(--indigo); }
.gw-bars { display:flex; align-items:center; gap:2px; height:22px; }
.gw-bars span { flex:1; border-radius:2px; }

/* soft cream halo so the phone reads clearly against the wall */
.phone-halo {
  position:absolute; left:50%; top:48%; transform:translate(-50%,-50%);
  width:min(720px,80vw); height:min(820px,84vh); border-radius:50%; z-index:2;
  background:radial-gradient(ellipse at 50% 50%, rgba(254,248,241,.96) 0%, rgba(254,248,241,.82) 30%, rgba(254,248,241,.32) 52%, rgba(254,248,241,0) 70%);
  pointer-events:none;
}

/* ---------------- the phone (full device on the wall) ---------------- */
.phone {
  position:relative; z-index:5; flex:0 0 auto;
  transform:translateY(24px);
  width:clamp(320px,26vw,372px);
  height:clamp(712px,71vh,820px);
  background:var(--cream);
  border-radius:52px;
  overflow:hidden;
  box-shadow:
    0 0 0 2px #4a443b,
    0 0 0 13px #1a1714,
    0 0 0 15px #39332b,
    0 50px 100px rgba(60,45,20,.34),
    0 14px 34px rgba(60,45,20,.20);
}
.phone .notch {
  position:absolute; top:11px; left:50%; transform:translateX(-50%);
  width:116px; height:32px; border-radius:20px; background:#1c1812; z-index:45;
}
.phone .status {
  position:absolute; top:0; left:0; right:0; height:52px; z-index:40;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 28px 0;
}
.phone .status .time { font-weight:600; font-size:15px; color:#2a2418; }
.phone .status .ind { display:flex; align-items:center; gap:7px; }
.ph-header {
  position:absolute; top:60px; left:0; right:0; z-index:30;
  display:flex; align-items:baseline; gap:8px; padding:0 24px;
}
.ph-header .ph-month {
  font-family:var(--serif); font-weight:500; font-size:26px; color:var(--indigo);
}
.ph-header .ph-month em { font-style:normal; font-size:15px; color:var(--ink-subtle); font-family:var(--sans); font-weight:500; }
.ph-header .ph-chev { color:var(--ink-subtle); font-size:13px; }

/* feed window (the animated visual) */
.feed {
  position:absolute; top:0; left:0; right:0; bottom:0;
  padding:78px 22px 0;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(to bottom, transparent 0, #000 13%, #000 86%, transparent 99%);
  mask-image:linear-gradient(to bottom, transparent 0, #000 13%, #000 86%, transparent 99%);
}
.spine {
  position:absolute; left:50%; top:84px; bottom:0; width:0; transform:translateX(-50%);
  border-left:2px solid #cbb89c; z-index:1; opacity:0;
}

/* amber bloom wash + capture trio (1.2 Capture) */
.bloom {
  position:absolute; left:50%; top:350px; width:380px; height:380px; transform:translate(-50%,-50%) scale(.3);
  border-radius:50%; z-index:5; opacity:0; pointer-events:none;
  background:radial-gradient(circle, rgba(244,136,7,.55), rgba(244,136,7,.18) 45%, rgba(244,136,7,0) 70%);
}
.captrio { position:absolute; left:0; right:0; top:124px; height:456px; z-index:6; opacity:0; }
.capitem { position:absolute; width:150px; height:150px; opacity:0; }
.capitem.p1 { left:12px;  top:60px; }
.capitem.p2 { right:12px; top:184px; }
.capitem.p3 { left:30px;  top:300px; }
.capcircle { position:relative; width:150px; height:150px; display:grid; place-items:center; z-index:1; }
.capcircle .h1 { position:absolute; inset:-18px; border-radius:999px; opacity:.42; }
.capcircle .h2 { position:absolute; inset:-9px; border-radius:999px; opacity:.85; }
.capcircle .core { position:relative; width:150px; height:150px; border-radius:999px; display:grid; place-items:center;
  box-shadow:0 16px 34px rgba(60,45,20,.24); }
.caplabel { position:absolute; top:50%; transform:translateY(-50%); z-index:3; white-space:nowrap;
  background:#fff; border-radius:999px; padding:10px 18px; font-family:var(--sans); font-size:14px; font-weight:600;
  box-shadow:0 8px 22px rgba(60,45,20,.18), 0 0 0 1px rgba(120,90,40,.05); }
.capitem.lbl-right .caplabel { left:122px; }
.capitem.lbl-left  .caplabel { right:122px; }
.capitem[data-tone=indigo] .core { background:#5b5a80; } .capitem[data-tone=indigo] .h1,.capitem[data-tone=indigo] .h2 { background:#e3e2eb; } .capitem[data-tone=indigo] .caplabel { color:#43426a; }
.capitem[data-tone=amber] .core { background:#f48807; } .capitem[data-tone=amber] .h1,.capitem[data-tone=amber] .h2 { background:#fbe1bc; } .capitem[data-tone=amber] .caplabel { color:#b75e07; }
.capitem[data-tone=olive] .core { background:#7c862d; } .capitem[data-tone=olive] .h1,.capitem[data-tone=olive] .h2 { background:#e6ecc3; } .capitem[data-tone=olive] .caplabel { color:#535b1e; }
.track { position:relative; }
.tl-block { position:relative; }
.feed-cols { position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:start; }
.feed-col { position:relative; }

/* ---------------- card vocabulary (shared: phone feed + floating) ---------------- */
.tl-card {
  width:100%; border-radius:16px; margin-bottom:14px; position:relative; overflow:hidden;
  box-shadow:0 2px 8px rgba(95,72,35,.08);
}
.tl-meta { font-size:9.5px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; }
.tl-title { font-family:var(--serif); font-weight:400; font-size:14px; line-height:1.2; }
.who { display:inline-flex; align-items:center; gap:6px; margin-top:7px; }
.who .av { width:16px; height:16px; border-radius:999px; color:#fff; display:grid; place-items:center; font-size:8px; font-weight:700; }
.who .nm { font-size:10px; font-weight:600; }

.c-quote { padding:12px 14px; }
.c-quote .qm { position:absolute; top:2px; right:10px; font-family:var(--serif); font-size:42px; line-height:1; color:rgba(0,0,0,.16); }
.c-quote .qt { margin:6px 0 0; font-family:var(--serif); font-style:italic; font-size:13px; line-height:1.34; color:var(--ink); }
.c-photo { padding:0; }
.c-photo .ph2 { position:absolute; inset:0; z-index:0; background-size:cover; background-position:center; }
.c-photo .ov { position:relative; z-index:2; height:100%; display:flex; flex-direction:column; justify-content:flex-end;
  padding:30px 12px 11px; background:linear-gradient(to bottom, transparent, rgba(0,0,0,.62)); color:#fff; }
.c-photo .tl-title { color:#fff; }
.c-voice { background:#fff; padding:12px; display:flex; flex-direction:column; gap:8px; }
.c-voice .tl-title { color:var(--indigo); }
.wave { display:flex; align-items:center; gap:8px; }
.wave .pp { width:28px; height:28px; border-radius:999px; background:var(--amber); color:#fff; display:grid; place-items:center; flex-shrink:0; }
.bars { flex:1; display:flex; align-items:center; gap:2px; height:28px; }
.bars span { flex:1; border-radius:2px; }
.wt { font-size:9.5px; font-weight:600; color:var(--ink-subtle); }

/* (floating edge cards replaced by the blurred grid-wall above) */
@keyframes scrollUp { from{ transform:translateY(0);} to{ transform:translateY(-50%);} }
@keyframes spineGrow { to{ transform:translateX(-50%) scaleY(1); } }
@keyframes cardRise { to{ opacity:1; transform:none; } }
@keyframes photoDev { to{ clip-path:inset(0 0 0 0); } }
@keyframes barGrow { to{ transform:scaleY(1); } }
@keyframes fadeUp { to{ opacity:1; transform:none; } }
@keyframes fadeIn { to{ opacity:1; } }
@keyframes fcardIn { from{ opacity:0; } to{ opacity:1; } }

/* ---------------- responsive ---------------- */
@media (max-width:1080px) {
  .nav .links { gap:clamp(16px,4vw,28px); }
  .hero { grid-template-columns:1fr; min-height:0; gap:8px; padding-top:clamp(28px,5vh,48px); }
  .hero-head { text-align:center; margin:0 auto; max-width:680px; }
  .hero-head p { margin-left:auto; margin-right:auto; }
  .hero-cta { justify-content:center; }
  .hero-head h1 { font-size:clamp(34px,7.4vw,54px); white-space:normal; text-wrap:balance; }
  .grid-wall { inset:-4% -8% -10% -8%; }
}
@media (max-width:560px) {
  .hero-cta { flex-direction:column; align-items:stretch; gap:12px; width:100%; max-width:320px; }
  .btn-primary, .btn-ghost { justify-content:center; }
  .phone { width:min(86vw,360px); }
}

/* ============================================================
   SECTION 02 — Our story  (white floating card, tucks under phone)
   ============================================================ */
.story {
  position:relative; z-index:20;
  padding:0;
}
.story-card {
  position:relative;
  max-width:none; margin:clamp(-60px,-3vw,-32px) 0 0;
  background:var(--surface);
  border-radius:clamp(28px,3vw,48px) clamp(28px,3vw,48px) 0 0;
  box-shadow:0 -2px 0 rgba(255,255,255,.6) inset,
             0 -18px 50px rgba(63,62,90,.10);
  padding:clamp(80px,9vh,128px) clamp(36px,5vw,96px) clamp(160px,17vh,208px);
}
.story-eyebrow {
  display:block; text-align:center;
  font-size:13px; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:var(--amber-deep); margin-bottom:22px;
}
/* story intro — two-size treatment */
.story-intro {
  max-width:1120px; margin:0 auto; text-align:center;
  font-family:var(--serif); font-weight:400;
  line-height:1.32; letter-spacing:-.01em;
  color:var(--indigo); text-wrap:nowrap;
}
.story-intro em {
  font-style:normal; color:var(--indigo-deep);
  text-decoration-line:underline; text-decoration-color:var(--amber);
  text-decoration-thickness:2px; text-underline-offset:6px;
}
.si-place {
  font-size:clamp(22px,2.5vw,34px);
  color:var(--indigo);
}
.si-body {
  font-size:clamp(30px,3.5vw,48px);
  color:var(--indigo);
}

/* quote cards — 3 polaroids in a row: full photo on top, text below */
.qcards {
  max-width:1120px; margin:clamp(48px,6vh,76px) auto 0;
  display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(22px,2.4vw,40px);
  align-items:stretch;
}
.qcard {
  position:relative;
  display:flex; flex-direction:column;
  background:#fffdfa;
  border-radius:6px;
  padding:clamp(12px,1vw,16px) clamp(12px,1vw,16px) 0;
  box-shadow:0 22px 44px rgba(63,62,90,.18), 0 5px 14px rgba(63,62,90,.10);
}
/* the photo, a gentle landscape crop so all cards match height */
.qpic {
  position:relative;
  aspect-ratio:4 / 3;
  border-radius:3px; overflow:hidden;
  background:repeating-linear-gradient(135deg, #cdbfa6, #cdbfa6 13px, #c4b497 13px, #c4b497 26px);
}
.qpic img {
  display:block; width:100%; height:100%; object-fit:cover;
}
.qbody {
  flex:1;
  display:flex; flex-direction:column;
  padding:clamp(16px,1.6vw,22px) clamp(4px,.6vw,10px) clamp(20px,2vw,28px);
}
.qquote {
  font-family:var(--serif); font-style:italic; font-weight:400;
  font-size:clamp(16px,1.3vw,20px); line-height:1.45;
  color:var(--indigo); text-wrap:pretty;
}
.qloss {
  margin-top:14px; padding-top:14px;
  border-top:1px solid rgba(63,62,90,.14);
  font-family:var(--sans);
  font-size:clamp(14px,1.15vw,16px); line-height:1.5;
  font-weight:600; color:var(--amber-deep); letter-spacing:-.01em; text-wrap:pretty;
}
.qcard.gone .qloss { color:var(--amber-deep); }

/* closing statement — full-bleed indigo band, overlaps the card bottom */
.story-statement {
  position:relative; z-index:25;
  background:var(--indigo);
  margin-top:clamp(-80px,-6vw,-44px);
  padding:clamp(52px,8vh,104px) clamp(24px,5vw,80px);
  text-align:center;
}
.ss-inner { max-width:1180px; margin:0 auto; }
.story-close {
  margin:0;
  font-family:var(--serif); font-weight:400;
  font-size:clamp(30px,3.6vw,56px); line-height:1.24; letter-spacing:-.015em;
  color:#fff; text-wrap:balance;
}
.story-built {
  display:block; margin:clamp(28px,4vh,48px) auto 0;
  font-family:var(--serif); font-weight:500;
  font-size:clamp(23px,2.6vw,40px); line-height:1.32; letter-spacing:-.01em;
  color:#f9a23a; text-wrap:balance;
}
.story-built strong { color:#f9a23a; font-weight:600; }

@media (max-width:900px) {
  .story-close { text-align:center; }
  .qcard:nth-child(1), .qcard:nth-child(2), .qcard:nth-child(3) { margin:0; }
}
@media (max-width:760px) {
  .qcards { grid-template-columns:1fr; max-width:440px; gap:clamp(40px,6vh,56px); }
}



@media (max-width:820px) {
  .story-card { margin-top:-60px; }
}

/* ============================================================
   SECTION 03 — Inspiration · What will you capture first?
   ============================================================ */
.insp {
  position:relative;
  background:var(--surface);
  border-radius:0 0 clamp(28px,3vw,48px) clamp(28px,3vw,48px);
  box-shadow:0 18px 50px rgba(63,62,90,.10);
  padding:clamp(80px,11vh,148px) clamp(24px,5vw,64px) clamp(92px,12vh,160px);
}
.insp-grid {
  max-width:1240px; margin:0 auto;
  display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(20px,2vw,30px);
}
.insp-head {
  display:flex; flex-direction:column; justify-content:center;
  text-align:left; padding:clamp(6px,1vw,18px) clamp(6px,1vw,14px);
}
.insp-head h2 {
  font-family:var(--serif); font-weight:400;
  font-size:clamp(32px,3.4vw,54px); line-height:1.08; letter-spacing:-.018em;
  color:var(--indigo); text-wrap:balance;
}
.insp-head p {
  margin:18px 0 0; font-size:clamp(16px,1.2vw,20px); color:var(--ink-muted); font-weight:300; max-width:330px;
}
.insp-card {
  position:relative; overflow:hidden;
  background:var(--panel,var(--surface));
  border:1px solid rgba(63,62,90,.05);
  border-radius:24px;
  min-height:clamp(300px,24vw,340px);
  box-shadow:0 14px 36px rgba(95,72,35,.09);
}
.ic-head {
  position:relative; z-index:3; text-align:center;
  padding:clamp(26px,2.6vw,38px) clamp(20px,2vw,26px) 0;
}
.ic-head h3 {
  margin:0; font-family:var(--serif); font-weight:400;
  font-size:clamp(24px,2.2vw,34px); color:var(--indigo); letter-spacing:-.012em;
}
.ic-head p {
  margin:9px auto 0; font-size:clamp(13.5px,1vw,16px); line-height:1.42;
  color:var(--ink-muted); max-width:270px;
}
.ic-stack { position:absolute; left:0; right:0; bottom:0; top:43%; }
.mc {
  position:absolute; border-radius:14px; overflow:hidden;
  box-shadow:0 10px 26px rgba(63,62,90,.18), 0 2px 6px rgba(0,0,0,.06);
  transform:rotate(var(--rot,0deg));
}
.mc.c-voice { background:#fff; padding:11px; display:flex; flex-direction:column; gap:7px; }
.mc.c-quote { background:#fff; padding:12px 14px; }
.mc.c-album { background:#fff; padding:10px 10px 11px; }
.album-strip { display:flex; padding:2px 2px 0; }
.album-strip .ph-ph { width:74px; height:96px; border-radius:9px; flex:0 0 auto; border:2px solid var(--cream); box-shadow:0 2px 6px rgba(95,72,35,.12); }
.album-strip .ph-ph:not(:first-child) { margin-left:-16px; }
.album-cap { padding:9px 4px 0; }
.album-cap .tl-meta { margin-bottom:2px; }
.ph-ph { background:repeating-linear-gradient(135deg,#ded2bb,#ded2bb 11px,#d4c7ab 11px,#d4c7ab 22px) !important; }
.album-strip .cpl1 { background:url('photos/couple-1.jpg') center/cover !important; }
.album-strip .cpl2 { background:url('photos/couple-2.jpg') center/cover !important; }
.album-strip .cpl3 { background:url('photos/couple-3.jpg') center/cover !important; }
.album-strip .cpl4 { background:url('photos/couple-4.jpg') center/cover !important; }

@media (max-width:920px) {
  .insp-grid { grid-template-columns:repeat(2,1fr); }
  .insp-head { grid-column:1/-1; text-align:center; align-items:center; padding-bottom:8px; }
  .insp-head p { max-width:none; }
}
@media (max-width:560px) {
  .insp-grid { grid-template-columns:1fr; }
  .insp-head { text-align:center; align-items:center; }
  .insp-head p { margin-left:auto; margin-right:auto; }
  /* bigger heading + card type on mobile */
  .insp-head h2 { font-size:40px; }
  .insp-head p { font-size:19px; }
  .ic-head h3 { font-size:30px; }
  .ic-head p { font-size:16px; max-width:300px; }
}

/* ============================================================
   SECTION 04 — How it works  (4 app screens on a timeline rail)
   ============================================================ */
.how {
  background:var(--cream);
  padding:clamp(76px,11vh,140px) clamp(24px,5vw,64px) clamp(40px,6vh,72px);
}
.how-head { text-align:center; max-width:920px; margin:0 auto; }
.how-eyebrow {
  display:inline-block; white-space:nowrap; font-size:13px; font-weight:600; letter-spacing:.2em;
  text-transform:uppercase; color:var(--amber-deep); margin-bottom:18px;
}
.how-head h2 {
  font-family:var(--serif); font-weight:400;
  font-size:clamp(32px,3.8vw,58px); line-height:1.07; letter-spacing:-.018em;
  color:var(--indigo); text-wrap:balance;
}
/* ---- demo: one animated phone (left) + stepped icons (right) ---- */
.how-demo {
  position:relative;
  max-width:1180px; margin:clamp(46px,6vh,84px) auto 0;
  display:grid; grid-template-columns:minmax(0,1fr) minmax(0,460px);
  align-items:center; gap:clamp(36px,6vw,104px);
}
/* the phone sits on a soft panel and bleeds off the bottom edge */
.hd-phone {
  position:relative;
  width:clamp(360px,36vw,460px);
  aspect-ratio:360 / 572;
  margin:0 auto;
  display:flex; justify-content:center; align-items:flex-start;
  padding:clamp(15px,1.6vw,22px) clamp(16px,1.7vw,24px) 0;
  box-sizing:border-box;
  background:var(--paper-soft);
  border-radius:clamp(28px,3vw,42px);
  overflow:hidden;
  box-shadow:0 30px 70px rgba(60,45,20,.10), 0 6px 18px rgba(60,45,20,.06);
}
/* realistic titanium iPhone frame */
.hd-device {
  position:relative; flex:0 0 auto;
  width:100%;
  padding:clamp(10px,1.05vw,13px);
  box-sizing:border-box;
  border-radius:clamp(48px,4.8vw,62px);
  background:linear-gradient(150deg,#48484a 0%,#1c1c1e 26%,#3a3a3c 52%,#161618 78%,#2a2a2c 100%);
  box-shadow:
    0 0 0 1px #050506,
    0 1px 2px rgba(255,255,255,.22) inset,
    0 26px 60px rgba(40,30,15,.30), 0 8px 22px rgba(40,30,15,.18);
}
/* side buttons */
.hd-btn { position:absolute; background:#0c0c0e; border-radius:2px; }
.hd-act   { left:-2px; top:20%;  width:3px; height:4.2%;  border-radius:3px 1px 1px 3px; }
.hd-volup { left:-2px; top:29%;  width:3px; height:7.5%;  border-radius:3px 1px 1px 3px; }
.hd-voldn { left:-2px; top:38.5%;width:3px; height:7.5%;  border-radius:3px 1px 1px 3px; }
.hd-pwr   { right:-2px;top:32%;  width:3px; height:10.5%; border-radius:1px 3px 3px 1px; }
.phone2 {
  position:relative; flex:0 0 auto;
  width:100%; aspect-ratio:402 / 874;
  background:var(--cream);
  border-radius:clamp(38px,3.9vw,50px); overflow:hidden;
}
/* the real app screenshots, cross-fading one at a time */
.p2-screens { position:absolute; inset:0; border-radius:inherit; overflow:hidden; background:var(--cream); z-index:2; }
.p2-shot {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:fill;
  opacity:0; backface-visibility:hidden;
  transition:opacity .55s ease;
}

/* coordinate overlay — authored in 402×874 space, scaled to the phone */
.p2-layer {
  position:absolute; top:0; left:0; width:402px; height:874px;
  transform-origin:top left; z-index:6; pointer-events:none;
}
/* when accent cards appear, the recording screen is replaced by a neutral canvas */
.p2-dim { position:absolute; inset:0; background:var(--cream); opacity:0; transition:opacity .5s var(--ease); }
.p2-dim .neu-island { position:absolute; top:11px; left:50%; transform:translateX(-50%); width:106px; height:30px; border-radius:18px; background:#1c1812; }
.p2-dim .neu-status { position:absolute; top:0; left:0; right:0; height:50px; display:flex; align-items:center; justify-content:space-between; padding:17px 24px 0; }
.p2-dim .neu-status .t { font-weight:600; font-size:14px; color:#2a2418; }
.p2-dim .neu-status .i { display:flex; align-items:center; gap:6px; }

/* accent cards — real content that lifts forward over the dimmed screen */
.acc-card {
  position:absolute; left:26px; right:26px; opacity:0;
  background:#fff; border-radius:24px; padding:20px;
  box-shadow:0 32px 66px rgba(42,28,8,.36), 0 9px 22px rgba(42,28,8,.20);
  will-change:transform, opacity;
}
.acc-photo { top:262px; }
.acc-text  { top:312px; }
.acc-pill {
  display:inline-flex; align-items:center; gap:8px; padding:8px 15px; border-radius:999px;
  font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
}
.acc-pill .dot { width:8px; height:8px; border-radius:999px; }
.acc-pill.amber { background:var(--amber-wash); color:var(--amber-deep); } .acc-pill.amber .dot { background:var(--amber); }
.acc-pill.olive { background:#e6ecc3; color:#535b1e; } .acc-pill.olive .dot { background:var(--olive); }
.acc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:16px; }
.acc-grid span { aspect-ratio:1; border-radius:14px; background-size:cover; background-position:center; box-shadow:0 1px 4px rgba(0,0,0,.10); }
.acc-grid .add { display:grid; place-items:center; background:none; border:1.5px dashed var(--line-strong); color:var(--ink-subtle); font-size:30px; font-weight:300; box-shadow:none; }
.acc-cap { margin-top:14px; font-size:12.5px; color:var(--ink-subtle); }
.acc-lbl { margin-top:16px; font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--olive-deep); }
.acc-body { margin-top:10px; font-family:var(--serif); font-weight:400; font-size:21px; line-height:1.42; color:var(--ink); }
.acc-foot { margin-top:18px; padding-top:14px; border-top:1px solid var(--line); display:flex; justify-content:space-between; font-size:12.5px; color:var(--ink-subtle); }

/* moving, fully-orange recording wave */
.rec-wave {
  position:absolute; display:flex; align-items:center; justify-content:center; gap:3px;
  background:var(--cream); opacity:0; transition:opacity .4s ease;
}
.rec-wave span { width:4px; border-radius:2px; background:var(--amber); transform-origin:center; animation:recBar 1.1s ease-in-out infinite; }
@keyframes recBar { 0%,100%{ transform:scaleY(.32); } 50%{ transform:scaleY(1); } }
@keyframes recBreath { 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.07); } }
@keyframes recHalo {
  0%,100%{ box-shadow:0 14px 30px rgba(244,136,7,.35), 0 0 0 0 rgba(244,136,7,.30); }
  50%    { box-shadow:0 14px 30px rgba(244,136,7,.35), 0 0 0 24px rgba(244,136,7,0); }
}

/* recording-only: real spiral over the amber circle + a live ticking timer */
.rec-spiral {
  position:absolute; width:144px; height:144px; border-radius:999px;
  background:var(--amber); box-shadow:0 14px 30px rgba(244,136,7,.35);
  display:grid; place-items:center; opacity:0; transition:opacity .4s ease;
  animation:recBreath 2.6s ease-in-out infinite, recHalo 2.6s ease-in-out infinite;
}
.rec-spiral img { width:62px; height:62px; object-fit:contain; }
.rec-timer {
  position:absolute; display:grid; place-items:center;
  background:var(--cream); opacity:0; transition:opacity .4s ease;
  font-family:var(--serif); font-weight:400; font-size:46px; line-height:1;
  color:var(--indigo); letter-spacing:.02em; font-variant-numeric:tabular-nums;
}

/* finale — the hero-style timeline assembling itself */
.p2-finale { position:absolute; inset:0; background:var(--cream); opacity:0; z-index:8; overflow:hidden; border-radius:inherit; transition:opacity .55s ease; }
.p2-finale .fin-island {
  position:absolute; top:11px; left:50%; transform:translateX(-50%);
  width:106px; height:30px; border-radius:18px; background:#1c1812; z-index:50;
}
.p2-finale .fin-status {
  position:absolute; top:0; left:0; right:0; height:50px; z-index:40;
  display:flex; align-items:center; justify-content:space-between; padding:17px 24px 0;
}
.p2-finale .fin-status .t { font-weight:600; font-size:14px; color:#2a2418; }
.p2-finale .fin-status .i { display:flex; align-items:center; gap:6px; }

/* ---- the stepped list on the right ---- */
.hd-steps { position:relative; display:flex; flex-direction:column; gap:clamp(18px,2.6vh,30px); }
.hd-rail {
  position:absolute; left:24px; top:30px; bottom:30px; width:2px;
  background:var(--line-strong); border-radius:2px; opacity:.55;
}
.hd-rail-fill { position:absolute; left:0; top:0; width:100%; height:0; background:var(--amber); border-radius:2px; transition:height .6s var(--ease); }
.hd-step { position:relative; display:flex; gap:18px; align-items:flex-start; }
.hd-ic {
  position:relative; z-index:2; flex:0 0 auto;
  width:50px; height:50px; border-radius:999px; background:var(--cream);
  border:2px solid var(--line-strong); display:grid; place-items:center;
  color:var(--ink-subtle); transition:background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.hd-step.on .hd-ic { transform:scale(1.05); color:#fff; }
.hd-step[data-tone=amber].on  .hd-ic { background:var(--amber);  border-color:var(--amber);  box-shadow:0 10px 24px rgba(244,136,7,.30); }
.hd-step[data-tone=indigo].on .hd-ic { background:var(--indigo); border-color:var(--indigo); box-shadow:0 10px 24px rgba(91,90,128,.32); }
.hd-step[data-tone=olive].on  .hd-ic { background:var(--olive);  border-color:var(--olive);  box-shadow:0 10px 24px rgba(124,134,45,.30); }
.hd-step[data-tone=lilac].on  .hd-ic { background:#8c79b3;       border-color:#8c79b3;       box-shadow:0 10px 24px rgba(140,121,179,.32); }
.hd-tx { padding-top:3px; }
.hd-tx h3 { font-family:var(--serif); font-weight:400; font-size:clamp(20px,1.7vw,26px); color:var(--indigo); margin-bottom:6px; letter-spacing:-.008em; }
.hd-tx p { font-size:clamp(14px,1.05vw,16px); line-height:1.52; color:var(--ink-muted); max-width:340px; text-wrap:pretty; }
/* "coming soon" feature step */
.hd-step.coming { opacity:.66; }
.hd-tx h3 .soon {
  display:inline-block; margin-left:9px; vertical-align:middle;
  font-family:var(--sans); font-size:10.5px; font-weight:700; letter-spacing:.09em;
  text-transform:uppercase; color:var(--amber-deep);
  background:var(--amber-wash); padding:3px 9px; border-radius:999px;
}

/* ============================================================
   SECTION 05 — For your whole family (mirrored How-it-works)
   ============================================================ */
.fam {
  background:var(--cream);
  padding:clamp(64px,9vh,116px) clamp(24px,5vw,64px) clamp(76px,11vh,140px);
}
.fam-demo {
  position:relative;
  max-width:1180px; margin:0 auto;
  display:grid; grid-template-columns:minmax(0,460px) minmax(0,1fr);
  align-items:center; gap:clamp(36px,6vw,104px);
}

/* ---- built-in DOM app screens that the family phone cycles through ---- */
.fam-stage { position:absolute; top:0; left:0; width:402px; height:874px; transform-origin:top left; }
.fam-scr { position:absolute; inset:0; background:var(--cream); opacity:0; transition:opacity .55s ease; overflow:hidden; font-family:var(--sans); }
.fsc-pad { position:absolute; inset:0; padding:60px 26px 0; }
/* status bar */
.fphs { position:absolute; top:0; left:0; right:0; height:54px; z-index:30; display:flex; align-items:center; justify-content:space-between; padding:17px 26px 0; }
.fph-t { font-weight:600; font-size:15px; color:#1c1812; }
.fph-isl { position:absolute; top:9px; left:50%; transform:translateX(-50%); width:104px; height:30px; border-radius:16px; background:#0c0a08; }
.fph-i { display:flex; align-items:center; gap:6px; }
/* shared bits */
.fs-nav { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.fs-back { font-size:27px; line-height:1; color:var(--indigo); font-weight:300; }
.fs-step { font-size:11px; font-weight:700; letter-spacing:.14em; color:var(--ink-subtle); }
.fs-h1 { font-family:var(--serif); font-weight:400; font-size:26px; line-height:1.12; color:var(--indigo); letter-spacing:-.01em; }
.fs-sub { font-size:13.5px; line-height:1.42; color:var(--ink-muted); margin-top:7px; }
.fs-sec { font-family:var(--serif); font-size:16px; color:var(--indigo); margin:17px 0 9px; }
.fs-sec em { font-style:normal; font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-subtle); margin-left:6px; }
.fs-person { display:flex; align-items:center; gap:11px; background:#fff; border:1px solid var(--line); border-radius:14px; padding:11px 13px; box-shadow:0 4px 14px rgba(63,62,90,.05); }
.fs-av { width:34px; height:34px; border-radius:999px; color:#fff; display:grid; place-items:center; font-size:14px; font-weight:600; flex:0 0 auto; }
.fs-pm { flex:1; display:flex; flex-direction:column; }
.fs-pm b { font-size:14.5px; color:var(--ink); font-weight:600; }
.fs-pm span { font-size:11.5px; color:var(--ink-subtle); }
.fs-x { color:var(--ink-faint); font-size:18px; }
.fs-add { font-size:13.5px; font-weight:600; color:var(--olive-deep); margin-top:10px; position:relative; display:inline-block; }
.fs-cta { margin-top:22px; height:50px; border-radius:25px; background:var(--olive); color:#fff; display:grid; place-items:center; font-weight:600; font-size:15px; box-shadow:0 12px 26px rgba(124,134,45,.30); position:relative; }
.fs-skip { text-align:center; margin-top:13px; font-weight:600; font-size:13.5px; color:var(--ink); }
.fs-tap { position:absolute; left:50%; top:50%; width:34px; height:34px; border-radius:999px; transform:translate(-50%,-50%) scale(0); background:radial-gradient(circle, rgba(244,136,7,.5), rgba(244,136,7,0) 70%); opacity:0; pointer-events:none; }
@keyframes tapPulse { 0%{ opacity:0; transform:translate(-50%,-50%) scale(.2);} 35%{ opacity:1;} 100%{ opacity:0; transform:translate(-50%,-50%) scale(1.8);} }
/* screen 0 — add family: Maya card grows in after a tap */
.fs-maya-wrap { max-height:0; opacity:0; overflow:hidden; transition:max-height .55s var(--ease) .9s, opacity .4s ease .9s; }
.fam-scr[data-i="0"].play .fs-maya-wrap { max-height:72px; opacity:1; }
.fs-addchild .fs-tap { left:48px; }
.fam-scr[data-i="0"].play .fs-addchild .fs-tap { animation:tapPulse .6s ease .45s 1; }
/* screen 1 — compose photo */
.fs-ctop { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:13px; }
.fs-ctop .fs-x { font-size:22px; color:var(--ink); }
.fs-pill { display:inline-flex; align-items:center; gap:7px; padding:7px 12px; border-radius:999px; background:#e6ecc3; color:#535b1e; font-size:10.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.fs-pill i { width:7px; height:7px; border-radius:999px; background:var(--olive); }
.fs-save { padding:9px 17px; border-radius:999px; background:var(--olive); color:#fff; font-weight:600; font-size:14px; box-shadow:0 8px 18px rgba(124,134,45,.28); }
.fs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.fs-grid > span { aspect-ratio:1; border-radius:13px; position:relative; box-shadow:0 2px 6px rgba(0,0,0,.08); }
.fs-tr { position:absolute; top:6px; right:6px; width:21px; height:21px; border-radius:999px; background:rgba(40,34,24,.55); display:grid; place-items:center; }
.fs-addmore { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px; background:none; border:1.5px dashed var(--line-strong); box-shadow:none; color:var(--olive-deep); font-size:23px; font-weight:300; }
.fs-addmore small { font-size:11px; font-weight:600; }
.fs-gridcap { font-size:11.5px; color:var(--ink-subtle); margin:9px 0 0; }
.fs-lbl { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--olive-deep); margin:14px 0 8px; }
.fs-lbl em { font-style:normal; color:var(--amber-deep); }
.fs-input { border:1px solid var(--line); background:#fff; border-radius:12px; padding:12px 14px; font-size:14px; color:var(--ink-subtle); }
.fs-who { border:1px solid var(--line); background:#fff; border-radius:14px; padding:13px; display:flex; flex-direction:column; gap:9px; }
.fs-wrow { display:flex; align-items:center; gap:7px; }
.fs-wlbl { font-size:10px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; color:var(--olive-deep); width:52px; flex:0 0 auto; }
.fs-chip { position:relative; display:inline-flex; align-items:center; gap:7px; padding:5px 13px 5px 5px; border-radius:999px; border:1px solid var(--line-strong); font-size:13.5px; font-weight:600; color:var(--ink); background:#fff; transition:background .3s, border-color .3s, color .3s, box-shadow .3s; }
.fs-chip i { width:24px; height:24px; border-radius:999px; color:#fff; display:grid; place-items:center; font-size:11px; font-weight:600; flex:0 0 auto; }
.fs-chip.sel { color:#fff; border-color:transparent; }
.fs-chip[data-p="maya"].sel { background:#e77e66; box-shadow:0 6px 14px rgba(231,126,102,.34); }
.fs-chip[data-p="leo"].sel  { background:#7a906c; box-shadow:0 6px 14px rgba(122,144,108,.32); }
.fs-chip[data-p="lena"].sel { background:#5b5a80; box-shadow:0 6px 14px rgba(91,90,128,.32); }
.fs-chip.sel .fs-tap { animation:tapPulse .55s ease 1; }
.fs-help { font-size:11.5px; color:var(--ink-subtle); margin-top:10px; }
/* screen 2 — reminder */
.fsc-pad.fs2 { display:flex; flex-direction:column; padding:60px 30px 182px; }
.fs2-body { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.fam-scr[data-i="2"].play .fs2-body { animation:settleUp .8s ease 1; }
@keyframes settleUp { 0%{ transform:translateY(14px); opacity:.3;} 100%{ transform:translateY(0); opacity:1;} }
.fs-bell { width:74px; height:74px; border-radius:999px; background:var(--amber-wash); display:grid; place-items:center; margin-bottom:22px; transform-origin:50% 16%; }
.fam-scr[data-i="2"].play .fs-bell { animation:bellRing 1s ease .35s 1; }
@keyframes bellRing { 0%,100%{ transform:rotate(0);} 18%{ transform:rotate(12deg);} 36%{ transform:rotate(-9deg);} 54%{ transform:rotate(6deg);} 72%{ transform:rotate(-4deg);} }
.fs2-h1 { font-size:27px; line-height:1.16; }
.fs2-sub { max-width:280px; font-size:14px; margin-top:12px; }
.fs2-note { text-align:center; font-size:11.5px; color:var(--ink-subtle); margin-bottom:14px; }
.fam-scr[data-i="2"].play .fs2-allow { animation:btnPress .5s ease 1.5s 1; }
@keyframes btnPress { 0%,100%{ transform:scale(1);} 45%{ transform:scale(.96);} }
.fam-scr[data-i="2"].play .fs2-allow .fs-tap { animation:tapPulse .6s ease 1.5s 1; }
.fs-banner { position:absolute; top:12px; left:14px; right:14px; z-index:40; display:flex; align-items:center; gap:11px; background:rgba(255,255,255,.9); border-radius:18px; padding:11px 13px; box-shadow:0 16px 32px rgba(63,62,90,.20), 0 2px 6px rgba(0,0,0,.05); transform:translateY(-150px); opacity:0; }
.fam-scr[data-i="2"].play .fs-banner { animation:bannerDrop 2.5s ease 2s 1 forwards; }
@keyframes bannerDrop { 0%{ transform:translateY(-150px); opacity:0;} 16%{ transform:translateY(0); opacity:1;} 80%{ transform:translateY(0); opacity:1;} 100%{ transform:translateY(-150px); opacity:0;} }
.fb-ic { width:34px; height:34px; border-radius:9px; background:var(--amber-wash); display:grid; place-items:center; flex:0 0 auto; }
.fb-tx { display:flex; flex-direction:column; min-width:0; }
.fb-tx b { font-size:12.5px; color:var(--ink); display:flex; gap:8px; align-items:baseline; font-weight:700; }
.fb-tx b span { font-size:10.5px; font-weight:500; color:var(--ink-subtle); }
.fb-bd { font-size:12.5px; color:var(--ink-muted); margin-top:1px; }
@media (prefers-reduced-motion: reduce) {
  .fam-scr[data-i="0"].play .fs-maya-wrap { transition:none; }
  .fam-scr .fs-bell, .fam-scr .fs2-body, .fam-scr .fs2-allow, .fam-scr .fs-banner, .fam-scr .fs-tap { animation:none !important; }
  .fam-scr[data-i="2"].play .fs-banner { opacity:0; }
}

/* ============================================================
   SECTION 06/07 — Sharing (laptop+phone) & Privacy (locked phone)
   ============================================================ */
.share { background:var(--cream); padding:clamp(72px,10vh,132px) clamp(24px,5vw,64px); }
.priv  { background:var(--cream); padding:clamp(72px,10vh,132px) clamp(24px,5vw,64px); }

/* headline + steps column */
.feat-col { max-width:520px; }
.feat-head { margin-bottom:clamp(26px,3.4vh,42px); }
.feat-head h2 { font-family:var(--serif); font-weight:400; font-size:clamp(28px,3vw,46px); line-height:1.1; letter-spacing:-.018em; color:var(--indigo); text-wrap:balance; margin-top:11px; }
.feat-sub { margin-top:15px; font-size:clamp(15px,1.2vw,18px); line-height:1.5; color:var(--ink-muted); max-width:430px; text-wrap:pretty; }
.share #shareRailFill, .priv #privRailFill { height:100%; }

/* --- MacBook + phone composition --- */
.dev-combo { position:relative; width:100%; max-width:660px; margin:0 auto; }
.macbook { position:relative; width:100%; }
.mb-screen { position:relative; aspect-ratio:16/10.2; background:#0c0c0e; border-radius:15px 15px 5px 5px; padding:9px; box-shadow:0 0 0 2px #2b2b2d, 0 34px 66px rgba(40,30,15,.24), 0 10px 24px rgba(40,30,15,.14); }
.mb-browser { position:absolute; inset:9px; border-radius:7px; overflow:hidden; background:var(--cream); display:flex; flex-direction:column; }
.mbb-bar { height:32px; flex:0 0 auto; display:flex; align-items:center; gap:11px; padding:0 13px; background:#f5ecdf; border-bottom:1px solid var(--line); }
.mbb-dots { display:flex; gap:6px; flex:0 0 auto; }
.mbb-dots i { width:9px; height:9px; border-radius:999px; background:#d6c6a6; }
.mbb-dots i:nth-child(1){ background:#e6816f; } .mbb-dots i:nth-child(2){ background:#e7b24c; } .mbb-dots i:nth-child(3){ background:#7faf6a; }
.mbb-url { display:flex; align-items:center; gap:6px; font-size:11px; color:var(--ink-subtle); background:#fff; border-radius:7px; padding:4px 12px; margin:0 auto; box-shadow:inset 0 0 0 1px var(--line); }
.mbb-page { flex:1; overflow:hidden; padding:clamp(13px,1.5vw,20px) clamp(16px,1.9vw,24px); }
.mbb-page.mbb-shot { padding:0; display:block; overflow:hidden; background:#fef8f1; }
.mbb-shot img { width:100%; height:auto; display:block; will-change:transform; }
.dg-from { display:inline-flex; align-items:center; gap:7px; font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--amber-deep); }
.dg-mk { width:11px; height:11px; border-radius:3px; border:2.4px solid var(--amber); }
.dg-h { font-family:var(--serif); font-weight:400; font-size:clamp(15px,1.4vw,21px); color:var(--indigo); line-height:1.16; margin:8px 0 0; letter-spacing:-.01em; }
.dg-sub { display:none; }
.dg-month { font-family:var(--serif); font-size:clamp(14px,1.3vw,18px); color:var(--indigo); margin:clamp(8px,1vw,12px) 0 8px; }
.dg-month span { font-size:.7em; color:var(--ink-subtle); }
.dg-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(8px,.9vw,12px); }
.dg-card { display:flex; flex-direction:column; border-radius:12px; padding:10px 12px; min-height:54px; box-shadow:0 3px 10px rgba(95,72,35,.10); }
.dg-card .dg-d { font-size:9.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:rgba(42,36,24,.5); }
.dg-card .dg-d.lt { color:rgba(255,255,255,.85); }
.dg-card.q p { font-family:var(--serif); font-size:13px; line-height:1.32; color:#473a18; margin-top:5px; }
.dg-card.p b { font-weight:600; font-size:13.5px; color:#fff; margin-top:5px; line-height:1.2; }
.dg-who { display:inline-flex; align-items:center; gap:6px; font-size:11px; font-weight:600; color:#473a18; margin-top:auto; padding-top:7px; }
.dg-who.lt { color:#fff; }
.dg-who i { width:18px; height:18px; border-radius:999px; color:#fff; display:grid; place-items:center; font-size:9px; font-weight:600; }
.mb-base { position:relative; width:116%; margin-left:-8%; height:15px; background:linear-gradient(#dadade,#a7a7ac); border-radius:0 0 12px 12px; box-shadow:0 9px 16px rgba(40,30,15,.16); }
.mb-notch { position:absolute; top:0; left:50%; transform:translateX(-50%); width:13%; height:6px; background:#b6b6bb; border-radius:0 0 8px 8px; }
/* phone in front of the laptop */
.combo-phone { position:absolute; left:-3%; bottom:-2%; width:42%; min-width:182px; z-index:6; }
.combo-phone .hd-device { box-shadow:0 0 0 1px #050506, 0 1px 2px rgba(255,255,255,.22) inset, 0 24px 46px rgba(40,30,15,.32); }
/* close-circle screen */
.cc-scr { position:absolute; inset:0; background:var(--cream); }
.cc-kick { margin:0 0 4px; }
.cc-list { display:flex; flex-direction:column; gap:9px; margin-top:16px; }
.cc-row { display:flex; align-items:center; gap:11px; background:#fff; border:1px solid var(--line); border-radius:14px; padding:11px 13px; box-shadow:0 4px 14px rgba(63,62,90,.05); }
.cc-m { flex:1; display:flex; flex-direction:column; }
.cc-m b { font-size:14.5px; color:var(--ink); font-weight:600; }
.cc-m span { font-size:11.5px; color:var(--ink-subtle); }
.cc-badge { font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:5px 10px; border-radius:999px; }
.cc-badge.add { background:#e6ecc3; color:#535b1e; }
.cc-new { max-height:0; opacity:0; overflow:hidden; padding-top:0; padding-bottom:0; border-width:0; transition:max-height .5s var(--ease), opacity .4s ease, padding .5s var(--ease); }
.cc-new.show { max-height:72px; opacity:1; padding-top:11px; padding-bottom:11px; border-width:1px; }
.cc-add { margin-top:13px; }
.cc-add .fs-tap { left:54px; }

/* --- Privacy: timeline under a closed lock --- */
.priv-scr { position:absolute; inset:0; background:var(--cream); }
.priv-scr .spine { opacity:1; }
.priv-veil { position:absolute; inset:0; z-index:5; background:radial-gradient(120% 86% at 50% 45%, rgba(254,248,241,.5), rgba(254,248,241,.9)); -webkit-backdrop-filter:blur(2.4px); backdrop-filter:blur(2.4px); }
.priv-lock { position:absolute; inset:0; z-index:6; display:flex; align-items:center; justify-content:center; }
.priv-lockglow { position:absolute; left:50%; top:50%; width:230px; height:230px; transform:translate(-50%,-50%); border-radius:50%; pointer-events:none; background:radial-gradient(circle, rgba(244,136,7,.42), rgba(244,136,7,0) 62%); }
.priv-pad { position:relative; z-index:2; filter:drop-shadow(0 16px 30px rgba(224,123,6,.34)); animation:lockBreath 3.4s ease-in-out infinite; }
@keyframes lockBreath { 0%,100%{ transform:scale(1);} 50%{ transform:scale(1.045);} }
@media (prefers-reduced-motion: reduce) { .priv-pad { animation:none; } }

/* ============================================================
   SECTION — FAQ (single-open accordion)
   ============================================================ */
.faq { background:var(--cream); padding:clamp(64px,9vh,120px) clamp(24px,5vw,64px); }
.faq-title {
  max-width:760px; margin:0 auto clamp(32px,4.5vh,52px); text-align:center;
  font-family:var(--serif); font-weight:400; font-size:clamp(32px,3.6vw,52px);
  line-height:1.12; letter-spacing:-.02em; color:var(--indigo);
}
.faq-list { max-width:760px; margin:0 auto; border-top:1px solid rgba(63,62,90,.12); }
.faq-item { border-bottom:1px solid rgba(63,62,90,.12); }
.faq-q {
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:24px;
  background:none; border:none; cursor:pointer; text-align:left;
  padding:clamp(20px,2.4vh,28px) 4px;
  font-family:var(--serif); font-weight:400; color:var(--indigo);
  font-size:clamp(18px,1.6vw,23px); line-height:1.28; letter-spacing:-.01em;
  transition:color .2s ease;
}
.faq-q:hover { color:var(--amber-deep); }
.faq-chev { flex:none; width:22px; height:22px; color:var(--amber-deep); transition:transform .35s cubic-bezier(.22,.61,.36,1); }
.faq-item.open .faq-chev { transform:rotate(180deg); }
.faq-a { display:grid; grid-template-rows:0fr; transition:grid-template-rows .38s cubic-bezier(.22,.61,.36,1); }
.faq-item.open .faq-a { grid-template-rows:1fr; }
.faq-a-in { overflow:hidden; }
.faq-a-in p {
  margin:0 0 clamp(14px,2vh,18px); max-width:660px;
  font-size:clamp(15px,1.15vw,17px); line-height:1.62; color:var(--ink-muted); font-weight:300;
}
.faq-item.open .faq-a-in { padding-bottom:clamp(8px,1.6vh,18px); }
.faq-a-in p:last-child { margin-bottom:0; }
.faq-a-in a { color:var(--amber-deep); text-decoration:underline; text-underline-offset:2px; font-weight:400; }
.faq-more { max-width:760px; margin:clamp(40px,5vh,60px) auto 0; text-align:center; }
.faq-more-h { margin:0; font-family:var(--serif); font-weight:400; font-size:clamp(20px,2vw,26px); color:var(--indigo); }
.faq-more-p { margin:10px 0 18px; font-size:clamp(14px,1.1vw,16px); color:var(--ink-muted); font-weight:300; }
.faq-more-cta {
  display:inline-block; font-family:var(--sans); font-weight:600; font-size:15px;
  color:var(--amber-deep); text-decoration:none; border-bottom:1.5px solid var(--amber);
  padding-bottom:2px; transition:opacity .2s ease;
}
.faq-more-cta:hover { opacity:.7; }
@media (max-width:560px) {
  .faq-q { font-size:19px; gap:16px; }
  .faq-a-in p { font-size:16px; }
}

/* ============================================================
   SECTION — For families of all kinds (two framed groups)
   ============================================================ */
.fk { background:var(--cream); padding:clamp(72px,10vh,132px) clamp(24px,5vw,64px); }
.fk-title {
  max-width:1000px; margin:0 auto clamp(40px,5.5vh,68px); text-align:center;
  font-family:var(--serif); font-weight:400; font-size:clamp(30px,3.6vw,52px);
  line-height:1.16; letter-spacing:-.02em; color:var(--indigo); text-wrap:balance;
}
.fk-title span { color:var(--indigo-soft); }
.fk-rows { max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:clamp(20px,2.4vw,32px); align-items:stretch; }
.fk-card {
  display:flex; flex-direction:column;
  background:var(--panel); border:1px solid rgba(63,62,90,.05); border-radius:26px;
  padding:clamp(28px,2.6vw,44px) clamp(26px,2.4vw,40px) clamp(26px,2.4vw,38px);
  box-shadow:0 14px 36px rgba(63,62,90,.07);
}
.fk-h { font-family:var(--serif); font-weight:400; font-size:clamp(24px,2.3vw,34px); line-height:1.1; letter-spacing:-.015em; }
.fk-card.cap .fk-h { color:var(--olive-deep); }
.fk-card.rec .fk-h { color:var(--indigo); }
.fk-body { margin-top:14px; font-size:clamp(14.5px,1.05vw,16.5px); line-height:1.6; color:var(--ink-muted); text-wrap:pretty; }
.fk-collage { margin-top:auto; padding-top:clamp(28px,3vw,40px); display:flex; align-items:center; justify-content:center; }
.fk-photo {
  flex:0 0 auto; height:clamp(124px,13vw,158px);
  background:#fff; padding:6px; border-radius:11px;
  box-shadow:0 12px 26px rgba(63,62,90,.18), 0 3px 8px rgba(0,0,0,.06);
  transform:rotate(var(--rot,0deg));
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.fk-photo:not(:first-child) { margin-left:clamp(-22px,-1.4vw,-14px); }
.fk-photo img { display:block; height:100%; width:auto; border-radius:5px; }
.fk-photo:hover { transform:rotate(var(--rot,0deg)) translateY(-6px) scale(1.04); z-index:9;
  box-shadow:0 22px 44px rgba(63,62,90,.24), 0 5px 12px rgba(0,0,0,.08); }
@media (max-width:760px) {
  .fk-rows { grid-template-columns:1fr; }
}

/* ============================================================
   FOOTER — closing call + brand slogan + links (indigo)
   ============================================================ */
.ft { background:var(--indigo-deep); color:#fff; padding:clamp(76px,11vh,140px) clamp(24px,5vw,64px) clamp(34px,5vh,52px); }
.ft-inner { max-width:var(--maxw); margin:0 auto; }
.ft-cta { text-align:center; max-width:1000px; margin:0 auto clamp(56px,8vh,96px); }
.ft-cta h2 {
  font-family:var(--serif); font-weight:400; font-size:clamp(32px,4vw,60px);
  line-height:1.1; letter-spacing:-.02em; color:#fff; text-wrap:balance;
}
.ft-cta h2 span { color:#f9a23a; }
.ft-cta .btn-primary { margin-top:clamp(28px,4vh,46px); }
.ft-bar {
  display:grid; grid-template-columns:1.25fr 1fr; gap:clamp(32px,5vw,72px); align-items:start;
  padding-top:clamp(40px,6vh,64px); border-top:1px solid rgba(255,255,255,.14);
}
.ft-brand img { height:52px; width:auto; display:block; margin-bottom:22px; }
.ft-slogan {
  font-family:var(--serif); font-style:italic; font-size:clamp(15px,1.2vw,18px);
  line-height:1.6; color:rgba(255,255,255,.66); max-width:640px; text-wrap:pretty;
}
.ft-slogan b { font-weight:500; font-style:italic; color:#f9a23a; }
.ft-slogan .sl-def { display:block; }
.ft-slogan .sl-def + .sl-def { margin-top:9px; }
.ft-links { display:flex; flex-direction:column; gap:15px; align-items:flex-end; text-align:right; }
.ft-links a { color:rgba(255,255,255,.82); font-size:15px; transition:color .2s ease; }
.ft-links a:hover { color:#f9a23a; }
.ft-base { margin-top:clamp(36px,5vh,56px); text-align:center; font-size:13px; letter-spacing:.02em; color:rgba(255,255,255,.4); }
@media (max-width:720px) {
  .ft-bar { grid-template-columns:1fr; gap:32px; }
  .ft-links { align-items:flex-start; text-align:left; }
}

/* ============================================================
   SECTION 08 — Photo book (coming soon) · brand-color panel
   ============================================================ */
.book { background:var(--cream); padding:clamp(24px,4vw,64px) clamp(16px,4vw,48px); }
.book-panel {
  max-width:var(--maxw); margin:0 auto;
  background:linear-gradient(135deg,#f9e2cb,#f3cfa9);
  border-radius:clamp(28px,3vw,44px);
  padding:clamp(40px,5vw,84px);
  display:grid; grid-template-columns:1fr 1.08fr; gap:clamp(32px,4vw,64px); align-items:center;
}
.book-eyebrow {
  display:inline-block; margin-bottom:18px;
  font-size:13px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:var(--amber-deep);
}
.book-copy h2 {
  font-family:var(--serif); font-weight:400; font-size:clamp(30px,3.4vw,52px);
  line-height:1.08; letter-spacing:-.02em; color:var(--indigo-deep); text-wrap:balance;
}
.book-body {
  margin-top:20px; font-size:clamp(15px,1.2vw,18px); line-height:1.6;
  color:var(--ink-muted); max-width:440px; text-wrap:pretty;
}
.book-close {
  margin-top:24px; padding-top:20px; border-top:1px solid rgba(183,94,7,.24);
  font-family:var(--serif); font-style:italic; font-size:clamp(16px,1.5vw,21px);
  line-height:1.4; color:var(--amber-deep); max-width:440px; text-wrap:pretty;
}
.book-card {
  background:#fff; border-radius:18px; padding:14px;
  max-width:94%; margin:0 auto;
  box-shadow:0 6px 18px rgba(120,70,20,.12), 0 20px 48px rgba(120,70,20,.16);
}
.book-card img {
  display:block; width:100%; border-radius:10px;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 3.5%, #000 96.5%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 3.5%, #000 96.5%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 3.5%, #000 96.5%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 3.5%, #000 96.5%, transparent 100%);
  mask-composite: intersect;
}
@media (max-width:860px) {
  .book-panel { grid-template-columns:1fr; gap:clamp(28px,5vw,40px); }
  .book-art { order:-1; }
}

@media (max-width:980px) {
  .feat-col { max-width:520px; margin:0 auto; }
  .dev-combo { max-width:540px; }
}

@media (max-width:980px) {
  .how-demo { grid-template-columns:1fr; gap:clamp(36px,6vh,56px); max-width:520px; }
  .hd-steps { max-width:480px; margin:0 auto; }
  .fam-demo { grid-template-columns:1fr; gap:clamp(34px,5vh,52px); max-width:520px; }
}
@media (max-width:560px) {
  .hd-tx p { max-width:none; }
}

/* ============================================================
   MOBILE REFINEMENTS — burger nav · fitted phones · clean stacking
   (appended last so these overrides win)
   ============================================================ */
.nav-burger { display:none; }

@media (max-width:820px) {
  /* story intro must wrap on small screens, not run off the edge */
  .story-intro { white-space:normal; text-wrap:balance; }
}

@media (max-width:980px) {
  /* text first, then the device — consistent for every feature section */
  .how .hd-steps   { order:-1; }   /* How: steps above the phone */
  .share .feat-col { order:-1; }   /* Sharing: copy above the laptop */
  /* Family & Privacy already lead with their text column in source order */

  .hd-phone { width:min(84vw,340px); }
  .dev-combo { max-width:480px; }
}

@media (max-width:720px) {
  /* --- burger navigation --- */
  .nav { padding:13px 0; }
  .nav-inner { padding:0 20px; }
  .brand img { height:40px; }

  .nav-burger {
    display:flex; flex-direction:column; justify-content:center; gap:5px;
    width:44px; height:44px; padding:11px; margin-right:-8px;
    background:none; border:0; cursor:pointer; z-index:120;
  }
  .nav-burger span {
    display:block; height:2px; width:100%; border-radius:2px;
    background:var(--indigo-deep);
    transition:transform .3s var(--ease), opacity .2s ease;
  }
  .nav-burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity:0; }
  .nav-burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

  .nav .links {
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    padding:4px 22px 14px;
    background:rgba(254,248,241,.97);
    backdrop-filter:saturate(140%) blur(14px);
    -webkit-backdrop-filter:saturate(140%) blur(14px);
    border-bottom:1px solid var(--line);
    box-shadow:0 20px 38px rgba(63,62,90,.12);
    opacity:0; transform:translateY(-10px); pointer-events:none;
    transition:opacity .26s ease, transform .26s ease;
  }
  .nav .links.open { opacity:1; transform:translateY(0); pointer-events:auto; }
  .nav .links a {
    font-size:20px; font-weight:500; padding:15px 2px; width:100%;
    border-bottom:1px solid rgba(214,198,166,.45);
  }
  .nav .links a:last-child { border-bottom:0; }
  .nav .links a:not(.nav-cta)::after { display:none; }

  /* --- footer: centred on mobile --- */
  .ft-bar { grid-template-columns:1fr; gap:30px; text-align:center; }
  .ft-brand img { margin-left:auto; margin-right:auto; }
  .ft-slogan { text-align:center; margin-left:auto; margin-right:auto; max-width:300px; font-size:16px; line-height:1.62; text-wrap:balance; }
  .ft-slogan .sl-def + .sl-def { margin-top:13px; }
  .ft-links { align-items:center; text-align:center; }
}

@media (max-width:560px) {
  /* ---- hero: heading-led, smaller CTA, phone peeking ~70% below ---- */
  .hero { padding:42px 20px 0; gap:8px; min-height:0; height:100vh; overflow:hidden; }
  .hero-head { padding-top:6px; }
  .hero-head h1 { font-size:clamp(31px,8.4vw,40px); line-height:1.06; }
  .hero-head p  { font-size:clamp(14.5px,4vw,17px); line-height:1.45; margin-top:14px; }

  /* CTA centred + sized to its label, deliberately quieter than the headline */
  .hero-cta { flex-direction:column; align-items:center; width:100%; max-width:none; gap:12px; margin-top:22px; }
  .btn-primary { padding:13px 30px; font-size:15px; box-shadow:0 7px 16px rgba(244,136,7,.24); }

  /* the animated phone: real device ratio, dropped below the button; the hero
     (full-height, overflow-hidden) crops it at the fold so the story stays below */
  .stage { min-height:0; align-items:flex-start; }
  .phone {
    width:min(86vw,320px);
    transform:scale(.80);
    transform-origin:top center;
    margin:22px auto 0;
  }
  /* let the blurred photo wall bleed past the screen edges instead of cropping */
  .grid-wall { inset:-6% -22% -12% -22%; }

  /* the story panel starts below the first screen (not peeking up) */
  .story-card { margin-top:0; padding-left:22px; padding-right:22px; }

  /* story intro — clear hierarchy: small lead-in, big emotional headline */
  .story-intro { white-space:normal; text-wrap:pretty; line-height:1.32; }
  .si-place { font-size:clamp(19px,5.2vw,22px); }
  .si-body  { font-size:clamp(25px,7vw,32px); line-height:1.22; }
  .br-md { display:none; }
  .story-statement { padding-left:22px; padding-right:22px; }

  /* memory cards: compact landscape-banner photo on top, text below
     (side-strips cut wide group photos; a full-width banner keeps every face) */
  .qcards { gap:18px; margin-top:34px; max-width:420px; }
  .qcard { flex-direction:column; align-items:stretch; gap:0; padding:11px 11px 0; border-radius:9px; }
  .qpic { width:100%; aspect-ratio:3 / 2; align-self:auto; min-height:0; border-radius:5px; }
  .qbody { padding:13px 5px 18px; justify-content:flex-start; }
  .qquote { font-size:16px; line-height:1.45; }
  .qloss { margin-top:12px; padding-top:12px; font-size:13.5px; line-height:1.5; }

  /* feature-section devices: large enough that the timeline isn't cramped */
  .hd-phone { width:min(90vw,344px); }

  /* tighter vertical rhythm — kill the big empty gaps between sections */
  .how   { padding-top:50px; padding-bottom:26px; }
  .fam   { padding-top:36px; padding-bottom:40px; }
  .share { padding-top:36px; padding-bottom:40px; }
  .priv  { padding-top:36px; padding-bottom:40px; }
  .fk    { padding-top:50px; padding-bottom:50px; }
  .book  { padding-top:18px; padding-bottom:18px; }
  .insp  { padding-top:64px; padding-bottom:72px; }
  /* the demo block carries its own large top margin — only How needs it */
  .how-demo   { margin-top:22px; }
  .share-demo, .priv-demo { margin-top:0; }

  /* tighten section gutters so content has room */
  .how, .fam, .share, .priv, .fk { padding-left:20px; padding-right:20px; }
  .insp { padding-left:18px; padding-right:18px; }

  /* photo-book: bigger image filling the top of the panel */
  .book { padding-left:12px; padding-right:12px; }
  .book-panel { padding:24px 14px 30px; gap:22px; }
  .book-card { max-width:100%; padding:10px; }
  .book-art { margin:0 -2px; }
  .book-copy { text-align:center; }
  .book-body, .book-close { margin-left:auto; margin-right:auto; }
}
