/* ============================================================
   Enrollment System — landing page (v2 design, standalone build)
   Palette: cream #F5F3EE, ink #1A1714, green #1C5B41,
            sage #7FB89F, coral #E5533C
   Fonts:   Hanken Grotesk (sans) · Newsreader (serif accents)
   ============================================================ */

:root {
  --bg:        #F5F3EE;
  --bg-alt:    #F0EDE6;
  --card:      #FBFAF6;
  --ink:       #1A1714;
  --green:     #1C5B41;
  --sage:      #7FB89F;
  --coral:     #E5533C;
  --coral-dk:  #C43F2A;

  --ink-90: rgba(26,23,20,.90);
  --ink-70: rgba(26,23,20,.70);
  --ink-60: rgba(26,23,20,.60);
  --ink-45: rgba(26,23,20,.45);
  --ink-12: rgba(26,23,20,.12);
  --ink-10: rgba(26,23,20,.10);
  --ink-08: rgba(26,23,20,.08);

  --cream-90: rgba(245,243,238,.90);
  --cream-70: rgba(245,243,238,.70);
  --cream-50: rgba(245,243,238,.50);

  --sans: 'Hanken Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;

  --green-shadow: 0 10px 24px -8px rgba(28,91,65,.6);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { margin: 0; }
p { margin: 0; }
img, svg { max-width: 100%; }

::selection { background: var(--green); color: var(--bg); }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--bg);
  padding: 12px 18px; border-radius: 0 0 10px 0; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; margin-inline: auto; padding-inline: 32px; max-width: 1200px; }
.container-wide   { max-width: 1000px; }
.container-narrow { max-width: 920px; }
.container-tight  { max-width: 760px; }
.container-form   { max-width: 820px; }

.section       { padding: 96px 0 0; }
.section:last-of-type,
.section#apply  { padding-bottom: 40px; }
.section-flush { padding: 96px 0 0; }

/* ---------- Shared type ---------- */
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.kicker-sage { color: var(--sage); }

.h2 {
  font-weight: 800; font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1.1; letter-spacing: -1.2px;
}
.h2-center { margin-inline: auto; max-width: 720px; }
.h2-on-dark { color: var(--bg); }

.lead { font-size: 19px; line-height: 1.6; color: var(--ink-70); margin-bottom: 20px; }
.lead:last-child { margin-bottom: 0; }
.lead-center { margin-inline: auto; }
.lead-on-dark { color: var(--cream-90); }

.accent-green { color: var(--green); }
.accent-sage  { color: var(--sage); }

.serif-line {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 1.75rem); line-height: 1.3;
  color: var(--ink); margin: 8px 0 0;
}
.serif-quote {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 1.625rem);
  line-height: 1.35; margin: 0;
}

.center-head { text-align: center; margin-bottom: 48px; }
.center-head .h2 { margin-bottom: 16px; }

.arrow { display: inline-block; }

/* dots */
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex: 0 0 auto; }
.dot-green { background: var(--green); }
.dot-sage  { background: var(--sage); width: 10px; height: 10px; }
.dot-coral { background: var(--coral); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; text-decoration: none;
  border: none; cursor: pointer; border-radius: 12px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  line-height: 1;
}
.btn-sm  { font-size: 14px; padding: 10px 18px; border-radius: 10px; }
.btn-lg  { font-size: 17px; padding: 17px 30px; }
.btn-block { width: 100%; padding: 18px; font-size: 17px; }

.btn-dark  { background: var(--ink); color: var(--bg); }
.btn-green { background: var(--green); color: var(--bg); box-shadow: var(--green-shadow); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(26,23,20,.22); }
.btn-green:hover { box-shadow: 0 16px 34px -8px rgba(28,91,65,.7); }
.btn:active { transform: translateY(0); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  background: rgba(245,243,238,.82);
  border-bottom: 1px solid rgba(26,23,20,.09);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 26px; height: 26px; border-radius: 7px; background: var(--green);
  color: var(--bg); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex: 0 0 auto;
}
.brand-name { font-weight: 700; font-size: 16px; letter-spacing: -0.3px; }

.header-right { display: flex; align-items: center; gap: 20px; }
.spots-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-70); font-weight: 500;
}

/* ============================================================
   Hero
   ============================================================ */
.hero { }
.hero-inner { padding: 52px 0 40px; text-align: center; }

.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px; border: 1px solid rgba(26,23,20,.16); border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .2px; color: var(--ink-70);
  margin-bottom: 26px;
}

.hero-title {
  font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.08; letter-spacing: -1.2px;
  margin: 0 auto 20px; max-width: 880px; text-wrap: balance;
}
.hero-sub {
  font-size: 18px; line-height: 1.5; color: rgba(26,23,20,.69);
  max-width: 620px; margin: 0 auto 30px; text-wrap: pretty;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

/* VSL */
.vsl-shell {
  position: relative; display: block; max-width: 760px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: 16px; overflow: hidden;
  background: #12100E center/cover no-repeat; box-shadow: 0 30px 70px -30px rgba(26,23,20,.5);
  cursor: pointer; text-decoration: none;
}
button.vsl-shell { border: 0; padding: 0; width: 100%; font: inherit; color: inherit; text-align: left; }
.vsl-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl-shell.is-playing { cursor: default; }
/* Light scrim: keeps the play button + labels legible while the video
   thumbnail stays clearly visible underneath. */
.vsl-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,.28) 0%, rgba(20,18,15,.08) 40%, rgba(20,18,15,.42) 100%);
}
.vsl-center {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.vsl-play {
  width: 78px; height: 78px; border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.35); transition: transform .2s ease;
}
.vsl-shell:hover .vsl-play { transform: scale(1.06); }
.vsl-tri {
  width: 0; height: 0; margin-left: 6px;
  border-left: 22px solid var(--green);
  border-top: 14px solid transparent; border-bottom: 14px solid transparent;
}
.vsl-label { color: var(--bg); font-size: 16px; font-weight: 600; text-shadow: 0 1px 8px rgba(0,0,0,.55); }
.vsl-tag {
  position: absolute; top: 14px; left: 16px; display: flex; align-items: center; gap: 7px;
  color: #fff; font-size: 12px; font-weight: 500; text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
.vsl-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(245,243,238,.2); }
.vsl-bar { display: block; width: 0; height: 100%; background: var(--green); }

/* Hero CTA */
.hero-cta { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.microtrust {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center;
  font-size: 13px; color: var(--ink-60); font-weight: 500;
}
.microtrust .sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(26,23,20,.27); }
.micro-proof { font-size: 14px; color: var(--ink-60); font-weight: 500; margin: 0; text-align: center; }

.hero-proof {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 24px auto 34px; padding: 9px 18px;
  background: rgba(28,91,65,.06); border: 1px solid rgba(28,91,65,.16);
  border-radius: 999px; font-size: 14px; color: var(--ink-70);
  font-weight: 500; text-wrap: balance; line-height: 1.35;
}
.hero-proof strong { color: var(--green); font-weight: 700; }

/* ============================================================
   Trust bar
   ============================================================ */
.trust-bar {
  margin-top: 60px;
  border-top: 1px solid rgba(26,23,20,.09);
  border-bottom: 1px solid rgba(26,23,20,.09);
  background: var(--bg-alt);
}
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 26px 32px; text-align: center; }
.trust-stat + .trust-stat, .trust-stat:not(:first-child) { border-left: 1px solid rgba(26,23,20,.1); }
.trust-num { font-weight: 800; font-size: 30px; letter-spacing: -1px; }
.trust-cap { font-size: 12.5px; color: var(--ink-60); font-weight: 500; margin-top: 3px; }

/* ============================================================
   Pain
   ============================================================ */
.pain-list { display: flex; flex-direction: column; gap: 2px; margin: 32px 0 34px; }
.pain-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: var(--bg-alt); border-radius: 10px;
  font-size: 17px; font-weight: 500;
}
.pain-ico {
  width: 26px; height: 26px; border-radius: 7px; flex: 0 0 auto;
  background: rgba(229,83,60,.1); color: var(--coral-dk);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}

/* ============================================================
   Dark panels (insight, scarcity, truth)
   ============================================================ */
.panel-dark { background: var(--ink); color: var(--bg); border-radius: 22px; }

.guarantee { padding: 56px 56px; text-align: center; }
.guarantee-title { margin: 0 auto 24px; max-width: 720px; }
.guarantee .lead { max-width: 680px; margin-left: auto; margin-right: auto; }
.guarantee .lead strong { color: var(--sage, #7FB89F); }

.insight { padding: 64px 56px; text-align: center; }
.insight-title { margin: 0 auto 26px; max-width: 720px; }
.insight-sub { max-width: 640px; margin: 0 auto 32px; }
.insight-quote {
  display: inline-block; text-align: left;
  background: rgba(127,184,159,.1); border: 1px solid rgba(127,184,159,.3);
  border-radius: 14px; padding: 26px 30px; max-width: 660px;
}
.insight-quote .serif-quote { color: var(--bg); }

/* ============================================================
   Case study
   ============================================================ */
.split-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.split-head .kicker { margin-bottom: 14px; }
.split-head-side { text-align: right; }
.side-label { font-size: 13px; color: var(--ink-60); font-weight: 500; }
.side-value { font-weight: 800; font-size: 26px; letter-spacing: -0.5px; color: var(--green); }

.case-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 26px; }
.case-stat { background: var(--bg-alt); border: 1px solid var(--ink-08); border-radius: 14px; padding: 26px 22px; }
.case-num { font-weight: 800; font-size: 38px; letter-spacing: -1.5px; }
.case-cap { font-size: 13.5px; color: var(--ink-60); font-weight: 500; margin-top: 6px; line-height: 1.35; }

.case-callout {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 26px; background: rgba(28,91,65,.05);
  border: 1px solid rgba(28,91,65,.15); border-radius: 14px;
}
.case-callout p { font-size: 18px; font-weight: 600; line-height: 1.4; }
.check-sq {
  width: 30px; height: 30px; border-radius: 8px; flex: 0 0 auto;
  background: var(--green); color: var(--bg);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}

/* ============================================================
   Deliverables
   ============================================================ */
.deliver-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.deliver-grid-3 { margin-bottom: 20px; }
.deliver-card { background: var(--card); border: 1px solid var(--ink-10); border-radius: 16px; padding: 28px 26px; }
.deliver-num {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(28,91,65,.08); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; margin-bottom: 18px;
}
.deliver-title { font-weight: 700; font-size: 19px; letter-spacing: -0.3px; margin-bottom: 8px; }
.deliver-desc { font-size: 15px; color: rgba(26,23,20,.63); line-height: 1.5; }

/* ============================================================
   Steps
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.step-card { background: var(--card); border: 1px solid var(--ink-10); border-radius: 16px; padding: 28px 24px; }
.step-n { font-weight: 800; font-size: 15px; color: var(--green); letter-spacing: .5px; margin-bottom: 16px; }
.step-title { font-weight: 700; font-size: 22px; letter-spacing: -0.5px; margin-bottom: 10px; }
.step-body { font-size: 15px; color: rgba(26,23,20,.63); line-height: 1.5; }
.steps-note { text-align: center; font-size: 16px; color: var(--ink-60); margin: 26px 0 0; font-weight: 500; }

/* ============================================================
   Fit / Not fit
   ============================================================ */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fit-card { border-radius: 18px; padding: 34px 32px; }
.fit-yes { background: rgba(28,91,65,.05); border: 1px solid rgba(28,91,65,.15); }
.fit-no  { background: var(--card); border: 1px solid var(--ink-12); }
.fit-head { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.fit-badge {
  width: 28px; height: 28px; border-radius: 8px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.fit-badge-yes { background: var(--green); color: var(--bg); }
.fit-badge-no  { background: rgba(26,23,20,.07); color: var(--ink); }
.fit-label { font-weight: 700; font-size: 16px; }
.fit-label-yes { color: var(--green); }
.fit-label-no  { color: var(--ink-60); }

.fit-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-top: 1px solid rgba(28,91,65,.13);
  font-size: 17px; font-weight: 500;
}
.fit-no .fit-row { border-top-color: rgba(26,23,20,.1); }
.fit-row-muted { color: rgba(26,23,20,.56); }
.fit-tick  { color: var(--green); font-weight: 700; margin-top: 1px; }
.fit-cross { color: var(--ink-45); font-weight: 700; margin-top: 1px; }

/* ============================================================
   Scarcity
   ============================================================ */
.scarcity { padding: 52px 56px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.scarcity-title { margin-bottom: 18px; }
.scarcity .lead { font-size: 17px; color: rgba(245,243,238,.66); }
.spots { display: flex; flex-direction: column; gap: 10px; }
.spot {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: 12px;
}
.spot-taken { background: rgba(245,243,238,.06); border: 1px solid rgba(245,243,238,.12); }
.spot-open  { background: rgba(127,184,159,.12); border: 1px solid rgba(127,184,159,.35); }
.spot .dot-coral { box-shadow: none; }
.spot-open .dot-sage { box-shadow: 0 0 0 4px rgba(127,184,159,.2); }
.spot-body { flex: 1; }
.spot-name { font-weight: 700; font-size: 17px; }
.spot-sub { font-size: 13px; color: var(--cream-50); }
.spot-tag { font-size: 12px; font-weight: 700; letter-spacing: .5px; }
.spot-tag-muted { color: rgba(245,243,238,.44); }
.spot-tag-sage { color: var(--sage); }

/* ============================================================
   Decision
   ============================================================ */
.decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.decision-card { border-radius: 18px; padding: 34px 32px; }
.decision-nothing { background: var(--card); border: 1px solid var(--ink-12); }
.decision-act { background: rgba(28,91,65,.05); border: 1px solid rgba(28,91,65,.15); }
.decision-p { font-size: 17px; line-height: 1.55; color: rgba(26,23,20,.66); margin-bottom: 18px; }
.decision-p:last-child { margin-bottom: 0; }
.decision-p-strong { color: var(--ink-70); }

.mini-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 18px; }
.mini-row {
  display: flex; align-items: center; gap: 12px; padding: 11px 0;
  border-top: 1px solid rgba(28,91,65,.13); font-size: 16px; font-weight: 500;
}
.mini-muted { border-top-color: rgba(26,23,20,.1); color: rgba(26,23,20,.56); }
.mini-muted span:first-child { color: var(--ink-45); }

.cost-callout {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 26px 30px; background: rgba(229,83,60,.07);
  border: 1px solid rgba(229,83,60,.2); border-radius: 16px; margin-bottom: 26px;
}
.cost-badge {
  width: 32px; height: 32px; border-radius: 9px; flex: 0 0 auto;
  background: var(--coral); color: var(--bg); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.cost-title { font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.cost-callout p { font-size: 16.5px; line-height: 1.55; color: var(--ink-70); }

.truth { padding: 44px 48px; text-align: center; }
.truth-kicker { margin-bottom: 20px; }
.truth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 760px; margin: 0 auto; }
.truth-box {
  text-align: left; border-radius: 14px; padding: 26px 24px;
  background: rgba(245,243,238,.06); border: 1px solid rgba(245,243,238,.12);
}
.truth-box-best { background: rgba(127,184,159,.12); border-color: rgba(127,184,159,.35); }
.truth-cap { font-size: 12.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--cream-50); margin-bottom: 10px; }
.truth-cap-sage { color: var(--sage); }
.truth-quote { font-size: 22px; color: var(--cream-90); }
.truth-quote-light { color: var(--bg); }
.truth-cta { margin-top: 30px; }

/* ============================================================
   Apply form
   ============================================================ */
.apply-title { margin-bottom: 18px; }
.apply-form {
  background: var(--card); border: 1px solid var(--ink-12); border-radius: 20px;
  padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.apply-form input, .apply-form textarea {
  border: 1px solid rgba(26,23,20,.18); border-radius: 10px; background: var(--bg);
  padding: 13px 14px; font-family: var(--sans); font-size: 15px; color: var(--ink);
  outline: none; transition: border-color .15s ease;
}
.apply-form input:focus, .apply-form textarea:focus { border-color: var(--green); }
.apply-form textarea { resize: vertical; }
.apply-form .btn-block { grid-column: 1 / -1; margin-top: 6px; }
.form-note { grid-column: 1 / -1; text-align: center; font-size: 13px; color: rgba(26,23,20,.53); margin: 2px 0 0; }
.form-ok {
  grid-column: 1 / -1; display: none; text-align: center;
  padding: 16px; border-radius: 12px; font-weight: 600; font-size: 15px;
  background: rgba(28,91,65,.1); color: var(--green); border: 1px solid rgba(28,91,65,.25);
}
.form-ok.show { display: block; }
.form-error {
  grid-column: 1 / -1; display: none; text-align: center;
  padding: 14px; border-radius: 12px; font-weight: 600; font-size: 14.5px;
  background: rgba(229,83,60,.1); color: var(--coral-dk); border: 1px solid rgba(229,83,60,.3);
}
.form-error.show { display: block; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid rgba(26,23,20,.1); margin-top: 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 30px 0; }
.footer-meta { font-size: 13px; color: rgba(26,23,20,.53); }

/* ============================================================
   CTA band
   ============================================================ */
.section-cta { padding: 60px 0 4px; text-align: center; }
.cta-lead {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.75rem); line-height: 1.3;
  color: var(--ink); margin-bottom: 22px;
}

/* ============================================================
   Comparison table
   ============================================================ */
.compare-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: 16px;
}
.compare {
  width: 100%; min-width: 620px;
  border-collapse: separate; border-spacing: 0;
  background: var(--card); border: 1px solid var(--ink-12);
  border-radius: 16px; overflow: hidden;
}
.compare th, .compare td {
  padding: 16px 18px; text-align: center; font-size: 15px;
  border-bottom: 1px solid var(--ink-10);
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare thead th { font-weight: 700; font-size: 15px; letter-spacing: -0.2px; }
.compare .c-crit { text-align: left; font-weight: 600; color: var(--ink); width: 38%; }
.compare tbody .c-crit { color: var(--ink-70); font-weight: 500; }
.compare .c-hl { background: rgba(28,91,65,.06); }
.compare thead .c-hl { background: var(--green); color: var(--bg); }
.compare .ck { color: var(--green); font-weight: 700; font-size: 17px; }
.compare .cx { color: var(--ink-45); font-weight: 700; font-size: 17px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--ink-12);
  border-radius: 14px; overflow: hidden;
  transition: border-color .18s ease;
}
.faq-item[open] { border-color: rgba(28,91,65,.3); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 17.5px; letter-spacing: -0.3px; color: var(--ink);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-item[open] .faq-q { color: var(--green); }
.faq-mark { position: relative; width: 16px; height: 16px; flex: 0 0 auto; }
.faq-mark::before, .faq-mark::after {
  content: ""; position: absolute; background: var(--green);
  border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.faq-mark::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-mark::after  { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item[open] .faq-mark::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 26px 24px; }
.faq-a p { font-size: 16px; line-height: 1.6; color: var(--ink-70); }
.faq-more { text-align: center; margin-top: 28px; font-size: 15px; color: var(--ink-60); }
.faq-more a { color: var(--green); font-weight: 600; text-decoration: none; }
.faq-more a:hover { text-decoration: underline; }

/* Footer Instagram link */
.footer-ig {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--green); text-decoration: none;
}
.footer-ig:hover { text-decoration: underline; }
.footer-ig svg { width: 16px; height: 16px; }

@media (max-width: 640px) {
  .faq-q { padding: 18px 20px; font-size: 16px; }
  .faq-a { padding: 0 20px 20px; }
}

/* Honeypot — off-screen, not display:none so bots still fill it */
.hp-field {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   Thank-you page
   ============================================================ */
.thankyou { padding: 88px 0 72px; text-align: center; }
.ty-badge {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 28px;
  background: var(--green); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; line-height: 1; box-shadow: var(--green-shadow);
}
.ty-title {
  font-weight: 800; font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1.06; letter-spacing: -1.4px;
  margin: 0 auto 20px; max-width: 640px; text-wrap: balance;
}
.ty-sub { max-width: 560px; margin: 0 auto; }
.ty-sub strong { color: var(--ink); font-weight: 600; }

.ty-next { max-width: 620px; margin: 52px auto 0; text-align: left; }
.ty-next-head {
  font-size: 13px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 8px; text-align: center;
}
.ty-step {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 4px; border-top: 1px solid var(--ink-10);
}
.ty-step:first-of-type { border-top: none; }
.ty-step-n {
  width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(28,91,65,.08); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.ty-step-title { font-weight: 700; font-size: 18px; letter-spacing: -0.3px; margin-bottom: 4px; }
.ty-step-body { font-size: 15.5px; color: var(--ink-70); line-height: 1.5; }

.ty-actions { margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ty-note { font-size: 13px; color: var(--ink-60); font-weight: 500; }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(26,23,20,.22); box-shadow: none;
}
.btn-outline:hover { background: rgba(26,23,20,.04); border-color: var(--ink); box-shadow: none; }

@media (max-width: 640px) {
  .thankyou { padding: 56px 0 56px; }
  .ty-badge { width: 72px; height: 72px; font-size: 34px; }
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .section, .section-flush { padding-top: 72px; }
  .deliver-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid   { grid-template-columns: repeat(2,1fr); }
  .scarcity     { grid-template-columns: 1fr; gap: 32px; padding: 44px 36px; }
  .insight      { padding: 48px 36px; }
  .truth        { padding: 40px 32px; }
  .spots-pill   { display: none; }
}

@media (max-width: 640px) {
  .container { padding-inline: 20px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 24px 16px; }
  .trust-stat:nth-child(odd) { border-left: none; }
  .case-grid { grid-template-columns: repeat(2,1fr); }
  .deliver-grid, .steps-grid { grid-template-columns: 1fr; }
  .fit-grid, .decision-grid, .truth-grid { grid-template-columns: 1fr; }
  .apply-form { grid-template-columns: 1fr; padding: 28px 22px; }
  .apply-form .field { grid-column: 1 / -1; }
  .split-head { align-items: flex-start; }
  .split-head-side { text-align: left; }
  .insight, .truth { padding: 36px 24px; }
  .scarcity { padding: 36px 24px; }
  .hero-inner { padding-top: 40px; }
  .vsl-label { font-size: 14px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
