/* ═══════════════════════════════════════════════════════════════════════════
   Prayfully — site styles
   ───────────────────────────────────────────────────────────────────────────
   One stylesheet shared by every page. Sanctuary palette as primary; Vesper
   used as accent sections via [data-vesper] on a wrapper.
   Fully responsive: 1280px container max, mobile breakpoint 760px.
   ═══════════════════════════════════════════════════════════════════════════ */

/* tokens (mirror PrayfullyBrand.handoff.js) */
:root {
  /* sanctuary */
  --bg:          #F6F1E6;
  --bg-soft:     #EFE8D9;
  --surface:     #FBF7EE;
  --surface-alt: #F1E9D8;
  --line:        #E2D7C0;
  --ink:         #1F1A14;
  --ink-soft:    #4A433C;
  --muted:       #8C7F66;
  --subtle:      #BDB19A;
  --gold:        #B88A3C;
  --gold-soft:   #F1E2BE;

  /* vesper (used inside [data-vesper] sections) */
  --v-bg:          #141C2A;
  --v-bg-soft:     #0F1724;
  --v-surface:     #1B2433;
  --v-line:        #2A3547;
  --v-ink:         #F5EFE4;
  --v-ink-soft:    #C8BFB4;
  --v-muted:       #8B95A7;
  --v-gold:        #E6C879;

  /* type */
  --serif: 'Libre Caslon Text', Georgia, serif;
  --ui:    'Inter Tight', system-ui, -apple-system, sans-serif;

  /* metrics */
  --container: 1200px;
  --gutter: 28px;
  --radius-card: 22px;
  --radius-soft: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ui);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ─── container ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── nav ───────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 230, 0.85);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 28px;
}
.site-nav__logo {
  display: inline-flex;
  align-items: flex-start;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.8px;
  line-height: 1;
  color: var(--ink);
}
.site-nav__logo .mark {
  display: inline-block;
  margin-left: -8px;
  transform: translateY(-6px) rotate(-18deg);
  transform-origin: left top;
  line-height: 0;
}
.site-nav__links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  align-items: center;
}
.site-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.1px;
  transition: color 150ms;
}
.site-nav__links a:hover, .site-nav__links a[aria-current="page"] { color: var(--ink); }
.site-nav__links a[aria-current="page"] { font-weight: 600; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 600; letter-spacing: -0.1px;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

.nav-toggle {
  display: none;
  background: none; border: none; padding: 6px; cursor: pointer;
  margin-left: auto; color: var(--ink);
}

@media (max-width: 760px) {
  .site-nav__links {
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    gap: 14px;
    margin-left: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 200ms;
  }
  .site-nav__links.open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .nav-toggle { display: inline-flex; }
  .nav-cta { align-self: flex-start; }
}

/* ─── footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 64px 0 36px;
  margin-top: 96px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.site-footer__col h4 {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 14px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { font-size: 14px; color: var(--ink-soft); }
.site-footer__col a:hover { color: var(--gold); }
.site-footer__brand p {
  font-size: 14px; color: var(--muted); max-width: 320px; line-height: 1.6;
  margin: 14px 0 0;
}
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 36px; margin-top: 48px;
  border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--muted);
  flex-wrap: wrap; gap: 14px;
}
@media (max-width: 760px) {
  .site-footer { padding-top: 48px; margin-top: 64px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer__brand { grid-column: 1 / -1; }
}

/* ─── typography ────────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.h-display {
  font-family: var(--ui);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -2.2px;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.h-display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -1.8px;
}
.h-section {
  font-family: var(--ui);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.4px;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.h-section em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
}
.h-card {
  font-family: var(--ui); font-weight: 600;
  font-size: 22px; letter-spacing: -0.6px; line-height: 1.2;
  color: var(--ink); margin: 0;
}
.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 18px 0 0;
}
.body { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }
.muted { color: var(--muted); }

/* ─── buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 14.5px; letter-spacing: -0.1px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 150ms;
}
.btn--ink     { background: var(--ink); color: var(--bg); }
.btn--ink:hover { background: var(--gold); }
.btn--ghost   { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }

/* ─── App Store / Play Store badges ─────────────────────────────────────── */
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 14px;
  border-radius: 14px;
  background: var(--ink); color: var(--bg);
  border: 1px solid var(--ink);
  transition: all 180ms;
}
.store-badge:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.store-badge__small { font-size: 10px; opacity: 0.78; letter-spacing: 0.2px; }
.store-badge__big   { font-size: 17px; font-weight: 600; letter-spacing: -0.2px; line-height: 1; margin-top: 2px; }
.store-badge svg { flex: 0 0 auto; }
.store-badge--soon {
  background: transparent; color: var(--ink-soft); border: 1px dashed var(--subtle);
}
.store-badge--soon:hover { background: var(--surface-alt); color: var(--ink); border-color: var(--muted); }
.store-badge--soon .store-badge__small { color: var(--muted); }
.store-badge--soon .store-badge__big   { color: var(--ink-soft); }

/* ─── sections ──────────────────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section--tight { padding: 64px 0; }
.section--xl    { padding: 128px 0; }

[data-vesper] {
  background: var(--v-bg);
  color: var(--v-ink);
}
[data-vesper] .h-section,
[data-vesper] .h-display,
[data-vesper] .h-card { color: var(--v-ink); }
[data-vesper] .lead, [data-vesper] .body { color: var(--v-ink-soft); }
[data-vesper] .muted { color: var(--v-muted); }
[data-vesper] .eyebrow { color: var(--v-gold); }
[data-vesper] .eyebrow::before { background: var(--v-gold); }
[data-vesper] .btn--ink { background: var(--v-gold); color: var(--v-bg); }
[data-vesper] .btn--ghost { color: var(--v-ink); border-color: var(--v-line); }

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .section--xl { padding: 80px 0; }
}

/* ─── hero ──────────────────────────────────────────────────────────────── */
.hero {
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__cta {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.hero__sub {
  font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px;
}
.hero__sub-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero__phone-wrap {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero__phone-wrap::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,138,60,0.18), rgba(184,138,60,0) 65%);
  z-index: 0;
}
.hero__phone {
  position: relative; z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(20,15,5,0.16));
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__cta { align-items: center; }
  .eyebrow { justify-content: center; }
  .lead { margin-inline: auto; }
  .hero__phone-wrap::before { width: 360px; height: 360px; }
}

/* ─── feature cards ─────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
}
.feature-card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 6px;
}
.feature-card h3 { margin: 0; font-size: 19px; font-weight: 600; letter-spacing: -0.4px; color: var(--ink); }
.feature-card p { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
[data-vesper] .feature-card { background: var(--v-surface); border-color: var(--v-line); }
[data-vesper] .feature-card__icon { background: rgba(230,200,121,0.15); color: var(--v-gold); }
[data-vesper] .feature-card p { color: var(--v-ink-soft); }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ─── two-column showcase ───────────────────────────────────────────────── */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.showcase--reverse { grid-template-columns: 1.15fr 1fr; }
.showcase--reverse .showcase__art { order: -1; }
.showcase__art {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.showcase__art .glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle at center, rgba(184,138,60,0.14), transparent 65%);
  z-index: 0;
}
.showcase__art > * { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .showcase, .showcase--reverse { grid-template-columns: 1fr; gap: 48px; }
  .showcase--reverse .showcase__art { order: 0; }
}

/* ─── verse card preview ────────────────────────────────────────────────── */
.verse-card-pv {
  width: 320px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(20,15,5,0.14);
  background: #F6F1E6;
  position: relative;
  display: flex; flex-direction: column;
  padding: 36px 32px;
  font-family: var(--ui);
  aspect-ratio: 9 / 16;
}
.verse-card-pv .vtop {
  display: flex; align-items: center; gap: 10px;
  font-size: 9.5px; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.verse-card-pv .vtop .rule { width: 28px; height: 1px; background: var(--line); }
.verse-card-pv .verse {
  font-family: var(--serif); font-size: 21px; line-height: 1.4;
  color: var(--ink); margin: auto 0;
  text-wrap: balance;
}
.verse-card-pv .verse .q { color: var(--gold); font-style: italic; font-weight: 700; }
.verse-card-pv .ref {
  font-size: 10px; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-top: 18px;
}
.verse-card-pv .ref .kjv { color: var(--muted); margin-left: 6px; }

/* ─── streak / flame demo ───────────────────────────────────────────────── */
.flame-demo {
  width: 320px; height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(230,200,121,0.45) 0%, rgba(184,138,60,0.18) 35%, rgba(20,28,42,0) 65%),
    radial-gradient(circle at center, var(--v-bg-soft), var(--v-bg));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--v-ink);
  font-family: var(--ui);
}
.flame-demo .day-num {
  font-family: var(--serif);
  font-size: 110px; line-height: 1;
  font-weight: 400;
  font-style: italic;
  color: var(--v-gold);
  letter-spacing: -3px;
}
.flame-demo .day-label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--v-ink); margin-top: 12px; opacity: 0.85; font-weight: 600; }
.flame-demo .day-sub   { font-size: 13px; color: var(--v-muted); margin-top: 6px; }

/* ─── community avatars ─────────────────────────────────────────────────── */
.community-orb {
  position: relative; width: 320px; height: 320px;
}
.community-orb__center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(20,15,5,0.1);
}
.community-orb__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed var(--line);
}
.community-orb__avatar {
  position: absolute;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; color: var(--ink-soft);
  font-size: 21px;
  box-shadow: 0 6px 18px rgba(20,15,5,0.08);
}

/* ─── testimonial / quote ───────────────────────────────────────────────── */
.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px;
  display: flex; flex-direction: column; gap: 18px;
}
.quote-card__text {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
}
.quote-card__attr {
  font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 10px;
}
.quote-card__avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface-alt); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-soft);
}
@media (max-width: 900px) { .quote-row { grid-template-columns: 1fr; } }

/* ─── faq ───────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}
.faq-item__q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 17px; font-weight: 500; color: var(--ink); letter-spacing: -0.2px;
}
.faq-item__a {
  margin-top: 12px;
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; max-width: 64ch;
  display: none;
}
.faq-item.open .faq-item__a { display: block; }
.faq-item__chev {
  width: 22px; height: 22px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  transition: transform 200ms;
}
.faq-item.open .faq-item__chev { transform: rotate(45deg); }

/* ─── divider ──────────────────────────────────────────────────────────── */
.rule { height: 1px; background: var(--line); margin: 0; border: 0; }

/* ─── final CTA ─────────────────────────────────────────────────────────── */
.final-cta {
  padding: 96px 0;
  text-align: center;
}
.final-cta .h-section { margin: 0 auto; max-width: 16ch; }
.final-cta .lead { margin: 22px auto 0; }
.final-cta .store-row { justify-content: center; margin-top: 36px; }

/* ─── inline phone illustration ─────────────────────────────────────────── */
.phone-mock {
  width: 340px;
  border-radius: 48px;
  background: #1a1a1a;
  padding: 8px;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.04);
}
.phone-mock__screen {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 393 / 800;
}
.phone-mock__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px; border-radius: 18px; background: #000; z-index: 5;
}

/* ─── doc / legal pages ─────────────────────────────────────────────────── */
.doc {
  max-width: 720px; margin: 0 auto;
  padding: 80px 0 0;
}
.doc h1 { font-size: clamp(32px,4vw,48px); margin: 0 0 8px; letter-spacing: -1.4px; font-weight: 500; }
.doc .doc__date { color: var(--muted); font-size: 13px; margin-bottom: 36px; }
.doc h2 {
  font-size: 22px; font-weight: 600; margin: 48px 0 12px; letter-spacing: -0.4px;
  scroll-margin-top: 80px;
}
.doc h3 { font-size: 16px; font-weight: 600; margin: 28px 0 8px; }
.doc p, .doc li { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); }
.doc ul { padding-left: 22px; }
.doc a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* ─── pricing ───────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px;
}
.price-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.price-card--featured { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.price-card--featured h3, .price-card--featured .price-amt { color: var(--bg); }
.price-card--featured .price-card__feat { color: rgba(246,241,230,0.85); }
.price-card--featured .price-card__feat svg path { stroke: var(--gold); }
.price-card__badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  background: var(--gold); color: var(--ink); padding: 5px 10px; border-radius: 999px;
  font-weight: 600;
}
.price-card h3 { margin: 0; font-size: 16px; letter-spacing: 0.2px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.price-amt { font-family: var(--ui); font-weight: 500; font-size: 48px; letter-spacing: -2px; color: var(--ink); line-height: 1; }
.price-amt small { font-size: 14px; color: var(--muted); font-weight: 500; letter-spacing: 0; margin-left: 4px; }
.price-card__feat { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.price-card__feat li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); list-style: none; }
.price-card__feat ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ─── pricing single (one-tier) ─────────────────────────────────────────── */
.pricing-single { display: flex; justify-content: center; margin-top: 48px; }
.price-card--single {
  width: 100%; max-width: 540px; padding: 44px 40px 36px;
  display: flex; flex-direction: column; gap: 22px;
  box-shadow: 0 30px 60px -30px rgba(31,26,20,0.45);
}
.price-card--single .price-card__badge {
  position: static; align-self: flex-start;
  background: rgba(184,138,60,0.18); color: var(--v-gold);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 4px;
}
.price-toggle {
  display: inline-flex; align-self: flex-start;
  background: rgba(246,241,230,0.06); border: 1px solid rgba(246,241,230,0.12);
  border-radius: 999px; padding: 4px; gap: 4px;
  font-family: var(--ui); font-size: 13px;
}
.price-toggle__opt {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 0; color: rgba(246,241,230,0.7);
  font: inherit; padding: 8px 18px; border-radius: 999px;
  cursor: pointer; transition: all .18s ease;
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.2px;
}
.price-toggle__opt:hover { color: var(--bg); }
.price-toggle__opt.is-active {
  background: var(--bg); color: var(--ink);
  font-weight: 600;
}
.price-toggle__save {
  font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  background: rgba(184,138,60,0.16); padding: 3px 7px; border-radius: 999px;
}
.price-toggle__opt.is-active .price-toggle__save {
  background: rgba(184,138,60,0.18);
}
.price-amt-wrap { display: flex; flex-direction: column; gap: 6px; }
.price-card--single .price-amt {
  font-size: 64px; letter-spacing: -2.5px; color: var(--bg);
  font-feature-settings: "tnum" 1;
}
.price-card--single .price-amt small { font-size: 16px; }
.price-sub {
  font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(246,241,230,0.55); font-weight: 500;
}
.store-badge--on-dark {
  background: var(--bg); color: var(--ink); border-color: var(--bg);
}
.store-badge--on-dark:hover { background: #fff; }

@media (max-width: 540px) {
  .price-card--single { padding: 32px 24px 28px; }
  .price-card--single .price-amt { font-size: 52px; }
}

/* ─── plans grid (verses & plans) ───────────────────────────────────────── */
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 48px;
}
.plan-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
  background-image: linear-gradient(160deg, var(--surface) 0%, var(--surface-alt) 100%);
}
.plan-card__cover {
  height: 96px; border-radius: 12px;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold) 200%);
  display: flex; align-items: center; justify-content: center;
}
.plan-card__cover.cover-vesper { background: linear-gradient(160deg, #1a2238, #3a2832); }
.plan-card__cover.cover-cathedral { background: linear-gradient(160deg, #E9ECF2, #cbd1df); }
.plan-card__cover.cover-desert { background: linear-gradient(160deg, #F3E9D7, #B4542A 220%); }
.plan-card__cover.cover-radiance { background: radial-gradient(circle at 50% 0%, #F1E2BE, #B88A3C 120%); }
.plan-card h3 { margin: 0; font-size: 17px; font-weight: 600; letter-spacing: -0.3px; }
.plan-card p { margin: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.plan-card__meta { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: auto; }
@media (max-width: 900px) { .plans-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .plans-grid { grid-template-columns: 1fr; } }

/* ─── about story ───────────────────────────────────────────────────────── */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
@media (max-width: 760px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ─── values ────────────────────────────────────────────────────────────── */
.values-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.values-list li { padding: 20px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 56px 1fr; gap: 20px; }
.values-list li:last-child { border-bottom: 0; }
.values-list strong {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 22px; color: var(--gold); line-height: 1;
}
.values-list h4 { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.values-list p { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* ─── support categories ────────────────────────────────────────────────── */
.support-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px;
}
@media (max-width: 900px) { .support-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .support-grid { grid-template-columns: 1fr; } }

/* ─── breath mark animation ─────────────────────────────────────────────── */
@keyframes breathe {
  0%, 100% { transform: scale(0.96); }
  50%      { transform: scale(1.04); }
}
@keyframes ember {
  0%, 100% { opacity: 0.85; filter: drop-shadow(0 0 4px rgba(184,138,60,0.6)); }
  50%      { opacity: 1;    filter: drop-shadow(0 0 14px rgba(184,138,60,0.9)); }
}
.breath-anim { animation: breathe 4.6s ease-in-out infinite; transform-origin: center; }
.breath-anim .ember { animation: ember 4.6s ease-in-out infinite; transform-origin: 34px 100px; }

/* ─── notification micro-mock (in hero phone) ───────────────────────────── */
.lock-mock {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 70% 12%, rgba(255,235,200,0.5), transparent 55%),
    linear-gradient(170deg, #ddd2bd 0%, #e9ddc5 25%, #f0d9b8 55%, #d9b89a 85%, #b4977a 100%);
  position: relative;
  color: #fff;
  font-family: -apple-system, system-ui, sans-serif;
  padding: 64px 18px 30px;
  display: flex; flex-direction: column;
}
.lock-mock__time { text-align: center; font-size: 84px; font-weight: 300; letter-spacing: -2px; line-height: 1; }
.lock-mock__date { text-align: center; font-size: 18px; font-weight: 500; opacity: 0.92; margin-bottom: 6px; }
.lock-mock__notif {
  margin-top: auto; margin-bottom: 90px;
  background: rgba(255,255,255,0.78);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 10px 13px 12px;
  color: #0f0f12;
  display: flex; flex-direction: column; gap: 2px;
}
.lock-mock__notif-head {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: 0.35px;
  color: rgba(60,60,67,0.65); font-weight: 500;
}
.lock-mock__notif-head .now { margin-left: auto; }
.lock-mock__notif-icon {
  width: 18px; height: 18px; border-radius: 4px; background: #F1E9D8;
  display: inline-flex; align-items: center; justify-content: center;
}
.lock-mock__notif-title { font-size: 13px; font-weight: 600; }
.lock-mock__notif-body  {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; line-height: 1.32; color: rgba(15,15,18,0.88);
}

/* ─── content reveal on scroll ──────────────────────────────────────────── */
.reveal { opacity: 1; transform: none; transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); }
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.in { opacity: 1; transform: none; }

/* ─── small utility ─────────────────────────────────────────────────────── */
.center { text-align: center; }
.gap-sm { gap: 12px; }
.mt-lg { margin-top: 36px; }
.mt-xl { margin-top: 56px; }
.flex-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
