:root {
  --bg: #11100d;
  --bg-soft: #191711;
  --panel: #201d16;
  --panel-2: #2a261d;
  --text: #f5efe2;
  --muted: #c8bda8;
  --dim: #8f846f;
  --gold: #d4a84f;
  --gold-2: #f2d28a;
  --line: rgba(245, 239, 226, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(212,168,79,0.18), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(242,210,138,0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.section-pad { padding: 104px 0; }
.section-pad-sm { padding: 76px 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 56px);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(17, 16, 13, 0.82);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212,168,79,0.55);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: Cinzel, serif;
  font-weight: 700;
  box-shadow: inset 0 0 0 4px rgba(212,168,79,0.08);
}
.brand-text {
  font-family: Cinzel, serif;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}
.nav a { transition: color 160ms ease; }
.nav a:hover { color: var(--text); }
.nav-cta {
  color: #17130c !important;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  padding: 11px 16px;
  border-radius: 999px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(17,16,13,0.2), rgba(17,16,13,0.92)),
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(245,239,226,0.025) 78px 79px),
    repeating-linear-gradient(0deg, transparent 0 78px, rgba(245,239,226,0.018) 78px 79px);
  mask-image: linear-gradient(to bottom, black 0%, black 74%, transparent 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 54px;
  align-items: center;
}
.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.03;
}
h1, h2 {
  font-family: Cinzel, Georgia, serif;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  max-width: 900px;
}
h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
}
h3 { font-size: 1.2rem; }
.hero-lede {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  max-width: 680px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #17130c;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 40px rgba(212, 168, 79, 0.22);
}
.btn-secondary {
  color: var(--text);
  background: rgba(245,239,226,0.06);
  border-color: var(--line);
}
.btn-outline {
  color: var(--gold-2);
  border-color: rgba(212,168,79,0.38);
  width: 100%;
}
.microcopy {
  margin-top: 16px;
  color: var(--dim);
  font-size: 0.95rem;
}
.hero-card {
  position: relative;
  padding: 36px;
  border: 1px solid rgba(212,168,79,0.25);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(42,38,29,0.92), rgba(25,23,17,0.92)),
    radial-gradient(circle at top, rgba(212,168,79,0.2), transparent 24rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245,239,226,0.07);
  border-radius: 22px;
  pointer-events: none;
}
.cross-line {
  width: 64px;
  height: 88px;
  margin-bottom: 80px;
  position: relative;
}
.cross-line::before,
.cross-line::after {
  content: "";
  position: absolute;
  background: linear-gradient(var(--gold-2), var(--gold));
  border-radius: 999px;
}
.cross-line::before {
  width: 5px;
  height: 88px;
  left: 30px;
  top: 0;
}
.cross-line::after {
  width: 64px;
  height: 5px;
  top: 28px;
  left: 0;
}
.scripture {
  position: relative;
  font-family: Cinzel, serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.12;
}
.scripture-ref {
  margin-top: 16px;
  color: var(--gold-2);
  font-weight: 800;
}
.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.hero-stat-row div {
  padding: 16px 12px;
  background: rgba(245,239,226,0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.hero-stat-row strong {
  display: block;
  font-size: 1.65rem;
  color: var(--gold-2);
}
.hero-stat-row span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  align-items: start;
}
.copy-block p {
  color: var(--muted);
  font-size: 1.09rem;
  margin-bottom: 18px;
}
.section-heading.centered {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 42px;
}
.section-subtitle {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}
.pillar-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillar-card,
.plan-card,
.step,
details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(32,29,22,0.88), rgba(25,23,17,0.88));
  border-radius: var(--radius-md);
}
.pillar-card {
  padding: 26px;
}
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212,168,79,0.1);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 24px;
}
.pillar-card p,
.step p,
details p,
.plan-desc,
.plan-card li {
  color: var(--muted);
}
.pillar-card h3,
.step h3,
.plan-card h3 { margin-bottom: 10px; }

.plans {
  background:
    linear-gradient(180deg, rgba(25,23,17,0.35), rgba(17,16,13,0.98)),
    radial-gradient(circle at 50% 20%, rgba(212,168,79,0.13), transparent 38rem);
}
.plan-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.plan-card {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.plan-card.featured {
  border-color: rgba(212,168,79,0.48);
  background: linear-gradient(180deg, rgba(42,38,29,0.96), rgba(25,23,17,0.96));
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(212,168,79,0.16);
  color: var(--gold-2);
  border: 1px solid rgba(212,168,79,0.3);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.plan-topline {
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 18px;
}
.plan-card h3 { font-size: 2rem; }
.plan-desc { margin: 8px 0 22px; }
.plan-card ul {
  padding-left: 20px;
  margin: 0 0 28px;
}
.plan-card li { margin: 11px 0; }
.plan-card .btn { margin-top: auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.step { padding: 26px; }
.step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #17130c;
  font-weight: 900;
  margin-bottom: 22px;
}
.quote-band {
  border-block: 1px solid var(--line);
  background: rgba(245,239,226,0.035);
}
.quote-band p {
  text-align: center;
  font-family: Cinzel, serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.07;
}
.checklist {
  display: grid;
  gap: 16px;
}
.checklist p {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(245,239,226,0.045);
  border-radius: var(--radius-sm);
  color: var(--muted);
}
.checklist span {
  color: var(--gold-2);
  font-weight: 900;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
details { padding: 0 22px; }
summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 900;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { padding-bottom: 20px; }
.cta-card {
  text-align: center;
  padding: clamp(34px, 8vw, 80px);
  border: 1px solid rgba(212,168,79,0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(212,168,79,0.18), transparent 32rem),
    linear-gradient(160deg, rgba(42,38,29,0.95), rgba(25,23,17,0.95));
  box-shadow: var(--shadow);
}
.cta-card p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--muted);
  max-width: 640px;
  font-size: 1.08rem;
}
.center-actions { justify-content: center; }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 28px;
  color: var(--muted);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}
.footer-brand { margin-bottom: 14px; color: var(--text); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-end;
  font-weight: 700;
}
.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--dim);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(17, 16, 13, 0.96);
    backdrop-filter: blur(18px);
  }
  .nav.open { display: flex; }
  .nav a { padding: 8px 0; }
  .nav-cta { text-align: center; padding: 12px 16px !important; }
  .hero-grid,
  .two-col { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .pillar-grid,
  .steps { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 76px 0; }
  .section-pad-sm { padding: 54px 0; }
  .site-header { padding: 14px 16px; }
  .brand-text { font-size: 0.92rem; }
  .hero { padding-top: 116px; }
  h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-card { padding: 26px; }
  .cross-line { margin-bottom: 52px; }
  .hero-stat-row,
  .pillar-grid,
  .steps { grid-template-columns: 1fr; }
  .footer-grid,
  .footer-bottom { flex-direction: column; }
  .footer-links { justify-content: flex-start; flex-direction: column; }
}
