/* Grounded marketing homepage — production */

:root {
  --bg: #F6F1EB;
  --bg-deep: #EFE7DF;
  --paper: #FFFCF9;
  --ink: #1A1714;
  --soft: #5A524C;
  --mute: #8B827A;
  --line: rgba(26, 23, 20, 0.09);
  --blush: #B8958A;
  --shadow-device: 0 36px 70px -26px rgba(40, 28, 20, 0.42), 0 14px 28px -16px rgba(40, 28, 20, 0.24);
  --shadow-soft: 0 10px 28px -14px rgba(40, 28, 20, 0.2);
  --serif: "Newsreader", "Playfair Display", Georgia, serif;
  --sans: "Figtree", system-ui, -apple-system, sans-serif;
  --max: 1080px;
  --ease: cubic-bezier(0.22, 0.7, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 2px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.15;
}
.brand-text .name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.brand-text .lockup {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}
.topbar-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--soft);
  transition: color 0.2s var(--ease);
}
.topbar-cta:hover { color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--blush);
  opacity: 0.5;
  margin: 0 auto 10px;
}

.badge {
  display: inline-flex;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.badge:hover { transform: translateY(-1px); opacity: 0.92; }
.badge img { height: 50px; width: auto; }

/* Device — feature mockups ~17% smaller for vertical density; hero stays large */
.device {
  position: relative;
  width: min(100%, 294px);
  aspect-ratio: 390 / 844;
  border-radius: 40px;
  background: #1a1714;
  padding: 9px;
  box-shadow: var(--shadow-device);
}
.device::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 22px;
  background: #0e0c0b;
  border-radius: 18px;
  z-index: 2;
}
.device-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #f6f1eb;
}
.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
/* Crop local-dev debug banner from Word of Week capture */
.device-screen--crop-banner img {
  object-position: center 18%;
  transform: scale(1.12);
  transform-origin: center 40%;
}
.device--hero { width: min(100%, 392px); border-radius: 46px; padding: 11px; }
.device--hero::before { top: 15px; width: 98px; height: 26px; border-radius: 20px; }
.device--hero .device-screen { border-radius: 36px; }
.device--feature-hero { width: min(100%, 288px); }
.device--sm { width: min(100%, 190px); }
/* Keep greeting + Continue Reading + weekly theme visible */
.device-screen--today img {
  object-fit: cover;
  object-position: top center;
}

.placeholder {
  display: inline-block;
  border: 1px dashed rgba(26, 23, 20, 0.28);
  background: rgba(255, 252, 249, 0.65);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--mute);
}

/* ========== HERO ========== */
.hero {
  padding: 28px 0 32px;
  background: linear-gradient(170deg, var(--bg) 40%, rgba(184, 149, 138, 0.06) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: center;
}
.hero-brand {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 0 0 10px;
}
.hero-brand .wordmark {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-brand .dot {
  color: var(--blush);
  font-size: 14px;
  line-height: 1;
}
.hero-brand .subtitle {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--blush);
  margin: 0 0 10px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  max-width: 11ch;
}
.hero-sub {
  font-size: 17px;
  color: var(--soft);
  max-width: 36ch;
  margin: 0 0 24px;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  color: var(--mute);
  font-weight: 500;
}
.hero-trust b { color: var(--soft); font-weight: 600; }
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% 0% -4%;
  background: radial-gradient(ellipse at center, rgba(184, 149, 138, 0.16), rgba(184, 149, 138, 0.06) 50%, transparent 72%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
.hero-visual .device { position: relative; z-index: 1; }

/* Hero interactive prompt ("Just Ask") */
.hero-prompt { margin-bottom: 18px; }
.hero-prompt-label {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0.01em;
}
.hero-prompt-label span { color: var(--blush); }
.hero-prompt-card {
  display: block;
  width: 100%;
  max-width: 38ch;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  font-family: var(--serif);
  font-size: 16.5px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hero-prompt-card:hover,
.hero-prompt-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -16px rgba(40, 28, 20, 0.26);
  border-color: rgba(184, 149, 138, 0.4);
}
.hero-prompt-card:focus-visible {
  outline: 2px solid rgba(184, 149, 138, 0.7);
  outline-offset: 2px;
}

/* Hero demo device — interactive Guidance crossfade */
.device-screen--demo { position: relative; }
.demo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}
.demo-img.is-active { opacity: 1; }
.demo-img--crop-reflect { transform: scale(1.1); transform-origin: center top; }
.demo-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22%;
  background: linear-gradient(to bottom, rgba(246, 241, 235, 0.92), rgba(246, 241, 235, 0) 100%);
  opacity: 0;
  transition: opacity 0.25s ease-out;
  pointer-events: none;
  z-index: 2;
}
.device-screen--demo.step-1 .demo-fade { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .demo-img { transition: none; }
  .demo-fade { transition: none; }
}

.demo-caption {
  margin: 14px 0 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--soft);
  min-height: 1.4em;
  visibility: hidden;
}
.demo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  visibility: hidden;
}
.demo-reset {
  display: block;
  margin: 10px auto 0;
  background: none;
  border: none;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mute);
  cursor: pointer;
  visibility: hidden;
  transition: color 0.2s var(--ease);
}
.demo-reset:hover { color: var(--soft); }
.hero-visual.is-started .demo-caption,
.hero-visual.is-started .demo-controls,
.hero-visual.is-started .demo-reset {
  visibility: visible;
}
.demo-nav {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--soft);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s var(--ease), border-color 0.2s var(--ease);
}
.demo-nav:hover:not(:disabled) { border-color: rgba(184, 149, 138, 0.5); }
.demo-nav:disabled { opacity: 0.32; cursor: default; }
.demo-dots { display: flex; gap: 6px; }
.demo-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.demo-dot[aria-current="true"] {
  background: var(--blush);
  transform: scale(1.3);
}

/* Scripture-first philosophy */
.philosophy {
  margin-top: 4px;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  max-width: 42ch;
}
.philosophy strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--ink);
}
.philosophy p {
  margin: 0;
  font-size: 14.5px;
  color: var(--soft);
  line-height: 1.5;
}

/* ========== TRUST ========== */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 252, 249, 0.65);
  padding: 16px 0;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  text-align: center;
  font-size: 13.5px;
  color: var(--soft);
  font-weight: 500;
}

/* ========== HOW IT WORKS (compact flow strip) ========== */
.how-it-works {
  padding: 28px 0 12px;
  background: var(--paper);
  text-align: center;
}
.how-it-works-inner {
  max-width: 760px;
  margin: 0 auto;
}
.how-flow {
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.how-arrow {
  color: var(--blush);
  margin: 0 8px;
  font-family: var(--sans);
  font-size: 14px;
}

.exp-cta {
  text-align: center;
  padding: 12px 0 2px;
}

/* ========== REVIEWS ========== */
.reviews {
  padding: 32px 0 24px;
  background: var(--bg);
}
.reviews-head {
  text-align: center;
  margin-bottom: 14px;
}
.reviews-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  margin: 0 auto 6px;
  max-width: 16ch;
  line-height: 1.15;
}
.reviews-rating {
  margin: 0 auto;
  color: var(--soft);
  font-size: 13.5px;
  font-weight: 500;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -16px rgba(40, 28, 20, 0.26);
}
.stars {
  color: var(--blush);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 8px;
}
.review p {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.review .who {
  font-size: 13px;
  font-weight: 600;
  color: var(--mute);
}

/* ========== PRODUCT BEAUTY MOMENT ========== */
.beauty {
  padding: 36px 0 28px;
  background: var(--bg-deep);
  text-align: center;
}
.beauty-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.beauty-device {
  position: relative;
}
.beauty-device::before {
  content: "";
  position: absolute;
  inset: -12% -20% -8%;
  background: radial-gradient(ellipse at center, rgba(184, 149, 138, 0.12), transparent 68%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}
.device--beauty {
  position: relative;
  z-index: 1;
  width: 340px;
  max-width: 80vw;
  border-radius: 46px;
  padding: 11px;
  box-shadow: 0 40px 80px -28px rgba(40, 28, 20, 0.38), 0 18px 36px -18px rgba(40, 28, 20, 0.2);
}
.device--beauty::before {
  top: 15px;
  width: 98px;
  height: 26px;
  border-radius: 20px;
}
.device--beauty .device-screen {
  border-radius: 36px;
}
.beauty-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--soft);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ========== SHOWCASE CONSTELLATION ========== */
.showcase {
  padding: 32px 0 16px;
  background: var(--paper);
}
.showcase-head {
  text-align: center;
  margin-bottom: 14px;
}
.showcase-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 40px);
  letter-spacing: -0.025em;
  margin: 0 auto 6px;
  max-width: 16ch;
  line-height: 1.12;
}
.showcase-head p {
  margin: 0 auto;
  color: var(--soft);
  font-size: 16px;
  max-width: 38ch;
}
.constellation {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  grid-template-areas:
    ". today ."
    "prayer reflection scripture";
  gap: 8px 8px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.feature-card {
  text-align: center;
  padding: 0;
}
.feature-card .device {
  margin: 0 auto 8px;
}
.feature-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.feature-card p {
  margin: 0 auto;
  color: var(--soft);
  font-size: 13.5px;
  max-width: 22ch;
  line-height: 1.4;
}
.feature-card--today {
  grid-area: today;
  padding-bottom: 2px;
}
.feature-card--today h3 { font-size: 26px; }
.feature-card--today p { font-size: 15px; max-width: 30ch; }
.feature-card--prayer { grid-area: prayer; padding-top: 18px; opacity: 0.96; }
.feature-card--reflection { grid-area: reflection; padding-top: 4px; opacity: 0.96; }
.feature-card--scripture { grid-area: scripture; padding-top: 18px; opacity: 0.96; }

/* Proof / reasons to believe */
.proof {
  padding: 14px 0 2px;
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}
.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--soft);
  box-shadow: var(--shadow-soft);
}
.proof-chip i {
  font-style: normal;
  color: var(--blush);
  font-weight: 700;
  font-size: 15px;
}

/* ========== PREMIUM (text overview — no phone) ========== */
.premium {
  padding: 14px 0 12px;
}
.premium-panel {
  background: linear-gradient(160deg, #fffefc 0%, #f8f0ea 55%, #f3e8e1 100%);
  border: 1px solid rgba(184, 149, 138, 0.22);
  border-radius: 24px;
  padding: 28px 40px 24px;
  box-shadow: 0 18px 48px -22px rgba(40, 28, 20, 0.28), 0 6px 18px -10px rgba(40, 28, 20, 0.12);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.premium-panel .eyebrow { margin-bottom: 8px; }
.premium-panel h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 40px);
  letter-spacing: -0.025em;
  margin: 0 auto 10px;
  line-height: 1.1;
  max-width: 14ch;
}
.premium-panel .lead {
  margin: 0 auto 16px;
  color: var(--soft);
  font-size: 16.5px;
  max-width: 40ch;
  line-height: 1.55;
}
.premium-list {
  list-style: none;
  margin: 0 auto 16px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  max-width: 580px;
  text-align: left;
}
.premium-list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.35;
}
.premium-list li::before {
  content: "✓";
  color: var(--blush);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  flex-shrink: 0;
}
.premium-close {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--soft);
  margin: 0 0 12px;
}
.premium-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.premium-rating {
  font-size: 13px;
  font-weight: 600;
  color: var(--soft);
  letter-spacing: 0.01em;
}
.premium-rating .stars {
  color: var(--blush);
  letter-spacing: 1px;
  font-size: 12px;
  margin: 0 6px 0 0;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--soft);
  letter-spacing: 0.01em;
}
.hero-rating .stars {
  color: var(--blush);
  letter-spacing: 1px;
  font-size: 12px;
  margin: 0;
}

/* ========== FOUNDER ========== */
.founder {
  padding: 24px 0 18px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}
.founder-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.founder-photo {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  overflow: hidden;
  border: 0;
  outline: none;
  box-shadow: 0 14px 36px -12px rgba(40, 28, 20, 0.28);
  background: var(--bg-deep);
  flex-shrink: 0;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 37%;
  display: block;
  border: 0;
  border-radius: 0;
}
.founder h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.founder p {
  margin: 0 0 8px;
  color: var(--soft);
  font-size: 16px;
  max-width: 50ch;
  line-height: 1.5;
}
.founder .sig {
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
}

/* ========== FAQ (compact accordion) ========== */
.faq {
  padding: 20px 0 8px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.faq-inner {
  max-width: 640px;
  margin: 0 auto;
}
.faq-inner .eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 6px;
}
.faq-inner h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.025em;
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.15;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s var(--ease);
}
.faq-item[open] {
  box-shadow: 0 12px 30px -14px rgba(40, 28, 20, 0.22);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 22px 12px 0;
  position: relative;
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blush);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 0 12px;
  color: var(--soft);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 54ch;
}

/* ========== STAY CONNECTED (subtle email) ========== */
.stay {
  padding: 8px 0 20px;
}
.stay-panel {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 252, 249, 0.7);
  border: 1px solid var(--line);
}
.stay-panel .eyebrow {
  display: block;
  margin-bottom: 6px;
}
.stay-panel h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 30px);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.15;
}
.stay-lead {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--soft);
}
.stay-copy {
  margin: 0 auto 14px;
  font-size: 14px;
  color: var(--mute);
  line-height: 1.45;
  max-width: 38ch;
}
.stay-form { margin: 0; }
.stay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.stay-input {
  flex: 1 1 180px;
  min-width: 0;
  max-width: 280px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
}
.stay-input:focus {
  border-color: rgba(184, 149, 138, 0.55);
  box-shadow: 0 0 0 3px rgba(184, 149, 138, 0.18);
}
.stay-btn {
  flex: 0 0 auto;
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  background-color: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.stay-btn:hover { opacity: 0.9; }
.stay-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}
.stay-btn:focus-visible {
  outline: 2px solid rgba(184, 149, 138, 0.7);
  outline-offset: 2px;
}
.stay-privacy {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--mute);
  line-height: 1.4;
}
.stay-status {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--soft);
}
.stay-status.is-error { color: #9a4a3c; }
.stay-success-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 4px 0 6px;
  color: var(--ink);
}
.stay-success-copy {
  margin: 0;
  font-size: 14px;
  color: var(--soft);
  line-height: 1.45;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== FINAL ========== */
.final {
  padding: 28px 0 32px;
  text-align: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.final h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 44px);
  letter-spacing: -0.025em;
  margin: 0 auto 8px;
  max-width: 14ch;
  line-height: 1.12;
}
.final p {
  margin: 0 auto 16px;
  color: var(--soft);
  font-size: 17px;
  max-width: 34ch;
}
.final .cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.microtrust {
  font-size: 13px;
  color: var(--mute);
  font-weight: 500;
}
.microtrust b { color: var(--soft); font-weight: 600; }

footer {
  padding: 24px 0 28px;
  text-align: center;
  color: var(--mute);
  font-size: 13px;
  border-top: 1px solid var(--line);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}
.footer-brand .lockup {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.footer-brand .lockup span {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin-left: 8px;
}
.footer-tagline {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--soft);
}
.footer-cta {
  margin-bottom: 16px;
}
.footer-links {
  margin-top: 4px;
}
footer a { margin: 0 8px; color: var(--mute); }
footer a:hover { color: var(--soft); }
.footer-copy {
  margin-top: 12px;
  opacity: 0.8;
}

.sticky { display: none; }

/* ========== MOBILE ========== */
@media (max-width: 720px) {
  body {
    --max: 390px;
  }
  .wrap {
    width: min(100% - 36px, 390px);
  }
  .topbar {
    justify-content: center;
    padding-top: 12px;
  }
  .topbar-cta { display: none; }
  .brand img { width: 40px; height: 40px; }
  .brand-text .name { font-size: 23px; }
  .brand-text .lockup { font-size: 10.5px; }
  .hero-brand { justify-content: center; }
  .hero-brand .wordmark { font-size: 18px; }
  .hero-brand .subtitle { font-size: 11.5px; }
  .hero {
    padding: 12px 0 22px;
    text-align: center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero h1 {
    font-size: clamp(34px, 9vw, 40px);
    max-width: 12ch;
    margin-inline: auto;
  }
  .hero-kicker,
  .hero-sub,
  .philosophy {
    margin-inline: auto;
  }
  .philosophy {
    text-align: left;
    max-width: 34ch;
  }
  .hero-cta {
    align-items: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .device--hero { width: min(100%, 300px); }
  .hero-prompt { margin-bottom: 16px; }
  .hero-prompt-label { text-align: center; }
  .hero-prompt-card { max-width: none; text-align: center; font-size: 15.5px; }
  .how-it-works { padding: 20px 0 8px; }
  .how-flow { font-size: 16px; line-height: 1.8; }
  .how-arrow { display: block; margin: 4px 0; }
  .reviews {
    padding: 24px 0 16px;
    overflow: visible;
  }
  .reviews-head { margin-bottom: 12px; }
  .reviews .wrap {
    overflow: visible;
  }
  /* Horizontal swipe row — one card + ~12% peek of the next */
  .review-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 18px 4px;
    box-sizing: border-box;
  }
  .review-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  .review {
    flex: 0 0 86%;
    width: 86%;
    max-width: 320px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .review p { font-size: 16.5px; }
  .beauty { padding: 24px 0 20px; }
  .device--beauty { width: 260px; max-width: 70vw; border-radius: 40px; padding: 9px; }
  .device--beauty::before { top: 12px; width: 82px; height: 22px; border-radius: 18px; }
  .device--beauty .device-screen { border-radius: 32px; }
  .beauty-caption { font-size: 17px; }
  .showcase { padding: 28px 0 14px; }
  .showcase-head { margin-bottom: 14px; }
  .constellation {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "today today"
      "prayer scripture"
      "reflection reflection";
    gap: 14px 10px;
    max-width: 340px;
  }
  .feature-card--prayer,
  .feature-card--scripture {
    padding-top: 0;
  }
  .feature-card--today .device { width: min(100%, 248px); }
  .feature-card .device { width: min(100%, 164px); }
  .feature-card--reflection .device { width: min(100%, 184px); }
  .proof-chip { font-size: 13.5px; padding: 9px 12px; }
  .founder-photo { width: 128px; height: 128px; }
  .founder h2 { font-size: 26px; }
  .premium { padding: 12px 0 10px; }
  .premium-panel { padding: 22px 18px 18px; border-radius: 18px; }
  .premium-list {
    grid-template-columns: 1fr;
    max-width: 280px;
    gap: 8px;
  }
  .founder {
    padding: 24px 0 18px;
  }
  .founder-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 14px;
  }
  .founder p { margin-inline: auto; }
  .faq { padding: 16px 0 6px; }
  .faq-item summary { font-size: 14.5px; padding: 11px 22px 11px 0; }
  .faq-item p { font-size: 14px; }
  .stay { padding: 6px 0 16px; }
  .stay-panel { padding: 16px 14px 14px; }
  .stay-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .stay-input {
    max-width: none;
    width: 100%;
    flex: none;
  }
  .stay-btn {
    width: 100%;
    flex: none;
    -webkit-appearance: none;
    appearance: none;
    background: var(--ink);
    background-color: #1a1714;
    color: #fff;
    border: 0;
  }
  .final { padding: 28px 0 32px; }
  .sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
    background: rgba(246, 241, 235, 0.94);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    transform: translateY(120%);
    transition: transform .35s cubic-bezier(.2,.7,.3,1);
  }
  .sticky.show { transform: translateY(0); }

  .sticky .label {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.25;
  }
  .sticky .label small {
    display: block;
    font-weight: 500;
    color: var(--mute);
    font-size: 11px;
  }
  .sticky-btn {
    flex: none;
    background: var(--ink);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 999px;
    white-space: nowrap;
    text-decoration: none;
  }
  footer {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }


  .sticky { display: flex; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .constellation {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "today today"
      "prayer scripture"
      "reflection reflection";
  }
  .premium-panel { padding: 24px 22px 20px; }
  .premium-list {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .hero { text-align: center; }
  .hero-cta,
  .hero-trust { align-items: center; justify-content: center; }
  .hero h1,
  .hero-sub,
  .hero-kicker,
  .philosophy { margin-inline: auto; }
  .philosophy { text-align: left; }
  .hero-prompt-label { text-align: center; }
  .hero-prompt-card { margin-inline: auto; text-align: center; }
}

/* Tablet: stack reviews. Mobile (≤720) keeps the horizontal swipe row. */
@media (min-width: 721px) and (max-width: 900px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}
