/* ─── Google Fonts ───────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
  --bg:           #FCFAF5;
  --surface:      #F6F2EB;
  --surface-alt:  #EFEADF;
  --border:       #E2D9C8;
  --border-faint: #EBE3D5;
  --gold:         #A86D12;
  --gold-mid:     #B88231;
  --gold-light:   #C9A25A;
  --gold-faint:   #7A6E5D;
  --ink:          #2D241E;
  --ink-secondary:#544635;
  --ink-muted:    #7A6E5D;

  --font-serif:   'EB Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --radius:       6px;
  --shadow-sm:    0 2px 12px rgba(45,36,30,0.06);
  --shadow-md:    0 8px 40px rgba(45,36,30,0.10);
  --shadow-lg:    0 24px 80px rgba(45,36,30,0.14);
}

/* ─── Reset & Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ─── Nav ────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(252, 250, 245, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-faint);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.5px;
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 9px 22px;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 60px 80px;
  position: relative;
  overflow: hidden;
  gap: 56px;
}

/* Subtle radial warm glow in the background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(168,109,18,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,162,90,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 70%, rgba(168,109,18,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Faint ornamental rule across the top of hero content */
.hero-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero-ornament-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-ornament-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-text {
  max-width: 760px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-subheadline {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.2vw, 22px);
  font-style: italic;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.35s forwards;
}

/* CTA Button Row */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-store:active {
  transform: translateY(0);
}

.btn-store-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-store-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-store-secondary:hover {
  background: var(--surface-alt);
}

.btn-store-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-store-label {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-store-label span:first-child {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.75;
  line-height: 1;
  margin-bottom: 2px;
}

.btn-store-label span:last-child {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1;
}

/* ─── Reveal base state (used by features + why) ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.features-grid .feat-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feat-card:nth-child(2) { transition-delay: 0.12s; }
.features-grid .feat-card:nth-child(3) { transition-delay: 0.24s; }

/* ─── Features Section ───────────────────────────────────────────────────────── */
.features {
  padding: 120px 60px;
  background: var(--surface);
}

.features-header {
  max-width: 600px;
  margin: 0 auto 80px;
  text-align: center;
}

.features-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.features-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.features-eyebrow-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.features-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.2px;
}

/* 3-column card grid */
.features-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* Individual feature card */
.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.7s ease, translateY 0.7s ease;
}

.feat-card:hover {
  box-shadow: 0 16px 48px rgba(45,36,30,0.10);
  transform: translateY(-4px);
}

/* Screenshot image — fixed-height crop so all cards are uniform */
.feat-card-img {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: var(--surface-alt);
  flex-shrink: 0;
}

.feat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.feat-card:hover .feat-card-img img {
  transform: scale(1.03);
}

/* Card text body */
.feat-card-body {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

/* Large muted number */
.feat-num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.8;
}

.feat-title {
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.1px;
}

.feat-desc {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink-secondary);
  line-height: 1.75;
  flex: 1;
}

/* Feature tag pills */
.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 8px;
}

.feat-tags li {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(168,109,18,0.08);
  border: 1px solid rgba(168,109,18,0.2);
  border-radius: 100px;
  padding: 5px 12px;
}

/* ─── Keyframes ──────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)  scale(1); }
}

/* ─── Divider ────────────────────────────────────────────────────────────────── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0 auto;
}

/* ─── Why This Exists ────────────────────────────────────────────────────────── */
.why {
  padding: 120px 60px;
  position: relative;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.why-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.why-eyebrow.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.why-eyebrow-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.why-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 500;
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -0.2px;
  position: sticky;
  top: 100px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.why-headline.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-headline em {
  font-style: italic;
  color: var(--gold);
}

/* Right column */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.why-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.why-body.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-body p {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--ink-secondary);
  line-height: 1.75;
}

.why-body p strong {
  color: var(--ink);
  font-weight: 600;
}

/* Verse pull quote card */
.why-verse-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 36px 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.why-verse-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Decorative corner accents matching the app UI */
.why-verse-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.7;
}

.why-verse-corner--tl {
  top: 12px; left: 12px;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 2px 0 0 0;
}

.why-verse-corner--br {
  bottom: 12px; right: 12px;
  border-width: 0 1.5px 1.5px 0;
  border-radius: 0 0 2px 0;
}

.why-verse-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.why-verse-rule-line {
  width: 20px;
  height: 1px;
  background: var(--gold-mid);
}

.why-verse-rule-ref {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.why-verse-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 500;
}

/* ─── Trust / Theology ───────────────────────────────────────────────────────── */
.trust {
  background: var(--ink);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

/* Faint radial warm glow on dark bg */
.trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(168,109,18,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.trust-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

/* Eyebrow */
.trust-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.5;
}

.trust-eyebrow-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Conviction block */
.trust-conviction {
  text-align: center;
}

.trust-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 500;
  color: #F6F2EB;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 28px;
}

.trust-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.trust-body {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 21px);
  color: rgba(246,242,235,0.72);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

/* Horizontal gold rule */
.trust-rule {
  width: 48px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.4;
  margin: 48px auto 0;
}

/* Bottom row */
.trust-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 3 belief pillars */
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(246,242,235,0.1);
  border-radius: 8px;
  background: rgba(246,242,235,0.03);
}

.trust-pillar-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  margin-top: 8px;
}

.trust-pillar-text {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(246,242,235,0.85);
  line-height: 1.5;
  font-style: italic;
}

/* Believers card */
.trust-believers {
  border-left: 2px solid var(--gold-light);
  padding: 24px 32px;
  background: rgba(246,242,235,0.04);
  border-radius: 0 8px 8px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.trust-believers.visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-believers-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.trust-believers-text {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(246,242,235,0.75);
  line-height: 1.75;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────────── */
.faq {
  padding: 120px 60px;
  background: var(--bg);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.faq-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.faq-eyebrow-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.faq-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.2px;
}

/* List resets */
.faq-list {
  list-style: none;
}

/* Each Q&A row */
.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--gold);
}

/* +/× icon using pseudo-elements */
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  transition: border-color 0.25s ease, transform 0.35s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: var(--ink-muted);
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.25s ease, background 0.2s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question:hover .faq-icon {
  border-color: var(--gold);
}

.faq-question:hover .faq-icon::before,
.faq-question:hover .faq-icon::after {
  background: var(--gold);
}

/* Open state: × */
.faq-item.open .faq-icon {
  border-color: var(--gold);
  background: rgba(168,109,18,0.06);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: var(--gold);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

/* Answer panel */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-secondary);
  line-height: 1.75;
  padding-bottom: 28px;
}

/* Placeholder text styling */
.faq-placeholder {
  color: var(--ink-muted) !important;
  font-style: italic;
  border-left: 2px solid var(--border);
  padding-left: 16px !important;
}

/* ─── Final CTA ──────────────────────────────────────────────────────────────── */
.final-cta {
  background: var(--ink);
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Same warm glow as trust section */
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(168,109,18,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 90%, rgba(201,162,90,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 1;
}

.final-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 500;
  color: #F6F2EB;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(246,242,235,0.65);
  line-height: 1.6;
}

.final-cta-sub em {
  font-style: italic;
  color: var(--gold-light);
}

.final-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

/* Light cream button variant for dark bg */
.btn-store-light {
  background: #F6F2EB;
  color: var(--ink);
}

.btn-store-light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

/* Ghost outline button for dark bg */
.btn-store-ghost {
  background: transparent;
  color: #F6F2EB;
  border: 1.5px solid rgba(246,242,235,0.35);
}

.btn-store-ghost:hover {
  background: rgba(246,242,235,0.08);
  border-color: rgba(246,242,235,0.6);
  transform: translateY(-2px);
}

/* Closing verse quote */
.final-cta-verse {
  border-top: 1px solid rgba(246,242,235,0.12);
  padding-top: 48px;
  width: 100%;
  max-width: 580px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.final-cta-verse.visible {
  opacity: 1;
  transform: translateY(0);
}

.final-cta-verse-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.final-cta-verse-line {
  width: 24px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.5;
}

.final-cta-verse-ref {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.final-cta-verse-text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 23px);
  font-style: italic;
  color: rgba(246,242,235,0.75);
  line-height: 1.65;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  background: #1A1410;
  padding: 60px 60px 0;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246,242,235,0.08);
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.footer-wordmark {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: #F6F2EB;
  letter-spacing: 0.3px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(246,242,235,0.45);
  padding-left: 38px;
}

/* Footer nav */
.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(246,242,235,0.55);
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: rgba(246,242,235,0.9);
}

.footer-link-cta {
  color: var(--gold-light);
  border: 1px solid rgba(201,162,90,0.35);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-link-cta:hover {
  background: rgba(201,162,90,0.1);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* Footer bottom bar */
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(246,242,235,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(246,242,235,0.3);
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: rgba(246,242,235,0.6);
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-store {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-screenshots {
    gap: 10px;
  }

  .hero-shot {
    border-radius: 12px;
  }

  .hero-shot--1 { transform: translateY(-10px); max-width: 200px; }
  .hero-shot--2 { transform: translateY(6px); }
  .hero-shot--3 { transform: translateY(10px); }

  .features {
    padding: 80px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-grid .feat-card:nth-child(2),
  .features-grid .feat-card:nth-child(3) {
    transition-delay: 0s;
  }

  .feat-card-img {
    height: 300px;
  }

  .why {
    padding: 80px 24px;
  }

  .trust {
    padding: 80px 24px;
  }

  .trust-pillars {
    grid-template-columns: 1fr;
  }

  .faq {
    padding: 80px 24px;
  }

  .final-cta {
    padding: 100px 24px;
  }

  .final-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    padding: 48px 24px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-headline {
    position: static;
  }
}

@media (max-width: 480px) {
  .nav-wordmark { font-size: 18px; }
  .nav-cta {
    font-size: 11px;
    padding: 7px 14px;
    letter-spacing: 0.8px;
  }
}
