/* Landing-page components. Loaded after style.css (tokens, nav, footer, base
   type live there). Everything here is namespaced to the landing sections and
   .vg-* vignettes so the legal pages can never be affected. */

/* ── Layout & rhythm ── */
html, body { overflow-x: clip; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Ambient art — the app's watercolor feathers, olive branches, and dove,
      draped along section edges behind the content, exactly the Home/Journal/
      Walk-tab idiom. Never interactive, never in the reading column. ── */
/* ── The sky: small feathers drifting down both gutters the whole page,
      behind everything — plus a gentle sway so the air feels alive. ── */
body { position: relative; }
main, footer, body > .wrap { position: relative; z-index: 1; }
.sky {
  position: absolute;
  inset: 0;
  overflow: clip;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  background: url('art/feather-tile.png') repeat;
  /* The offset shifts where feathers land so none sits on the hero paragraph. */
  background-position: -480px -380px;
  background-size: 1000px auto;
  opacity: 0.75;
}
@media (max-width: 900px) {
  /* Narrow screens: smaller, quieter — text runs full-width here. */
  .sky { background-size: 660px auto; opacity: 0.45; }
}

/* One piece per beat, alternating sides down the page so the eye follows a
   gentle S: hero feather (R) → wisp (R) → dove (L) → curl (R) →
   falling feather (R) + star. */
.hero-l, .everything, .how, .closing, .feature-walk, .feature-record { position: relative; }
.hero-l > .container, .everything > .container,
.how > .container, .closing > .container,
.feature-walk > div, .feature-record > div { position: relative; z-index: 1; }
nav { position: relative; z-index: 2; }
.art {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.art-hero-feather { top: -30px; right: -110px; width: clamp(140px, 17vw, 245px); }
.art-record-wisp { top: -60px; right: -70px; width: clamp(180px, 17vw, 250px); transform: rotate(14deg); }
.art-walk-dove { top: -130px; left: -40px; width: clamp(170px, 16vw, 235px); }
.art-how-curl { top: -50px; right: -70px; width: clamp(170px, 16vw, 240px); }
.art-closing-feather { bottom: -40px; right: -60px; width: clamp(200px, 20vw, 290px); }
.art-closing-star { top: 44px; left: calc(50% + 64px); width: 22px; }
@media (prefers-reduced-motion: no-preference) {
  .art-closing-star { animation: art-twinkle 2.6s ease-in-out infinite alternate; }
}
@keyframes art-twinkle {
  from { opacity: 0.25; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@media (max-width: 640px) {
  .art-hero-feather { top: -20px; right: -50px; }
  .art-record-wisp { top: -70px; right: -40px; }
  .art-walk-dove { width: 130px; top: -124px; left: auto; right: 8px; }
  .art-how-curl { top: -80px; right: -46px; }
  .art-closing-feather { bottom: -20px; right: -50px; }
}
@media (prefers-color-scheme: dark) {
  .art { opacity: 0.55; }
  .sky { opacity: 0.35; }
}
.container.narrow { max-width: 680px; }

main section, .hero-l { padding: clamp(72px, 12vh, 140px) 0; }

.section-title {
  font-size: clamp(30px, 4.5vw, 40px);
  text-align: center;
  margin-bottom: clamp(36px, 6vh, 56px);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-cta { color: var(--terracotta) !important; font-weight: 600; }

/* Real phones: the four nav items overflow and wrap into stacked lines.
   Keep brand + CTA, drop the anchor links (the page is one scroll anyway). */
nav { flex-wrap: nowrap; }
.brand, .nav-links a { white-space: nowrap; }
@media (max-width: 640px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ── Hero ── */
.hero-l { padding-top: clamp(40px, 8vh, 96px); text-align: center; }
.hero-inner { display: flex; flex-direction: column; align-items: center; }

.hero-l h1 {
  font-size: clamp(40px, 7.5vw, 68px);
  letter-spacing: -0.02em;
  max-width: 15ch;
  margin: 18px auto 22px;
}

.hero-sub {
  font-size: clamp(18px, 2.4vw, 21px);
  color: var(--text-soft);
  max-width: 34em;
  margin: 0 auto 40px;
}

/* ── Waitlist form ── */
.waitlist { width: 100%; max-width: 520px; margin: 0 auto; }

.waitlist-row { display: flex; gap: 10px; }

.waitlist input[type="email"] {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: var(--card);
  color: var(--text);
  font: 400 16px 'Instrument Sans', sans-serif;
}
.waitlist input[type="email"]::placeholder { color: var(--text-faint); }

.btn-primary {
  min-height: 52px;
  padding: 0 22px;
  border: none;
  border-radius: 16px;
  background: var(--cta-bg);
  color: var(--cta-text);
  font: 600 16px 'Instrument Sans', sans-serif;
  cursor: pointer;
  box-shadow: 0 10px 12px rgba(148, 85, 39, 0.32);
  white-space: nowrap;
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-primary:disabled { opacity: 0.6; cursor: default; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
}

.form-msg { min-height: 1.4em; margin-top: 10px; font-size: 14.5px; color: var(--terracotta); }
.form-msg.is-success { color: var(--text); font-family: 'Newsreader', Georgia, serif; font-size: 17px; }
.form-note { margin-top: 4px; font-size: 14px; color: var(--text-faint); }

@media (max-width: 560px) {
  .waitlist-row { flex-direction: column; }
  .waitlist input[type="email"] { text-align: center; }
}

/* Desktop: hero becomes a two-column split — copy left, phone right —
   so wide screens read as a website, not a scaled-up phone page. */
@media (min-width: 1024px) {
  .hero-l { text-align: left; }
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(48px, 6vw, 96px);
  }
  .hero-copy {
    flex: 1;
    max-width: 560px;
  }
  .hero-l h1 { margin-left: 0; max-width: none; }
  .hero-sub { margin: 0 0 40px; }
  .hero-copy .waitlist { margin: 0; }
  .hero-l .phone { margin: 0; flex-shrink: 0; }
}

/* ── Phone frame ── */
.phone {
  width: min(340px, 100%);
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 44px;
  padding: 30px 24px 34px;
  box-shadow: 0 24px 60px rgba(43, 38, 32, 0.16);
  text-align: left;
}
.hero-l .phone { margin-top: clamp(48px, 8vh, 80px); }

/* ── Vignette shared bits ── */
.vg-eyebrow {
  font: 600 10.5px 'Instrument Sans', sans-serif;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.vg-label {
  font: 600 10.5px 'Instrument Sans', sans-serif;
  letter-spacing: 0.09em;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.vg-ainote {
  font: 400 11.5px/1.45 'Instrument Sans', sans-serif;
  color: var(--text-faint);
  margin-top: 12px;
}
.vg-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  background: var(--cta-bg);
  color: var(--cta-text);
  font: 600 14.5px 'Instrument Sans', sans-serif;
  box-shadow: 0 10px 12px rgba(148, 85, 39, 0.32);
}
.vg-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  color: var(--outline-text, var(--text-soft));
  font: 600 14px 'Instrument Sans', sans-serif;
}
.vg-btn-block { width: 100%; margin-top: 18px; }

/* ── Scripture vignette (hero) — the editor's Faith tab ── */
.vg-verse-card, .vg-prayer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 17px;
  box-shadow: 0 1px 3px rgba(43, 38, 32, 0.04);
}
.vg-prayer-card { margin-top: 12px; }
.vg-scripture .vg-verse {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 21px;
  line-height: 1.42;
  color: var(--text);
  margin-bottom: 12px;
}
.vg-ref {
  font: 600 13px 'Instrument Sans', sans-serif;
  color: var(--terracotta);
}
.vg-prayer {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft, var(--text-soft));
}
.vg-prayed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 13px 15px;
  font: 500 14px 'Instrument Sans', sans-serif;
  color: var(--text-soft);
}
.vg-prayed-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
}
.vg-scripture .vg-btn-block { margin-top: 12px; }

/* Hero staged reveal — plays once on load */
@media (prefers-reduced-motion: no-preference) {
  .vg-scripture .stage-1, .vg-scripture .stage-2,
  .vg-scripture .stage-3, .vg-scripture .stage-4 {
    opacity: 0;
    transform: translateY(8px);
    animation: vg-stage 0.7s ease forwards;
  }
  .vg-scripture .stage-1 { animation-delay: 0.35s; }
  .vg-scripture .stage-2 { animation-delay: 0.85s; }
  .vg-scripture .stage-3 { animation-delay: 1.35s; }
  .vg-scripture .stage-4 { animation-delay: 1.85s; }
}
@keyframes vg-stage { to { opacity: 1; transform: none; } }

/* ── Record vignette — the capture screen, mid-recording ── */
.vg-record { text-align: center; }
.vg-cap-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.vg-cap-round {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vg-cap-round svg { width: 17px; height: 17px; }
.vg-cap-go {
  background: var(--cta-bg);
  border: none;
  color: var(--cta-text);
  box-shadow: 0 8px 10px rgba(148, 85, 39, 0.28);
}
.vg-cap-toggle {
  display: flex;
  gap: 2px;
  background: var(--chip-bg);
  border-radius: 21px;
  padding: 3px;
}
.vg-cap-seg {
  width: 50px; height: 34px;
  border-radius: 17px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vg-cap-seg svg { width: 17px; height: 17px; }
.vg-cap-seg-on { background: var(--cta-bg); color: var(--cta-text); }
.vg-save-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 16px;
  font: 500 15px 'Instrument Sans', sans-serif;
  color: var(--text);
  text-align: left;
}
.vg-switch {
  width: 46px; height: 28px;
  border-radius: 14px;
  background: var(--terracotta);
  position: relative;
  flex-shrink: 0;
}
.vg-switch i {
  position: absolute;
  top: 2px; right: 2px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 1px 3px rgba(43, 38, 32, 0.3);
}
.vg-timer {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 44px;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-top: 34px;
}
.vg-hint { font: 400 13.5px 'Instrument Sans', sans-serif; color: var(--text-soft); margin-top: 20px; }
.vg-wave {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-top: 20px;
}
.vg-wave span {
  width: 3px; height: 34px;
  border-radius: 3px;
  background: #C79A6A;
  transform-origin: bottom;
  transform: scaleY(0.5);
}
.vg-wave span:nth-child(odd) { background: var(--terracotta); }
.vg-wave span:nth-child(1) { transform: scaleY(0.4); }
.vg-wave span:nth-child(2) { transform: scaleY(0.7); }
.vg-wave span:nth-child(3) { transform: scaleY(0.5); }
.vg-wave span:nth-child(4) { transform: scaleY(0.9); }
.vg-wave span:nth-child(5) { transform: scaleY(0.6); }
.vg-wave span:nth-child(6) { transform: scaleY(1); }
.vg-wave span:nth-child(7) { transform: scaleY(0.45); }
.vg-wave span:nth-child(8) { transform: scaleY(0.8); }
.vg-wave span:nth-child(9) { transform: scaleY(0.55); }
.vg-wave span:nth-child(10) { transform: scaleY(0.85); }
.vg-wave span:nth-child(11) { transform: scaleY(0.5); }
.vg-wave span:nth-child(12) { transform: scaleY(0.65); }
@media (prefers-reduced-motion: no-preference) {
  .vg-wave span { animation: vg-bar 1.6s ease-in-out infinite alternate; }
  .vg-wave span:nth-child(2n) { animation-delay: 0.2s; }
  .vg-wave span:nth-child(3n) { animation-delay: 0.45s; }
  .vg-wave span:nth-child(4n) { animation-delay: 0.65s; }
}
@keyframes vg-bar {
  from { transform: scaleY(0.35); }
  to { transform: scaleY(1); }
}
.vg-orb-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--border-strong);
  box-shadow: 0 8px 10px rgba(43, 38, 32, 0.12);
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}
.vg-orb-btn svg { width: 22px; height: 22px; }

/* ── Emotion vignette — the editor's Details tab ── */
.vg-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.vg-tabs span {
  flex: 1;
  text-align: center;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--divider);
  font: 500 14px 'Instrument Sans', sans-serif;
  color: var(--text-soft);
}
.vg-tabs .vg-tab-on {
  border-bottom-color: var(--terracotta);
  color: var(--text);
  font-weight: 600;
}
.vg-sec-title {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
}
.vg-ed-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 15px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(43, 38, 32, 0.04);
}
.vg-ed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 600 14.5px 'Instrument Sans', sans-serif;
  color: var(--text);
  margin-bottom: 10px;
}
.vg-help {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--text-faint);
  font: 600 11px 'Instrument Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.vg-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  border-radius: 15px;
  background: var(--chip-bg);
  border: 1px solid var(--border);
  font: 500 13px 'Instrument Sans', sans-serif;
  color: var(--text);
}
.vg-chip i { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.vg-chip b { font-weight: 400; font-size: 11px; }
.vg-chip-on {
  background: var(--cta-bg);
  border-color: var(--terracotta);
  color: var(--cta-text);
  font-weight: 600;
}
.vg-chip-on i { background: var(--cream); }
.vg-chip-add {
  background: transparent;
  border: 1px dashed var(--border-strong);
  color: var(--terracotta);
  font-weight: 600;
}
.vg-feel-input {
  background: var(--chip-bg);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 11px 13px;
  min-height: 64px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--text-faint);
  text-align: left;
}
.vg-notes-ph {
  min-height: 72px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-faint);
  text-align: left;
}

/* ── Journal vignette ── */
.vg-home-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vg-home-title {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 34px;
  letter-spacing: -0.015em;
  color: var(--text);
}
.vg-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 4px 9px rgba(43, 38, 32, 0.06);
  font: 600 14px 'Instrument Sans', sans-serif;
  color: var(--text);
}
.vg-add-btn b { color: var(--terracotta); font-weight: 600; font-size: 16px; line-height: 1; }
.vg-jr-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  margin: 14px 0 18px;
}
.vg-jr-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--icon-bg);
  border: 1px solid var(--border-strong);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vg-jr-icon svg { width: 19px; height: 19px; }
.vg-jr-chip {
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--chip-bg);
  border: 1px solid var(--border-strong);
  font: 600 13.5px 'Instrument Sans', sans-serif;
  color: var(--terracotta);
  white-space: nowrap;
  flex-shrink: 0;
}
.vg-card-tags {
  font: 600 12.5px 'Instrument Sans', sans-serif;
  color: var(--terracotta);
  margin-top: 10px;
}
.vg-dream-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(43, 38, 32, 0.05);
}
.vg-dream-card + .vg-dream-card { margin-top: 12px; }
.vg-home .vg-dream-card { background: var(--bg); }
.vg-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.vg-card-date {
  font: 600 10.5px 'Instrument Sans', sans-serif;
  letter-spacing: 0.07em;
  color: var(--terracotta);
}
.vg-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--chip-bg);
  font: 600 11px 'Instrument Sans', sans-serif;
  color: var(--terracotta);
  white-space: nowrap;
}
.vg-pill i { width: 7px; height: 7px; border-radius: 50%; }
.vg-card-title {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 4px;
}
.vg-card-excerpt { font: 400 12.5px/1.5 'Instrument Sans', sans-serif; color: var(--text-soft); }
.vg-card-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--divider);
}
.vg-mini-wave { display: flex; align-items: flex-end; gap: 2.5px; height: 16px; }
.vg-mini-wave span { width: 2px; border-radius: 2px; background: var(--wave, #CBB79B); }
.vg-mini-wave span:nth-child(1) { height: 6px; }
.vg-mini-wave span:nth-child(2) { height: 12px; }
.vg-mini-wave span:nth-child(3) { height: 16px; }
.vg-mini-wave span:nth-child(4) { height: 9px; }
.vg-mini-wave span:nth-child(5) { height: 14px; }
.vg-mini-wave span:nth-child(6) { height: 7px; }
.vg-mini-wave span:nth-child(7) { height: 11px; }
.vg-mini-wave span:nth-child(8) { height: 15px; }
.vg-dur { font: 400 12px 'Instrument Sans', sans-serif; color: var(--text-faint); }
.vg-card-ref {
  margin-left: auto;
  font: 600 12px 'Instrument Sans', sans-serif;
  color: var(--terracotta);
}

/* ── Three pillars (Remember / Understand / Pray) ── */
.pillars { padding-top: 0; }
.pillar-grid { display: grid; gap: 18px; }
@media (min-width: 768px) { .pillar-grid { grid-template-columns: 1fr 1fr 1fr; gap: 22px; } }
.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 6px 18px rgba(43, 38, 32, 0.06);
}
.pillar-eyebrow {
  font: 600 11px 'Instrument Sans', sans-serif;
  letter-spacing: 0.14em;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.pillar-card h3 { font-size: 22px; margin-bottom: 10px; }
.pillar-card p { color: var(--text-soft); font-size: 15.5px; line-height: 1.6; }

/* ── Walk with God vignette ── */
.vg-walk-head {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 27px;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 8px 0 4px;
}
.vg-walk-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px 17px;
  margin-top: 12px;
  box-shadow: 0 2px 6px rgba(43, 38, 32, 0.05);
}
.vg-walk-today {
  background: var(--card-warm);
  border-color: rgba(169, 99, 47, 0.25);
  margin-top: 16px;
}
.vg-walk-moment {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 8px;
}
.vg-walk-sub {
  font: 400 13.5px/1.45 'Instrument Sans', sans-serif;
  color: var(--text-soft);
  margin-top: 6px;
}
.vg-walk-card .vg-btn-block { margin-top: 16px; }
.vg-walk-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}
.vg-walk-title svg { width: 16px; height: 16px; color: var(--text-faint); }
.vg-walk-line { font: 500 14px 'Instrument Sans', sans-serif; color: var(--ink-soft, var(--text-soft)); margin-bottom: 5px; }
.vg-walk-answered {
  font: 600 12.5px 'Instrument Sans', sans-serif;
  color: var(--terracotta);
  margin-top: 10px;
}
.vg-continue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--chip-bg);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 13px 15px;
  margin-top: 4px;
  font: 600 14.5px 'Instrument Sans', sans-serif;
  color: var(--text);
}
.vg-continue svg { width: 16px; height: 16px; color: var(--terracotta); }

/* ── Patterns vignette — the Symbols index ── */
.vg-idx-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.vg-idx-title {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.015em;
  color: var(--text);
}
.vg-idx-sub { font: 400 13px 'Instrument Sans', sans-serif; color: var(--text-soft); margin-top: 2px; }
.vg-idx-chips {
  display: flex;
  gap: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
.vg-idx-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--chip-bg);
  border: 1px solid var(--border);
  font: 600 12.5px 'Instrument Sans', sans-serif;
  color: var(--text-soft);
  white-space: nowrap;
  flex-shrink: 0;
}
.vg-idx-chip i { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.vg-idx-chip-on { background: var(--cta-bg); border-color: var(--cta-bg); color: var(--cta-text); }
.vg-idx-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 4px 15px;
  box-shadow: 0 2px 6px rgba(43, 38, 32, 0.05);
}
.vg-sym-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  border-top: 1px solid var(--divider);
}
.vg-sym-row:first-of-type { border-top: none; }
.vg-sym-row i { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.vg-sym-name {
  flex: 1;
  min-width: 0;
  font: 600 15px 'Instrument Sans', sans-serif;
  color: var(--text);
}
.vg-sym-sub {
  display: block;
  font: 400 12px 'Instrument Sans', sans-serif;
  font-style: normal;
  color: var(--text-faint);
  margin-top: 1px;
}
.vg-new {
  display: inline-block;
  vertical-align: 1px;
  background: var(--icon-bg);
  color: var(--terracotta);
  border-radius: 6px;
  padding: 1px 6px;
  font: 600 9px 'Instrument Sans', sans-serif;
  letter-spacing: 0.06em;
  margin-left: 6px;
}
.vg-spark { width: 40px; height: 14px; flex-shrink: 0; }
.vg-sym-row > em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: normal;
  font-size: 18px;
  color: var(--text-soft);
}

/* ── Everything inside (feature grid) ── */
.grid12 { display: grid; gap: 14px; grid-auto-flow: dense; }
@media (min-width: 640px) {
  .grid12 { grid-template-columns: 1fr 1fr; }
  .grid12-wide { grid-column: span 2; }
}
@media (min-width: 1024px) { .grid12 { grid-template-columns: 1fr 1fr 1fr; gap: 18px; } }
.grid12-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 22px;
}
.g12-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--icon-bg);
  color: var(--terracotta);
  margin-bottom: 14px;
}
.g12-icon svg { width: 20px; height: 20px; }
.grid12-item h3 { font-size: 18px; margin-bottom: 6px; }
.grid12-item p { color: var(--text-soft); font-size: 14.5px; line-height: 1.55; }
/* The wide cards break the even rhythm — warm-tinted, roomier, bigger type,
   in the app's featured-card idiom. */
.grid12-wide {
  background: var(--card-warm);
  border-color: rgba(169, 99, 47, 0.25);
  padding: 28px 26px;
}
.grid12-wide .g12-icon { width: 48px; height: 48px; }
.grid12-wide .g12-icon svg { width: 22px; height: 22px; }
.grid12-wide h3 { font-size: 21px; }
.grid12-wide p { font-size: 15.5px; max-width: 44em; }

/* ── Problem ── */
.problem { padding-top: clamp(48px, 8vh, 96px); }
.problem-text {
  font-size: clamp(21px, 3vw, 26px);
  line-height: 1.55;
  text-align: center;
  color: var(--text);
  max-width: 30em;
  margin: 0 auto;
}
.problem-text em { color: var(--terracotta); }

/* ── Features ── */
.feature {
  display: grid;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.feature + .feature { margin-top: clamp(80px, 14vh, 160px); }
.feature-copy h2 {
  font-size: clamp(27px, 3.6vw, 36px);
  text-align: left;
  margin-bottom: 14px;
}
.feature-copy p {
  font-size: 17.5px;
  color: var(--text-soft);
  max-width: 32em;
}
@media (min-width: 768px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature:nth-of-type(even) .feature-copy { order: 2; }
}

/* ── How it works ── */
.steps-l {
  list-style: none;
  padding: 0;
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 5vh, 44px);
}
.steps-l li { display: flex; gap: 20px; align-items: flex-start; }
.step-n {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--icon-bg);
  color: var(--terracotta);
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-l h3 { font-size: 21px; margin-bottom: 4px; }
.steps-l p { color: var(--text-soft); font-size: 16px; }

/* Desktop: the three steps sit side by side */
@media (min-width: 1024px) {
  .how .container.narrow { max-width: 1080px; }
  .steps-l {
    max-width: none;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .steps-l li { flex-direction: column; gap: 16px; }
}

.mid-cta { text-align: center; margin-top: clamp(56px, 9vh, 88px); }
.mid-cta-lead { font-size: 22px; margin-bottom: 20px; }

/* ── Testimonials (hidden until real) ── */
.quotes { display: grid; gap: 18px; }
@media (min-width: 768px) { .quotes { grid-template-columns: 1fr 1fr; } }
.quote-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 28px;
}
.quote-card blockquote { font-size: 19px; margin-bottom: 12px; }
.quote-card figcaption { font-size: 14px; color: var(--text-faint); }
.logo-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
}
.logo-slot {
  width: 120px; height: 44px;
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-faint);
}

/* ── FAQ ── */
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 22px;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 0;
  font: 600 16.5px 'Instrument Sans', sans-serif;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: 'Newsreader', Georgia, serif;
  font-size: 22px;
  color: var(--terracotta);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding-bottom: 20px;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ── Closing ── */
.closing { text-align: center; }
.closing-orb {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 28px;
  background: radial-gradient(circle at 38% 35%, var(--orb-core) 0%, var(--orb-mid) 52%, var(--orb-edge) 100%);
  box-shadow: 0 0 40px rgba(197, 122, 69, 0.45);
}
.closing-line { font-size: clamp(26px, 4vw, 34px); margin-bottom: 26px; }

/* ── Scroll reveal (subtle; no-JS and reduced-motion safe) ── */
@media (prefers-reduced-motion: no-preference) {
  html.js [data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  html.js [data-reveal].is-revealed { opacity: 1; transform: none; }
}

/* ── Dark-mode adjustments ── */
@media (prefers-color-scheme: dark) {
  .phone { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5); }
  .vg-home .vg-dream-card { background: var(--card-warm); }
  .vg-mini-wave span { background: #8A7A5F; }
}
