/* ============================================================
   LAM Companion — lamcompanion.com
   Aesthetic: "the garden letter" — a warm note on cream paper.
   Fraunces (self-hosted, OFL) for display type; the brand's
   own rose / lavender / gold as gentle washes and petal motifs;
   generous air, soft radii, warm plum shadows.
   Calm, warm, quietly joyful. Never clinical, never alarming.
   No pure red anywhere. WCAG AA contrast throughout.
   ============================================================ */

/* ---------- Self-hosted display face ----------
   Fraunces (SIL Open Font License) — variable, latin subset,
   wght 500–600 with optical sizing. Served from this origin only
   (CSP font-src 'self'). Falls back to warm system serifs. */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("assets/fraunces-latin.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  /* Grounds */
  --ground:        #FDF9F7;   /* cream — the app's own background */
  --surface:       #FFFFFF;
  --rose-tint:     #F7EBF0;
  --lavender-tint: #F1EDF6;
  --peach-tint:    #F9EFE1;
  --rose-mist:     #FBF3F6;   /* between ground and rose-tint — soft washes */

  /* Brand (decorative shades shared with the lamb mark) */
  --rose:          #C48BA0;
  --lavender:      #A893B8;
  --peach:         #D4A06A;
  --gold:          #C89B52;   /* warm gold accent — decorative */

  /* Text-safe deep shades (AA on cream, white, and the tints) */
  --rose-deep:     #8F5A74;
  --lavender-deep: #715C88;
  --peach-deep:    #8F5C24;

  /* Ink — warm near-black with a plum undertone */
  --ink:           #372B33;
  --ink-soft:      #6C5A66;
  --ink-faint:     #94838E;   /* large/decorative text only */
  --hairline:      #EEE2E9;

  /* Deep panel (the privacy promise) */
  --plum:          #3A2C35;
  --plum-soft:     #4A3A44;
  --on-plum:       #F7EDF3;
  --on-plum-soft:  #D6C4CF;

  /* Warm shadows — plum undertone, never cold grey */
  --sh-sm: 0 2px 10px rgba(84, 58, 74, .06);
  --sh-md: 0 16px 40px -14px rgba(84, 58, 74, .16);
  --sh-lg: 0 44px 90px -30px rgba(84, 58, 74, .25);

  /* Type */
  --font: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino", Georgia, serif;

  /* Radii — large and soft, like the app's cards */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 40px;

  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 52px);
}

/* Dark mode — warm plum night, same calm */
@media (prefers-color-scheme: dark) {
  :root {
    --ground:        #201A1F;
    --surface:       #2A222A;
    --rose-tint:     #322630;
    --lavender-tint: #2C2533;
    --peach-tint:    #322A22;
    --rose-mist:     #261E24;

    --gold:          #D9B06A;

    --rose-deep:     #D9A6BC;
    --lavender-deep: #BBA8CE;
    --peach-deep:    #E0B183;

    --ink:           #F5EAF0;
    --ink-soft:      #C9B4C2;
    --ink-faint:     #9A8794;
    --hairline:      #3A3039;

    --plum:          #191419;
    --plum-soft:     #2E252D;
    --on-plum:       #F5EAF0;
    --on-plum-soft:  #C9B4C2;

    --sh-sm: 0 2px 10px rgba(0, 0, 0, .35);
    --sh-md: 0 16px 40px -14px rgba(0, 0, 0, .5);
    --sh-lg: 0 44px 90px -30px rgba(0, 0, 0, .6);
  }
}

/* ---------- 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(--font);
  color: var(--ink);
  background: var(--ground);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--rose-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--surface); color: var(--ink); padding: 10px 18px;
  border-radius: var(--r-sm); box-shadow: var(--sh-md);
}
.skip-link:focus { left: 8px; }

:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; border-radius: 4px; }

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

/* ---------- Type scale ---------- */
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; }
.display, h2 {
  font-family: var(--font-display);
  font-weight: 560;
  font-optical-sizing: auto;
  letter-spacing: -0.005em;
  line-height: 1.12;
}
.display { font-size: clamp(2.2rem, 4.8vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose-deep); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; flex: none; width: 9px; height: 9px; border-radius: 50% 50% 50% 2px;
  background: var(--rose); transform: rotate(45deg);
}
.section-intro { max-width: 640px; }
.section-intro p { margin-top: 14px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ground) 86%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.nav.scrolled { border-bottom-color: var(--hairline); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand .mark { width: 36px; height: 36px; border-radius: 22%; box-shadow: var(--sh-sm); }
.brand .word { font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.nav-links a {
  text-decoration: none; color: var(--ink-soft);
  font-weight: 600; font-size: .95rem; padding: 6px 2px;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--rose-tint); color: var(--rose-deep) !important;
  padding: 9px 18px !important; border-radius: 999px;
}
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 10px; margin-right: -10px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; margin: 5px 0;
  background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ground); border-bottom: 1px solid var(--hairline);
    padding: 8px var(--gutter) 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--hairline); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta { margin-top: 10px; text-align: center; border-radius: var(--r-sm); }
  .nav-links.open + .nav-toggle span:nth-child(2) { opacity: 0; }
}

/* ---------- Buttons & badges ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; text-decoration: none;
  border: 0; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary { background: var(--rose-deep); color: #fff; box-shadow: var(--sh-md); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--sh-lg); }
.btn-ghost { background: transparent; color: var(--rose-deep); border: 1.5px solid var(--rose); }
.btn-ghost:hover { background: var(--rose-tint); }

/* "Coming soon to the App Store" badge — swapped for the real App Store
   badge at launch (see the LAUNCH SWAP comment in index.html). */
.comingsoon {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--ground);
  padding: 11px 22px; border-radius: 14px; line-height: 1.25;
}
.comingsoon .apple { font-size: 1.5rem; line-height: 1; }
.comingsoon small { display: block; font-size: .7rem; font-weight: 500; opacity: .85; letter-spacing: .02em; }
.comingsoon strong { font-size: 1.05rem; letter-spacing: .01em; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: var(--ink-soft);
}
.pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 50% 50% 50% 2px;
  background: var(--rose); transform: rotate(45deg);
}
.pill.lav::before { background: var(--lavender); }
.pill.pea::before { background: var(--peach); }

/* ---------- Bloom motif (inline SVG helpers) ---------- */
.bloom-motif { display: block; pointer-events: none; }
.divider-bloom {
  display: flex; justify-content: center; align-items: center; gap: 18px;
  margin: 0 auto;
}
.divider-bloom::before, .divider-bloom::after {
  content: ""; height: 1px; width: min(120px, 20vw);
  background: linear-gradient(to right, transparent, var(--hairline));
}
.divider-bloom::after {
  background: linear-gradient(to left, transparent, var(--hairline));
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(52px, 9vh, 116px) 0 clamp(44px, 7vh, 96px);
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 88% -10%, var(--rose-tint) 0%, transparent 62%),
    radial-gradient(900px 560px at -12% 108%, var(--lavender-tint) 0%, transparent 58%),
    var(--ground);
}
.petal {
  position: absolute; border-radius: 50%; filter: blur(70px);
  opacity: .5; pointer-events: none;
}
.petal-1 { width: 480px; height: 480px; top: -160px; right: -120px; background: var(--rose-tint); }
.petal-2 { width: 420px; height: 420px; bottom: -180px; left: -140px; background: var(--lavender-tint); }
.petal-3 { width: 300px; height: 300px; top: 30%; left: 42%; background: var(--peach-tint); opacity: .4; }
@media (prefers-color-scheme: dark) {
  .petal { opacity: .55; }
}


.hero-grid {
  position: relative; display: grid; gap: clamp(36px, 5vw, 72px);
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-mark { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.hero-mark img { width: 72px; height: 72px; border-radius: 22%; box-shadow: var(--sh-md); }
.hero-mark .name { font-weight: 700; font-size: 1.3rem; }
.hero-mark .from { font-size: .88rem; color: var(--ink-soft); }

.hero-copy .lead { margin-top: 20px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 32px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  list-style: none; padding: 0; margin-top: 30px;
}

/* ---------- Device frame (CSS only — no fake hardware photos) ---------- */
.device {
  position: relative;
  border-radius: 48px;
  background: #241C22;
  padding: 10px;
  box-shadow: var(--sh-lg);
  max-width: 320px;
  margin: 0 auto;
}
.device img { border-radius: 38px; width: 100%; height: auto; display: block; }
.device::after {                       /* soft notch hint */
  content: ""; position: absolute; top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 22px; border-radius: 12px;
  background: #241C22;
}
.device.small { max-width: 260px; }
figure.shot { margin: 0; }
figure.shot figcaption {
  text-align: center; margin-top: 18px;
  font-size: .95rem; color: var(--ink-soft); max-width: 300px;
  margin-left: auto; margin-right: auto;
}

/* ---------- Sections ---------- */
section { padding: clamp(56px, 9vh, 110px) 0; }
section.tight { padding: clamp(40px, 6vh, 72px) 0; }
.band-lavender { background: var(--lavender-tint); }
.band-rose { background: var(--rose-tint); }

/* ---------- A clear path (newly diagnosed) ---------- */
.path-section {
  position: relative;
  background: linear-gradient(to bottom, var(--rose-mist), var(--ground));
  padding-top: clamp(56px, 9vh, 104px);
}
.path-head { max-width: 640px; }
.path-head .softline {
  margin-top: 14px;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  color: var(--ink-soft);
}
.path-steps-wrap {
  position: relative;
  margin-top: clamp(46px, 7vh, 72px);
}
.path-steps {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.5vw, 40px);
  list-style: none; padding: 0; margin: 0;
}
/* the winding dotted garden path leading into the three stones (desktop only) */
.path-trace {
  position: absolute; left: 4%; right: 4%; top: -48px; height: 40px;
  pointer-events: none; color: var(--rose);
  opacity: .55;
}
@media (max-width: 920px) { .path-trace { display: none; } }

.path-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: 30px 28px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.path-step:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.stone {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.stone .num {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
  background: var(--rose-tint); color: var(--rose-deep);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--rose) 40%, transparent);
}
.path-step:nth-child(2) .stone .num { background: var(--lavender-tint); color: var(--lavender-deep); box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--lavender) 40%, transparent); }
.path-step:nth-child(3) .stone .num { background: var(--peach-tint); color: var(--peach-deep); box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--peach) 40%, transparent); }
.stone .bloom-motif { width: 22px; height: 22px; opacity: .9; }
.path-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.path-step p { color: var(--ink-soft); font-size: .97rem; }
@media (max-width: 920px) {
  .path-steps { grid-template-columns: 1fr; max-width: 560px; }
  /* on one column, a soft dotted stem joins the stones */
  .path-step + .path-step::before {
    content: ""; position: absolute; top: -23px; left: 50px;
    height: 22px; border-left: 2px dotted var(--rose);
    opacity: .55;
  }
}
.path-note {
  margin-top: clamp(30px, 5vh, 44px);
  max-width: 640px;
  padding: 22px 26px;
  background: color-mix(in srgb, var(--lavender-tint) 65%, var(--ground));
  border-left: 3px solid var(--lavender);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--ink-soft);
}
.path-note strong { color: var(--ink); }

/* Why it exists */
.why-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px); align-items: start;
}
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } }
.why-copy p + p { margin-top: 16px; }
.why-copy .accent { color: var(--rose-deep); font-weight: 600; }

.term-card {
  background: var(--surface); border-radius: var(--r-lg);
  box-shadow: var(--sh-md); padding: 28px 30px;
  border: 1px solid var(--hairline);
}
.term-card dt { font-weight: 700; margin-top: 18px; }
.term-card dt:first-child { margin-top: 0; }
.term-card dd { margin: 4px 0 0; color: var(--ink-soft); font-size: .97rem; }

/* Feature cards */
.feature-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(32px, 5vh, 56px);
}
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  position: relative;
  background: var(--surface); border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  padding: 28px; box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.feature::after {                  /* a petal-coloured thread along the top */
  content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(to right, var(--rose), var(--lavender), var(--peach));
  opacity: 0; transition: opacity .25s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.feature:hover::after { opacity: .75; }
.feature h3 { margin: 18px 0 8px; }
.feature p { color: var(--ink-soft); font-size: .97rem; }
.f-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.f-icon svg { width: 26px; height: 26px; }
.f-rose     { background: var(--rose-tint);     color: var(--rose-deep); }
.f-lavender { background: var(--lavender-tint); color: var(--lavender-deep); }
.f-peach    { background: var(--peach-tint);    color: var(--peach-deep); }

/* "…and the small things" */
.smalls {
  margin-top: clamp(34px, 5vh, 52px);
  background: color-mix(in srgb, var(--peach-tint) 55%, var(--ground));
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
}
.smalls h3 {
  font-family: var(--font-display); font-weight: 560; font-size: 1.35rem;
  margin-bottom: 18px;
}
.smalls-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 34px; list-style: none; padding: 0;
}
@media (max-width: 720px) { .smalls-grid { grid-template-columns: 1fr; } }
.smalls-grid li {
  display: flex; gap: 12px; align-items: baseline;
  color: var(--ink-soft); font-size: .97rem;
}
.smalls-grid li::before {
  content: ""; flex: none; width: 8px; height: 8px; align-self: center;
  border-radius: 50% 50% 50% 2px; transform: rotate(45deg);
  background: var(--peach);
}
.smalls-grid li:nth-child(3n+2)::before { background: var(--rose); }
.smalls-grid li:nth-child(3n)::before { background: var(--lavender); }
.smalls-grid li strong { color: var(--ink); font-weight: 650; }

/* Screens strip */
.screens-strip {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px); margin-top: clamp(36px, 6vh, 64px);
  align-items: start;
}
@media (max-width: 860px) {
  .screens-strip { grid-template-columns: 1fr; gap: 44px; }
}

/* ---------- The garden (gentle joy) ---------- */
.garden-band {
  background:
    radial-gradient(760px 420px at 12% 0%, color-mix(in srgb, var(--peach-tint) 60%, transparent) 0%, transparent 60%),
    var(--rose-tint);
  overflow: hidden; position: relative;
}
.garden-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(36px, 5vw, 80px); align-items: center;
}
@media (max-width: 900px) { .garden-grid { grid-template-columns: 1fr; } }
.garden-copy p + p { margin-top: 16px; }
.garden-copy .lead { margin-top: 14px; }
.garden-flowers {
  display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap;
  list-style: none; padding: 0;
}
.garden-flowers li {
  display: inline-flex; align-items: center; gap: 8px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  border: 1px solid color-mix(in srgb, var(--rose) 26%, transparent);
  border-radius: 999px; padding: 7px 15px;
  font-size: .89rem; font-weight: 600; color: var(--ink-soft);
}
.garden-flowers .fl { font-size: 1.05rem; line-height: 1; }

/* Situations */
.situations {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px; margin-top: clamp(32px, 5vh, 56px);
}
@media (max-width: 900px) { .situations { grid-template-columns: 1fr; } }
.situation {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--sh-sm); border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 10px;
}
.situation .when {
  font-size: .82rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--lavender-deep);
}
.situation p { color: var(--ink-soft); font-size: .97rem; }

/* Privacy promise — a deep, quiet panel */
.privacy-panel {
  background:
    radial-gradient(680px 420px at 90% -20%, color-mix(in srgb, var(--plum-soft) 65%, transparent) 0%, transparent 62%),
    var(--plum);
  color: var(--on-plum);
  border-radius: var(--r-xl); padding: clamp(36px, 6vw, 72px);
  box-shadow: var(--sh-lg);
}
.privacy-panel .eyebrow { color: var(--rose); }
.privacy-panel .eyebrow::before { background: var(--rose); }
.privacy-panel h2 { color: var(--on-plum); }
.privacy-panel .lead { color: var(--on-plum-soft); }
.privacy-pillars {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px; margin-top: clamp(30px, 5vh, 48px);
}
@media (max-width: 940px) { .privacy-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .privacy-pillars { grid-template-columns: 1fr; } }
.pillar { border-top: 2px solid var(--plum-soft); padding-top: 18px; }
.pillar h3 { font-size: 1.02rem; color: var(--on-plum); }
.pillar p { margin-top: 6px; font-size: .93rem; color: var(--on-plum-soft); }
.privacy-panel .more { margin-top: 34px; }
.privacy-panel .more a { color: #EFB9D2; font-weight: 600; }

/* Free for everyone */
.free-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.free-inner .bigline {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.22;
}
.free-inner p { margin-top: 18px; color: var(--ink-soft); }
.free-points {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 30px; margin-top: 26px; padding: 0; list-style: none;
}

/* Closing CTA */
.closing { text-align: center; }
.closing .hero-actions { justify-content: center; }
.closing .divider-bloom { margin-bottom: clamp(30px, 5vh, 44px); }

/* ---------- Article pages (privacy / terms / support) ---------- */
.page-hero {
  padding: clamp(44px, 8vh, 90px) 0 clamp(24px, 4vh, 44px);
  background:
    radial-gradient(900px 480px at 92% -30%, var(--rose-tint) 0%, transparent 60%),
    var(--ground);
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 560;
  font-optical-sizing: auto; letter-spacing: -0.005em; line-height: 1.12;
  font-size: clamp(1.9rem, 4vw, 2.9rem); max-width: 720px;
}
.page-hero .lead { margin-top: 16px; max-width: 620px; }

.article { padding: 12px 0 clamp(64px, 10vh, 120px); }
.prose { max-width: 720px; }
.prose h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.prose p { margin: 12px 0; color: var(--ink-soft); }
.prose p strong, .prose li strong { color: var(--ink); }
.prose .dateline { font-weight: 700; color: var(--ink); }
.bullets { padding-left: 22px; color: var(--ink-soft); }
.bullets li { margin: 8px 0; }

.callout {
  background: var(--rose-tint); border-radius: var(--r-md);
  padding: 22px 26px; margin: 22px 0;
}
.callout p { color: var(--ink); margin: 0; }

.disclaimer-card {
  border: 1.5px solid var(--rose); border-radius: var(--r-md);
  padding: 22px 26px; margin: 26px 0;
}
.disclaimer-card p { margin: 0; color: var(--ink-soft); }
.disclaimer-card p strong { color: var(--ink); }

/* FAQ */
.faq { max-width: 760px; }
.faq details {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--r-md); margin-bottom: 14px;
  box-shadow: var(--sh-sm); overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; font-weight: 700; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .plus { color: var(--rose-deep); font-weight: 700; transition: transform .25s ease; }
.faq details[open] .plus { transform: rotate(45deg); }
.faq .ans { padding: 0 24px 22px; }
.faq .ans p { color: var(--ink-soft); margin: 0 0 10px; }
.faq .ans p:last-child { margin-bottom: 0; }

.contact-card {
  margin-top: 44px; max-width: 760px; text-align: center;
  background: var(--lavender-tint); border-radius: var(--r-lg);
  padding: clamp(30px, 5vw, 48px);
}
.contact-card h3 { font-size: 1.3rem; }
.contact-card p { color: var(--ink-soft); margin: 10px 0 22px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--hairline); padding: clamp(44px, 7vh, 72px) 0 40px; }
.footer-top {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 5vw, 64px);
}
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr; } }
.footer-tag { color: var(--ink-soft); font-size: .95rem; margin-top: 14px; max-width: 340px; }
.footer-cols { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 64px); }
.footer-col { min-width: 150px; }
.footer-col h4 {
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 12px; font-weight: 700;
}
.footer-col a {
  display: block; color: var(--ink-soft); text-decoration: none;
  padding: 5px 0; font-size: .95rem;
}
.footer-col a:hover { color: var(--rose-deep); }
.footer-col .resource-note { font-size: .82rem; color: var(--ink-faint); margin-top: 8px; max-width: 240px; }

.footer-disclaimer {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--hairline);
  font-size: .88rem; color: var(--ink-soft); max-width: 780px;
}
.footer-bottom {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: space-between; font-size: .88rem; color: var(--ink-faint);
}

/* ---------- Scroll-in (JS adds .anim-init only when motion is allowed;
   without JS or with reduced motion everything is simply visible) ---------- */
.anim-init { opacity: 0; transform: translateY(14px); }
.anim-in {
  opacity: 1; transform: none;
  transition: opacity .45s ease-out, transform .45s ease-out;
}

/* The experienced lane — a compact companion to the three stones */
.path-lane {
  margin-top: clamp(34px, 5vh, 52px);
  display: grid; grid-template-columns: minmax(200px, 260px) 1fr;
  gap: clamp(20px, 3vw, 44px); align-items: start;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--peach);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: 26px 30px;
}
.path-lane h3 { font-size: 1.15rem; margin-bottom: 8px; }
.path-lane .lane-head p { color: var(--ink-soft); font-size: .97rem; }
.lane-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.lane-points li {
  color: var(--ink-soft); font-size: .97rem;
  padding-left: 18px; position: relative;
}
.lane-points li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--peach);
}
.lane-points strong { color: var(--ink); }
@media (max-width: 820px) { .path-lane { grid-template-columns: 1fr; padding: 24px 22px; } }
