/* ═══════════════ RESET & TOKENS ═══════════════ */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-900: #053204;
  --green-700: #1a4d1a;
  --mint: #39e19e;
  --mint-50: #e6fff5;
  --off: #f6f8f6;
  --border: #eaefec;
  --border-2: #e4eae4;
  --body: #3a4a3a;
  --muted: #5a6a5a;
  --muted-dark: #a8c8a8;
  --orange: #ff9965;
  --teal: #5fcfce;
  --error: #d64545;
  --placeholder: #9aa39a;
  --white: #ffffff;

  --sans: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Roboto Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1280px;
  --pad: 56px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; outline: none; }
i[data-lucide] { display: inline-flex; }
.ph { display: inline-flex; line-height: 1; flex-shrink: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.mono {
  font-family: var(--mono);
  font-weight: 500;
}

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--green-900);
}

.section-title {
  font-size: clamp(2rem, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.05;
  color: var(--green-900);
}

.rule {
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: var(--mint);
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: transform .12s ease, opacity .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn i { width: 16px; height: 16px; }

.btn--dark { background: var(--green-900); color: var(--white); }
.btn--dark i { color: var(--mint); }
.btn--orange { background: var(--orange); color: var(--green-900); }
.btn--orange i { color: var(--green-900); }
.btn--mint { background: var(--mint); color: var(--green-900); }
.btn--mint i { color: var(--green-900); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--green-900);
}
.link-arrow i { width: 16px; height: 16px; color: var(--mint); transition: transform .15s ease; }
.link-arrow:hover i { transform: translateX(3px); }
.link-arrow--sm { font-size: 13px; }
.link-arrow--sm i { width: 13px; height: 13px; }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--green-900);
  color: var(--mint);
  font-weight: 700;
  font-size: 18px;
}
.brand__name { font-weight: 700; font-size: 20px; color: var(--green-900); }

.nav__links { display: flex; gap: 40px; }
.nav__links a {
  font-weight: 500;
  font-size: 16px;
  color: var(--green-900);
  transition: color .12s ease;
}
.nav__links a:hover { color: var(--mint); }

.nav__cta { border-radius: 999px; padding: 14px 24px; }

/* Hamburger — hidden on desktop, shown at the mobile breakpoint */
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  padding: 0;
  border: none;
  background: none;
  color: var(--green-900);
  cursor: pointer;
}
.nav__toggle i[data-lucide] { width: 26px; height: 26px; }

.nav__mobile { display: none; }

/* ═══════════════ HERO ═══════════════ */
.hero { padding: 80px 0 72px; }
.hero__inner {
  display: flex;
  align-items: center;
  gap: 56px;
}
.hero__text { flex: 1; display: flex; flex-direction: column; gap: 24px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--mint-50);
  border: 1px solid #39e19e55;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--green-900);
}
.badge__dot { width: 8px; height: 8px; border-radius: 999px; background: var(--mint); }

.hero__title {
  font-size: clamp(2.6rem, 6vw, 60px);
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 1.02;
  color: var(--green-900);
}
.hero__sub {
  font-size: 19px;
  font-weight: 500;
  color: var(--body);
  max-width: 540px;
}

/* signup form (shared) */
.signup {
  display: flex;
  gap: 12px;
  padding-top: 8px;
  width: 100%;
  max-width: 560px;
}
.field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  border-radius: 14px;
  padding: 16px 20px;
  background: var(--white);
}
.field i { width: 18px; height: 18px; color: var(--green-900); flex-shrink: 0; }
.field input {
  flex: 1;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--green-900);
}
.field input::placeholder { color: var(--placeholder); }

.signup--light .field { border: 1.5px solid var(--green-900); }
.signup .field--error { border: 1.5px solid var(--error); }
.signup .field--error i { color: var(--error); }
.signup__btn { border-radius: 14px; padding: 18px 28px; font-size: 15px; }

.signup__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
}
.signup__note i { width: 14px; height: 14px; color: var(--mint); }
.signup__note--muted { color: var(--muted); }
.signup__note--ondark { color: var(--muted-dark); justify-content: center; }

.signup__success {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  margin-top: 8px;
  padding: 18px 22px;
  border-radius: 14px;
  border: 1.5px solid var(--green-900);
  background: var(--white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--green-900);
}
.signup__success i { width: 20px; height: 20px; color: var(--mint); flex-shrink: 0; }
.signup__success--ondark {
  margin-inline: auto;
  border-color: var(--mint);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

/* hero visual */
.hero__visual {
  position: relative;
  width: 540px;
  height: 560px;
  flex-shrink: 0;
}
.hero__card {
  position: absolute;
  left: 60px; top: 20px;
  width: 440px; height: 520px;
  border-radius: 32px;
  background: var(--mint-50);
}
.hero__headshot {
  position: absolute;
  left: 50%; top: 60px;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  border-radius: 999px;
  object-fit: cover;
}
.hero__glow {
  position: absolute;
  left: 60px; top: 380px;
  width: 280px; height: 160px;
  background: var(--mint);
  opacity: .4;
  border-radius: 999px;
  filter: blur(80px);
}
/* Double concentric ring, drawn on top of the card */
.hero__ring {
  position: absolute;
  left: 20px; top: 0;
  width: 520px; height: 520px;
  border-radius: 999px;
  border: 1px solid #39e19e88;
}
.hero__ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  border: 1px solid #39e19e88;
}
.float-card {
  position: absolute;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(5, 50, 4, .13);
}
.float-card--stat {
  left: 380px; top: 120px;
  display: flex; flex-direction: column; gap: 4px;
  border-radius: 16px;
  padding: 18px;
  animation: float-in .6s cubic-bezier(.16, 1, .3, 1) 1.8s backwards;
}
.float-card__big { font-size: 24px; font-weight: 700; letter-spacing: -.5px; line-height: 1; color: var(--green-900); }
.float-card__cap { font-size: 9px; letter-spacing: 1.5px; color: var(--muted); }
.float-card--tag {
  left: 0; top: 380px;
  display: flex; align-items: center; gap: 12px;
  border-radius: 999px;
  padding: 14px 18px;
  animation: float-in .6s cubic-bezier(.16, 1, .3, 1) 2.4s backwards;
}
@keyframes float-in {
  from { opacity: 0; transform: translateY(16px) scale(.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .float-card--stat,
  .float-card--tag { animation: none; }
}
.float-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--orange);
}
.float-card__icon i { width: 18px; height: 18px; color: var(--white); }
.float-card__title { display: block; font-size: 13px; font-weight: 600; color: var(--green-900); }
.float-card__sub { display: block; font-size: 11px; color: var(--muted); }

/* ═══════════════ COMMUNITY ═══════════════ */
.community {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0 40px;
}
.community__inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.community__eyebrow { font-size: 11px; letter-spacing: 2.5px; color: var(--muted); }
.community__channels { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px; }
.channel {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 17px; color: var(--green-900);
  transition: color .12s ease;
}
.channel:hover { color: var(--mint); }
.channel .ph { font-size: 19px; }

/* ═══════════════ ABOUT ═══════════════ */
.about { padding: 100px 0; }
.about__inner { display: flex; gap: 64px; }
.about__aside { width: 380px; flex-shrink: 0; display: flex; flex-direction: column; gap: 18px; }
.about__name { font-size: clamp(2.4rem, 4vw, 48px); font-weight: 700; letter-spacing: -1.2px; line-height: 1.05; color: var(--green-900); }
.about__body { flex: 1; display: flex; flex-direction: column; gap: 22px; }
.about__lead { font-size: clamp(1.4rem, 2.4vw, 30px); font-weight: 600; letter-spacing: -.5px; line-height: 1.25; color: var(--green-900); }
.about__body p { font-size: 16px; font-weight: 500; line-height: 1.55; color: var(--body); }
.about__body .link-arrow { margin-top: 4px; }

/* ═══════════════ LEAD MAGNET ═══════════════ */
.lead { background: var(--mint-50); padding: 80px 0; }
.lead__inner { display: flex; align-items: center; gap: 48px; }
.lead__main { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.lead__text { display: flex; flex-direction: column; gap: 20px; }
.lead__title { font-size: clamp(1.9rem, 3.4vw, 36px); font-weight: 700; letter-spacing: -.8px; line-height: 1.12; color: var(--green-900); }
.lead__body { font-size: 16px; font-weight: 500; line-height: 1.5; color: var(--body); max-width: 560px; }
.lead__cta { display: flex; align-items: center; gap: 16px; padding-top: 8px; }
.lead__count { font-size: 12px; color: var(--muted); }

.lead__visual { position: relative; width: 380px; height: 340px; flex-shrink: 0; }
.lead__glow {
  position: absolute; left: 60px; top: 80px;
  width: 280px; height: 240px;
  background: var(--mint); opacity: .3; border-radius: 999px; filter: blur(60px);
}
.stack-card {
  position: absolute; left: 60px; top: 30px;
  width: 260px;
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transform: rotate(5deg);
  box-shadow: 0 20px 40px rgba(5, 50, 4, .2);
}
.stack-card__eyebrow { font-size: 10px; letter-spacing: 1.5px; color: var(--muted); }
.stack-card__title { font-size: 20px; font-weight: 700; letter-spacing: -.5px; line-height: 1.15; color: var(--green-900); }
.stack-card__rows { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.stack-row {
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 11px; font-weight: 600;
}
.stack-row i { width: 11px; height: 11px; }
.stack-row--dark { background: var(--green-900); color: var(--mint); }
.stack-row--mid { background: var(--green-700); color: var(--white); }
.stack-row--mint { background: var(--mint); color: var(--green-900); }
.stack-row--teal { background: var(--teal); color: var(--green-900); }
.stack-row--orange { background: var(--orange); color: var(--green-900); }

/* ═══════════════ OFFERS ═══════════════ */
.offers { padding: 100px 0; }
.offers__header { display: flex; flex-direction: column; gap: 14px; margin-bottom: 48px; }
.offers__headline { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.offers__desc { font-size: 15px; font-weight: 500; line-height: 1.5; color: var(--body); max-width: 380px; }

.offers__scroll { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.offer {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 22px;
  min-height: 480px;
  border-radius: 24px;
  padding: 32px;
  background: var(--off);
  border: 1px solid var(--border-2);
}
.offer--featured {
  background: var(--green-900);
  border: none;
  box-shadow: 0 24px 50px rgba(5, 50, 4, .27);
}
.offer__top { display: flex; flex-direction: column; gap: 16px; }
.offer__eyebrow-row { display: flex; align-items: center; justify-content: space-between; }
.offer__eyebrow { font-size: 11px; letter-spacing: 2px; color: var(--body); }
.offer--featured .offer__eyebrow { color: var(--muted-dark); }
.offer__pill {
  border-radius: 999px; padding: 6px 14px;
  background: var(--mint); color: var(--green-900);
  font-size: 10px; font-weight: 600; letter-spacing: 1.2px;
}
.offer__title { font-size: 24px; font-weight: 700; letter-spacing: -.5px; line-height: 1.15; color: var(--green-900); }
.offer--featured .offer__title { color: var(--white); }
.offer__desc { font-size: 14px; font-weight: 500; line-height: 1.55; color: var(--body); }
.offer--featured .offer__desc { color: var(--muted-dark); }

.offer__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 0; }
.chip {
  border-radius: 8px; padding: 6px 10px;
  font-size: 10px; letter-spacing: .5px;
  background: var(--green-700); color: var(--mint);
}
.chip--light { background: var(--mint-50); color: var(--green-900); }

.offer__divider { height: 1px; background: var(--border); }
.offer--featured .offer__divider { background: var(--green-700); }
.offer__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.offer__price { display: flex; flex-direction: column; gap: 2px; }
.offer__amount { font-size: 30px; font-weight: 700; letter-spacing: -1px; line-height: 1; color: var(--green-900); }
.offer--featured .offer__amount { color: var(--mint); }
.offer__price-label { font-size: 10px; letter-spacing: 1px; color: var(--body); }
.offer--featured .offer__price-label { color: var(--muted-dark); }

.offers__dots { display: none; }

/* ═══════════════ WRITING ═══════════════ */
.writing { padding: 80px 0 100px; border-top: 1px solid var(--border); }
.writing__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.writing__heading { display: flex; flex-direction: column; gap: 12px; }
.writing__heading .section-title { font-size: clamp(1.9rem, 3.4vw, 36px); letter-spacing: -1px; }
.writing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.article {
  display: flex; flex-direction: column; gap: 18px;
  border-radius: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .15s ease, box-shadow .15s ease;
}
.article:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(5, 50, 4, .08); }
.article__accent { width: 48px; height: 4px; border-radius: 999px; }
.article__meta { display: flex; align-items: center; gap: 10px; }
.article__cat { font-size: 11px; letter-spacing: 1.5px; color: var(--green-900); }
.article__dot, .article__date { font-size: 11px; color: var(--muted); }
.article__title { font-size: 22px; font-weight: 700; letter-spacing: -.5px; line-height: 1.15; color: var(--green-900); }
.article__desc { font-size: 14px; font-weight: 500; line-height: 1.5; color: var(--body); }

/* ═══════════════ NEWSLETTER CTA ═══════════════ */
.newsletter { background: var(--green-900); padding: 100px 0; }
.newsletter__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.newsletter__eyebrow { font-size: 12px; letter-spacing: 2px; color: var(--mint); }
.newsletter__title { font-size: clamp(2rem, 5vw, 54px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.1; color: var(--white); }
.newsletter__sub { font-size: 17px; font-weight: 500; line-height: 1.5; color: var(--muted-dark); max-width: 640px; }
.signup--dark { margin-top: 4px; }

/* ═══════════════ FOOTER ═══════════════ */
.footer { padding: 56px 0; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 32px; }
.footer__links a { font-weight: 600; font-size: 17px; color: var(--green-900); transition: color .12s ease; }
.footer__links a:hover { color: var(--mint); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--mint-50);
  color: var(--green-900);
  transition: background .12s ease;
}
.footer__social a:hover { background: var(--mint); }
.footer__social .ph { font-size: 17px; }
.footer__divider { height: 1px; background: var(--border); margin: 28px 0; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer__bottom .mono { font-size: 13px; color: var(--muted); }

/* ═══════════════ CONTACT MODAL ═══════════════ */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(5, 50, 4, .55); backdrop-filter: blur(4px); }
.modal__card {
  position: relative;
  width: 100%; max-width: 420px;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: 0 30px 70px rgba(5, 50, 4, .35);
  animation: pop .18s ease;
}
@keyframes pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.modal__close { position: absolute; top: 16px; right: 16px; color: var(--muted); }
.modal__close i { width: 20px; height: 20px; }
.modal__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--mint-50);
  color: var(--green-900);
  margin-bottom: 4px;
}
.modal__icon i { width: 26px; height: 26px; }
.modal__title { font-size: 28px; font-weight: 700; letter-spacing: -.5px; color: var(--green-900); }
.modal__text { font-size: 15px; font-weight: 500; color: var(--body); }
.modal__email {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 8px;
  border-radius: 12px;
  padding: 14px 18px;
  background: var(--mint-50);
  border: 1px solid #39e19e55;
  font-family: var(--mono);
  font-size: 15px; font-weight: 500;
  color: var(--green-900);
  transition: background .12s ease;
}
.modal__email:hover { background: #d6fbec; }
.modal__email i { width: 16px; height: 16px; color: var(--green-900); }
.modal__email.copied { background: var(--mint); }
.modal__mailto { width: 100%; justify-content: center; border-radius: 12px; padding: 16px; margin-top: 4px; }

/* ═══════════════ OFFER PAGES ═══════════════ */
.section-eyebrow--mint { color: var(--mint); }

.op-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  background: var(--mint-50);
  color: var(--green-900);
  border: 1px solid #39e19e55;
}
.op-eyebrow--dark { background: var(--green-700); color: var(--mint); }

/* hero */
.op-hero { padding: 96px 0 80px; }
.op-hero--dark { background: var(--green-900); padding: 100px 0; }
.op-hero__inner { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.op-hero__title {
  font-size: clamp(2.6rem, 6vw, 60px);
  font-weight: 700; letter-spacing: -1.8px; line-height: 1.04;
  color: var(--green-900); max-width: 900px;
}
.op-hero--dark .op-hero__title { color: var(--white); }
.op-hero__sub {
  font-size: 19px; font-weight: 500; line-height: 1.5;
  color: var(--body); max-width: 740px;
}
.op-hero--dark .op-hero__sub { color: var(--muted-dark); }
.op-hero__terms { font-family: var(--mono); font-size: 12px; letter-spacing: 1px; color: #5a8a5a; }

/* generic section */
.op-section { padding: 100px 0; }
.op-section--dark { background: var(--green-900); }
.op-section--mint { background: var(--mint-50); }
.op-section--soft { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.op-section--tight { padding: 80px 0 40px; }

/* problem */
.problem__lead {
  font-size: clamp(1.7rem, 3.2vw, 40px);
  font-weight: 700; letter-spacing: -1px; line-height: 1.18;
  color: var(--green-900); max-width: 820px; margin-bottom: 24px;
}
.op-section--dark .problem__lead { color: var(--white); }
.problem__body { display: flex; flex-direction: column; gap: 18px; max-width: 760px; }
.problem__body p { font-size: 17px; font-weight: 500; line-height: 1.55; color: var(--body); }
.op-section--dark .problem__body p { color: var(--muted-dark); }

/* generic header (eyebrow + title + intro) */
.op-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; max-width: 820px; }
.op-head__title {
  font-size: clamp(1.9rem, 3.6vw, 40px);
  font-weight: 700; letter-spacing: -1px; line-height: 1.1; color: var(--green-900);
}
.op-head__intro { font-size: 17px; font-weight: 500; line-height: 1.5; color: var(--body); max-width: 680px; }

/* sessions */
.sessions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.session {
  display: flex; flex-direction: column; gap: 16px;
  border-radius: 20px; padding: 28px;
  background: var(--off); border: 1px solid var(--border-2);
}
.session__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--green-900); color: var(--mint);
  font-weight: 700; font-size: 15px;
}
.session__title { font-size: 20px; font-weight: 700; letter-spacing: -.3px; line-height: 1.2; color: var(--green-900); }
.session__body { font-size: 15px; font-weight: 500; line-height: 1.55; color: var(--body); }

/* walk away (copy + doc card) */
.walk { display: flex; align-items: center; gap: 56px; }
.walk__copy { flex: 1; display: flex; flex-direction: column; gap: 18px; }
.walk__title { font-size: clamp(1.8rem, 3.2vw, 36px); font-weight: 700; letter-spacing: -.8px; line-height: 1.12; color: var(--green-900); }
.walk__body { font-size: 17px; font-weight: 500; line-height: 1.5; color: var(--body); }
.walk__kicker { font-size: 19px; font-weight: 600; line-height: 1.4; color: var(--green-900); }
.doc-card {
  flex-shrink: 0; width: 312px;
  display: flex; flex-direction: column; gap: 14px;
  border-radius: 16px; padding: 28px; background: var(--white);
  transform: rotate(3deg);
  box-shadow: 0 20px 40px rgba(5, 50, 4, .2);
}
.doc-card__tag { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 2px; color: var(--mint); }
.doc-card__title { font-size: 20px; font-weight: 700; letter-spacing: -.3px; line-height: 1.2; color: var(--green-900); }
.doc-line { display: flex; align-items: center; gap: 10px; }
.doc-line i { width: 16px; height: 16px; color: var(--mint); flex-shrink: 0; }
.doc-line span { font-size: 14px; font-weight: 500; color: var(--body); }

/* included list */
.inc-list { display: flex; flex-direction: column; }
.inc-item {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.inc-item:first-child { border-top: 1px solid var(--border); }
.inc-item__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 999px; background: var(--mint-50);
  flex-shrink: 0;
}
.inc-item__icon i { width: 16px; height: 16px; color: var(--green-900); }
.inc-item span { font-size: 18px; font-weight: 500; line-height: 1.4; color: var(--green-900); }

/* who it's for */
.whofor { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.whofor-card { display: flex; flex-direction: column; gap: 16px; border-radius: 20px; padding: 32px; }
.whofor-card--pos { background: var(--green-900); }
.whofor-card--neg { background: var(--off); border: 1px solid var(--border-2); }
.whofor-card__head { display: flex; align-items: center; gap: 12px; }
.whofor-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 999px; flex-shrink: 0;
}
.whofor-card--pos .whofor-card__icon { background: var(--green-700); }
.whofor-card--neg .whofor-card__icon { background: var(--border); }
.whofor-card__icon i { width: 18px; height: 18px; }
.whofor-card--pos .whofor-card__icon i { color: var(--mint); }
.whofor-card--neg .whofor-card__icon i { color: var(--placeholder); }
.whofor-card__title { font-size: 20px; font-weight: 700; letter-spacing: -.3px; }
.whofor-card--pos .whofor-card__title { color: var(--white); }
.whofor-card--neg .whofor-card__title { color: var(--green-900); }
.whofor-card__body { font-size: 16px; font-weight: 500; line-height: 1.55; }
.whofor-card--pos .whofor-card__body { color: var(--muted-dark); }
.whofor-card--neg .whofor-card__body { color: var(--body); }

/* price band */
.price-band {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  border-radius: 24px; padding: 48px; background: var(--green-900);
}
.price-band__left { display: flex; flex-direction: column; gap: 10px; }
.price-band__row { display: flex; align-items: flex-end; gap: 12px; }
.price-band__amount { font-size: clamp(2.6rem, 5vw, 56px); font-weight: 700; letter-spacing: -2px; line-height: 1; color: var(--mint); }
.price-band__unit { font-family: var(--mono); font-size: 12px; letter-spacing: 1px; color: var(--muted-dark); padding-bottom: 8px; }
.price-band__note { font-size: 16px; font-weight: 500; line-height: 1.5; color: var(--muted-dark); max-width: 560px; }

/* how it starts */
.howstart {
  display: flex; align-items: center; gap: 24px;
  border-radius: 20px; padding: 40px; background: var(--mint-50);
}
.howstart__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 999px; background: var(--white); flex-shrink: 0;
  align-self: flex-start;
}
.howstart__icon i { width: 26px; height: 26px; color: var(--green-900); }
.howstart__title { font-size: 22px; font-weight: 700; letter-spacing: -.4px; color: var(--green-900); margin-bottom: 8px; }
.howstart__body { font-size: 16px; font-weight: 500; line-height: 1.55; color: var(--body); }

/* faq */
.faq-list { display: flex; flex-direction: column; }
.faq-row {
  display: flex; gap: 48px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.faq-row:first-child { border-top: 1px solid var(--border); }
.faq-row__q { width: 360px; flex-shrink: 0; font-size: 18px; font-weight: 600; letter-spacing: -.3px; line-height: 1.3; color: var(--green-900); }
.faq-row__a { flex: 1; font-size: 16px; font-weight: 500; line-height: 1.55; color: var(--body); }

/* closing cta */
.closing { background: var(--green-900); padding: 100px 0; }
.closing__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.closing__title { font-size: clamp(2rem, 5vw, 54px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.08; color: var(--white); max-width: 820px; }
.closing__sub { font-size: 18px; font-weight: 500; line-height: 1.5; color: var(--muted-dark); max-width: 600px; }
.closing__secondary { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--mint); }
.closing__secondary i { width: 14px; height: 14px; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 980px) {
  :root { --pad: 32px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }

  .nav__mobile {
    display: flex;
    flex-direction: column;
    padding: 8px var(--pad) 20px;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(10px);
  }
  .nav__mobile[hidden] { display: none; }
  .nav__mobile a {
    font-weight: 500;
    font-size: 17px;
    color: var(--green-900);
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav__mobile a:last-child { border-bottom: none; }
  .nav__mobile a.nav__mobile-cta {
    justify-content: center;
    margin-top: 16px;
    border-radius: 999px;
    padding: 16px 24px;
    color: var(--white);
  }
  .hero__inner { flex-direction: column; align-items: flex-start; }
  .hero__visual { display: none; }
  .about__inner { flex-direction: column; gap: 32px; }
  .about__aside { width: 100%; }
  .lead__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .lead__main { display: contents; }
  .lead__cta { order: 1; align-self: stretch; justify-content: center; padding-top: 80px; }
  .lead__count { display: none; }
  .lead__visual { width: 100%; max-width: 340px; height: 320px; align-self: center; }
  .lead__glow { left: 50%; margin-left: -140px; }
  .stack-card { left: 50%; margin-left: -130px; }
  .offers__headline { flex-direction: column; align-items: flex-start; gap: 16px; }
  .writing__grid { grid-template-columns: repeat(2, 1fr); }

  /* offer pages */
  .walk { flex-direction: column; align-items: flex-start; gap: 40px; }
  .doc-card { align-self: center; }
  .sessions { grid-template-columns: 1fr; }
  .whofor { grid-template-columns: 1fr; }
  .price-band { flex-direction: column; align-items: flex-start; gap: 28px; }
}

@media (max-width: 768px) {
  :root { --pad: 24px; }
  .hero { padding: 48px 0 40px; }
  .about, .lead, .offers, .newsletter { padding: 64px 0; }
  .writing { padding: 56px 0 64px; }

  .signup { flex-direction: column; }
  .signup__btn { justify-content: center; }

  /* Offers → horizontal carousel */
  .offers__scroll {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 32px var(--pad) 80px;
    margin: -28px calc(-1 * var(--pad)) -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .offers__scroll::-webkit-scrollbar { display: none; }
  .offer { scroll-snap-align: center; flex: 0 0 86%; min-height: 0; }
  .offers__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
  .dot { width: 8px; height: 8px; border-radius: 999px; background: #b4c2b4; transition: background .15s ease, width .15s ease; }
  .dot--active { width: 22px; background: var(--green-900); }

  /* Community: icons only, no labels */
  .channel__label { display: none; }
  .community__channels { gap: 28px; flex-wrap: nowrap; }
  .channel .ph { font-size: 26px; }

  .writing__grid { grid-template-columns: 1fr; }
  .writing__header { flex-direction: column; align-items: flex-start; }

  .footer__top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* offer pages */
  .op-hero { padding: 56px 0 40px; }
  .op-hero--dark { padding: 64px 0; }
  .op-section, .op-section--dark, .op-section--mint, .op-section--soft { padding: 56px 0; }
  .faq-row { flex-direction: column; gap: 10px; }
  .faq-row__q { width: 100%; }
  .howstart { flex-direction: column; align-items: flex-start; padding: 28px; }
  .price-band { padding: 32px; }
}

/* ═══════════════ LUCIDE ICON FIXES ═══════════════ */
/* Lucide swaps <i data-lucide> for <svg class="lucide" stroke="currentColor">,
   so size + color must target .lucide (not i). */
.lucide { width: 16px; height: 16px; flex-shrink: 0; }

.field .lucide,
.float-card__icon .lucide,
.whofor-card__icon .lucide { width: 18px; height: 18px; }
.signup__note .lucide,
.doc-line .lucide,
.link-arrow--sm .lucide { width: 14px; height: 14px; }
.howstart__icon .lucide,
.modal__icon .lucide { width: 26px; height: 26px; }
.modal__close .lucide { width: 20px; height: 20px; }

.btn--dark .lucide { color: var(--mint); }
.btn--orange .lucide,
.btn--mint .lucide { color: var(--green-900); }
.field .lucide { color: var(--green-900); }
.link-arrow .lucide,
.signup__note .lucide,
.doc-line .lucide,
.closing__secondary .lucide { color: var(--mint); }
.float-card__icon .lucide { color: #ffffff; }
.inc-item__icon .lucide,
.howstart__icon .lucide,
.modal__icon .lucide,
.modal__email .lucide { color: var(--green-900); }
.whofor-card--pos .whofor-card__icon .lucide { color: var(--mint); }
.whofor-card--neg .whofor-card__icon .lucide { color: var(--placeholder); }
.modal__close .lucide { color: var(--muted); }
