/* ═══════════════════════════════════════════════════
   JESUS CLUBS IN SCHOOLS — jesus-clubs.css
   Palette: Deep teal · Sage · Warm white · Gold-green
   Type: Plus Jakarta Sans (display/body) + Lora (gospel copy) + DM Mono (utility)
   Signature: Interactive "Know Your Rights" accordion
   Audience: Middle & high school students 11–18
   Framing: The Playbook
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Mono:wght@400;500&display=swap');

/* ── TOKENS ──────────────────────────────────────── */
:root {
  --teal:       #0D3B38;
  --teal-mid:   #1A5C54;
  --teal-lt:    #2A7A6E;
  --sage:       #3D7A6F;
  --sage-lt:    #6FA89E;
  --sage-pale:  #C8DDD8;
  --gold:       #8FB840;
  --gold-lt:    #A8D44A;
  --gold-dim:   rgba(143,184,64,.15);
  --gold-glow:  rgba(143,184,64,.3);
  --white:      #F7F9F7;
  --chalk:      #E8EDE8;
  --chalk-deep: #D8E0D8;
  --rule:       #C4CEC4;
  --ink:        #0A1F1D;
  --slate:      #2C4840;
  --slate-mid:  #4A6A60;
  --slate-lt:   #7A9A90;

  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md:   1.1875rem;
  --fs-lg:   1.5rem;
  --fs-xl:   2rem;
  --fs-2xl:  2.75rem;
  --fs-3xl:  3.5rem;
  --fs-disp: clamp(2.75rem, 6vw, 5.5rem);

  --gut:   clamp(1.5rem, 5vw, 5rem);
  --max-w: 1240px;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
img, svg { display: block; max-width: 100%; }

/* ── CONTAINER ───────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* ── SCREEN READER ONLY ──────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── CURSOR ──────────────────────────────────────── */
.cur-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease), background .2s;
}
.cur-ring {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid rgba(143,184,64,.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .4s var(--ease), height .4s var(--ease);
}
.cur-dot.hov  { width: 14px; height: 14px; background: var(--teal); }
.cur-ring.hov { width: 44px; height: 44px; border-color: rgba(13,59,56,.4); }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.25rem var(--gut);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .5s var(--ease-std), padding .4s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247,249,247,.96);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  padding-top: 1rem; padding-bottom: 1rem;
  border-bottom-color: var(--rule);
}
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .1em;
  color: var(--slate-lt);
  transition: color .2s;
}
.nav-back:hover { color: var(--teal); }
.nav-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -.01em;
}
.nav-brand em {
  color: var(--gold);
  font-style: normal;
}
.nav-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--white);
  background: var(--teal);
  padding: .6rem 1.4rem;
  border-radius: 100px;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--teal-lt); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s;
}
.nav-burger:hover { border-color: var(--teal); }
.b-bar {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--teal);
  transition: transform .35s var(--ease), opacity .25s, width .35s;
  transform-origin: center;
}
.nav-burger.open .b-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open .b-bar:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open .b-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────── */
.mob-menu {
  position: fixed; inset: 0;
  z-index: 190;
  background: var(--teal);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 1.25rem var(--gut);
}
.mob-menu.open { transform: translateX(0); }
.mob-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2.5rem;
}
.mob-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.mob-brand em { color: var(--gold); font-style: normal; }
.mob-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,249,247,.6);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  transition: border-color .2s, color .2s;
}
.mob-close:hover { border-color: var(--gold); color: var(--gold); }
.mob-nav { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mob-nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 8vw, 3rem);
  font-weight: 800;
  color: rgba(247,249,247,.7);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s, padding-left .3s var(--ease);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.mob-nav-link:hover { color: var(--gold); padding-left: .75rem; }
.mob-foot {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 1.5rem;
}
.mob-back-lnk {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .1em;
  color: rgba(247,249,247,.4);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s;
}
.mob-back-lnk:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   HERO — The Playbook
═══════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Playbook ghost watermark — the signature visual anchor */
.hero-watermark {
  position: absolute;
  right: -3vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 800;
  color: rgba(247,249,247,.04);
  line-height: 1;
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Subtle diagonal grid lines — field markings */
.hero-field {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent calc(100% / 6 - 1px),
      rgba(247,249,247,.03) calc(100% / 6 - 1px),
      rgba(247,249,247,.03) calc(100% / 6)
    );
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  padding-bottom: 4.5rem;
}

.hero-kicker {
  opacity: 0;
  animation: fadeUp .8s var(--ease) .15s forwards;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-kicker-badge {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--gold);
  padding: .35rem .85rem;
  border-radius: 100px;
}
.hero-kicker-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .12em;
  color: rgba(247,249,247,.45);
}

.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-disp);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.025em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp .9s var(--ease) .3s forwards;
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  display: block;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(247,249,247,.12);
  opacity: 0;
  animation: fadeUp .9s var(--ease) .65s forwards;
}

.hero-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-md);
  font-weight: 300;
  color: rgba(247,249,247,.65);
  line-height: 1.85;
}
.hero-desc strong {
  color: rgba(247,249,247,.9);
  font-weight: 600;
}

.hero-law {
  background: rgba(247,249,247,.06);
  border: 1px solid rgba(247,249,247,.1);
  border-left: 3px solid var(--gold);
  padding: 1.75rem;
  border-radius: 0 8px 8px 0;
}
.hero-law-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}
.hero-law-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: var(--fs-md);
  font-weight: 400;
  color: rgba(247,249,247,.85);
  line-height: 1.65;
}
.hero-law-cite {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .12em;
  color: rgba(247,249,247,.35);
  display: block;
  margin-top: .75rem;
}

.hero-scroll {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.0s forwards;
}
.hero-scroll span {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247,249,247,.3);
}
.hero-scroll-bar {
  width: 40px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite 1.2s;
}
@keyframes scrollPulse { 0%,100%{opacity:.3;width:28px} 50%{opacity:.8;width:56px} }

/* ═══════════════════════════════════════════════
   LEGAL FOUNDATION
═══════════════════════════════════════════════ */
.legal {
  background: var(--white);
  padding: 6rem 0;
  border-bottom: 1px solid var(--rule);
}
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.legal-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.legal-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); }
.legal-hl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.legal-hl em { font-style: italic; font-weight: 400; color: var(--sage); }
.legal-p {
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--slate-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.legal-p strong { font-weight: 700; color: var(--teal); }

/* The three legal facts — visual callout blocks */
.legal-facts {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule);
}
.legal-fact {
  background: var(--white);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.25rem;
  align-items: start;
  transition: background .2s;
}
.legal-fact:hover { background: var(--chalk); }
.legal-fact-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.legal-fact-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: .35rem;
}
.legal-fact-body {
  font-size: var(--fs-sm);
  color: var(--slate-mid);
  line-height: 1.65;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════
   HOW TO START — numbered vertical timeline
   (The playbook diagram)
═══════════════════════════════════════════════ */
.start {
  background: var(--chalk);
  padding: 6rem 0;
  border-bottom: 1px solid var(--rule);
}
.start-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.start-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-mid);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}
.start-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--teal-mid); }
.start-hl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--teal);
  line-height: 1.1;
}
.start-hl em { font-style: italic; font-weight: 400; color: var(--sage); }
.start-sub {
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--slate-mid);
  line-height: 1.75;
  margin-top: 1rem;
}

/* Vertical timeline — genuine sequence, numbers earned */
.steps {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

/* The connecting line */
.steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--sage-pale));
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.step:last-child { padding-bottom: 0; }

.step-num {
  width: 58px; height: 58px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background .25s, transform .25s var(--ease);
  letter-spacing: -.02em;
}
.step:hover .step-num {
  background: var(--teal-lt);
  transform: scale(1.08);
}

.step-body {
  padding-top: .75rem;
}
.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.step-desc {
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--slate-mid);
  line-height: 1.8;
  margin-bottom: .75rem;
}
.step-tip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--teal-mid);
  background: rgba(13,59,56,.07);
  padding: .5rem .9rem;
  border-radius: 100px;
}
.step-tip::before {
  content: '💡';
  font-size: .9rem;
}

/* ═══════════════════════════════════════════════
   RUN IT WELL — practical leadership
═══════════════════════════════════════════════ */
.run {
  background: var(--white);
  padding: 6rem 0;
  border-bottom: 1px solid var(--rule);
}
.run-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.run-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.run-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); }
.run-hl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--teal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.run-hl em { font-style: italic; font-weight: 400; color: var(--sage); }
.run-p {
  font-size: var(--fs-md);
  color: var(--slate-mid);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-weight: 400;
}
.run-p strong { color: var(--teal); font-weight: 700; }

/* Leadership principles — horizontal strips */
.run-principles {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule);
}
.run-principle {
  background: var(--white);
  padding: 1.5rem 1.75rem;
  border-left: 3px solid transparent;
  transition: background .2s, border-color .25s;
}
.run-principle:hover {
  background: var(--chalk);
  border-left-color: var(--gold);
}
.run-principle-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: .35rem;
}
.run-principle-body {
  font-size: var(--fs-sm);
  color: var(--slate-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   PITFALLS + HIGH POINTS — honest section
═══════════════════════════════════════════════ */
.pitfalls {
  background: var(--teal);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.pitfalls-watermark {
  position: absolute;
  right: -2vw; bottom: -3vw;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 800;
  color: rgba(247,249,247,.03);
  line-height: 1;
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
}
.pitfalls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.08);
}
.pitfalls-col {
  background: rgba(13,59,56,.6);
  padding: 3rem 2.5rem;
}
.pitfalls-col-header {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.pitfalls-col-header span {
  font-size: 1.25rem;
}
.col-highs .pitfalls-col-header { color: var(--gold); border-bottom: 2px solid var(--gold); }
.col-lows  .pitfalls-col-header { color: var(--sage-lt); border-bottom: 2px solid var(--sage-lt); }

.pitfall-items { display: flex; flex-direction: column; gap: .75rem; }
.pitfall-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: .75rem;
  align-items: start;
}
.pitfall-mark {
  font-size: .9rem;
  margin-top: .1rem;
  flex-shrink: 0;
}
.pitfall-text {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: rgba(247,249,247,.65);
  line-height: 1.6;
}
.pitfall-text strong {
  color: rgba(247,249,247,.9);
  font-weight: 600;
  display: block;
  margin-bottom: .15rem;
}

/* ═══════════════════════════════════════════════
   GOSPEL CORE — the theological anchor
═══════════════════════════════════════════════ */
.gospel {
  background: var(--chalk);
  padding: 6rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.gospel-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.gospel-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-mid);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.gospel-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--teal-mid); }
.gospel-hl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.gospel-hl em { font-style: italic; font-weight: 400; color: var(--sage); }
.gospel-body {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  text-align: left;
}
.gospel-body strong { font-weight: 600; color: var(--teal); }

.gospel-verse {
  background: var(--teal);
  padding: 2.5rem 3rem;
  margin-top: 2.5rem;
  text-align: center;
  border-radius: 4px;
}
.gospel-verse-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  color: rgba(247,249,247,.9);
  line-height: 1.6;
  display: block;
  margin-bottom: .75rem;
}
.gospel-verse-ref {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
   KNOW YOUR RIGHTS — interactive accordion
   Signature element: CSS-powered, smooth height transition
═══════════════════════════════════════════════ */
.rights {
  background: var(--white);
  padding: 6rem 0;
  border-bottom: 1px solid var(--rule);
}
.rights-header {
  max-width: 640px;
  margin-bottom: 3rem;
}
.rights-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.rights-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); }
.rights-hl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--teal);
  line-height: 1.15;
  margin-bottom: .75rem;
}
.rights-sub {
  font-size: var(--fs-md);
  color: var(--slate-mid);
  line-height: 1.75;
}

/* Accordion items */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule);
  border: 1.5px solid var(--rule);
}

.accord-item { background: var(--white); }

.accord-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  transition: background .2s;
  gap: 1.5rem;
}
.accord-trigger:hover { background: var(--chalk); }
.accord-item.is-open .accord-trigger { background: var(--chalk); }

.accord-question {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.35;
  flex: 1;
}

.accord-icon {
  width: 32px; height: 32px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .4s var(--ease), background .2s;
}
.accord-icon svg {
  width: 16px; height: 16px;
  stroke: var(--teal);
  transition: stroke .2s;
}
.accord-item.is-open .accord-icon {
  transform: rotate(45deg);
  background: var(--teal);
}
.accord-item.is-open .accord-icon svg { stroke: var(--gold); }

.accord-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.accord-item.is-open .accord-body { max-height: 600px; }

.accord-content {
  padding: 0 2rem 2rem;
  border-top: 1px solid var(--rule);
  margin-top: 0;
  padding-top: 1.5rem;
}
.accord-answer {
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--slate-mid);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.accord-answer strong { color: var(--teal); font-weight: 700; }
.accord-answer:last-child { margin-bottom: 0; }

.accord-verdict {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: .5rem 1rem;
  border-radius: 100px;
  margin-top: .5rem;
}
.accord-verdict-yes {
  background: rgba(143,184,64,.12);
  color: #4A7A00;
}
.accord-verdict-no {
  background: rgba(200,60,60,.1);
  color: #8B2020;
}

/* ═══════════════════════════════════════════════
   CONNECT — reach out to Eric
═══════════════════════════════════════════════ */
.connect {
  background: var(--teal);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.connect-atm {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(143,184,64,.08) 0%, transparent 70%);
  pointer-events: none;
}
.connect-inner {
  position: relative; z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.connect-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.connect-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); }
.connect-hl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.connect-hl em { color: var(--gold); font-style: normal; }
.connect-sub {
  font-size: var(--fs-md);
  font-weight: 300;
  color: rgba(247,249,247,.6);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.connect-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  position: relative;
}
.form-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247,249,247,.35);
  transition: color .25s;
}
.form-field:focus-within .form-label { color: var(--gold); }
.form-input,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(247,249,247,.2);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-md);
  font-weight: 300;
  padding: .85rem 0 .6rem;
  outline: none;
  transition: border-color .3s var(--ease);
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  min-height: 90px;
  resize: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(247,249,247,.2);
  font-weight: 300;
}
.form-input:focus,
.form-textarea:focus { border-bottom-color: var(--gold); }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2.25rem;
  background: var(--gold);
  color: var(--teal);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--fs-base);
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  border: 2px solid var(--gold);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-lt);
  transform: translateX(-101%);
  transition: transform .4s var(--ease);
}
.form-submit:hover::before { transform: none; }
.form-submit:hover {
  box-shadow: 0 0 24px var(--gold-glow);
  transform: translateY(-2px);
}
.form-submit span, .form-submit svg { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(247,249,247,.4);
}
.footer-brand em { color: var(--gold); font-style: normal; }
.footer-back {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .1em;
  color: rgba(247,249,247,.3);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s;
}
.footer-back:hover { color: var(--gold); }
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: rgba(247,249,247,.15);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.rev {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.rev.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rev { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 900px
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-split  { grid-template-columns: 1fr; gap: 2rem; }
  .legal-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .run-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .pitfalls-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 700px mobile
═══════════════════════════════════════════════ */
@media (max-width: 700px) {
  :root { --gut: 1.25rem; }
  body  { cursor: auto; }
  .cur-dot, .cur-ring { display: none; }
  .nav-cta    { display: none; }
  .nav-burger { display: flex; }
  body.mob-open { overflow: hidden; }

  .hero-inner   { padding-top: 100px; padding-bottom: 3rem; }
  .hero-split   { margin-top: 2rem; padding-top: 1.5rem; }
  .legal        { padding: 4rem 0; }
  .start        { padding: 4rem 0; }
  .steps::before { left: 24px; }
  .step         { grid-template-columns: 50px 1fr; gap: 1.25rem; }
  .step-num     { width: 50px; height: 50px; font-size: 1rem; }
  .run          { padding: 4rem 0; }
  .pitfalls     { padding: 4rem 0; }
  .pitfalls-col { padding: 2rem 1.5rem; }
  .gospel       { padding: 4rem 0; }
  .gospel-verse { padding: 2rem; }
  .rights       { padding: 4rem 0; }
  .accord-trigger { padding: 1.25rem 1.25rem; }
  .accord-content { padding: 0 1.25rem 1.5rem; padding-top: 1.25rem; }
  .accord-question { font-size: var(--fs-base); }
  .connect      { padding: 4rem 0; }
  .form-row     { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 480px small
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.25rem, 11vw, 3rem); }
  .pitfalls-col  { padding: 1.75rem 1.25rem; }
}

/* Step stagger — JS-toggled visibility class */
.step-hidden {
  opacity: 0;
  transform: translateX(-16px);
}

