/* ── TOKENS ── */
:root {
  --green: #39FF14;
  --black: #000;
  --cream: #EDE8DC;
  --card:  #0a0a0a;
  --card2: #0f0f0f;
  --border: rgba(255,255,255,0.07);
  --muted: #555;
  --muted2: rgba(237,232,220,0.55);
  --font-serif: 'DM Serif Display', serif;
  --font-mono:  'DM Mono', monospace;
  --font-body:  'Outfit', sans-serif;
  --max: 820px;
  --max-wide: 1080px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--cream); font-family: var(--font-body); font-size: 16px; line-height: 1.65; }
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ── GRAIN ── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.45;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
}
.nav__logo { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--green); text-decoration: none; text-transform: uppercase; }
.nav__link { font-family: var(--font-mono); font-size: 11px; color: var(--muted2); text-decoration: none; letter-spacing: 0.08em; transition: color 0.2s; }
.nav__link:hover { color: var(--green); }

/* ── STICKY CTA BAR ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: rgba(0,0,0,0.95); border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: flex; justify-content: center; align-items: center; gap: 20px;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__label { font-family: var(--font-mono); font-size: 11px; color: var(--muted2); letter-spacing: 0.06em; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; text-decoration: none;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 28px; border-radius: 2px;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn--primary { background: var(--green); color: #000; font-weight: 600; }
.btn--primary:hover { background: #fff; color: #000; }
.btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--cream); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--full { display: block; text-align: center; }
.btn--sm { padding: 10px 20px; font-size: 11px; }

/* ── WRAPPERS ── */
.section { position: relative; z-index: 1; padding: 96px 24px; }
.section--tight { padding: 64px 24px; }
.section--dark { background: var(--card); }
.section--darker { background: var(--card2); }
.container { max-width: var(--max); margin: 0 auto; }
.container--wide { max-width: var(--max-wide); margin: 0 auto; }

/* ── SECTION LABELS ── */
.section-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--green); text-transform: uppercase; display: block; margin-bottom: 16px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 120px 24px 80px;
  position: relative; z-index: 1;
  border-bottom: 1px solid var(--border);
}
.hero__eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--green); text-transform: uppercase; margin-bottom: 24px;
}
.hero__h1 {
  font-family: var(--font-serif); font-size: clamp(36px, 6vw, 68px);
  font-weight: 400; line-height: 1.05; color: var(--cream);
  max-width: 780px; margin-bottom: 28px;
}
.hero__h1 em { font-style: italic; color: var(--green); }
.hero__sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--muted2);
  max-width: 560px; margin-bottom: 40px; line-height: 1.7;
}
.hero__cta-group { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.hero__cta-note { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── PUNCHY TEXT BLOCK ── */
.punchy { max-width: var(--max); margin: 0 auto; }
.punchy__line {
  font-family: var(--font-serif); font-size: clamp(18px, 3vw, 26px);
  font-weight: 400; line-height: 1.4; color: var(--cream);
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.punchy__line:first-child { border-top: 1px solid var(--border); }
.punchy__line em { font-style: italic; color: var(--green); }
.punchy__line--muted { color: var(--muted2); font-size: clamp(15px, 2.2vw, 20px); }

/* ── PROSE ── */
.prose { max-width: var(--max); margin: 0 auto; }
.prose p { font-size: 16px; line-height: 1.8; color: var(--muted2); margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--cream); font-weight: 500; }

/* ── SECTION HEADLINE ── */
.sh { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 44px); font-weight: 400; line-height: 1.15; margin-bottom: 24px; }
.sh em { font-style: italic; }
.sh--center { text-align: center; }

/* ── TWO COLUMNS FOR/NOT ── */
.for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: var(--max); margin: 0 auto; }
@media (max-width: 600px) { .for-grid { grid-template-columns: 1fr; } }
.for-col { padding: 28px 24px; border: 1px solid var(--border); border-radius: 2px; }
.for-col--yes { background: rgba(57,255,20,0.03); border-color: rgba(57,255,20,0.15); }
.for-col__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; display: block; }
.for-col--no .for-col__label { color: var(--muted); }
.for-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.for-col ul li { font-size: 14px; color: var(--muted2); line-height: 1.6; padding-left: 18px; position: relative; }
.for-col ul li::before { content: '→'; position: absolute; left: 0; color: var(--green); font-size: 12px; }
.for-col--no ul li::before { content: '×'; color: var(--muted); }

/* ── LEAK CARDS ── */
.leak-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; max-width: var(--max-wide); margin: 0 auto; }
.leak-card { padding: 24px; background: var(--card); border: 1px solid var(--border); border-radius: 2px; }
.leak-card__type { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; display: block; }
.leak-card__name { font-family: var(--font-serif); font-size: 20px; margin-bottom: 10px; }
.leak-card__diag { font-size: 13px; color: var(--green); font-family: var(--font-mono); margin-bottom: 10px; }
.leak-card__body { font-size: 14px; color: var(--muted2); line-height: 1.65; }

/* ── DELIVERABLES ── */
.deliverable-list { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.deliverable { display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.deliverable:first-child { border-top: 1px solid var(--border); }
.deliverable__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--green); padding-top: 4px; }
.deliverable__name { font-family: var(--font-serif); font-size: 20px; margin-bottom: 6px; line-height: 1.2; }
.deliverable__body { font-size: 14px; color: var(--muted2); line-height: 1.65; }

/* ── 12-WEEK ACCORDION ── */
.week-list { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.week-item { border-bottom: 1px solid var(--border); }
.week-item:first-child { border-top: 1px solid var(--border); }
.week-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; text-align: left; gap: 16px;
}
.week-trigger__left { display: flex; align-items: baseline; gap: 20px; }
.week-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--green); flex-shrink: 0; }
.week-title { font-size: 16px; color: var(--cream); font-family: var(--font-body); font-weight: 500; }
.week-arrow { font-family: var(--font-mono); font-size: 12px; color: var(--muted); flex-shrink: 0; transition: transform 0.25s; }
.week-item.open .week-arrow { transform: rotate(90deg); color: var(--green); }
.week-body { display: none; padding: 0 0 24px 42px; }
.week-item.open .week-body { display: block; }
.week-body p { font-size: 14px; color: var(--muted2); line-height: 1.7; margin-bottom: 10px; }
.week-body .outcome { font-family: var(--font-mono); font-size: 11px; color: var(--green); letter-spacing: 0.08em; margin-top: 12px; }

/* ── WHAT YOU GET CHECKLIST ── */
.get-list { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; }
@media (max-width: 540px) { .get-list { grid-template-columns: 1fr; } }
.get-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--muted2); padding: 8px 0; border-bottom: 1px solid var(--border); }
.get-item::before { content: '→'; color: var(--green); font-family: var(--font-mono); font-size: 12px; flex-shrink: 0; padding-top: 2px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 640px; margin: 0 auto; }
@media (max-width: 540px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { padding: 32px 28px; border: 1px solid var(--border); border-radius: 2px; }
.price-card--featured { border-color: var(--green); background: rgba(57,255,20,0.03); }
.price-card__tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; display: block; }
.price-card--featured .price-card__tag { color: var(--green); }
.price-card__amount { font-family: var(--font-serif); font-size: 44px; line-height: 1; margin-bottom: 8px; }
.price-card__note { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }

/* ── FAQ ── */
.faq-list { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; text-align: left; color: var(--cream); font-family: var(--font-body);
  font-size: 15px; font-weight: 500; gap: 16px;
}
.faq-arrow { font-family: var(--font-mono); font-size: 12px; color: var(--muted); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-arrow { transform: rotate(90deg); color: var(--green); }
.faq-a { display: none; padding: 0 24px 20px 0; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 14px; color: var(--muted2); line-height: 1.75; }

/* ── CLOSE SECTION ── */
.close-block { max-width: 640px; margin: 0 auto; text-align: center; }
.close-block .sh { margin-bottom: 32px; }
.close-meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; margin-top: 16px; }
.close-block .btn-group { display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* ── RULE ── */
.rule { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── FOOTER ── */
.cos-footer { position: relative; z-index: 1; padding: 32px 24px; border-top: 1px solid var(--border); }
.cos-footer p { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-align: center; letter-spacing: 0.06em; }
.cos-footer a { color: var(--muted); text-decoration: none; }
.cos-footer a:hover { color: var(--green); }

/* ── DIVIDER LABEL ── */
.divider { display: flex; align-items: center; gap: 16px; max-width: var(--max); margin: 0 auto 48px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.divider span { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }

/* ── TRIANGLE DIAGRAM ── */
.triangle-wrap { max-width: 560px; margin: 48px auto; display: flex; flex-direction: column; gap: 0; }
.tri-row { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
.tri-row:first-child { border-top: 1px solid var(--border); }
.tri-label { font-family: var(--font-mono); font-size: 11px; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; }
.tri-body { font-size: 14px; color: var(--muted2); line-height: 1.6; }

/* ── FOUNDING CALLOUT ── */
.founding-box { max-width: var(--max); margin: 0 auto; padding: 40px 36px; border-left: 2px solid var(--green); background: rgba(57,255,20,0.03); }
.founding-box .sh { margin-bottom: 20px; font-size: clamp(22px, 3vw, 32px); }
.founding-box p { font-size: 15px; color: var(--muted2); line-height: 1.75; margin-bottom: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .section { padding: 64px 20px; }
  .nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .sticky-cta { flex-direction: column; gap: 10px; padding: 14px 20px; }
}
