/* ===========================
   ORDER OF KINGS — v2
   Black · White · Sapphire
   =========================== */

:root {
  --black:       #060608;
  --deep:        #0c0c10;
  --surface:     #111116;
  --surface-2:   #18181f;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.04);

  /* Sapphire blue accent */
  --blue:        #2563eb;
  --blue-light:  #3b82f6;
  --blue-glow:   rgba(37,99,235,0.18);
  --blue-dim:    rgba(37,99,235,0.08);

  --white:       #f8f8fa;
  --white-80:    rgba(248,248,250,0.8);
  --white-50:    rgba(248,248,250,0.5);
  --white-20:    rgba(248,248,250,0.2);
  --white-08:    rgba(248,248,250,0.08);
  --white-04:    rgba(248,248,250,0.04);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-ui:      'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  --transition:  0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ─── NOISE ─── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── CURSOR ─── */
.cursor {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--blue-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s;
}
.cursor-follower {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: left .1s ease, top .1s ease, width .3s, height .3s, border-color .3s;
}

/* ─── INTRO ─── */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introOut 0.7s ease 2.6s forwards;
}
@keyframes introOut {
  to { opacity: 0; pointer-events: none; }
}
.intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: introUp 0.8s ease 0.2s both;
}
@keyframes introUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.intro-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: invert(1);
}
.intro-line {
  width: 0;
  height: 1px;
  background: var(--blue);
  animation: lineGrow 0.5s ease 1s forwards;
}
@keyframes lineGrow { to { width: 200px; } }
.intro-wordmark {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--white-50);
  animation: fadeIn 0.5s ease 1.2s both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─── LOGO FALLBACK ─── */
.logo-fallback {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--white);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.intro-logo-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: invert(1);
}
.intro-logo-wrap .logo-fallback {
  width: 80px;
  height: 80px;
  font-size: 36px;
  opacity: 0.6;
}
.nav-logo-fallback {
  width: 36px;
  height: 36px;
  font-size: 18px;
  opacity: 0.7;
}
.footer-logo-fallback {
  width: 40px;
  height: 40px;
  font-size: 20px;
  opacity: 0.3;
}

/* ─── STICKY VIDEO POPUP ─── */
.svp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.svp.visible {
  display: block;
}
.svp.visible.animated {
  opacity: 1;
  transform: translateY(0);
}

.svp-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px 12px 12px;
  backdrop-filter: blur(24px);
  cursor: none;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 0 1px var(--border-2), 0 0 40px rgba(37,99,235,0.08);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: left;
  position: relative;
}
.svp-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(59,130,246,0.2), 0 0 50px rgba(37,99,235,0.12);
}

/* Video thumbnail */
.svp-thumb {
  position: relative;
  width: 72px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--deep);
  border: 1px solid var(--border);
}
.svp-thumb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1520 0%, #1a2840 50%, #0a0f1a 100%);
}
.svp-thumb-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(37,99,235,0.15) 50%,
    transparent 70%
  );
  animation: thumbSheen 3s ease-in-out infinite;
}
@keyframes thumbSheen {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
/* Fake scene elements in thumbnail */
.svp-thumb-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: rgba(37,99,235,0.08);
}

.svp-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 2;
}
.svp-play svg {
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6));
}

.svp-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.svp-title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.svp-sub {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--white-50);
}

.svp-dismiss {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--white-50);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background var(--transition), color var(--transition);
}
.svp-dismiss:hover {
  background: var(--surface);
  color: var(--white);
  border-color: var(--white-20);
}
  color: var(--white-50);
  display: flex;
  transition: color var(--transition);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,6,8,0.88);
  backdrop-filter: blur(24px);
  border-color: var(--border);
}
.nav-logo-link { display: flex; align-items: center; }
.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 0 8px rgba(180,180,200,0.15));
}

/* ─── BUTTONS ─── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 13px 28px;
  box-shadow: 0 0 0 1px rgba(59,130,246,0.3), 0 8px 24px rgba(37,99,235,0.25);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.5), 0 12px 32px rgba(37,99,235,0.35);
}
.btn-ghost {
  background: var(--white-08);
  color: var(--white-80);
  padding: 13px 28px;
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--white-20);
  color: var(--white);
  border-color: var(--white-20);
}
.btn-outline-nav {
  background: transparent;
  color: var(--white-80);
  padding: 10px 22px;
  border: 1px solid var(--border);
}
.btn-outline-nav:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-lg { padding: 18px 40px; font-size: 15px; }
.btn-arr { opacity: 0.7; }

/* ─── INNER CONTAINER ─── */
.inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 52px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -100px;
  top: -100px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  padding: 0px 48px 40px;
  flex: 1;
  text-align: center;
}

.hero-copy {
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 10px;
}
.eyebrow-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--blue-light);
  animation: pipPulse 2s ease-in-out infinite;
}
@keyframes pipPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--blue-light); }
  50% { opacity: 0.6; box-shadow: 0 0 4px var(--blue); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--blue-light);
}
.reveal-line {
  display: inline;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-line.shown { opacity: 1; transform: translateY(0); }
.r2 { transition-delay: 0.12s; }
.r3 { transition-delay: 0.24s; }

.hero-sub {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--white-50);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub strong {
  color: var(--white);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

/* VSL stacked panel */
.hero-vsl {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
  width: 100%;
}
.hero-vsl.shown { opacity: 1; transform: translateY(0); }

.vsl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border-2), 0 0 60px var(--blue-glow);
}
.vsl-badge {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: var(--blue-dim);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
}
.vsl-video-wrap {
  aspect-ratio: 16/9;
  background: var(--deep);
  width: 100%;
}
.vsl-video-wrap > div { width: 100% !important; height: 100% !important; }

.hero-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 40px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-20);
}
.hero-scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: barPulse 2s ease-in-out infinite;
}
@keyframes barPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── SECTION BLOCKS ─── */
.section-block {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.sec-num {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 48px;
}
.sec-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.sec-headline em {
  font-style: italic;
  color: var(--blue-light);
}
.sec-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--white-50);
  margin-bottom: 72px;
  line-height: 1.5;
}

/* ─── CONFESSION ─── */
.confession { background: var(--deep); }

.opener {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-style: italic;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.15;
}
.prose-block p {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--white-50);
  margin-bottom: 18px;
  line-height: 1.8;
}
.prose-block em { color: var(--white); font-style: italic; }

.trade-table {
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.trade-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.trade-row:last-child { border-bottom: none; }
.trade-row:hover { background: var(--white-04); }
.t-from {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--white-50);
}
.t-arrow {
  color: var(--blue);
  font-size: 18px;
  text-align: center;
}
.t-to {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--white);
  text-align: right;
}

/* ─── DIAGNOSIS ─── */
.diagnosis { background: var(--black); }

.diag-strong {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.diag-soft {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--white-50);
  margin-bottom: 64px;
  line-height: 1.5;
}

.ceiling-card {
  border: 1px solid var(--border);
  border-left: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 36px 40px;
  background: var(--blue-dim);
  margin-bottom: 56px;
}
.ceiling-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.ceiling-card p {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 12px;
}
.ceiling-card .ceiling-sub {
  color: var(--white-50);
  font-size: 15px;
  margin-bottom: 0;
}

.cost-list {
  list-style: none;
  margin-bottom: 64px;
}
.cost-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-2);
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--white-50);
  transition: color var(--transition);
  opacity: 0;
  transform: translateX(-12px);
  line-height: 1.6;
}
.cost-item.shown { opacity: 1; transform: translateX(0); }
.cost-item:hover { color: var(--white); }
.cost-item strong { color: var(--white); font-weight: 500; }
.cost-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 8px;
}

.scripture {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 30px);
  color: var(--white);
  line-height: 1.5;
  text-align: center;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.scripture cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  margin-top: 16px;
}
.scripture-aside {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--white-50);
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.02em;
  font-style: italic;
}
.scripture-centered {
  text-align: center;
  border-top: none;
  padding-top: 0;
  margin-bottom: 64px;
  font-size: clamp(17px, 2.2vw, 24px);
}

/* Shift section extras */
.shift-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--blue-light);
  border-left: 2px solid var(--blue);
  padding: 16px 24px;
  margin-bottom: 48px;
  background: var(--blue-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.5;
}
.sec-intro-sub {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white-50);
  text-transform: uppercase;
  margin-top: -44px;
  margin-bottom: 64px;
}
.outcome-scripture {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--blue-light);
  margin-top: 16px;
  opacity: 0.8;
  line-height: 1.5;
  border: none;
  padding: 0;
  text-align: left;
}

/* ─── SHIFT ─── */
.shift { background: var(--deep); }

.mk-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 80px;
}
.mk-col {
  padding: 48px 36px;
}
.mk-left {
  background: rgba(255,255,255,0.015);
  border-right: 1px solid var(--border);
}
.mk-right {
  background: var(--blue-dim);
}
.mk-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.manager-tag { color: var(--white-20); }
.king-tag { color: var(--blue-light); }

.mk-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.mk-col li {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}
.mk-col li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--white-20);
  font-size: 10px;
}
.mk-right li { color: var(--white-80); }
.mk-right li::before { color: var(--blue); }

.mk-divider-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  background: var(--surface-2);
}
.mk-divider-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  max-height: 60px;
}
.mk-divider-icon {
  font-size: 18px;
  color: var(--blue);
  animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(3px); opacity: 1; }
}

.outcomes { display: flex; flex-direction: column; }
.outcome-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-2);
  transition: padding-left var(--transition), background var(--transition);
  opacity: 0;
  transform: translateY(16px);
}
.outcome-item.shown { opacity: 1; transform: translateY(0); }
.outcome-item:first-child { border-top: 1px solid var(--border-2); }
.outcome-item:hover { padding-left: 8px; }

.out-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--blue);
  opacity: 0.5;
}
.out-body strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--white);
  margin-bottom: 8px;
}
.out-body p {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.7;
}

/* ─── GOSHEN ─── */
.goshen {
  position: relative;
  padding: 160px 0;
  background: var(--black);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.goshen-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-ui);
  font-size: clamp(100px, 20vw, 240px);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(37,99,235,0.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.goshen-content { position: relative; z-index: 2; }
.goshen-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 32px;
}
.goshen-body {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--white-50);
  margin-bottom: 18px;
  line-height: 1.8;
}
.goshen-body { color: var(--white-50); margin-bottom: 18px; line-height: 1.8; font-size: clamp(15px, 1.7vw, 18px); }
.goshen-body strong { color: var(--white); font-weight: 400; }
.goshen-highlight {
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.5;
  margin-top: 8px;
}
.goshen-scripture {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--white-80);
  border: 1px solid var(--border);
  border-left: 2px solid var(--blue);
  padding: 20px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--blue-dim);
  text-align: left;
  margin: 32px 0;
  line-height: 1.6;
}
.goshen-scripture cite {
  display: block;
  font-size: 12px;
  font-style: normal;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  margin-top: 10px;
}
.goshen-rule {
  width: 48px;
  height: 1px;
  background: var(--blue);
  margin: 48px auto;
  opacity: 0.5;
}
.goshen-close {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--white);
  line-height: 1.6;
}

/* ─── OFFER ─── */
.offer { background: var(--surface); }
.offer-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.offer-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.offer-headline em { font-style: italic; color: var(--blue-light); }
.offer-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--white-80);
  margin-bottom: 32px;
  line-height: 1.5;
  max-width: 680px;
}
.offer-body {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--white-50);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 20px;
}
.offer-body:last-of-type {
  margin-bottom: 64px;
}
.offer-scripture-inline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue-light);
  border-left: 2px solid var(--blue);
  padding-left: 20px;
  margin: 28px 0;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.6;
}

.delivs { display: flex; flex-direction: column; }
.deliv {
  display: grid;
  grid-template-columns: 72px 1fr;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-2);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease, padding-left 0.3s;
}
.deliv.shown { opacity: 1; transform: translateY(0); }
.deliv:first-child { border-top: 1px solid var(--border-2); }
.deliv:hover { padding-left: 6px; }
.deliv-n {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue);
  opacity: 0.6;
  padding-top: 3px;
}
.deliv-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--white);
  margin-bottom: 8px;
}
.deliv-text p {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.7;
}

/* ─── STANDARD ─── */
.standard { background: var(--deep); }
.standard-body {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--white-50);
  margin-bottom: 48px;
  line-height: 1.7;
}
.std-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.std-col { padding: 48px 36px; }
.std-no {
  border-right: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}
.std-yes { background: var(--blue-dim); }
.std-col-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.std-no .std-col-label { color: var(--white-20); }
.std-yes .std-col-label { color: var(--blue-light); }
.std-col ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.std-col li {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.std-no li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--white-20);
  font-size: 13px;
}
.std-yes li { color: var(--white-80); }
.std-yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-light);
  font-size: 12px;
}

/* ─── APPLY ─── */
.apply-section {
  position: relative;
  padding: 180px 0;
  background: var(--black);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.apply-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.025;
  overflow: hidden;
  /* Prevent broken-image icon from showing */
  font-size: 0;
  line-height: 0;
}
.apply-bg-logo img {
  width: clamp(300px, 50vw, 600px);
  opacity: 0.06;
  display: block;
}
.apply-bg-logo img[src="logo.png"] {
  /* Only show if image loads */
}
/* If image fails, hide the whole container */
.apply-bg-logo img:not([src]),
.apply-bg-logo img[src=""] {
  display: none;
}
.apply-inner { position: relative; z-index: 2; }
.apply-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}
.apply-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.apply-headline em { font-style: italic; color: var(--blue-light); }
.apply-body-text {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--white-50);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 20px;
}
.apply-family {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--white-80);
}
.apply-scripture {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--white);
  max-width: 560px;
  margin: 40px auto 20px;
  line-height: 1.5;
}
.apply-scripture cite {
  display: block;
  font-size: 12px;
  font-style: normal;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  margin-top: 12px;
}
.apply-invitation {
  font-size: 14px;
  color: var(--white-50);
  margin-bottom: 48px;
  font-style: italic;
  font-family: var(--font-display);
}
}
.apply-note {
  margin-top: 24px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--white-20);
  line-height: 1.8;
}

/* ─── FOOTER ─── */
.footer {
  padding: 60px 32px;
  background: var(--deep);
  border-top: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo-wrap {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: invert(1);
}
.footer-name {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-20);
}
.footer-tag {
  font-size: 11px;
  color: var(--white-20);
  letter-spacing: 0.1em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-layout {
    gap: 16px;
    padding: 12px 20px 32px;
  }
  .hero-headline { font-size: clamp(24px, 5.5vw, 30px); }
  .hero-sub { font-size: 16px; }
  .hero-eyebrow { font-size: 11px; }
  .hero-actions { justify-content: center; }
  .sec-headline { font-size: clamp(36px, 9vw, 48px); }
  .offer-headline { font-size: clamp(36px, 9vw, 48px); }
  .apply-headline { font-size: clamp(40px, 10vw, 56px); }
  .opener { font-size: clamp(24px, 6vw, 32px); }
  .goshen-lead { font-size: clamp(24px, 6vw, 32px); }
  .nav { padding: 16px 24px; }
  .mk-grid { grid-template-columns: 1fr; }
  .mk-divider-col {
    flex-direction: row;
    padding: 16px 20px;
    gap: 16px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .mk-divider-icon { transform: rotate(90deg); }
  .mk-left { border-right: none; border-bottom: 1px solid var(--border); }
  .std-cols { grid-template-columns: 1fr; }
  .std-no { border-right: none; border-bottom: 1px solid var(--border); }
  .outcome-item { grid-template-columns: 48px 1fr; }
  .deliv { grid-template-columns: 48px 1fr; }
  .inner { padding: 0 20px; }
  .section-block { padding: 80px 0; }
  .apply-section { padding: 120px 0; }
  .goshen { padding: 120px 0; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  .btn-pill, a, button { cursor: pointer; }
  /* Popup mobile */
  .svp { bottom: 16px; right: 16px; }
  .svp-card { padding: 10px 14px 10px 10px; gap: 12px; }
  .svp-thumb { width: 56px; height: 38px; }
  .svp-title { font-size: 12px; }
  .svp-sub { font-size: 11px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(22px, 5.5vw, 28px); }
  .hero-sub { font-size: 15px; }
  .sec-headline { font-size: clamp(32px, 8.5vw, 42px); }
  .offer-headline { font-size: clamp(32px, 8.5vw, 42px); }
  .apply-headline { font-size: clamp(34px, 9.5vw, 46px); }
  .btn-lg { padding: 15px 28px; font-size: 13px; }
  .nav-logo-img { height: 28px; }
  .svp-card { max-width: calc(100vw - 32px); }
}

/* ─── SCROLL ANIMATION BASE ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.shown { opacity: 1; transform: translateY(0); }
