:root {
  --ink: #10110f;
  --ink-2: #171a17;
  --paper: #f5f7f0;
  --paper-2: #e9eee5;
  --white: #ffffff;
  --lime: #c8ff31;
  --lime-soft: #ddff7f;
  --violet: #aa96ff;
  --orange: #ff8b67;
  --blue: #73cfff;
  --muted-dark: #a5ada3;
  --muted-light: #657064;
  --line-dark: rgba(255,255,255,.12);
  --line-light: rgba(16,17,15,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.16);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.light-page { color: var(--ink); background: var(--paper); }
button, input { font: inherit; }
a { color: inherit; }
::selection { color: var(--ink); background: var(--lime); }

.site-nav {
  position: relative;
  z-index: 20;
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line-dark);
}
.light-page .site-nav { border-color: var(--line-light); }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-decoration: none;
}
.logo img { width: 30px; height: 30px; padding: 4px; background: var(--paper); border-radius: 9px; }
.logo b { color: var(--lime); }
.light-page .logo b { color: #4b6c00; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a { color: var(--muted-dark); font-size: 13px; font-weight: 700; text-decoration: none; }
.light-page .nav-links > a { color: var(--muted-light); }
.nav-links > a:hover { color: currentColor; }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 17px;
  color: var(--ink) !important;
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(200,255,49,.13);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.nav-cta:hover, .button:hover { transform: translateY(-2px); background: var(--lime-soft); box-shadow: 0 14px 35px rgba(200,255,49,.2); }
.button.secondary { color: var(--paper) !important; background: rgba(255,255,255,.04); border-color: var(--line-dark); box-shadow: none; }
.button.secondary:hover { background: rgba(255,255,255,.08); }
.light-page .button.secondary { color: var(--ink) !important; background: var(--white); border-color: var(--line-light); }
.menu-button { display: none; width: 42px; height: 42px; padding: 0; color: inherit; background: transparent; border: 1px solid currentColor; border-radius: 10px; cursor: pointer; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.home-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: 70px;
  align-items: center;
  padding: 90px 0 110px;
  overflow: hidden;
}
.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -180px;
  top: 40px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(200,255,49,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(200,255,49,.025), 0 0 0 170px rgba(200,255,49,.012);
}
.eyebrow { margin: 0; color: var(--lime); font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 { margin: 22px 0 24px; font-size: clamp(62px, 8vw, 105px); line-height: .9; letter-spacing: -.07em; }
h1 em { color: var(--lime); font-style: normal; }
.hero-copy { max-width: 670px; margin: 0; color: var(--muted-dark); font-size: clamp(19px, 2vw, 23px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.microcopy { margin: 16px 0 0; color: #747d74; font-size: 12px; }
.hero-panel { position: relative; padding: 28px; background: #191c19; border: 1px solid var(--line-dark); border-radius: 26px; box-shadow: var(--shadow); }
.hero-panel::before { content: ""; position: absolute; inset: -1px auto -1px -1px; width: 4px; background: linear-gradient(var(--lime), var(--violet)); border-radius: 26px 0 0 26px; }
.panel-label { color: var(--lime); font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.hero-panel h2 { margin: 16px 0 10px; font-size: 39px; line-height: 1.02; letter-spacing: -.045em; }
.hero-panel > p { margin: 0; color: var(--muted-dark); font-size: 14px; }
.mini-paths { display: grid; gap: 8px; margin: 24px 0; }
.mini-path { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: center; padding: 12px; background: rgba(255,255,255,.035); border: 1px solid var(--line-dark); border-radius: 12px; }
.mini-path span { display: grid; place-items: center; width: 30px; height: 30px; color: var(--ink); background: var(--lime); border-radius: 9px; font-size: 11px; font-weight: 900; }
.mini-path:nth-child(2) span { background: var(--violet); }
.mini-path:nth-child(3) span { background: var(--blue); }
.mini-path b { font-size: 13px; }

.section { padding: 105px 0; border-top: 1px solid var(--line-dark); }
.section.light { color: var(--ink); background: var(--paper); }
.section-head { display: grid; grid-template-columns: 1fr .75fr; gap: 50px; align-items: end; margin-bottom: 45px; }
.section-head h2 { margin: 10px 0 0; font-size: clamp(42px, 5vw, 68px); line-height: .98; letter-spacing: -.055em; }
.section-head > p { margin: 0; color: var(--muted-dark); }
.section.light .section-head > p { color: var(--muted-light); }
.episode-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.episode-grid[data-count="1"] { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); }
.episode-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 28px; color: var(--ink); background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); box-shadow: 0 18px 55px rgba(23,34,24,.08); }
.episode-topline { display: flex; justify-content: space-between; gap: 16px; color: var(--muted-light); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.episode-topline b { color: #447000; }
.episode-number { margin-top: 38px; color: #bec5bc; font-size: 52px; font-weight: 900; letter-spacing: -.06em; line-height: 1; }
.episode-card h3 { margin: 14px 0 10px; font-size: 31px; line-height: 1; letter-spacing: -.04em; }
.episode-card > p { margin: 0; color: var(--muted-light); font-size: 14px; }
.topic-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0; }
.topic-list span { padding: 6px 9px; background: var(--paper-2); border-radius: 999px; font-size: 10px; font-weight: 750; }
.card-link { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line-light); color: #335500; font-size: 13px; font-weight: 850; text-decoration: none; }
.library-note { min-height: 390px; display: grid; place-items: center; padding: 30px; border: 1px dashed rgba(16,17,15,.2); border-radius: var(--radius); text-align: center; }
.library-note b { display: block; font-size: 21px; }
.library-note span { color: var(--muted-light); font-size: 13px; }

.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.principle-card { padding: 25px; background: #191c19; border: 1px solid var(--line-dark); border-radius: 18px; }
.principle-card span { color: var(--lime); font-size: 11px; font-weight: 900; }
.principle-card h3 { margin: 21px 0 8px; font-size: 23px; letter-spacing: -.03em; }
.principle-card p { margin: 0; color: var(--muted-dark); font-size: 13px; }

.guide-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .72fr);
  gap: 58px;
  align-items: center;
  padding: 88px 0 105px;
}
.guide-hero h1 { font-size: clamp(57px, 7vw, 92px); }
.guide-hero .hero-copy { max-width: 710px; }
.guide-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.guide-meta span { padding: 7px 10px; color: #c1c8bf; background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: 999px; font-size: 11px; font-weight: 700; }
.optin-card { padding: 30px; color: var(--ink); background: var(--paper); border-radius: 24px; box-shadow: var(--shadow); }
.optin-card .form-kicker { margin: 0; color: #527800; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.optin-card h2 { margin: 11px 0 8px; font-size: 32px; line-height: 1.04; letter-spacing: -.04em; }
.optin-card > p { margin: 0; color: var(--muted-light); font-size: 13px; }
.optin-form { display: grid; gap: 13px; margin-top: 22px; }
.field label { display: block; margin-bottom: 6px; color: #4d574d; font-size: 11px; font-weight: 800; }
.field input { width: 100%; min-height: 50px; padding: 12px 13px; color: var(--ink); background: var(--white); border: 1px solid #ccd2c8; border-radius: 10px; outline: none; }
.field input:focus { border-color: #6f960e; box-shadow: 0 0 0 4px rgba(111,150,14,.12); }
.optin-form .button { width: 100%; border: 0; }
.form-trust { margin: 0; color: #707970; font-size: 10px; line-height: 1.5; }
.form-trust strong { color: #394239; }
.bot-field { position: absolute; left: -9999px; }
.included-list { display: grid; gap: 8px; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line-light); }
.included-list span { position: relative; padding-left: 20px; color: #4c574c; font-size: 12px; }
.included-list span::before { content: "✓"; position: absolute; left: 0; color: #5c8700; font-weight: 900; }

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.path-card { min-height: 300px; padding: 28px; background: #191c19; border: 1px solid var(--line-dark); border-radius: 20px; }
.path-icon { display: grid; place-items: center; width: 46px; height: 46px; color: var(--ink); background: var(--lime); border-radius: 14px; font-size: 14px; font-weight: 900; }
.path-card:nth-child(2) .path-icon { background: var(--violet); }
.path-card:nth-child(3) .path-icon { background: var(--blue); }
.path-card h3 { margin: 28px 0 9px; font-size: 28px; letter-spacing: -.04em; }
.path-card p { margin: 0; color: var(--muted-dark); font-size: 13px; }
.path-card ul { margin: 18px 0 0; padding: 0; list-style: none; }
.path-card li { position: relative; margin: 8px 0; padding-left: 17px; color: #c7cdc5; font-size: 12px; }
.path-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; background: var(--lime); border-radius: 50%; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.timeline article { padding: 22px; color: var(--ink); background: var(--white); border: 1px solid var(--line-light); border-radius: 16px; }
.timeline span { color: #557a00; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.timeline h3 { margin: 11px 0 6px; font-size: 19px; }
.timeline p { margin: 0; color: var(--muted-light); font-size: 12px; }
.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 38px; color: var(--ink); background: var(--lime); border-radius: 24px; }
.cta-band h2 { margin: 0 0 7px; font-size: 37px; line-height: 1; letter-spacing: -.045em; }
.cta-band p { margin: 0; color: #455b15; }
.cta-band .button { background: var(--ink); border-color: var(--ink); color: var(--paper) !important; box-shadow: none; }

.thanks-shell { min-height: calc(100vh - 77px); display: grid; place-items: center; padding: 70px 0; }
.thanks-card { width: min(720px, 100%); padding: 48px; color: var(--ink); background: var(--paper); border-radius: 28px; box-shadow: var(--shadow); text-align: center; }
.success-mark { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 22px; color: var(--ink); background: var(--lime); border-radius: 18px; font-size: 28px; font-weight: 900; }
.thanks-card h1 { margin: 0 0 14px; font-size: clamp(44px, 7vw, 70px); }
.thanks-card > p { max-width: 570px; margin: 0 auto; color: var(--muted-light); }
.delivery-note { margin: 22px 0; padding: 15px; color: #485348; background: var(--white); border: 1px solid var(--line-light); border-radius: 12px; font-size: 12px; }
.thanks-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.legal-shell { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 75px 0 110px; }
.legal-shell h1 { font-size: clamp(48px, 7vw, 76px); }
.legal-shell h2 { margin: 38px 0 8px; font-size: 23px; letter-spacing: -.03em; }
.legal-shell p, .legal-shell li { color: #4f5a50; }
.legal-shell a { color: #406400; }

.mentorship-hero { display: grid; grid-template-columns: 1fr .7fr; gap: 55px; align-items: center; min-height: 650px; padding: 80px 0 100px; }
.mentorship-hero h1 { font-size: clamp(58px, 7vw, 94px); }
.mentor-card { padding: 30px; color: var(--ink); background: var(--lime); border-radius: 24px; }
.mentor-card h2 { margin: 10px 0; font-size: 35px; line-height: 1; letter-spacing: -.045em; }
.mentor-card p { color: #4d611d; }
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.pillar-grid article { padding: 24px; background: #191c19; border: 1px solid var(--line-dark); border-radius: 17px; }
.pillar-grid h3 { margin: 0 0 7px; }
.pillar-grid p { margin: 0; color: var(--muted-dark); font-size: 13px; }

.site-footer { width: min(var(--max), calc(100% - 40px)); display: grid; grid-template-columns: 1fr auto auto; gap: 34px; align-items: center; margin: 0 auto; padding: 34px 0; color: #7e877d; border-top: 1px solid var(--line-dark); font-size: 11px; }
.light-page .site-footer { border-color: var(--line-light); }
.footer-links { display: flex; gap: 18px; }
.site-footer a { text-decoration: none; }

@media (max-width: 940px) {
  .home-hero, .guide-hero, .mentorship-hero { grid-template-columns: 1fr; }
  .home-hero { padding-top: 75px; }
  .hero-panel { max-width: 650px; }
  .episode-grid, .principle-grid, .path-grid { grid-template-columns: 1fr 1fr; }
  .episode-grid[data-count="1"] { grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); }
  .timeline { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .site-nav { min-height: 68px; }
  .menu-button { display: grid; place-items: center; }
  .nav-links { position: absolute; top: 68px; left: 0; right: 0; display: none; padding: 16px; background: #181b18; border: 1px solid var(--line-dark); border-radius: 0 0 14px 14px; box-shadow: var(--shadow); }
  .light-page .nav-links { background: var(--white); border-color: var(--line-light); }
  .nav-links.open { display: grid; }
  .section-head { grid-template-columns: 1fr; gap: 14px; }
  .episode-grid, .episode-grid[data-count="1"], .principle-grid, .path-grid, .pillar-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; gap: 14px; }
  .home-hero, .guide-hero { padding: 70px 0 85px; }
  h1 { font-size: 57px; }
}
@media (max-width: 500px) {
  body { font-size: 16px; }
  .wrap, .site-nav, .site-footer { width: min(100% - 24px, var(--max)); }
  .logo { font-size: 11px; }
  .home-hero h1, .guide-hero h1, .mentorship-hero h1 { font-size: 50px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .timeline { grid-template-columns: 1fr; }
  .optin-card, .thanks-card { padding: 24px; }
  .thanks-shell { padding: 40px 0; }
  .cta-band { padding: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
