:root {
  --bg: #10110f;
  --bg-elevated: #181a16;
  --ink: #f6f5ee;
  --ink-soft: #c8cabe;
  --paper: #f3f0e7;
  --paper-2: #fffdf6;
  --text: #171916;
  --text-soft: #5f6458;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(23, 25, 22, 0.14);
  --green: #baff29;
  --orange: #ff9b30;
  --blue: #53a8ff;
  --purple: #bd7cff;
  --danger: #ff6f61;
  --shadow: 0 22px 70px rgba(10, 12, 9, 0.22);
  --radius: 8px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
  display: block;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

::selection {
  background: var(--green);
  color: #10110f;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--green);
  color: #10110f;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 17, 15, 0.88);
  backdrop-filter: blur(18px);
  color: var(--ink);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 2px solid var(--green);
  border-radius: 50%;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--orange);
}

.brand-mark::before {
  width: 12px;
  height: 2px;
  top: 12px;
  left: 6px;
  transform: rotate(35deg);
}

.brand-mark::after {
  width: 2px;
  height: 12px;
  top: 6px;
  left: 12px;
  transform: rotate(35deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 13px;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
}

.site-nav a.is-active {
  background: var(--green);
  color: #10110f;
}

.site-nav .nav-cta {
  border: 1px solid rgba(186, 255, 41, 0.58);
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle__line {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-dark,
.section-light,
.section-white {
  padding: 92px 0;
}

.section-dark {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 58px 58px, 58px 58px, auto;
  color: var(--ink);
}

.section-light {
  background: var(--paper);
  color: var(--text);
}

.section-white {
  background: var(--paper-2);
  color: var(--text);
}

.hero {
  padding: 82px 0 62px;
  overflow: hidden;
}

.hero-grid,
.two-column,
.results-layout,
.apply-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.two-column-reverse {
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  margin-bottom: 18px;
  padding: 8px 11px;
  text-transform: uppercase;
}

.section-light .eyebrow,
.section-white .eyebrow {
  color: #426100;
}

h1,
h2,
h3 {
  line-height: 1.04;
  font-weight: 900;
}

h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: 4rem;
}

h2 {
  font-size: 2.65rem;
  max-width: 820px;
}

h3 {
  font-size: 1.16rem;
}

.hero-lead {
  max-width: 760px;
  color: var(--ink);
  font-size: 1.27rem;
  line-height: 1.48;
  margin-top: 24px;
}

.hero-note,
.section-copy p,
.section-head p {
  color: inherit;
  opacity: 0.78;
  font-size: 1.04rem;
}

.hero-note {
  max-width: 720px;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  padding: 13px 18px;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: #10110f;
  box-shadow: 0 10px 26px rgba(186, 255, 41, 0.18);
}

.button-primary:hover {
  background: #d4ff63;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-tags li {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
  padding: 8px 10px;
}

.hero-visual {
  min-width: 0;
}

.hero-visual svg {
  width: 100%;
  min-height: 380px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.22));
}

.svg-panel {
  fill: rgba(255, 255, 255, 0.045);
  stroke: rgba(255, 255, 255, 0.15);
}

.svg-grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.065);
  stroke-width: 1;
}

.knot {
  fill: none;
  stroke-linecap: round;
  stroke-width: 10;
}

.knot-a {
  stroke: var(--green);
}

.knot-b {
  stroke: var(--orange);
}

.knot-c {
  stroke: var(--blue);
}

.core {
  fill: #10110f;
  stroke: rgba(255, 255, 255, 0.36);
  stroke-width: 2;
}

.connector {
  fill: none;
  stroke-width: 2.5;
  stroke-dasharray: 7 7;
}

.connector-green {
  stroke: var(--green);
}

.connector-orange {
  stroke: var(--orange);
}

.connector-blue {
  stroke: var(--blue);
}

.connector-purple {
  stroke: var(--purple);
}

.mini-card rect {
  fill: #f8f7ef;
  stroke: var(--green);
  stroke-width: 2;
}

.mini-card text {
  fill: #151712;
  font-size: 19px;
  font-weight: 900;
}

.mini-card .svg-small,
.svg-small {
  fill: rgba(21, 23, 18, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.svg-title {
  fill: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.core + .svg-title + .svg-small {
  fill: var(--ink-soft);
}

.mini-card-orange rect {
  stroke: var(--orange);
}

.mini-card-blue rect {
  stroke: var(--blue);
}

.mini-card-purple rect {
  stroke: var(--purple);
}

.section-copy p + p {
  margin-top: 16px;
}

.section-copy .button {
  margin-top: 28px;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.section-head p {
  margin: 18px auto 0;
  max-width: 760px;
}

.intro-band {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.format-card,
.inside-card,
.audience-card,
.accordion-item,
.example-panel,
.result-highlight,
.apply-form,
.compare-table {
  border-radius: var(--radius);
}

.feature-card {
  min-height: 210px;
  border: 1px solid var(--line-light);
  background: var(--paper-2);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease;
}

.feature-card:hover,
.inside-card:hover,
.audience-card:hover,
.format-card:hover {
  transform: translateY(-4px);
}

.feature-card h3 {
  margin-top: 18px;
}

.feature-card p,
.format-card p,
.inside-card p,
.audience-card p,
.example-panel p,
.accordion-panel p {
  color: var(--text-soft);
  margin-top: 10px;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: #10110f;
  color: var(--green);
  font-weight: 900;
}

.icon-box-orange {
  color: var(--orange);
}

.icon-box-blue {
  color: var(--blue);
}

.icon-box-purple {
  color: var(--purple);
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 26px;
  align-items: stretch;
}

.flow-chain {
  display: grid;
  grid-template-columns: repeat(7, minmax(96px, 1fr));
  gap: 10px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper);
  overflow-x: auto;
  scrollbar-width: thin;
}

.flow-chain span,
.flow-chain strong {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 96px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--text);
  font-weight: 900;
  text-align: center;
}

.flow-chain span::after {
  content: "";
  position: absolute;
  right: -11px;
  width: 12px;
  height: 2px;
  background: var(--orange);
}

.flow-chain strong {
  background: #10110f;
  color: var(--green);
}

.mechanism-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 520px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(23, 25, 22, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 25, 22, 0.06) 1px, transparent 1px),
    var(--paper-2);
  background-size: 44px 44px;
  padding: 22px;
  overflow: hidden;
}

.mechanism-map::before,
.mechanism-map::after {
  content: "";
  position: absolute;
  inset: 66px;
  border: 2px dashed rgba(23, 25, 22, 0.16);
  border-radius: 50%;
}

.mechanism-map::after {
  inset: 124px;
  border-color: rgba(255, 155, 48, 0.28);
}

.mechanism-core,
.mechanism-node {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.92);
  box-shadow: 0 18px 50px rgba(16, 17, 15, 0.11);
}

.mechanism-core {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  place-items: center;
  min-height: 180px;
  background: #10110f;
  color: var(--ink);
  text-align: center;
  padding: 26px;
}

.mechanism-core span,
.mechanism-node span,
.module-kicker {
  color: #587900;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mechanism-core span {
  color: var(--green);
}

.mechanism-core strong {
  display: block;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.mechanism-core small,
.mechanism-node small {
  color: var(--text-soft);
  font-weight: 750;
}

.mechanism-core small {
  color: var(--ink-soft);
}

.mechanism-node {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 20px;
}

.mechanism-node strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 1.32rem;
  line-height: 1.08;
}

.node-fact {
  border-top: 5px solid var(--green);
}

.node-thought {
  border-top: 5px solid var(--orange);
}

.node-charge {
  border-top: 5px solid var(--blue);
}

.node-image {
  border-top: 5px solid var(--purple);
}

.node-defense {
  border-top: 5px solid var(--danger);
}

.node-action {
  border-top: 5px solid #10110f;
}

.map-caption {
  max-width: 920px;
  margin: 18px auto 0;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #10110f;
  color: var(--ink-soft);
  padding: 20px 22px;
}

.map-caption strong {
  color: var(--green);
}

.example-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line-light);
  background: #10110f;
  color: var(--ink);
  padding: 26px;
}

.example-panel p {
  color: var(--ink-soft);
}

.orbit-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(186, 255, 41, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(83, 168, 255, 0.09) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 42px 42px, 42px 42px, auto;
  overflow: hidden;
}

.orbit-visual::before,
.orbit-visual::after {
  content: "";
  position: absolute;
  inset: 58px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.orbit-visual::after {
  inset: 104px;
  border-color: rgba(186, 255, 41, 0.28);
}

.orbit-center,
.orbit-item {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #10110f;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.orbit-center {
  inset: 50%;
  width: 136px;
  height: 88px;
  transform: translate(-50%, -50%);
  border-color: var(--green);
  color: var(--green);
}

.orbit-item {
  min-width: 104px;
  min-height: 48px;
  padding: 10px;
  font-size: 0.9rem;
}

.orbit-1 {
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--green);
}

.orbit-2 {
  top: 112px;
  right: 38px;
  color: var(--orange);
}

.orbit-3 {
  bottom: 104px;
  right: 36px;
  color: var(--blue);
}

.orbit-4 {
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--purple);
}

.orbit-5 {
  bottom: 104px;
  left: 36px;
  color: var(--green);
}

.orbit-6 {
  top: 112px;
  left: 38px;
  color: var(--orange);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.format-card {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.055);
  min-height: 230px;
  padding: 24px;
  transition: transform 160ms ease, background-color 160ms ease;
}

.format-card span {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
}

.format-card h3 {
  color: var(--ink);
  margin-top: 18px;
}

.format-card p {
  color: var(--ink-soft);
}

.accordion {
  display: grid;
  gap: 10px;
}

.program-accordion {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.program-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0)),
    var(--paper);
}

.program-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.program-module {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  min-height: 310px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 22px;
  box-shadow: 0 20px 60px rgba(16, 17, 15, 0.08);
}

.program-module-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.module-index {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #10110f;
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 950;
}

.module-body h3 {
  margin-top: 8px;
  font-size: 1.55rem;
}

.module-body p {
  color: var(--text-soft);
  margin-top: 14px;
}

.module-result {
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--paper);
  color: var(--text);
  font-weight: 800;
  margin-top: 18px;
  padding: 14px 16px;
}

.session-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.session-strip span {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #10110f;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.session-strip span:nth-child(odd) {
  color: var(--green);
}

.accordion-item {
  border: 1px solid var(--line-light);
  background: var(--paper-2);
  overflow: clip;
}

.accordion-button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 72px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 18px 20px;
  text-align: left;
}

.faq-accordion .accordion-button {
  grid-template-columns: 1fr auto;
}

.accordion-button span {
  border-radius: 999px;
  background: #10110f;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 9px;
  white-space: nowrap;
}

.accordion-button strong {
  font-size: 1rem;
  line-height: 1.25;
}

.accordion-button::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 900;
}

.accordion-button[aria-expanded="true"]::after {
  content: "−";
  background: var(--green);
}

.accordion-panel {
  padding: 0 20px 22px;
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.tool-matrix {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.tool-matrix span {
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--text);
  font-weight: 900;
  text-align: center;
  padding: 12px;
}

.tool-matrix span:nth-child(4n + 1) {
  background: #10110f;
  color: var(--green);
}

.tool-matrix span:nth-child(4n + 2) {
  border-top: 4px solid var(--orange);
}

.tool-matrix span:nth-child(4n + 3) {
  border-top: 4px solid var(--blue);
}

.tool-matrix span:nth-child(4n) {
  border-top: 4px solid var(--purple);
}

.tools-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 20px;
}

.tools-note strong {
  color: #426100;
}

.inside-card {
  min-height: 154px;
  border: 1px solid var(--line-light);
  background: var(--paper);
  padding: 18px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.inside-card:nth-child(3n + 1) {
  border-top: 4px solid var(--green);
}

.inside-card:nth-child(3n + 2) {
  border-top: 4px solid var(--orange);
}

.inside-card:nth-child(3n) {
  border-top: 4px solid var(--blue);
}

.results-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  margin-bottom: 40px;
}

.result-highlight {
  border: 1px solid var(--line-light);
  background: #10110f;
  color: var(--ink);
  margin-top: 24px;
  padding: 22px;
}

.result-highlight strong {
  color: var(--green);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-height: 330px;
}

.before-block,
.after-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 330px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 20px;
  overflow: hidden;
}

.before-block::before {
  content: "";
  position: absolute;
  width: 126px;
  height: 126px;
  top: 64px;
  left: 50%;
  transform: translateX(-50%) rotate(8deg);
  border: 14px solid #10110f;
  background: var(--orange);
}

.after-block::before,
.after-block::after,
.after-block i {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 4px solid #10110f;
}

.after-block::before {
  width: 70px;
  height: 70px;
  top: 42px;
  left: 38px;
  background: var(--green);
}

.after-block::after {
  width: 58px;
  height: 58px;
  top: 112px;
  right: 42px;
  background: var(--blue);
}

.after-block i:nth-of-type(1) {
  width: 54px;
  height: 54px;
  top: 174px;
  left: 82px;
  background: var(--purple);
}

.after-block i:nth-of-type(2) {
  width: 42px;
  height: 42px;
  top: 210px;
  right: 86px;
  background: var(--orange);
}

.after-block i:nth-of-type(3),
.after-block i:nth-of-type(4) {
  border: 0;
  border-radius: 0;
  height: 4px;
  background: #10110f;
}

.after-block i:nth-of-type(3) {
  width: 130px;
  top: 108px;
  left: 94px;
  transform: rotate(24deg);
}

.after-block i:nth-of-type(4) {
  width: 118px;
  top: 190px;
  left: 120px;
  transform: rotate(-19deg);
}

.before-block span,
.after-block span {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.before-block strong,
.after-block strong {
  position: relative;
  z-index: 1;
  max-width: 180px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.result-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.result-list li {
  position: relative;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 16px 16px 16px 42px;
  color: var(--text-soft);
}

.result-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(186, 255, 41, 0.24);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.audience-card {
  min-height: 240px;
  border: 1px solid var(--line-light);
  background: var(--paper);
  padding: 22px;
  transition: transform 160ms ease;
}

.compare-table {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-row + .compare-row {
  border-top: 1px solid var(--line-dark);
}

.compare-row div {
  padding: 18px;
  color: var(--ink-soft);
}

.compare-row div + div {
  border-left: 1px solid var(--line-dark);
  color: var(--ink);
}

.compare-head div {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-weight: 900;
}

.compare-row:not(.compare-head) div:nth-child(2)::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 8px;
}

.disclaimer {
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-soft);
  margin-top: 24px;
  padding: 16px 18px;
}

.practice-loop {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 20px;
}

.practice-loop span {
  position: relative;
  display: block;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px 18px 18px 54px;
  font-weight: 900;
}

.practice-loop span::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--green);
}

.practice-loop span:nth-child(2)::before {
  background: var(--orange);
}

.practice-loop span:nth-child(3)::before {
  background: var(--blue);
}

.practice-loop span:nth-child(4)::before {
  background: var(--purple);
}

.faq-layout {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  align-items: start;
}

.apply-layout {
  align-items: start;
}

.apply-note {
  margin-top: 24px;
  color: var(--green);
  font-weight: 850;
}

.apply-form {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.065);
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.apply-form h3 {
  margin-bottom: 18px;
}

.apply-form label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.apply-form span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.apply-form input,
.apply-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 17, 15, 0.78);
  color: var(--ink);
  padding: 13px 14px;
  resize: vertical;
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: rgba(246, 245, 238, 0.42);
}

.apply-form .button {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  color: var(--green);
  font-weight: 750;
  margin-top: 12px;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: #10110f;
  color: var(--ink-soft);
  padding: 28px 0;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-shell a {
  color: var(--green);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .two-column,
  .two-column-reverse,
  .results-layout,
  .apply-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .two-column-reverse .orbit-visual {
    order: 2;
  }

  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mechanism-map,
  .program-map {
    grid-template-columns: 1fr;
  }

  .mechanism-core {
    grid-column: auto;
    grid-row: auto;
  }

  .program-module-wide {
    grid-column: auto;
  }

  .tool-matrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .inside-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: 6px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(16, 17, 15, 0.97);
    padding: 10px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 13px 14px;
  }

  .hero {
    padding: 38px 0 34px;
  }

  .section-dark,
  .section-light,
  .section-white {
    padding: 64px 0;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1.1rem;
  }

  .hero-grid,
  .two-column,
  .results-layout,
  .apply-layout,
  .faq-layout {
    gap: 34px;
  }

  .hero-grid {
    position: relative;
    display: block;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  .hero-visual {
    display: none;
  }

  .feature-grid,
  .program-accordion,
  .format-grid,
  .inside-grid,
  .audience-grid,
  .result-list {
    grid-template-columns: 1fr;
  }

  .flow-layout {
    grid-template-columns: 1fr;
  }

  .flow-chain {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .flow-chain span,
  .flow-chain strong {
    min-height: 66px;
  }

  .flow-chain span::after {
    right: auto;
    left: 50%;
    bottom: -11px;
    width: 2px;
    height: 12px;
  }

  .mechanism-map {
    min-height: auto;
  }

  .mechanism-map::before,
  .mechanism-map::after {
    display: none;
  }

  .program-module {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .module-index {
    width: 58px;
    height: 58px;
    font-size: 1.08rem;
  }

  .session-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tools-note {
    grid-template-columns: 1fr;
  }

  .orbit-visual {
    min-height: 360px;
  }

  .orbit-visual::before {
    inset: 44px;
  }

  .orbit-visual::after {
    inset: 84px;
  }

  .orbit-item {
    min-width: 92px;
    min-height: 42px;
    font-size: 0.82rem;
  }

  .orbit-2,
  .orbit-3 {
    right: 18px;
  }

  .orbit-5,
  .orbit-6 {
    left: 18px;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-block,
  .after-block {
    min-height: 260px;
  }
}

@media (max-width: 540px) {
  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  h3 {
    font-size: 1.06rem;
  }

  .hero-actions {
    display: grid;
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .feature-card,
  .format-card,
  .inside-card,
  .audience-card,
  .program-module,
  .apply-form {
    padding: 18px;
  }

  .mechanism-node {
    min-height: 124px;
  }

  .mechanism-core {
    min-height: 150px;
  }

  .module-body h3 {
    font-size: 1.28rem;
  }

  .session-strip {
    grid-template-columns: 1fr;
  }

  .tool-matrix {
    grid-template-columns: 1fr;
  }

  .accordion-button {
    grid-template-columns: 1fr auto;
  }

  .program-accordion .accordion-button span {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row div + div {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .orbit-visual {
    min-height: 330px;
  }

  .orbit-center {
    width: 112px;
    height: 72px;
  }

  .orbit-1 {
    top: 26px;
  }

  .orbit-4 {
    bottom: 24px;
  }

  .orbit-2,
  .orbit-6 {
    top: 94px;
  }

  .orbit-3,
  .orbit-5 {
    bottom: 92px;
  }

  .hero-lead {
    font-size: 1rem;
    margin-top: 16px;
  }

  .hero-note {
    font-size: 0.95rem;
    line-height: 1.43;
    margin-top: 14px;
  }

  .hero-tags {
    display: none;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}
