/* ============================================================
   ANMLVR — anmlvr.com
   Aesthetic: "warm editorial care" — cream paper, coral heart,
   soft-serif display + rounded body, a winding Care Trail motif.
   Mirrors the app's brand (Heart Coral / Cream / Golden Paw,
   warm + playful + trustworthy). No pure red, ever.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Grounds */
  --paper:        #FCFBF8;
  --warm-white:   #FAFAF7;
  --cream:        #F5F3EE;
  --surface:      #EFEAE1;

  /* Brand */
  --coral:        #E8735A;   /* Heart Coral — primary */
  --coral-deep:   #B5482F;   /* action coral — text-on-light / strong CTA (AA) */
  --coral-tint:   #FBE7E0;
  --sage:         #6B9E7A;
  --sage-tint:    #E3EFE6;
  --gold:         #E8A94F;   /* Golden Paw — delight */
  --gold-tint:    #FAEED6;
  --bluebell:     #7BA3C9;
  --bluebell-tint:#E5EDF4;

  /* Ink */
  --ink:          #2D2926;
  --ink-soft:     #5E544C;   /* secondary text (AA on cream) */
  --ink-faint:    #8A7F75;   /* tertiary */
  --hairline:     #E3DCD0;

  /* Warm shadows (brown undertone, never cold) */
  --sh-sm: 0 2px 8px rgba(76, 58, 46, .07);
  --sh-md: 0 14px 34px -12px rgba(76, 58, 46, .18);
  --sh-lg: 0 40px 80px -28px rgba(76, 58, 46, .28);
  --sh-coral: 0 18px 40px -14px rgba(232, 115, 90, .45);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Radii */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 42px;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--body);
  font-weight: 500;
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Subtle warm grain over everything for tactility */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--ink);
}
.display {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.7rem, 6.2vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.025em;
}
.eyebrow {
  font-family: var(--body);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral-deep);
  display: inline-flex;
  align-items: center;
  gap: .55em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.section-title { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.lead {
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  color: var(--ink-soft);
  font-weight: 500;
  max-width: 56ch;
}
.serif-em { font-family: var(--display); font-style: italic; font-weight: 500; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - calc(var(--gutter) * 2), var(--maxw)); margin-inline: auto; }
section { position: relative; padding-block: clamp(72px, 11vw, 140px); }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.center .lead { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--body);
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .2s;
  will-change: transform;
}
.btn-primary {
  background: var(--coral-deep);
  color: #fff;
  box-shadow: var(--sh-coral);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 48px -14px rgba(232,115,90,.55); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--hairline);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--coral); color: var(--coral-deep); }

/* "Coming soon to the App Store" badge.
   ▶▶ LAUNCH SWAP: when the app is live, replace .comingsoon blocks (here + in each
   page's hero/footer) with a real App Store download link/badge. Search the HTML
   for "LAUNCH SWAP" — every spot is marked. */
.comingsoon {
  display: inline-flex;
  align-items: center;
  gap: .8em;
  padding: 13px 22px 13px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  font-weight: 700;
  box-shadow: var(--sh-md);
}
.comingsoon .apple { font-size: 1.5rem; line-height: 1; }
.comingsoon small {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}
.comingsoon strong { font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, .82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--hairline); box-shadow: var(--sh-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .mark { width: 34px; height: 34px; }
.brand .word { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-weight: 700; font-size: .96rem; color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--coral-deep); }
.nav-cta { font-weight: 800; color: var(--coral-deep) !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle span + span { margin-top: 5px; }

/* ---------- Heart-paw mark ---------- */
.heart-paw { color: var(--coral); }
@keyframes boop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07) rotate(-2deg); }
}
.boopable { animation: boop 4.5s ease-in-out infinite; transform-origin: center 60%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(60px, 8vw, 120px); overflow: clip; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 22px 0 0; }
.hero h1 .tail { color: var(--coral); }
/* rotating hero phrase — all phrases share one grid cell, so the wrap is always
   as tall as the TALLEST phrase at the current width. Nothing below it shifts,
   regardless of which phrase shows or how many lines it wraps to. */
.rotate-wrap { display: grid; align-items: start; }
.rotate-word {
  grid-area: 1 / 1;                 /* every phrase stacks in the same cell */
  opacity: 0;
  transform: translateY(14px);      /* resting state: just below, hidden */
  transition: opacity .42s ease, transform .42s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.rotate-word.is-active { opacity: 1; transform: none; }              /* in view */
.rotate-word.is-leaving { opacity: 0; transform: translateY(-14px); } /* fading up & out */
@media (prefers-reduced-motion: reduce) { .rotate-word { transition: none; } }
.hero .lead { margin: 24px 0 34px; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 30px;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-weight: 700; font-size: .92rem; color: var(--ink-soft);
}
.hero-trust li { display: inline-flex; align-items: center; gap: .5em; }
.hero-trust .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }

/* organic blobs behind hero */
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .55; z-index: 0; pointer-events: none; }
.hero .blob-1 { width: 420px; height: 420px; background: radial-gradient(circle at 30% 30%, var(--coral-tint), transparent 70%); top: -120px; right: -80px; opacity: .9; }
.hero .blob-2 { width: 320px; height: 320px; background: radial-gradient(circle at 50% 50%, var(--gold-tint), transparent 70%); bottom: -120px; left: -110px; }

/* Phone mockup (hand-built — swap for real screenshots later) */
.phone-stage { position: relative; display: grid; place-items: center; }
.phone {
  position: relative; z-index: 2;
  width: min(300px, 78vw);
  aspect-ratio: 300 / 612;
  background: var(--ink);
  border-radius: 46px;
  padding: 11px;
  box-shadow: var(--sh-lg), inset 0 0 0 2px rgba(255,255,255,.06);
  transform: rotate(-3deg);
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--warm-white), var(--cream));
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 92px; height: 22px; background: var(--ink); border-radius: 999px; z-index: 5; }
.ps-head { padding: 40px 20px 14px; }
.ps-greet { font-family: var(--display); font-weight: 600; font-size: 1.32rem; color: var(--ink); letter-spacing: -.02em; }
.ps-sub { font-size: .76rem; font-weight: 700; color: var(--ink-faint); margin-top: 2px; }
.ps-body { padding: 6px 16px; display: flex; flex-direction: column; gap: 11px; }
.ps-card {
  background: #fff; border-radius: 18px; padding: 13px 14px;
  box-shadow: var(--sh-sm); display: flex; align-items: center; gap: 11px;
}
.ps-pill { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; flex: none; font-size: 1.1rem; }
.ps-pill.coral { background: var(--coral-tint); }
.ps-pill.sage  { background: var(--sage-tint); }
.ps-pill.gold  { background: var(--gold-tint); }
.ps-meta { flex: 1; min-width: 0; }
.ps-meta b { font-size: .82rem; font-weight: 800; color: var(--ink); display: block; }
.ps-meta span { font-size: .68rem; font-weight: 700; color: var(--ink-faint); }
.ps-boop { font-size: .7rem; font-weight: 800; color: #fff; background: var(--sage); padding: 6px 11px; border-radius: 999px; flex: none; }
.ps-done { font-size: .9rem; color: var(--sage); flex: none; }
.ps-tabbar {
  margin-top: auto; height: 56px; background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px); border-top: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: space-around;
  font-size: .62rem; font-weight: 800; color: var(--ink-faint);
}
.ps-tabbar .on { color: var(--coral); }
.ps-tabbar i { display: block; font-size: 1.05rem; margin-bottom: 1px; font-style: normal; }

/* floating chips around the phone */
.chip-float {
  position: absolute; z-index: 3;
  background: #fff; border-radius: 14px;
  padding: 10px 14px; box-shadow: var(--sh-md);
  font-weight: 800; font-size: .82rem;
  display: inline-flex; align-items: center; gap: .5em;
}
.chip-float .em { font-size: 1.05rem; }
.chip-a { top: 8%; left: -6%; color: var(--coral-deep); animation: floaty 6s ease-in-out infinite; }
.chip-b { bottom: 14%; right: -8%; color: var(--sage); animation: floaty 7s ease-in-out .8s infinite; }
.chip-c { bottom: 40%; left: -12%; color: var(--gold); animation: floaty 6.6s ease-in-out .4s infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ============================================================
   WHY / statement band
   ============================================================ */
.band { background: var(--ink); color: var(--paper); }
.band .eyebrow { color: var(--gold); }
.band .eyebrow::before { background: var(--gold); }
.band-statement {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.6vw, 2.85rem);
  line-height: 1.18;
  letter-spacing: -.02em;
  max-width: 20ch;
}
.band-statement em { color: var(--coral); font-style: italic; }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.band p.lead { color: rgba(252,251,248,.72); }

/* ============================================================
   FEATURES
   ============================================================ */
.feat-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; flex-wrap: wrap; margin-bottom: 52px; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 28px 26px 30px;
  transition: transform .3s cubic-bezier(.34,1.4,.64,1), box-shadow .3s, border-color .3s;
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.feat-ico {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.5rem;
  margin-bottom: 18px;
}
.i-coral { background: var(--coral-tint); }
.i-sage  { background: var(--sage-tint); }
.i-gold  { background: var(--gold-tint); }
.i-blue  { background: var(--bluebell-tint); }
.feat h3 { font-size: 1.24rem; margin-bottom: 8px; }
.feat p { color: var(--ink-soft); font-size: .98rem; }
.feat.wide { grid-column: span 1; }

/* ============================================================
   PERSONAS
   ============================================================ */
.personas { background: var(--cream); }
.persona-rail { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 50px; }
.persona {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 26px 22px;
  box-shadow: var(--sh-sm);
  border-top: 4px solid var(--accent, var(--coral));
  transition: transform .3s, box-shadow .3s;
}
.persona:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.persona .avatar {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.4rem;
  background: var(--cream); margin-bottom: 16px;
}
.persona h4 { font-size: 1.12rem; }
.persona .who { font-size: .78rem; font-weight: 800; color: var(--accent, var(--coral-deep)); letter-spacing: .02em; margin: 2px 0 10px; }
.persona p { font-size: .9rem; color: var(--ink-soft); }

/* ============================================================
   PRIVACY band
   ============================================================ */
.privacy-band {
  background:
    radial-gradient(70% 120% at 100% 0%, var(--sage-tint), transparent 60%),
    radial-gradient(80% 120% at 0% 100%, var(--gold-tint), transparent 55%),
    var(--warm-white);
}
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.privacy-points { display: grid; gap: 14px; margin-top: 26px; }
.pp { display: flex; gap: 14px; align-items: flex-start; }
.pp .tick { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: .9rem; box-shadow: var(--sh-sm); }
.pp b { font-weight: 800; }
.pp span { color: var(--ink-soft); }
.privacy-seal {
  position: relative;
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-lg);
  padding: 44px 38px;
  box-shadow: var(--sh-lg);
  text-align: center;
}
.privacy-seal .big { font-family: var(--display); font-size: clamp(2.1rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -.02em; }
.privacy-seal .big em { color: var(--gold); font-style: italic; }
.privacy-seal p { color: rgba(252,251,248,.7); margin-top: 14px; font-size: .96rem; }
.privacy-seal .lock { font-size: 2.2rem; margin-bottom: 12px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--cream); }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; max-width: 880px; margin-inline: auto; }
.plan {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px 34px;
  border: 1.5px solid var(--hairline);
  position: relative;
}
.plan.pro { border-color: var(--coral); box-shadow: var(--sh-md); }
.plan .tag { font-weight: 800; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.plan.pro .tag { color: var(--coral-deep); }
.plan .amt { font-family: var(--display); font-size: 3rem; line-height: 1; margin: 14px 0 4px; letter-spacing: -.02em; }
.plan .amt small { font-family: var(--body); font-size: 1rem; font-weight: 700; color: var(--ink-faint); }
.plan .blurb { color: var(--ink-soft); font-size: .96rem; margin-bottom: 22px; }
.plan ul { display: grid; gap: 11px; }
.plan li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink); }
.plan li::before { content: "🐾"; font-size: .85rem; }
.best {
  position: absolute; top: -14px; right: 28px;
  background: var(--gold); color: var(--ink);
  font-weight: 800; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; box-shadow: var(--sh-sm);
}
.price-note { text-align: center; margin-top: 30px; color: var(--ink-soft); font-weight: 700; }

/* ============================================================
   JOY / Care Trail
   ============================================================ */
.joy { background: var(--ink); color: var(--paper); overflow: clip; }
.joy .eyebrow { color: var(--gold); }
.joy .eyebrow::before { background: var(--gold); }
.joy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.joy p.lead { color: rgba(252,251,248,.72); }
.trail-map {
  position: relative;
  display: flex; justify-content: space-between; gap: 8px;
  padding: 10px 6px;
}
/* dashed Care Trail connecting the landmarks */
.trail-map::before {
  content: ""; position: absolute; top: 38px; left: 8%; right: 8%; height: 0;
  border-top: 3px dashed rgba(255,255,255,.22);
}
.landmark {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  font-weight: 800; font-size: .8rem; color: var(--paper); flex: 1;
}
.landmark small { margin-top: -2px; }
.landmark .node {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.4);
}
.landmark.active .node { background: var(--coral); border-color: var(--coral); box-shadow: var(--sh-coral); }

/* ============================================================
   CTA closer
   ============================================================ */
.closer { background: var(--warm-white); text-align: center; overflow: clip; }
.closer .display { margin: 18px auto 8px; max-width: 14ch; }
.closer .heart-big { font-size: clamp(3rem,8vw,5rem); }
.closer .lead { margin: 0 auto 32px; }
.closer-actions { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(252,251,248,.72); padding-block: 60px 34px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand .word { color: var(--paper); }
.footer-tag { max-width: 30ch; margin-top: 14px; font-size: .94rem; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--body); font-weight: 800; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: rgba(252,251,248,.72); font-weight: 600; font-size: .95rem; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: .85rem; color: rgba(252,251,248,.5); }
.footer-bottom .word-em { font-family: var(--display); font-style: italic; }

/* ============================================================
   LEGAL / SUPPORT article pages
   ============================================================ */
.page-hero { padding: clamp(50px,7vw,90px) 0 clamp(30px,4vw,50px); background: var(--cream); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero .lead { margin-top: 16px; }
.article { padding-block: clamp(48px,7vw,84px); }
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.55rem; margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 8px; font-family: var(--body); font-weight: 800; }
.prose p { color: var(--ink-soft); margin-bottom: 16px; }
.prose ul.bullets { display: grid; gap: 10px; margin: 0 0 18px; }
.prose ul.bullets li { position: relative; padding-left: 26px; color: var(--ink-soft); }
.prose ul.bullets li::before { content: "🐾"; position: absolute; left: 0; font-size: .8rem; top: 2px; }
.prose a { color: var(--coral-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prose .callout {
  background: var(--gold-tint); border-radius: var(--r-md);
  padding: 22px 24px; margin: 24px 0; border-left: 4px solid var(--gold);
}
.prose .callout p:last-child { margin-bottom: 0; }
.prose .callout strong { color: var(--ink); }

/* FAQ */
.faq { display: grid; gap: 14px; max-width: 760px; margin-inline: auto; }
.faq details {
  background: var(--paper); border: 1px solid var(--hairline);
  border-radius: var(--r-md); padding: 4px 24px;
  transition: box-shadow .25s, border-color .25s;
}
.faq details[open] { box-shadow: var(--sh-md); border-color: transparent; }
.faq summary {
  list-style: none; cursor: pointer;
  font-family: var(--display); font-weight: 600; font-size: 1.14rem;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--coral-tint); color: var(--coral-deep); display: grid; place-items: center; font-weight: 900; transition: transform .3s; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .ans { padding: 0 0 22px; color: var(--ink-soft); }
.faq .ans p { margin-bottom: 12px; }
.faq .ans p:last-child { margin-bottom: 0; }

.contact-card {
  max-width: 760px; margin: 40px auto 0;
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-lg); padding: 40px;
  text-align: center; box-shadow: var(--sh-lg);
}
.contact-card h3 { color: var(--paper); font-size: 1.6rem; margin-bottom: 8px; }
.contact-card p { color: rgba(252,251,248,.7); margin-bottom: 22px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Hero load stagger ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero .stagger > * { opacity: 0; animation: rise .8s cubic-bezier(.2,.7,.3,1) forwards; }
.hero .stagger > *:nth-child(1) { animation-delay: .05s; }
.hero .stagger > *:nth-child(2) { animation-delay: .15s; }
.hero .stagger > *:nth-child(3) { animation-delay: .25s; }
.hero .stagger > *:nth-child(4) { animation-delay: .35s; }
.hero .stagger > *:nth-child(5) { animation-delay: .45s; }
.phone-stage { opacity: 0; animation: rise 1s cubic-bezier(.2,.7,.3,1) .35s forwards; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid, .band-grid, .privacy-grid, .joy-grid { grid-template-columns: 1fr; }
  .phone-stage { order: -1; margin-bottom: 12px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .persona-rail { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .band-statement { max-width: none; }
}
@media (max-width: 640px) {
  .nav-links { position: fixed; inset: 74px 0 auto; flex-direction: column; gap: 0; background: var(--warm-white); border-bottom: 1px solid var(--hairline); padding: 8px 0 18px; transform: translateY(-130%); transition: transform .35s cubic-bezier(.2,.7,.3,1); box-shadow: var(--sh-md); }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 13px var(--gutter); width: 100%; }
  .nav-toggle { display: block; }
  .feat-grid { grid-template-columns: 1fr; }
  .persona-rail { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .hero-actions { width: 100%; }
}
