/* ===== Find Yahweh — Premium Sacred Design ===== */

:root {
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #8b6914;
  --cream: #f5f0e6;
  --ivory: #faf7f0;
  --navy: #0a0e1a;
  --navy-light: #121829;
  --navy-mid: #1a2035;
  --burgundy: #2a1520;
  --text: #d4cfc4;
  --text-muted: #8a857a;
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Inter', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container-max: 75rem;
  --pad-x: clamp(0.75rem, 4vw, 2rem);
  --pad-section: clamp(3rem, 8vw, 7rem);
  --gap-lg: clamp(1.5rem, 4vw, 3rem);
  --gap-md: clamp(1rem, 2.5vw, 2rem);
  --header-offset: clamp(4.5rem, 12vw, 6rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: clamp(14px, 2.5vw, 18px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

p, blockquote, h1, h2, h3, h4, h5, h6, li, figcaption {
  overflow-wrap: break-word;
}

[dir="rtl"], .hero__ancient-hebrew, .yahweh-image__hebrew, .wisdom-scroll__hebrew {
  overflow-wrap: anywhere;
}

[lang="syr"] {
  font-family: 'Noto Sans Syriac', 'Estrangelo Edessa', serif;
}

img, video {
  max-width: 100%;
  height: auto;
}

section[id] {
  scroll-margin-top: 5rem;
}

body.loaded { overflow-x: hidden; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
  position: relative;
}

.preloader__ring {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(201, 168, 76, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.preloader__hebrew {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
  animation: preloader-glow 2s ease-in-out infinite;
}

.preloader__text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

@keyframes preloader-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(201, 168, 76, 0.3); }
  50% { text-shadow: 0 0 30px rgba(201, 168, 76, 0.7); }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10001;
  background: rgba(201, 168, 76, 0.08);
}

.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.6);
  transition: width 0.1s linear;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: screen;
  will-change: transform;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.back-to-top svg { width: 20px; height: 20px; }

/* ===== NAV ICONS & ACTIVE STATE ===== */
.nav-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  vertical-align: -2px;
  margin-right: 4px;
}

.nav__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__links a.active {
  color: var(--gold-light);
}

.nav__links a.active::after {
  width: 100%;
}

.nav__links a.active .nav-icon {
  opacity: 1;
  color: var(--gold);
}

/* ===== SECTION ICONS ===== */
.section__icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  transition: var(--transition);
}

.section__icon-wrap svg {
  width: 24px;
  height: 24px;
}

.section__icon-wrap.icon-pulse {
  animation: icon-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.25);
}

@keyframes icon-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== HERO JOURNEY NAV ===== */
.hero-journey {
  margin-bottom: 2.5rem;
  padding: 0.5rem 0;
  width: 100%;
  max-width: 100%;
}

.hero-journey__track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0;
  padding: clamp(0.75rem, 2.5vw, 1.25rem) clamp(0.65rem, 3vw, 1.75rem);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(201, 168, 76, 0.02) 50%, rgba(201, 168, 76, 0.06) 100%);
  border: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.hero-journey__track::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.12), transparent);
  animation: journey-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes journey-shimmer {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(100%); opacity: 1; }
}

.hero-journey__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  animation: journey-link-in 0.7s ease backwards;
  animation-delay: calc(var(--i, 0) * 0.1s + 0.3s);
}

@keyframes journey-link-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-journey__link svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  transition: var(--transition);
  filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.3));
}

.hero-journey__link span {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-journey__link:hover {
  color: var(--gold-light);
  transform: translateY(-4px);
}

.hero-journey__link:hover svg {
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.7));
  transform: scale(1.2);
}

.hero-journey__line {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.45), transparent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn--listen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--listen svg {
  width: 16px;
  height: 16px;
}

.reader-player__voice {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

/* legacy trust-bar removed */
.trust-bar { display: none; }


/* ===== TYPED TEXT ===== */
.typed-cursor {
  color: var(--gold);
  animation: blink 1s step-end infinite;
  font-weight: 300;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero__subtitle {
  min-height: 3.5rem;
}

/* ===== FAQ SECTION ===== */
.section--faq {
  background: rgba(0, 0, 0, 0.2);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(201, 168, 76, 0.1);
  margin-bottom: 0.75rem;
  background: rgba(10, 14, 26, 0.5);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.25);
}

.faq-item.open {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.06);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: color var(--transition);
}

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

.faq-item__icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item__trigger span {
  flex: 1;
}

.faq-item__chevron {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-item__answer p {
  padding: 0 1.5rem 1.5rem 3.5rem;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
}

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

/* ===== PROFESSIONAL REFINEMENTS ===== */
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__logo-hebrew {
  animation: logo-glow 4s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.3)); }
  50% { filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.6)); }
}

.attribute-card,
.gospel-step,
.fact-card,
.wisdom-card,
.living-card,
.faith-card {
  border-radius: 2px;
}

.footer__links h4 svg,
.footer h4 svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 6px;
  color: var(--gold);
}

.footer__links h4 {
  display: flex;
  align-items: center;
}

/* Lucide icon defaults */
[data-lucide] {
  stroke-width: 1.5;
}

.facts-category__icon {
  display: none;
}

.facts-category__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.facts-category__title::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
  flex-shrink: 0;
}


.container {
  width: min(var(--container-max), 100%);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.hero__content,
.section .container {
  min-width: 0;
  width: 100%;
}

.hero__content.container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.footer {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* ===== Ambient Background ===== */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.ambient__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: drift 20s ease-in-out infinite;
}

.ambient__glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #4a2040 0%, transparent 70%);
  bottom: -150px; left: -100px;
  animation: drift 25s ease-in-out infinite reverse;
}

.ambient__glow--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1a3060 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 15s ease-in-out infinite;
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.1); }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  padding-top: calc(1rem + env(safe-area-inset-top, 0px));
  transition: var(--transition);
  background: transparent;
  width: 100%;
}

.header.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 0.75rem 0;
  padding-top: calc(0.75rem + env(safe-area-inset-top, 0px));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
}

.nav__logo-hebrew {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--gold-light); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

/* ===== CHAPTER RAIL ===== */
.chapter-rail {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) translateX(calc(100% + 2rem));
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease;
}

.chapter-rail.visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.chapter-rail__panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.1rem 1rem 1.1rem 1.25rem;
  background: rgba(10, 14, 26, 0.82);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 1.25rem;
  backdrop-filter: blur(22px);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 30px rgba(201, 168, 76, 0.06);
}

.chapter-rail__current {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  padding-right: 0.25rem;
  min-width: 7rem;
}

.chapter-rail__current-num {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  opacity: 0.7;
}

.chapter-rail__current-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: opacity 0.35s ease, transform 0.35s ease;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.35);
}

.chapter-rail__current-title.changing {
  opacity: 0;
  transform: translateY(8px);
}

.chapter-rail__track {
  position: relative;
  padding-right: 1.35rem;
}

.chapter-rail__track::before {
  content: '';
  position: absolute;
  right: 0.42rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.25) 15%, rgba(201, 168, 76, 0.25) 85%, transparent);
}

.chapter-rail__track-fill {
  position: absolute;
  right: 0.42rem;
  top: 0.5rem;
  width: 1px;
  height: 0%;
  background: linear-gradient(180deg, var(--gold), rgba(201, 168, 76, 0.4));
  transition: height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}

.chapter-rail__indicator {
  position: absolute;
  right: 0.18rem;
  top: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow:
    0 0 0 3px rgba(201, 168, 76, 0.2),
    0 0 16px rgba(201, 168, 76, 0.65);
  transform: translateY(0) scale(0.6);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 2;
}

.chapter-rail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
}

.chapter-rail__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  padding: 0.42rem 0;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.35s ease, transform 0.35s ease;
  position: relative;
}

.chapter-rail__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  flex-shrink: 0;
}

.chapter-rail__label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.45;
  transform: translateX(6px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
  white-space: nowrap;
}

.chapter-rail__link:hover .chapter-rail__label,
.chapter-rail__link:hover .chapter-rail__dot {
  opacity: 1;
  color: var(--gold-light);
}

.chapter-rail__link:hover .chapter-rail__label {
  transform: translateX(0);
}

.chapter-rail__link:hover .chapter-rail__dot {
  background: rgba(201, 168, 76, 0.6);
  transform: scale(1.3);
}

.chapter-rail__link.active .chapter-rail__label {
  opacity: 1;
  color: var(--gold-light);
  transform: translateX(0);
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
}

.chapter-rail__link.active .chapter-rail__dot {
  opacity: 0;
  transform: scale(0);
}

.chapter-rail__link.active {
  transform: translateX(-2px);
}

body.is-narrating .chapter-rail__link.active .chapter-rail__label {
  animation: chapter-glow 2s ease-in-out infinite;
}

@keyframes chapter-glow {
  50% { text-shadow: 0 0 18px rgba(201, 168, 76, 0.55); }
}

.audio-toggle {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  transition: var(--transition);
  margin-left: auto;
}

.audio-toggle:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.audio-toggle__icon { width: 18px; height: 18px; }
.audio-toggle__icon--off { display: none; }
.audio-toggle.muted .audio-toggle__icon--on { display: none; }
.audio-toggle.muted .audio-toggle__icon--off { display: block; }

/* ===== Audio Prompt ===== */
.audio-prompt {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 14, 26, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.audio-prompt.hidden { display: none; }

.audio-prompt__card {
  text-align: center;
  padding: 3rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: var(--navy-light);
  max-width: 420px;
}

.audio-prompt__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.audio-prompt__card h2 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.audio-prompt__card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 2vw, 0.75rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: clamp(0.85rem, 2vw, 1rem) clamp(1.25rem, 4vw, 2.5rem);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  max-width: 100%;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 600;
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
}

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* ===== Hero (mobile-first) ===== */
.hero {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  text-align: center;
  padding:
    calc(var(--header-offset) + env(safe-area-inset-top, 0px))
    0
    calc(2.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 969px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(0.58rem, 2.5vw, 0.75rem);
  letter-spacing: clamp(0.08em, 2vw, 0.3em);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(1rem, 3vw, 2rem);
  padding-inline: 0.15rem;
}

.hero__title {
  margin-bottom: 2rem;
}

.hero__title-hebrew {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 3.5vw, 1.2rem);
  color: var(--gold);
  letter-spacing: clamp(0.06em, 1.5vw, 0.2em);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.hero__title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 11vw, 6rem);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: clamp(0.03em, 1vw, 0.08em);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.8vw, 1.3rem);
  color: var(--text-muted);
  max-width: min(650px, 100%);
  width: 100%;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
  padding-inline: 0.25rem;
}

.hero__verse {
  margin-bottom: 2rem;
  padding: clamp(1rem, 3vw, 2rem);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  max-width: min(600px, 100%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero__verse blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.hero__verse cite {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-style: normal;
}

.hero__ancient {
  margin-bottom: 2.5rem;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  max-width: min(700px, 100%);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero__ancient-hebrew {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  direction: rtl;
}

.hero__ancient-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

.hero__actions {
  display: flex;
  gap: clamp(0.65rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding-block: var(--pad-section);
}

.section--dark {
  background: rgba(0, 0, 0, 0.25);
}

.section--cta {
  background: linear-gradient(180deg, var(--navy) 0%, var(--burgundy) 50%, var(--navy) 100%);
  text-align: center;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  padding-inline: 0.25rem;
}

.section__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.section__divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

.section__intro {
  max-width: min(750px, 100%);
  width: 100%;
  margin: 2rem auto 0;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.9;
  padding-inline: 0.25rem;
}

.lead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== Content Blocks ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  align-items: start;
}

.content-grid > * {
  min-width: 0;
}

/* ===== Yahweh Image Showcase ===== */
.yahweh-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  align-items: center;
  margin-bottom: 3rem;
}

.yahweh-showcase > * {
  min-width: 0;
}

.yahweh-image {
  margin: 0;
}

.yahweh-image__frame {
  position: relative;
  max-width: min(420px, 100%);
  margin-inline: auto;
  border-radius: 0.25rem;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(201, 168, 76, 0.08);
}

.yahweh-image__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.yahweh-image:hover .yahweh-image__frame img {
  transform: scale(1.03);
}

.yahweh-image__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(10, 14, 26, 0.3) 70%,
    rgba(10, 14, 26, 0.85) 100%
  );
  pointer-events: none;
}

.yahweh-image__hebrew {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.8);
  pointer-events: none;
  max-width: 90%;
  text-align: center;
}

.yahweh-image figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  text-align: center;
}

.yahweh-image figcaption span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.yahweh-image figcaption cite {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: normal;
}

.yahweh-showcase__intro .scripture-quote {
  margin-bottom: 0;
}

/* ===== Aramaic Name (Yahweh section) ===== */
.aramaic-name {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.aramaic-name__header {
  text-align: center;
  max-width: min(42rem, 100%);
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
}

.aramaic-name__label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.65rem;
}

.aramaic-name__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.aramaic-name__intro {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.8;
}

.aramaic-name__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.aramaic-term {
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid rgba(201, 168, 76, 0.14);
  background: rgba(201, 168, 76, 0.03);
  text-align: center;
  min-width: 0;
}

.aramaic-term__script {
  display: block;
  font-family: 'Noto Sans Syriac', 'Estrangelo Edessa', serif;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  text-shadow: 0 0 24px rgba(201, 168, 76, 0.25);
}

.aramaic-term__name {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
}

.aramaic-term__desc {
  font-size: clamp(0.9rem, 2.3vw, 0.98rem);
  color: var(--text);
  line-height: 1.75;
  text-align: left;
}

.aramaic-name__note {
  font-size: clamp(0.88rem, 2.3vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  text-align: center;
  max-width: min(46rem, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

@media (min-width: 540px) {
  .aramaic-name__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== Sources Section ===== */
.section--sources {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.section--sources .section__intro {
  max-width: min(42rem, 100%);
  margin: 1.5rem auto 0;
  font-size: clamp(0.88rem, 2.5vw, 0.95rem);
}

.sources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
  margin-top: 3rem;
}

.source-card {
  padding: 1.75rem;
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  transition: var(--transition);
}

.source-card:hover {
  border-color: rgba(201, 168, 76, 0.28);
  background: rgba(201, 168, 76, 0.06);
}

.source-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
}

.source-card h3 svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.source-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.source-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.source-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.source-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.45rem;
  top: 0.45em;
}

.source-list a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  transition: var(--transition);
}

.source-list a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.source-card--note {
  grid-column: 1 / -1;
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.2);
}

.source-card__verse {
  font-style: italic;
  color: var(--gold-light) !important;
  margin-bottom: 0 !important;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.source-card__verse cite {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer__sources {
  margin-top: 0.5rem;
}

.footer__sources a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.footer__sources a:hover {
  color: var(--gold-light);
}


.scripture-quote {
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-style: italic;
  color: var(--gold-light);
  padding: clamp(1rem, 3vw, 2rem);
  border-left: 2px solid var(--gold);
  margin: 2rem 0;
  max-width: 100%;
}

.scripture-quote cite {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-style: normal;
}

.attribute-card {
  padding: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.attribute-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
}

.attribute-card__icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.attribute-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* ===== Gospel Flow ===== */
.gospel-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.gospel-step {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.15rem, 3vw, 2rem);
  border: 1px solid rgba(201, 168, 76, 0.08);
  background: rgba(201, 168, 76, 0.02);
  transition: var(--transition);
  position: relative;
  min-width: 0;
}

.gospel-step:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
}

.gospel-step__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(201, 168, 76, 0.15);
  font-weight: 700;
  margin-bottom: 1rem;
}

.gospel-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* ===== Messiah ===== */
.messiah-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
}

.messiah-content > * {
  min-width: 0;
}

.names-list {
  list-style: none;
}

.names-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  font-size: 1.05rem;
}

.names-list span {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}

.messiah-names h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

/* ===== Bible Grid ===== */
.bible-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
  margin: 2rem 0;
}

.bible-grid > * {
  min-width: 0;
}

.bible-card {
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(0, 0, 0, 0.2);
}

.bible-card h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.bible-card__hebrew {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.bible-card ul {
  list-style: none;
  margin-top: 1rem;
}

.bible-card li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.bible-card li::before {
  content: '✦ ';
  color: var(--gold);
  opacity: 0.5;
}

.scripture-verses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.verse-card {
  padding: 1.5rem;
  border-left: 2px solid var(--gold-dark);
  background: rgba(201, 168, 76, 0.03);
}

.verse-card p {
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.verse-card cite {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-style: normal;
}

/* ===== Prayer ===== */
.lords-prayer {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(201, 168, 76, 0.03);
  margin: 2rem 0;
  text-align: center;
}

.lords-prayer h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.lords-prayer__hebrew {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  direction: rtl;
}

.lords-prayer__text p {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.lords-prayer__doxology {
  margin-top: 1.5rem;
  color: var(--gold-light) !important;
  font-style: italic;
}

.prayer-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.5rem;
}

.prayer-type {
  padding: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.prayer-type h4 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

/* ===== Faith ===== */
.faith-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.faith-card {
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  text-align: center;
}

.faith-card__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.faith-card h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.faith-card blockquote {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.faith-card cite {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: normal;
}

.trinity { text-align: center; }

.trinity h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.trinity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
  margin-top: 2rem;
}

.trinity-grid > * {
  min-width: 0;
}

.trinity-person {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.trinity-person h4 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

/* ===== ANCIENT WISDOM SECTION ===== */
.section--wisdom {
  background: linear-gradient(180deg, var(--navy) 0%, #0d1020 30%, #100a12 70%, var(--navy) 100%);
  position: relative;
}

.section--wisdom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.wisdom-category {
  margin-bottom: 5rem;
  position: relative;
}

.wisdom-category__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wisdom-category__era {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
}

.wisdom-category__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 700px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Wisdom Scroll — Featured */
.wisdom-scroll {
  position: relative;
  padding: clamp(1.5rem, 5vw, 3.5rem) clamp(1rem, 4vw, 3rem);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(42, 21, 32, 0.4) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  text-align: center;
}

.wisdom-scroll::before,
.wisdom-scroll::after {
  content: '';
  position: absolute;
  left: 2rem; right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.wisdom-scroll::before { top: 1rem; }
.wisdom-scroll::after { bottom: 1rem; }

.wisdom-scroll__seal {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 2rem;
}

.wisdom-scroll__hebrew {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  direction: rtl;
  line-height: 1.8;
}

.wisdom-scroll__quote {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.9;
  max-width: min(800px, 100%);
  width: 100%;
  margin: 0 auto 1rem;
}

.wisdom-scroll cite {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-style: normal;
}

/* Wisdom Cards Grid */
.wisdom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.wisdom-grid--desert {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.wisdom-card {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.08);
  background: rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.wisdom-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.6s ease;
}

.wisdom-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-3px);
  background: rgba(201, 168, 76, 0.03);
}

.wisdom-card:hover::before { height: 100%; }

.wisdom-card__origin {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 1rem;
}

.wisdom-card__hebrew {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  direction: rtl;
  opacity: 0.85;
}

.wisdom-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.wisdom-card cite {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.6;
  display: block;
}

.wisdom-card--ancient {
  border-color: rgba(201, 168, 76, 0.12);
}

.wisdom-card--patristic {
  background: rgba(42, 21, 32, 0.2);
}

.wisdom-card--desert {
  background: rgba(26, 20, 10, 0.3);
  border-color: rgba(139, 105, 20, 0.1);
}

.wisdom-card--desert blockquote {
  font-size: 1.1rem;
  color: var(--gold-light);
}

/* Creed Scrolls */
.creed-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
}

.creed-container > * {
  min-width: 0;
}

.creed-scroll {
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2.5rem);
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.04) 0%, rgba(0, 0, 0, 0.3) 100%);
  position: relative;
}

.creed-scroll h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.creed-scroll__date {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 2rem;
}

.creed-scroll__text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(201, 168, 76, 0.08);
}

/* Wisdom Banner */
.wisdom-banner {
  margin-top: 3rem;
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.wisdom-banner__hebrew {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  direction: rtl;
}

.wisdom-banner blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.wisdom-banner cite {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-style: normal;
}

/* ===== Living ===== */
.living-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.living-card {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: var(--transition);
}

.living-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
}

.living-card h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

/* ===== CTA ===== */
.cta-content {
  max-width: min(700px, 100%);
  width: 100%;
  margin: 0 auto;
  padding-inline: 0.25rem;
}

.cta__hebrew {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1.5rem;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.cta__verse {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  padding: 2rem;
  margin: 2rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.cta__verse cite {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-style: normal;
}

.cta__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  margin-bottom: 3rem;
}

.footer__top > * {
  min-width: 0;
}

.footer__hebrew {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__brand h3 {
  font-family: var(--font-display);
  color: var(--cream);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer__links h4,
.footer__scripture h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer__links ul { list-style: none; }

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold-light); }

.footer__scripture blockquote {
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer__scripture cite {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-style: normal;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
}

.footer__bottom p {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ===== CRAZY GRAPHICAL CSS — SACRED VISUALS ===== */

/* Animated mesh gradient background */
.ambient__mesh {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(74, 32, 64, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(26, 48, 96, 0.1) 0%, transparent 50%),
    conic-gradient(from 0deg at 50% 50%, rgba(201, 168, 76, 0.03), rgba(42, 21, 32, 0.05), rgba(26, 48, 96, 0.03), rgba(201, 168, 76, 0.03));
  animation: mesh-rotate 60s linear infinite;
}

@keyframes mesh-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Divine light rays */
.ambient__rays {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 80%;
  background: conic-gradient(
    from 0deg at 50% 100%,
    transparent 0deg,
    rgba(201, 168, 76, 0.04) 10deg,
    transparent 20deg,
    transparent 40deg,
    rgba(201, 168, 76, 0.03) 50deg,
    transparent 60deg,
    transparent 80deg,
    rgba(201, 168, 76, 0.05) 90deg,
    transparent 100deg,
    transparent 120deg,
    rgba(201, 168, 76, 0.03) 130deg,
    transparent 140deg,
    transparent 160deg,
    rgba(201, 168, 76, 0.04) 170deg,
    transparent 180deg,
    transparent 200deg,
    rgba(201, 168, 76, 0.03) 210deg,
    transparent 220deg,
    transparent 240deg,
    rgba(201, 168, 76, 0.05) 250deg,
    transparent 260deg,
    transparent 280deg,
    rgba(201, 168, 76, 0.03) 290deg,
    transparent 300deg,
    transparent 320deg,
    rgba(201, 168, 76, 0.04) 330deg,
    transparent 340deg,
    transparent 360deg
  );
  animation: rays-pulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes rays-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

/* Sacred geometry rings */
.sacred-geo {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
}

.sacred-geo__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
}

.sacred-geo__ring--1 {
  animation: ring-spin 40s linear infinite;
  border-style: dashed;
  border-color: rgba(201, 168, 76, 0.12);
}

.sacred-geo__ring--2 {
  inset: 15%;
  animation: ring-spin 30s linear infinite reverse;
  border-color: rgba(201, 168, 76, 0.06);
}

.sacred-geo__ring--3 {
  inset: 30%;
  animation: ring-spin 20s linear infinite;
  border: 1px dotted rgba(201, 168, 76, 0.1);
}

.sacred-geo__cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  opacity: 0.06;
}

.sacred-geo__cross::before,
.sacred-geo__cross::after {
  content: '';
  position: absolute;
  background: var(--gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.sacred-geo__cross::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.sacred-geo__cross::after {
  width: 60%;
  height: 2px;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hero halo & beams */
.hero__halo {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.05) 30%, transparent 70%);
  animation: halo-breathe 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes halo-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.hero__beams {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__beams span {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 2px;
  height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.03), transparent);
  transform-origin: top center;
  animation: beam-shimmer 4s ease-in-out infinite;
}

.hero__beams span:nth-child(1) { transform: rotate(-30deg); animation-delay: 0s; }
.hero__beams span:nth-child(2) { transform: rotate(-20deg); animation-delay: 0.5s; }
.hero__beams span:nth-child(3) { transform: rotate(-10deg); animation-delay: 1s; }
.hero__beams span:nth-child(4) { transform: rotate(0deg); animation-delay: 0.3s; width: 3px; background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.25), rgba(201, 168, 76, 0.05), transparent); }
.hero__beams span:nth-child(5) { transform: rotate(10deg); animation-delay: 0.8s; }
.hero__beams span:nth-child(6) { transform: rotate(20deg); animation-delay: 1.2s; }
.hero__beams span:nth-child(7) { transform: rotate(30deg); animation-delay: 0.6s; }

@keyframes beam-shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Shimmer title effect */
.section__title--shimmer {
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%,
    var(--cream) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.section__divider--pulse {
  animation: divider-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}

@keyframes divider-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.3); transform: scaleX(1); }
  50% { box-shadow: 0 0 30px rgba(201, 168, 76, 0.8); transform: scaleX(1.3); }
}

/* ===== DEEP FACTS SECTION ===== */
.section--facts {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy) 0%, #080612 50%, var(--navy) 100%);
}

.facts-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.facts-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 15s ease-in-out infinite;
}

.facts-bg__orb--1 {
  width: 400px; height: 400px;
  background: rgba(201, 168, 76, 0.12);
  top: 10%; right: -5%;
}

.facts-bg__orb--2 {
  width: 350px; height: 350px;
  background: rgba(74, 32, 64, 0.15);
  bottom: 20%; left: -5%;
  animation-delay: -7s;
  animation-direction: reverse;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.facts-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

/* Stats orbit */
.stats-orbit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: var(--gap-md);
  margin-bottom: 5rem;
  perspective: 1000px;
}

.stat-card {
  position: relative;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from var(--angle, 0deg), transparent, rgba(201, 168, 76, 0.1), transparent);
  animation: stat-rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover::before { opacity: 1; }
.stat-card:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.15), 0 0 40px rgba(201, 168, 76, 0.05);
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes stat-rotate {
  to { --angle: 360deg; }
}

.stat-card__glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  animation: glow-spin 8s linear infinite;
  pointer-events: none;
}

@keyframes glow-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  display: inline;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.5), 0 0 60px rgba(201, 168, 76, 0.2);
  position: relative;
  z-index: 1;
}

.stat-card__suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}

.stat-card__label {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

/* Facts categories */
.facts-category {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.facts-category__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.facts-category__icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.5));
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
}

.facts-grid > * {
  min-width: 0;
}

.facts-grid--wide .fact-card--featured {
  grid-column: 1 / -1;
}

/* Fact cards with crazy glow borders */
.fact-card {
  position: relative;
  padding: 2rem;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.fact-card__border {
  position: absolute;
  inset: 0;
  padding: 1px;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    transparent 0%,
    rgba(201, 168, 76, 0.1) 25%,
    rgba(201, 168, 76, 0.6) 50%,
    rgba(201, 168, 76, 0.1) 75%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-spin 6s linear infinite;
  pointer-events: none;
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-spin {
  to { --border-angle: 360deg; }
}

.fact-card--glow:hover {
  box-shadow:
    0 0 30px rgba(201, 168, 76, 0.15),
    0 0 60px rgba(201, 168, 76, 0.05),
    inset 0 0 30px rgba(201, 168, 76, 0.03);
}

.fact-card--glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.06), transparent);
  transition: left 0.6s ease;
}

.fact-card--glow:hover::after {
  left: 150%;
}

.fact-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
}

.fact-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.fact-card p {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.85;
}

.fact-card--featured {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(10, 14, 26, 0.8) 100%);
}

.fact-card--featured h4 {
  font-size: 1.2rem;
}

/* Truth Reactor — insane centerpiece */
.truth-reactor {
  position: relative;
  margin-top: 4rem;
  padding: 5rem 2rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.truth-reactor__core {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.4) 0%, rgba(201, 168, 76, 0.1) 40%, transparent 70%);
  animation: core-pulse 3s ease-in-out infinite;
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.3), 0 0 160px rgba(201, 168, 76, 0.1);
}

@keyframes core-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}

.truth-reactor__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.truth-reactor__ring--1 {
  width: 200px; height: 200px;
  animation: reactor-spin 12s linear infinite;
  border-style: dashed;
}

.truth-reactor__ring--2 {
  width: 320px; height: 320px;
  animation: reactor-spin 18s linear infinite reverse;
  border-color: rgba(201, 168, 76, 0.08);
}

.truth-reactor__ring--3 {
  width: 440px; height: 440px;
  animation: reactor-spin 25s linear infinite;
  border: 1px dotted rgba(201, 168, 76, 0.06);
}

@keyframes reactor-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.truth-reactor__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.truth-reactor__hebrew {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.6);
  animation: hebrew-glow 3s ease-in-out infinite;
}

@keyframes hebrew-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(201, 168, 76, 0.4); }
  50% { text-shadow: 0 0 60px rgba(201, 168, 76, 0.8), 0 0 100px rgba(201, 168, 76, 0.3); }
}

.truth-reactor__content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.truth-reactor__content blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.truth-reactor__content cite {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-style: normal;
}

.truth-reactor__desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Enhanced button glow */
.btn--gold {
  position: relative;
  overflow: hidden;
}

.btn--gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btn-shine 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn--gold:hover::after { opacity: 1; }

@keyframes btn-shine {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Enhanced hero title glow — desktop only */
@media (min-width: 969px) {
  .hero__title-main {
    animation: title-glow 4s ease-in-out infinite;
  }
}

@keyframes title-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.2)); }
  50% { filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.4)); }
}

/* ===== TWELVE COMMANDMENTS ===== */
.section--commandments {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy) 0%, #0c0810 40%, #100a08 60%, var(--navy) 100%);
}

.commandments-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.commandments-bg__mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(20, 12, 8, 0.8) 0%, transparent 100%);
  clip-path: polygon(0 100%, 0 60%, 15% 45%, 30% 55%, 50% 30%, 70% 50%, 85% 40%, 100% 55%, 100% 100%);
}

.commandments-bg__fire {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(201, 100, 40, 0.12) 0%, rgba(201, 168, 76, 0.06) 40%, transparent 70%);
  animation: fire-pulse 4s ease-in-out infinite;
}

@keyframes fire-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.sinai-tablet {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, rgba(10, 14, 26, 0.8) 100%);
  overflow: hidden;
}

.sinai-tablet__glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  animation: sinai-glow 6s ease-in-out infinite;
}

@keyframes sinai-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.sinai-tablet__hebrew {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  position: relative;
}

.sinai-tablet__preface {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  position: relative;
}

.sinai-tablet cite {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-style: normal;
  position: relative;
}

.commandments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.commandment-card {
  position: relative;
  padding: 2rem 1.75rem 1.75rem 4.5rem;
  background: rgba(10, 14, 26, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.12);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  overflow: hidden;
}

.commandment-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0.5;
  transition: opacity var(--transition);
}

.commandment-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.08);
}

.commandment-card:hover::before { opacity: 1; }

.commandment-card__roman {
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
}

.commandment-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.commandment-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.commandment-card p {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
}

.commandment-card cite {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-style: normal;
}

.commandment-card__hebrew {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  direction: rtl;
  opacity: 0.85;
}

.commandment-card--great {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, rgba(10, 14, 26, 0.85) 100%);
  border-color: rgba(201, 168, 76, 0.25);
  padding-left: 4.5rem;
}

.commandment-card--great .commandment-card__roman {
  color: rgba(201, 168, 76, 0.45);
}

.commandments-great {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.commandments-great__header {
  text-align: center;
  margin-bottom: 2rem;
}

.commandments-great__header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin: 1rem 0 0.5rem;
}

.commandments-great__header p {
  color: var(--text-muted);
  font-style: italic;
}

.commandments-great__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-md);
  margin-bottom: 2rem;
}

.commandments-great__quote {
  text-align: center;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  padding: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.commandments-great__quote cite {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: normal;
}

.commandments-eternal {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-lg);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}

.commandments-eternal__tablets {
  display: flex;
  gap: 0.5rem;
  perspective: 600px;
}

.tablet-stone {
  width: 90px;
  height: 130px;
  background: linear-gradient(145deg, #3d3528 0%, #2a2418 50%, #1a1610 100%);
  border-radius: 8px 8px 4px 4px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: rgba(201, 168, 76, 0.5);
  letter-spacing: 0.1em;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tablet-stone--left {
  transform: rotateY(8deg);
  animation: tablet-float-left 6s ease-in-out infinite;
}

.tablet-stone--right {
  transform: rotateY(-8deg);
  animation: tablet-float-right 6s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes tablet-float-left {
  0%, 100% { transform: rotateY(8deg) translateY(0); }
  50% { transform: rotateY(8deg) translateY(-8px); }
}

@keyframes tablet-float-right {
  0%, 100% { transform: rotateY(-8deg) translateY(0); }
  50% { transform: rotateY(-8deg) translateY(-8px); }
}

.commandments-eternal__text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.commandments-eternal__text p {
  margin-bottom: 1rem;
  line-height: 1.85;
}

.commandments-eternal__list {
  list-style: none;
  margin-top: 1.5rem;
}

.commandments-eternal__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.commandments-eternal__list svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ===== EXPERIENCE BAR ===== */
.experience-bar {
  position: fixed;
  left: 1.25rem;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.experience-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.6rem;
  background: rgba(10, 14, 26, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  min-width: 56px;
}

.experience-bar__btn svg {
  width: 18px;
  height: 18px;
}

.experience-bar__btn:hover,
.experience-bar__btn.active {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

/* ===== WELCOME MODAL (mobile-first full sheet) ===== */
.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 100002;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.welcome-modal.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.welcome-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 14, 0.94);
}

.welcome-modal__card {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #12182a 0%, #0a0e1a 100%);
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.welcome-modal__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: calc(1.5rem + env(safe-area-inset-top, 0px)) var(--pad-x) calc(1.25rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
  width: 100%;
  flex: 1;
  min-height: 0;
  max-height: 100dvh;
}

.welcome-modal__icon {
  margin-bottom: 0.75rem;
}

.welcome-modal__hebrew {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  color: var(--gold);
  letter-spacing: 0.15em;
}

.welcome-modal__eyebrow {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.welcome-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 5vw, 1.65rem);
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.welcome-modal__desc {
  font-size: clamp(0.85rem, 3.5vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.welcome-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.15rem;
  width: 100%;
}

.welcome-modal__btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.85rem 1rem;
  min-height: 52px;
  text-align: left;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.18);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.welcome-modal__btn:active {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.4);
}

.welcome-modal__btn-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
}

.welcome-modal__btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.welcome-modal__btn strong {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 3.2vw, 0.88rem);
  letter-spacing: 0.05em;
  color: var(--cream);
  font-weight: 500;
}

.welcome-modal__btn small {
  font-family: var(--font-ui);
  font-size: clamp(0.68rem, 2.8vw, 0.74rem);
  color: var(--text-muted);
  line-height: 1.35;
}

.welcome-modal__btn--primary {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.28);
}

.welcome-modal__voice {
  margin-bottom: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
}

.welcome-modal__voice label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.voice-select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  min-height: 44px;
  background: rgba(10, 14, 26, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.voice-select:focus {
  outline: none;
  border-color: var(--gold);
}

.voice-preview-btn {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 1rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: manipulation;
}

.voice-preview-btn.is-playing {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.18);
}

.welcome-modal__skip {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: clamp(0.72rem, 3vw, 0.78rem);
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 0.75rem 0.5rem;
  width: 100%;
  min-height: 44px;
  touch-action: manipulation;
}

.welcome-modal__skip:active {
  color: var(--gold-light);
}

@media (min-width: 600px) {
  .welcome-modal {
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    height: auto;
    overflow: visible;
  }

  .welcome-modal__card {
    width: 100%;
    max-width: min(520px, 100%);
    min-height: 0;
    max-height: min(90dvh, 720px);
    margin: 0 auto;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 0.25rem;
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.08);
  }

  .welcome-modal__scroll {
    padding: 2rem 1.75rem 1.5rem;
    max-height: min(90dvh, 720px);
  }

  .welcome-modal__btn:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.08);
  }

  .voice-preview-btn:hover {
    background: rgba(201, 168, 76, 0.18);
  }
}

html.perf-mode .welcome-modal__hebrew {
  animation: none;
  text-shadow: none;
}

html.perf-mode .welcome-modal {
  transition: none;
}

body.modal-open { overflow: hidden; }

body.modal-open .chapter-rail {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-120%) !important;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== SUMMARY POPUP (center modal) ===== */
.summary-panel {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.summary-panel.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.summary-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 16, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.summary-panel.open .summary-panel__backdrop {
  opacity: 1;
}

.summary-panel__modal {
  position: relative;
  width: min(720px, 100%);
  max-height: 85vh;
  background: linear-gradient(165deg, #0e1220 0%, #0a0e1a 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.35s ease;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.1), 0 30px 80px rgba(0, 0, 0, 0.5);
}

.summary-panel.open .summary-panel__modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.summary-panel__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: halo-breathe 5s ease-in-out infinite;
}

.summary-panel__drawer { display: none; }

.summary-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.summary-panel__label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.summary-panel__header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin: 0.5rem 0;
  letter-spacing: 0.04em;
}

.summary-panel__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.summary-panel__close {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.summary-panel__close:hover {
  background: rgba(201, 168, 76, 0.1);
}

.summary-panel__actions {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  flex-wrap: wrap;
}

.btn--sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--sm svg { width: 14px; height: 14px; }

.btn--summary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--summary svg { width: 16px; height: 16px; }

.summary-panel__cards {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.5rem 2rem;
}

.summary-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(12px);
}

.summary-card--animate {
  animation: summary-card-in 0.5s ease forwards;
}

@keyframes summary-card-in {
  to { opacity: 1; transform: translateY(0); }
}

.summary-card:hover,
.summary-card.reading {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.08);
}

.summary-card__num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(201, 168, 76, 0.3);
  font-weight: 700;
  flex-shrink: 0;
}

.summary-card__body h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.summary-card__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.summary-card__listen {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
  transition: var(--transition);
}

.summary-card__listen:hover {
  background: rgba(201, 168, 76, 0.15);
}

.summary-card__listen svg { width: 14px; height: 14px; }

body.summary-mode .section:not(#hero) {
  opacity: 0.4;
  filter: blur(1px);
  transition: opacity 0.4s, filter 0.4s;
}

/* ===== READER PLAYER ===== */
.reader-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.reader-player.active {
  transform: translateY(0);
}

.reader-player__ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.reader-player__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: wave-slide 3s ease-in-out infinite;
}

.reader-player__wave--2 {
  animation-delay: -1.5s;
  opacity: 0.5;
}

@keyframes wave-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.reader-player__inner {
  position: relative;
  background: rgba(10, 14, 26, 0.96);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(20px);
  padding: 1rem 1.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem 1.5rem;
  align-items: center;
}

.reader-player__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.reader-player__info > div {
  min-width: 0;
  flex: 1;
}

.reader-player__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: mic-pulse 2s ease-in-out infinite;
}

@keyframes mic-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
}

.reader-player__mode {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.reader-player__section {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.reader-player__progress-wrap {
  grid-column: 1 / -1;
  height: 2px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 1px;
  overflow: hidden;
}

.reader-player__progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: width 0.3s ease;
}

.reader-player__controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.reader-player__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.reader-player__btn:hover {
  background: rgba(201, 168, 76, 0.18);
}

.reader-player__btn--main {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border: none;
}

.reader-player__btn svg { width: 16px; height: 16px; }

.reader-player__btn .icon-play { display: none; }
.reader-player__btn.paused .icon-pause { display: none; }
.reader-player__btn.paused .icon-play { display: block; }

.reader-player__hint {
  grid-column: 1 / -1;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

body.is-narrating .section--reading {
  position: relative;
}

body.is-narrating .section--reading::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.15);
  pointer-events: none;
  animation: read-highlight 3s ease-in-out infinite;
}

@keyframes read-highlight {
  0%, 100% { box-shadow: inset 0 0 30px rgba(201, 168, 76, 0.03); }
  50% { box-shadow: inset 0 0 60px rgba(201, 168, 76, 0.06); }
}

/* ===== AURORA & STARS ===== */
.ambient__aurora {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 40%, rgba(201, 168, 76, 0.03) 45%, transparent 50%),
    linear-gradient(235deg, transparent 40%, rgba(74, 32, 64, 0.04) 45%, transparent 50%);
  animation: aurora-shift 15s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes aurora-shift {
  0% { opacity: 0.5; transform: skewY(-2deg); }
  100% { opacity: 1; transform: skewY(2deg); }
}

.ambient__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  background: var(--gold-light);
  border-radius: 50%;
  animation: star-twinkle 3s ease-in-out infinite;
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ===== RIPPLE EFFECT ===== */
.btn, .experience-bar__btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  transform: scale(0);
  animation: ripple-out 0.7s ease-out;
  pointer-events: none;
}

@keyframes ripple-out {
  to { transform: scale(4); opacity: 0; }
}

/* ===== Fluid breakpoints (mobile-first expansion) ===== */
@media (min-width: 540px) {
  .commandments-great__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commandments-eternal {
    text-align: left;
  }

  .commandments-eternal__tablets {
    justify-content: flex-start;
  }
}

@media (min-width: 600px) {
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__scripture {
    grid-column: 1 / -1;
  }
}

@media (min-width: 769px) {
  .content-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .messiah-content {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .yahweh-showcase {
    grid-template-columns: minmax(0, min(420px, 42vw)) minmax(0, 1fr);
  }

  .yahweh-image__frame {
    max-width: 100%;
    margin-inline: 0;
  }

  .bible-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creed-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commandments-eternal {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .trinity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 769px) and (max-width: 968px) {
  .trinity-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  }
}

@media (min-width: 900px) {
  .footer__top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.5fr);
  }

  .footer__scripture {
    grid-column: auto;
  }
}

@media (max-width: 1100px) {
  .reader-player__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem 1rem;
    padding-inline: clamp(0.75rem, 3vw, 1.5rem);
  }

  .reader-player__hint {
    display: none;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-block:
      calc(4rem + env(safe-area-inset-top, 0px))
      calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }

  .hero__scroll {
    display: none;
  }

  .welcome-modal__scroll {
    padding-block:
      calc(1rem + env(safe-area-inset-top, 0px))
      calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  .section {
    padding-block: clamp(2rem, 5vw, 3rem);
  }
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  :root {
    --pad-x: 0.75rem;
    --pad-section: 2.5rem;
    --header-offset: 3.5rem;
  }

  .hero__content.container {
    overflow-x: visible;
  }

  .scripture-quote {
    font-size: 1.15rem;
    padding: 1.25rem;
  }

  .lords-prayer {
    padding: 2rem 1.25rem;
  }

  .fact-card,
  .wisdom-card,
  .bible-card {
    padding: 1.5rem;
  }

  /* Chapter rail → horizontal bar (tablet + mobile) */
  section[id] {
    scroll-margin-top: calc(4.5rem + env(safe-area-inset-top, 0px));
  }

  body.chapter-rail-visible section[id] {
    scroll-margin-top: calc(7.75rem + env(safe-area-inset-top, 0px));
  }

  .header {
    padding-bottom: 0.75rem;
  }

  .header.scrolled {
    padding-bottom: 0.6rem;
  }

  .nav {
    min-height: 2.75rem;
  }

  .nav__logo-text {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .chapter-rail {
    right: 0;
    left: 0;
    top: calc(3.5rem + env(safe-area-inset-top, 0px));
    bottom: auto;
    width: 100%;
    max-width: 100%;
    transform: translateY(calc(-100% - 0.5rem));
    z-index: 998;
  }

  .chapter-rail.visible {
    transform: translateY(0);
  }

  .chapter-rail__panel {
    flex-direction: row;
    align-items: center;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.22);
    padding: 0.5rem 0.65rem;
    gap: 0.5rem;
    backdrop-filter: blur(18px);
    background: rgba(10, 14, 26, 0.94);
  }

  .chapter-rail__current {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    min-width: auto;
    max-width: 5.5rem;
    padding-right: 0.55rem;
    margin-right: 0.1rem;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
    flex-shrink: 0;
  }

  .chapter-rail__current-num {
    display: none;
  }

  .chapter-rail__current-title {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 5rem;
  }

  .chapter-rail__track {
    flex: 1;
    min-width: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .chapter-rail__track::before,
  .chapter-rail__track-fill,
  .chapter-rail__indicator {
    display: none !important;
  }

  .chapter-rail__list {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    gap: 0.35rem;
    padding: 0.1rem 0;
    max-width: 100%;
  }

  .chapter-rail__list::-webkit-scrollbar {
    display: none;
  }

  .chapter-rail__link {
    flex-direction: row;
    flex-shrink: 0;
    padding: 0.5rem 0.7rem;
    min-height: 36px;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid transparent;
    scroll-snap-align: center;
    transform: none !important;
    touch-action: manipulation;
  }

  .chapter-rail__link.active {
    background: rgba(201, 168, 76, 0.16);
    border-color: rgba(201, 168, 76, 0.38);
  }

  .chapter-rail__dot {
    display: none !important;
  }

  .chapter-rail__label {
    display: block !important;
    opacity: 0.55;
    transform: none !important;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .chapter-rail__link.active .chapter-rail__label {
    opacity: 1;
  }

  /* Bottom docks */
  .experience-bar {
    left: 0.65rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    top: auto;
    transform: none;
    flex-direction: row;
    gap: 0.35rem;
    z-index: 9998;
  }

  body:has(.reader-player.active) .experience-bar,
  body.reader-active .experience-bar {
    bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  }

  .experience-bar__btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0.55rem;
    touch-action: manipulation;
  }

  .experience-bar__btn span {
    display: none;
  }

  .reader-player__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    gap: 0.6rem;
  }

  .reader-player__info {
    min-width: 0;
    width: 100%;
  }

  .reader-player__info > div {
    min-width: 0;
    flex: 1;
  }

  .reader-player__section,
  .reader-player__voice {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .reader-player__section {
    font-size: 0.78rem;
  }

  .reader-player__progress-wrap {
    width: 100%;
    order: 2;
  }

  .reader-player__controls {
    justify-content: center;
    order: 3;
  }

  .reader-player__hint {
    display: none;
  }

  .back-to-top {
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    right: 0.85rem;
    width: 44px;
    height: 44px;
    z-index: 9997;
  }

  body:has(.reader-player.active) .back-to-top,
  body.reader-active .back-to-top {
    bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  }

  /* Hero + welcome → see mobile.css */

  .hero__scroll {
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  /* Sections — spacing tuned via :root tokens */

  .section__title {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  }

  .section__intro {
    font-size: 0.88rem;
    padding: 0 0.25rem;
  }

  .lead {
    font-size: 1rem;
  }

  .commandment-card {
    padding: 1.35rem 1rem 1.15rem 3.25rem;
  }

  .commandment-card__roman {
    font-size: 1.25rem;
    left: 0.65rem;
  }

  .summary-panel {
    padding: 0.5rem;
    align-items: flex-end;
  }

  .summary-panel__modal {
    max-height: calc(94dvh - env(safe-area-inset-bottom, 0px));
    width: 100%;
  }

  .summary-panel__header {
    padding: 1.15rem 1rem 0.65rem;
    gap: 0.75rem;
  }

  .summary-panel__header h2 {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .summary-panel__desc {
    font-size: 0.82rem;
  }

  .summary-panel__actions {
    flex-direction: column;
    padding: 0 1rem;
  }

  .summary-panel__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .summary-panel__cards {
    padding: 0.65rem 1rem 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .summary-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  body.summary-mode .section:not(#hero) {
    opacity: 0.6;
    filter: none;
  }

  /* Ambient — lighter on mobile */
  .ambient__glow--1 { width: 320px; height: 320px; }
  .ambient__glow--2 { width: 280px; height: 280px; }
  .ambient__glow--3 { width: 240px; height: 240px; }
  .sacred-geo { width: 260px; height: 260px; opacity: 0.5; }
  .cursor-glow { display: none !important; }

  .footer__bottom {
    text-align: center;
  }

  .footer__bottom p {
    font-size: 0.82rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  html { font-size: clamp(13px, 3.6vw, 15px); }

  .nav__logo-text {
    display: none;
  }

  .audio-toggle {
    width: 44px;
    height: 44px;
  }

  .wisdom-scroll,
  .creed-scroll {
    padding: 1.35rem 0.85rem;
  }

  .truth-reactor {
    padding: 2rem 0.5rem;
    min-height: 240px;
  }

  .truth-reactor__ring--3 { width: 220px; height: 220px; }
  .truth-reactor__ring--2 { width: 155px; height: 155px; }
  .truth-reactor__ring--1 { width: 100px; height: 100px; }

  .sacred-geo {
    width: 200px;
    height: 200px;
  }

  .faq-item__trigger {
    padding: 1rem;
    font-size: 0.88rem;
  }

  .faq-item__answer p {
    padding: 0 1rem 1rem;
  }

  .commandments-eternal {
    text-align: center;
  }

  .commandments-eternal__tablets {
    justify-content: center;
  }

  .yahweh-image__hebrew {
    font-size: 1.4rem;
  }

  .source-card {
    padding: 1.15rem;
  }

  .chapter-rail__current {
    display: none !important;
  }

  .chapter-rail__panel {
    padding: 0.4rem 0.45rem;
  }

  .chapter-rail__link {
    padding: 0.42rem 0.55rem;
    min-height: 34px;
  }

  .chapter-rail__label {
    font-size: 0.52rem;
  }

  .gospel-step {
    padding: 1.5rem 1.15rem;
  }

  .attribute-card {
    padding: 1.15rem;
  }
}

@media (hover: none) {
  .btn--gold:hover,
  .btn--outline:hover,
  .commandment-card:hover,
  .wisdom-card:hover,
  .fact-card:hover,
  .gospel-step:hover,
  .hero-journey__link:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .chapter-rail,
  .welcome-modal__card,
  .summary-panel__modal {
    transition: none !important;
  }
}

/* ===== Performance mode (mobile / touch devices) ===== */
html.perf-mode #particles,
html.perf-mode .ambient__aurora,
html.perf-mode .ambient__stars,
html.perf-mode .sacred-geo,
html.perf-mode .hero__beams,
html.perf-mode .cursor-glow {
  display: none !important;
}

html.perf-mode .ambient__glow {
  filter: blur(60px);
  opacity: 0.08;
  animation: none !important;
}

html.perf-mode .ambient__mesh,
html.perf-mode .ambient__rays {
  animation: none !important;
  opacity: 0.4;
}

html.perf-mode .truth-reactor__ring,
html.perf-mode .fact-card__border,
html.perf-mode .stat-card__orbit,
html.perf-mode .commandments-fire,
html.perf-mode .sinai-tablet,
html.perf-mode .hero-journey__track::before {
  animation: none !important;
}

html.perf-mode .header.scrolled,
html.perf-mode .chapter-rail__panel,
html.perf-mode .welcome-modal__backdrop,
html.perf-mode .summary-panel__backdrop,
html.perf-mode .reader-player__inner,
html.perf-mode .experience-bar__btn,
html.perf-mode .back-to-top,
html.perf-mode .fact-card,
html.perf-mode .commandment-card,
html.perf-mode .wisdom-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html.perf-mode .header.scrolled {
  background: rgba(10, 14, 26, 0.97);
}

html.perf-mode .chapter-rail__panel {
  background: rgba(10, 14, 26, 0.97);
}

html.perf-mode body.summary-mode .section:not(#hero) {
  filter: none !important;
}

html.perf-mode .yahweh-image:hover .yahweh-image__frame img {
  transform: none;
}

html.perf-mode .commandment-card:hover,
html.perf-mode .wisdom-card:hover,
html.perf-mode .fact-card:hover,
html.perf-mode .gospel-step:hover {
  transform: none;
  box-shadow: none;
}
