:root {
  --bg: #f5f5ed;
  --paper: #fffdf5;
  --ink: #141817;
  --muted: #686b60;
  --line: rgba(21, 21, 21, 0.12);
  --accent: #2f6f54;
  --accent-dark: #263230;
  --signal: #9ed434;
  --signal-bright: #a0d034;
  --steel: #dce5d2;
  --rose: #e9c8bb;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(17, 24, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  isolation: isolate;
}

.particle-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

body > *:not(.particle-field) {
  position: relative;
  z-index: 1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(47, 111, 84, 0.16);
}

a,
button,
.btn {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(47, 111, 84, 0.28);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 72px;
  margin: 0 auto;
  padding: 14px 24px;
  background: rgba(247, 246, 241, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition:
    min-height 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-compact {
  min-height: 62px;
  background: rgba(247, 246, 241, 0.94);
  box-shadow: 0 10px 34px rgba(21, 21, 21, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: none;
}

.brand-text {
  max-width: none;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2b2a27;
  font-size: 14px;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-color: var(--ink);
}

.scroll-system-rail {
  position: fixed;
  top: 50%;
  right: max(18px, calc((100vw - var(--max)) / 2 - 86px));
  z-index: 8;
  width: 108px;
  height: 330px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.scroll-system-rail.is-visible {
  opacity: 1;
}

.rail-line {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 12px;
  width: 1px;
  background: rgba(21, 21, 21, 0.14);
}

.rail-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: calc(var(--flow-progress, 0) * 100%);
  background: linear-gradient(180deg, var(--accent), var(--signal));
  box-shadow: 0 0 22px rgba(215, 255, 95, 0.3);
}

.rail-packet {
  position: absolute;
  left: -5px;
  top: calc(var(--flow-progress, 0) * 100%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow:
    0 0 0 5px rgba(215, 255, 95, 0.15),
    0 0 22px rgba(215, 255, 95, 0.45);
  transform: translateY(-50%);
}

.rail-node {
  position: absolute;
  top: var(--rail-node-y);
  left: 0;
  display: grid;
  grid-template-columns: 25px 1fr;
  column-gap: 10px;
  align-items: center;
  width: 108px;
  transform: translateY(-50%);
  color: rgba(21, 21, 21, 0.44);
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.rail-node::before {
  content: attr(data-step);
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: 50%;
  background: rgba(247, 246, 241, 0.88);
  color: inherit;
  font-size: 10px;
  font-weight: 850;
}

.rail-node strong {
  display: block;
  color: inherit;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rail-node span {
  display: block;
  margin-top: 3px;
  color: rgba(21, 21, 21, 0.42);
  font-size: 11px;
}

.rail-node.is-active {
  color: var(--accent-dark);
  transform: translateY(-50%) translateX(-5px);
}

.rail-node.is-active::before {
  border-color: var(--accent);
  background: var(--signal);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-pad {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 94px 24px;
}

.section-pad > * {
  position: relative;
  z-index: 1;
}

.section-pad::before {
  content: "";
  position: absolute;
  inset: 18px 12px;
  z-index: 0;
  display: none;
  pointer-events: none;
  border: 1px solid rgba(20, 24, 23, 0);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0);
  box-shadow: 0 28px 80px rgba(20, 24, 23, 0);
  opacity: 0;
  transition:
    opacity 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.section-pad:hover::before,
.section-pad:focus-within::before {
  display: none;
}

.hero {
  min-height: clamp(720px, 118vh, 980px);
  display: grid;
  align-items: start;
  padding-top: 0;
}

.hero-scroll-scene {
  max-width: var(--max);
  min-height: clamp(720px, 118vh, 980px);
  padding: clamp(18px, 2.5vw, 34px) 24px clamp(36px, 5vh, 58px);
}

.hero-sticky {
  position: sticky;
  top: 88px;
  display: grid;
  align-items: stretch;
  min-height: calc(100vh - 104px);
  overflow: visible;
  padding: 0;
}

.hero-sticky > * {
  position: relative;
  z-index: 1;
}

.page-hero {
  min-height: 50vh;
  display: grid;
  align-content: center;
  border-bottom: 1px solid var(--line);
  padding-top: 76px;
  padding-bottom: 76px;
}

.content-section {
  background: var(--bg);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 19px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 104px);
  padding-bottom: clamp(72px, 10vh, 128px);
}

.hero-logo-stage {
  display: grid;
  justify-items: start;
  gap: 8px;
  width: min(175px, 23vw);
  margin: 0 0 0 clamp(18px, 3.8vw, 58px);
  padding: 0;
  text-align: left;
  transform: none;
  transform-origin: left center;
  transition: opacity 180ms ease;
}

.hero-copy > .eyebrow,
.hero-copy > h1,
.hero-copy > .hero-lead,
.hero-copy > .hero-actions,
.hero-copy > .hero-metrics {
  margin-left: clamp(18px, 3.8vw, 58px);
}

.hero-copy > .eyebrow {
  margin-left: clamp(18px, 3.8vw, 58px);
}

.hero-statement {
  max-width: 820px;
  margin-bottom: clamp(44px, 7vw, 84px);
  padding-top: clamp(8px, 2vw, 24px);
}

.hero-statement .hero-lead,
.hero-statement .hero-actions,
.hero-statement .hero-metrics,
.hero-statement .hero-lead-form {
  margin-left: 0;
}

.hero-copy > h1 {
  margin-top: clamp(22px, 3.4vh, 38px);
}

.hero-ivi-mark {
  position: relative;
  width: 100%;
  aspect-ratio: 12 / 7;
  filter: drop-shadow(0 24px 52px rgba(20, 24, 23, 0.12));
}

.hero-ivi-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

h1 {
  max-width: 900px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(44px, 4.8vw, 66px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 880;
}

h3 {
  font-size: 23px;
  line-height: 1.1;
  font-weight: 820;
}

.hero-lead {
  max-width: 670px;
  margin-top: 28px;
  color: #4d4b45;
  font-size: clamp(18px, 2vw, 22px);
}

.offer-line {
  max-width: 840px;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 780;
  line-height: 1.08;
}

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

.hero-lead-form {
  grid-template-columns: minmax(170px, 1fr) minmax(170px, 1fr) auto;
  align-items: end;
  gap: 10px;
  max-width: 760px;
  margin-top: 18px;
  margin-left: clamp(18px, 3.8vw, 58px);
  padding: 12px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  background: rgba(255, 253, 245, 0.72);
  box-shadow: 0 18px 50px rgba(20, 24, 23, 0.08);
}

.hero-lead-form label {
  gap: 5px;
}

.hero-lead-form span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead-form input,
.hero-lead-form select {
  min-height: 43px;
  padding: 10px 11px;
}

.hero-lead-form .btn {
  min-height: 43px;
  padding: 10px 14px;
  white-space: nowrap;
}

.hero-lead-form .form-note {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 760;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
}

.btn-secondary:hover {
  background: var(--paper);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 48px 0 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 245, 0.86);
  border-radius: var(--radius);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.hero-metrics div:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 24, 23, 0.28);
  background: var(--signal);
  box-shadow: 0 18px 50px rgba(157, 255, 34, 0.2);
}

.hero-metrics dt {
  font-size: 30px;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 510px);
  min-height: 330px;
  margin: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(47, 111, 84, 0.16), transparent 36%),
    linear-gradient(320deg, rgba(157, 255, 34, 0.34), transparent 36%),
    var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
  transform: none;
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.system-map {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 330px;
  padding: 18px;
}

.motion-layer {
  display: none;
}

.motion-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(20, 24, 23, 0.18);
  border-radius: 50%;
  background: var(--signal);
  box-shadow:
    0 0 0 10px rgba(157, 255, 34, 0.1),
    0 0 38px rgba(157, 255, 34, 0.36);
  transition:
    transform 320ms ease,
    opacity 320ms ease;
}

.node-a {
  top: 10%;
  right: 10%;
  transform: translate3d(calc(var(--pointer-x, 0px) * 0.018), calc(var(--pointer-y, 0px) * 0.018), 0);
}

.node-b {
  top: 47%;
  right: 6%;
  width: 10px;
  height: 10px;
  background: rgba(47, 111, 84, 0.72);
  transform: translate3d(calc(var(--pointer-x, 0px) * -0.014), calc(var(--pointer-y, 0px) * 0.014), 0);
}

.node-c {
  left: 8%;
  bottom: 9%;
  width: 18px;
  height: 18px;
  background: rgba(255, 253, 245, 0.82);
  transform: translate3d(calc(var(--pointer-x, 0px) * 0.012), calc(var(--pointer-y, 0px) * -0.012), 0);
}

.motion-line {
  position: absolute;
  display: block;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 21, 21, 0.34), transparent);
  transform-origin: center;
  opacity: 0.42;
}

.line-a {
  top: 30%;
  right: 8%;
  transform: rotate(-24deg) translateY(calc(var(--scroll-shift, 0px) * 0.04));
}

.line-b {
  left: 3%;
  bottom: 31%;
  transform: rotate(28deg) translateY(calc(var(--scroll-shift, 0px) * -0.05));
}

.hero-visual:hover .motion-node {
  opacity: 0.92;
}

.hero-visual:hover .node-a {
  transform: translate3d(12px, -10px, 0);
}

.hero-visual:hover .node-b {
  transform: translate3d(-14px, 8px, 0);
}

.hero-visual:hover .node-c {
  transform: translate3d(14px, 10px, 0);
}

.map-node {
  position: relative;
  padding: 18px;
  background: rgba(255, 252, 244, 0.78);
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.map-node.is-active {
  border-color: rgba(20, 24, 23, 0.22);
  background:
    linear-gradient(135deg, rgba(157, 255, 34, 0.96), rgba(157, 255, 34, 0.78)),
    var(--signal);
  box-shadow: 0 18px 52px rgba(157, 255, 34, 0.22);
}

.map-node::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(157, 255, 34, 0.74), rgba(157, 255, 34, 0.42)),
    var(--signal);
  opacity: 0;
  transition: opacity 220ms ease;
}

.map-node span,
.map-node strong,
.map-node small {
  position: relative;
  z-index: 1;
}

.map-node span,
.index,
.service-kicker,
.case-list span,
.blog-grid span,
.process-steps span {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.map-node strong {
  display: block;
  margin-top: 8px;
  font-size: 25px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.map-node small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.map-line {
  width: 1px;
  height: 28px;
  margin-left: 28px;
  background: var(--ink);
  opacity: 0.2;
}

.map-panel {
  margin-top: 16px;
  padding: 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
}

.map-panel p {
  color: rgba(255, 252, 244, 0.72);
  margin-bottom: 12px;
}

.section-head {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 42px;
}

.section-head.wide {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.section-lead {
  max-width: 760px;
  margin-top: -18px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.definition-panel,
.mentor-panel,
.training-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: start;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(157, 255, 34, 0.12), transparent 45%),
    rgba(255, 253, 245, 0.78);
}

.definition-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}

.role-grid,
.check-grid,
.program-grid,
.packages-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.role-grid article,
.check-grid article,
.program-grid article,
.packages-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.74);
}

.role-grid span,
.program-grid span,
.packages-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-grid h3,
.program-grid h3,
.packages-grid h3 {
  margin-top: 34px;
}

.role-grid p,
.program-grid p,
.packages-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.program-grid strong,
.packages-grid strong {
  display: block;
  margin-top: 22px;
  color: var(--accent-dark);
  line-height: 1.35;
}

.packages-grid article {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.packages-grid strong {
  margin-top: auto;
  padding-top: 26px;
  font-size: 20px;
}

.role-note {
  max-width: 760px;
  margin-top: 22px;
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 780;
}

.training-panel {
  grid-template-columns: 1fr auto;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(47, 111, 84, 0.34), transparent 42%),
    var(--ink);
  color: var(--paper);
}

.training-panel .eyebrow {
  color: var(--signal);
}

.training-panel p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 16px;
  color: rgba(255, 253, 245, 0.68);
}

.training-hero {
  min-height: 62vh;
}

.training-format-grid article {
  min-height: 300px;
}

.problem-grid,
.service-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fit-grid,
.build-grid {
  display: grid;
  gap: 16px;
}

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

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

.problem-grid article,
.blog-grid article,
.fit-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.72);
}

.fit-grid article {
  min-height: 260px;
  padding: 30px;
}

.problem-grid h3,
.blog-grid h3,
.fit-grid h3 {
  margin: 42px 0 14px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.04;
}

.problem-grid p,
.blog-grid p,
.fit-grid p,
.service-card p,
.process-steps p,
.case-list p,
.contact-grid p,
.site-footer p {
  color: var(--muted);
}

.fit-grid p {
  max-width: 420px;
  font-size: 17px;
  line-height: 1.55;
}

.fit-grid span {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.build-section {
  padding-top: 26px;
}

.build-grid article {
  min-height: 116px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(157, 255, 34, 0.12), transparent 54%),
    rgba(255, 252, 244, 0.78);
  color: #242824;
  font-size: 18px;
  font-weight: 780;
  line-height: 1.18;
}

.model-section {
  padding-top: 24px;
}

.founder-section {
  padding-top: 40px;
}

.founder-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.5fr);
  gap: 34px 42px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(157, 255, 34, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(47, 111, 84, 0.34), transparent 42%),
    var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.founder-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 253, 245, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 245, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.5;
}

.founder-panel > * {
  position: relative;
  z-index: 1;
}

.founder-copy {
  align-self: center;
  max-width: 720px;
}

.founder-copy .eyebrow {
  color: var(--signal);
}

.founder-copy h2 {
  margin-top: 18px;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 0.98;
}

.founder-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 253, 245, 0.68);
  font-size: 18px;
}

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

.founder-actions .btn-secondary {
  color: var(--paper);
  border-color: rgba(255, 253, 245, 0.28);
  background: rgba(255, 253, 245, 0.06);
}

.founder-actions .btn-secondary:hover {
  color: var(--ink);
  border-color: var(--signal);
  background: var(--signal);
}

.founder-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 360px);
  aspect-ratio: 0.78;
  min-height: 0;
  border: 1px solid rgba(255, 253, 245, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 54%, rgba(20, 24, 23, 0.88)),
    #050606;
}

.founder-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.08) brightness(0.9) saturate(0.94);
  transform: scale(1.01);
}

.founder-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 24, 23, 0.04), rgba(20, 24, 23, 0.2) 52%, rgba(20, 24, 23, 0.92)),
    linear-gradient(90deg, rgba(20, 24, 23, 0.18), transparent 48%),
    radial-gradient(circle at 22% 22%, rgba(157, 255, 34, 0.13), transparent 24%);
}

.founder-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 253, 245, 0.16);
  border-radius: var(--radius);
  background: rgba(20, 24, 23, 0.76);
  backdrop-filter: blur(14px);
}

.founder-badge span {
  color: var(--signal);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.founder-badge strong {
  color: rgba(255, 253, 245, 0.72);
  font-size: 12px;
  text-align: right;
}

.founder-manifest {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.founder-manifest span {
  padding: 9px 12px;
  border: 1px solid rgba(157, 255, 34, 0.28);
  border-radius: 999px;
  color: var(--signal);
  background: rgba(157, 255, 34, 0.06);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.founder-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.founder-facts article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 245, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.07);
  backdrop-filter: blur(12px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.founder-facts article:hover {
  transform: translateY(-4px);
  border-color: rgba(157, 255, 34, 0.42);
  background: rgba(157, 255, 34, 0.12);
}

.founder-facts span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.founder-facts strong {
  display: block;
  margin-top: 28px;
  font-size: 26px;
  line-height: 1;
}

.founder-facts p {
  margin-top: 10px;
  color: rgba(255, 253, 245, 0.62);
  font-size: 14px;
}

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

.model-grid article {
  position: relative;
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.72);
  overflow: hidden;
}

.model-grid article::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 96px;
  height: 96px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.08;
}

.model-grid span {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-grid h3 {
  margin: 42px 0 16px;
  font-size: clamp(26px, 3vw, 42px);
}

.model-grid p,
.model-grid li {
  color: var(--muted);
}

.model-grid ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 18px;
}

.growth-section {
  padding-top: 20px;
}

.growth-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 111, 84, 0.44), transparent 38%),
    linear-gradient(315deg, rgba(157, 255, 34, 0.2), transparent 42%),
    var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.growth-panel .eyebrow {
  color: var(--signal);
}

.growth-panel p {
  margin-top: 18px;
  color: rgba(255, 252, 244, 0.68);
}

.growth-stack {
  display: grid;
  gap: 12px;
}

.growth-stack article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 102px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 252, 244, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.075);
  backdrop-filter: blur(12px);
}

.growth-stack span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 0 28px rgba(157, 255, 34, 0.2);
}

.growth-stack strong {
  display: block;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.18;
}

.growth-stack p {
  margin: 0;
  font-size: 14px;
}

.dashboard-section {
  padding-top: 20px;
}

.chaos-system-section {
  height: 240vh;
  background: var(--paper);
}

.chaos-sticky {
  position: sticky;
  top: 0;
  display: grid;
  align-content: center;
  height: 100vh;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(32px, 5vh, 64px) 24px;
  overflow: hidden;
}

.chaos-copy {
  max-width: 820px;
  margin-bottom: clamp(18px, 3vh, 28px);
}

.chaos-copy h2 {
  max-width: 900px;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 1;
}

.chaos-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.chaos-stage {
  position: relative;
  min-height: clamp(320px, 43vh, 420px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at calc(12% + var(--chaos-progress, 0) * 72%) 50%, rgba(157, 255, 34, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(233, 200, 187, 0.22), transparent 34%),
    linear-gradient(270deg, rgba(216, 228, 223, 0.58), transparent 34%),
    var(--bg);
  box-shadow: var(--shadow);
}

.chaos-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(47, 111, 84, 0.18) 1.2px, transparent 1.6px);
  background-size: 34px 34px;
  opacity: calc(0.22 + var(--chaos-progress, 0) * 0.22);
  transform: translateX(calc(var(--chaos-progress, 0) * -10px));
}

.chaos-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 9%;
  top: calc(50% - 44px);
  z-index: 1;
  height: 88px;
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.56);
  box-shadow: inset 0 0 0 1px rgba(21, 21, 21, 0.06);
  opacity: calc(0.2 + var(--chaos-progress, 0) * 0.62);
}

.chaos-label {
  display: none;
}

.chaos-label-left {
  left: 22px;
  top: 22px;
}

.chaos-label-right {
  right: 22px;
  bottom: 22px;
  text-align: right;
}

.chaos-connector {
  position: absolute;
  left: 12%;
  right: 17%;
  top: 50%;
  z-index: 2;
  height: 2px;
  background: rgba(21, 21, 21, 0.12);
  transform: scaleX(var(--chaos-progress, 0));
  transform-origin: left;
  transition: transform 80ms linear;
}

.chaos-connector span {
  position: absolute;
  right: -6px;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 24px rgba(215, 255, 95, 0.55);
}

.chaos-item {
  position: absolute;
  z-index: 3;
  left: calc(var(--start-x) + (var(--end-x) - var(--start-x)) * var(--chaos-progress, 0));
  top: calc(var(--start-y) + (var(--end-y) - var(--start-y)) * var(--chaos-progress, 0));
  transform: translate(-50%, -50%) rotate(calc((1 - var(--chaos-progress, 0)) * var(--tilt, -8deg)));
  min-width: 148px;
  padding: 14px 17px 14px 42px;
  border: 1px solid rgba(21, 21, 21, 0.15);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.9);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(21, 21, 21, 0.1);
  font-size: 13px;
  font-weight: 820;
  text-align: left;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.chaos-item::before {
  content: "0" counter(chaos-step);
  counter-increment: chaos-step;
  position: absolute;
  left: 13px;
  top: 50%;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(157, 255, 34, 0.92);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  transform: translateY(-50%);
}

.chaos-stage {
  counter-reset: chaos-step;
}

.chaos-item:nth-of-type(odd) {
  --tilt: 9deg;
}

.chaos-item:hover {
  border-color: var(--accent);
  background: var(--signal);
  box-shadow: 0 22px 54px rgba(47, 111, 84, 0.16);
}

.system-output {
  position: absolute;
  right: 26px;
  top: 50%;
  z-index: 4;
  width: 205px;
  padding: 18px 18px 17px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  opacity: var(--chaos-progress, 0);
  transform: translateY(-50%) translateX(calc((1 - var(--chaos-progress, 0)) * 22px));
  box-shadow: 0 26px 60px rgba(21, 21, 21, 0.22);
}

.system-output strong,
.system-output span {
  display: block;
}

.system-output span {
  margin-top: 7px;
  color: rgba(255, 252, 244, 0.62);
  font-size: 13px;
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(15, 123, 103, 0.12), transparent 34%),
    linear-gradient(320deg, rgba(215, 255, 95, 0.28), transparent 42%),
    #191a18;
  color: var(--paper);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 252, 244, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 252, 244, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: translateY(calc(var(--scroll-shift, 0px) * -0.04));
  opacity: 0.58;
}

.dashboard-shell::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -120px;
  background: radial-gradient(circle, rgba(215, 255, 95, 0.34), transparent 62%);
  transform: translate3d(calc(var(--dash-x, 0px) * 0.02), calc(var(--dash-y, 0px) * 0.02), 0);
  transition: transform 180ms ease;
}

.dashboard-shell:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 90px rgba(17, 24, 20, 0.18);
}

.dash-topbar,
.dash-grid,
.dash-lower {
  position: relative;
  z-index: 2;
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(255, 252, 244, 0.12);
}

.dash-topbar span {
  display: block;
  color: var(--signal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dash-topbar strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.dash-topbar p {
  color: rgba(255, 252, 244, 0.54);
  font-size: 14px;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 252, 244, 0.12);
}

.dash-card {
  min-height: 166px;
  padding: 24px;
  background: rgba(25, 26, 24, 0.78);
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.dash-card:hover {
  background: rgba(255, 252, 244, 0.08);
  transform: translateY(-3px);
}

.dash-card span {
  color: rgba(255, 252, 244, 0.58);
  font-size: 13px;
  font-weight: 760;
}

.dash-card strong {
  display: block;
  margin-top: 30px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.92;
}

.dash-card p {
  margin-top: 10px;
  color: rgba(255, 252, 244, 0.58);
}

.dash-card-accent strong {
  color: var(--signal);
}

.dash-lower {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1px;
  background: rgba(255, 252, 244, 0.12);
}

.dash-chart,
.dash-flow {
  min-height: 260px;
  background: rgba(25, 26, 24, 0.72);
}

.dash-chart {
  display: flex;
  align-items: end;
  gap: 14px;
  padding: 32px;
}

.dash-chart span {
  flex: 1;
  min-width: 22px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--signal), rgba(15, 123, 103, 0.78));
  transform-origin: bottom;
  animation: barRise 900ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.dash-chart span:nth-child(2) {
  animation-delay: 80ms;
}

.dash-chart span:nth-child(3) {
  animation-delay: 140ms;
}

.dash-chart span:nth-child(4) {
  animation-delay: 200ms;
}

.dash-chart span:nth-child(5) {
  animation-delay: 260ms;
}

.dash-chart span:nth-child(6) {
  animation-delay: 320ms;
}

.dash-chart span:nth-child(7) {
  animation-delay: 380ms;
}

.dash-flow {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
}

.dash-flow div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 252, 244, 0.74);
  font-size: 14px;
}

.dash-flow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(215, 255, 95, 0.38);
  animation: statusPing 2.8s ease-in-out infinite;
}

.services {
  max-width: none;
  background: var(--ink);
  color: var(--paper);
}

.services > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.services .eyebrow,
.services .service-kicker {
  color: var(--signal);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 28px;
  border: 1px solid rgba(255, 252, 244, 0.18);
  border-radius: var(--radius);
  background: #20201e;
}

.service-card.featured {
  background: var(--paper);
  color: var(--ink);
}

.service-card h3 {
  margin: 18px 0 18px;
  font-size: 31px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 28px;
  padding-left: 18px;
  color: inherit;
}

.service-card p,
.service-card li {
  color: rgba(255, 252, 244, 0.7);
}

.service-card.featured p,
.service-card.featured li {
  color: #5e5a50;
}

.service-card a {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  font-weight: 800;
}

.service-grid-secondary {
  margin-top: 18px;
}

.service-grid-secondary .service-card {
  min-height: 390px;
}

.formats-section {
  padding-top: 26px;
}

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

.formats-grid article {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 253, 245, 0.88), rgba(255, 253, 245, 0.64)),
    var(--paper);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.formats-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(157, 255, 34, 0.48);
  background:
    linear-gradient(135deg, rgba(157, 255, 34, 0.2), transparent 52%),
    var(--paper);
  box-shadow: 0 20px 58px rgba(21, 21, 21, 0.1);
}

.formats-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.formats-grid h3 {
  margin-top: 42px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.formats-grid p {
  margin-top: 16px;
  color: var(--muted);
}

.formats-grid strong {
  display: block;
  margin-top: auto;
  padding-top: 34px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.formats-grid a {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 21, 21, 0.16);
  color: var(--accent-dark);
  font-weight: 820;
}

.formats-grid a:hover {
  color: var(--accent);
}

.formats-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(157, 255, 34, 0.2), transparent 54%),
    rgba(255, 253, 245, 0.78);
}

.formats-note p {
  max-width: 780px;
  color: var(--muted);
}

.leadmagnet-section {
  padding-top: 20px;
}

.leadmagnet-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 38px 42px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(215, 255, 95, 0.26), transparent 45%),
    var(--steel);
}

.leadmagnet-panel p {
  max-width: 720px;
  margin-top: 16px;
  color: #3f4945;
}

.diagnostic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.diagnostic-list li {
  padding: 9px 11px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.52);
  color: #33403a;
  font-size: 13px;
  font-weight: 760;
}

.diagnostic-result-section,
.before-after-section,
.tools-section,
.faq-section {
  padding-top: 28px;
}

.diagnostic-grid,
.before-after-grid,
.tools-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

.diagnostic-grid article,
.faq-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.92), rgba(255, 253, 245, 0.64)),
    var(--paper);
}

.diagnostic-grid span,
.tools-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.diagnostic-grid h3,
.faq-grid h3 {
  margin-top: 36px;
  font-size: clamp(24px, 2.6vw, 33px);
  line-height: 1.06;
}

.diagnostic-grid p,
.faq-grid p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.5;
}

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

.before-after-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.78);
}

.before-after-grid .after-card {
  border-color: rgba(157, 255, 34, 0.42);
  background:
    linear-gradient(135deg, rgba(157, 255, 34, 0.34), rgba(255, 253, 245, 0.86) 62%),
    var(--paper);
}

.before-after-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.before-after-grid ul {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.before-after-grid li {
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.35;
}

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

.tools-grid span {
  justify-content: center;
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.76);
  color: var(--accent-dark);
  text-align: center;
}

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

.faq-grid article {
  min-height: 220px;
}

.case-list {
  display: grid;
  gap: 16px;
}

.case-list article {
  display: grid;
  grid-template-columns: 180px 0.85fr 1.25fr;
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.case-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.process {
  max-width: none;
  background: var(--paper);
}

.process > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-steps li {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.process-steps h3 {
  margin: 58px 0 14px;
}

.audience-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 42px;
  background: var(--steel);
  border-radius: var(--radius);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  padding: 10px 13px;
  background: rgba(255, 252, 244, 0.68);
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  color: #3c3b36;
  font-size: 14px;
}

.contact {
  max-width: none;
  background: var(--ink);
  color: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
}

.contact h2 {
  margin-bottom: 20px;
}

.contact-page h1 {
  max-width: 760px;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
}

.contact-page .contact-grid {
  align-items: center;
}

.contact .eyebrow {
  color: var(--signal);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  padding: 10px 13px;
  border: 1px solid rgba(255, 252, 244, 0.24);
  border-radius: 999px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

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

.lead-form span {
  color: #4d4b45;
  font-size: 14px;
  font-weight: 760;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 21, 21, 0.16);
  background: #fffefb;
  color: var(--ink);
  border-radius: 6px;
  padding: 13px 12px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid var(--signal);
  border-color: var(--ink);
}

.lead-form button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.form-note {
  min-height: 24px;
  color: var(--accent-dark);
  font-size: 14px;
}

.lead-form.is-error .form-note {
  color: #9b2c2c;
}

.lead-form.is-success .form-note {
  color: var(--signal);
}

.values {
  padding-top: 0;
}

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

.value-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.72);
}

.value-grid span {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.value-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.hero-copy {
  align-self: center;
  margin-bottom: 0;
  animation: heroIn 780ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-visual {
  animation: visualIn 900ms cubic-bezier(0.2, 0.75, 0.25, 1) 120ms both;
}

.map-node {
  animation: none;
}

.map-node:nth-of-type(3) {
  animation-delay: 0s;
}

.map-node:nth-of-type(5) {
  animation-delay: 0s;
}

.map-node:nth-of-type(3)::before {
  animation-delay: 0s;
}

.map-node:nth-of-type(5)::before {
  animation-delay: 0s;
}

.map-panel {
  animation: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.problem-grid article,
.blog-grid article,
.fit-grid article,
.build-grid article,
.diagnostic-grid article,
.before-after-grid article,
.tools-grid span,
.faq-grid article,
.service-card,
.case-list article,
.process-steps li,
.model-grid article,
.growth-stack article,
.value-grid article,
.tags span {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.problem-grid article:hover,
.blog-grid article:hover,
.fit-grid article:hover,
.build-grid article:hover,
.diagnostic-grid article:hover,
.before-after-grid article:hover,
.tools-grid span:hover,
.faq-grid article:hover,
.service-card:hover,
.process-steps li:hover,
.model-grid article:hover,
.growth-stack article:hover,
.value-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(21, 21, 21, 0.1);
  border-color: rgba(21, 21, 21, 0.22);
}

.problem-grid article:hover,
.model-grid article:hover,
.fit-grid article:hover,
.build-grid article:hover,
.diagnostic-grid article:hover,
.before-after-grid article:hover,
.faq-grid article:hover,
.value-grid article:hover,
.blog-grid article:hover,
.process-steps li:hover {
  background:
    linear-gradient(135deg, rgba(157, 255, 34, 0.18), transparent 52%),
    rgba(255, 253, 245, 0.94);
}

.attention-node {
  outline: 0 solid transparent;
  outline-offset: 0;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    outline-color 240ms ease,
    outline-width 240ms ease;
}

.attention-node.is-focus-active {
  border-color: rgba(157, 255, 34, 0.58);
  outline: 1px solid rgba(157, 255, 34, 0.55);
  outline-offset: 3px;
  box-shadow:
    0 18px 54px rgba(47, 111, 84, 0.14),
    0 0 0 1px rgba(157, 255, 34, 0.22) inset;
}

.problem-grid article.is-focus-active,
.model-grid article.is-focus-active,
.fit-grid article.is-focus-active,
.build-grid article.is-focus-active,
.diagnostic-grid article.is-focus-active,
.before-after-grid article.is-focus-active,
.tools-grid span.is-focus-active,
.faq-grid article.is-focus-active,
.formats-grid article.is-focus-active,
.blog-grid article.is-focus-active,
.case-list article.is-focus-active,
.process-steps li.is-focus-active {
  background:
    linear-gradient(135deg, rgba(157, 255, 34, 0.24), transparent 56%),
    rgba(255, 253, 245, 0.96);
}

.definition-panel.is-focus-active,
.leadmagnet-panel.is-focus-active {
  background:
    linear-gradient(90deg, rgba(157, 255, 34, 0.46), transparent 58%),
    var(--steel);
}

.training-panel.is-focus-active,
.service-card.is-focus-active:not(.featured),
.growth-stack article.is-focus-active,
.dash-card.is-focus-active {
  border-color: rgba(215, 255, 95, 0.5);
  background:
    linear-gradient(135deg, rgba(157, 255, 34, 0.2), transparent 58%),
    rgba(25, 26, 24, 0.9);
}

.service-card.featured.is-focus-active {
  background:
    linear-gradient(135deg, rgba(157, 255, 34, 0.26), transparent 52%),
    var(--paper);
}

.founder-manifest span.is-focus-active,
.contact-links a.is-focus-active,
.chaos-item.is-focus-active,
.system-output.is-focus-active {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}

.contact .lead-form.is-focus-active {
  border-color: rgba(215, 255, 95, 0.5);
  background:
    linear-gradient(135deg, rgba(157, 255, 34, 0.14), transparent 50%),
    rgba(255, 253, 245, 0.06);
}

.service-card:hover {
  border-color: rgba(215, 255, 95, 0.42);
}

.service-card:hover a,
.case-list article:hover a {
  color: var(--signal);
}

.service-card.featured:hover {
  border-color: rgba(20, 24, 23, 0.26);
  background:
    linear-gradient(135deg, rgba(157, 255, 34, 0.22), transparent 48%),
    var(--paper);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 20px auto;
  width: 72px;
  height: 72px;
  border: 1px solid currentColor;
  opacity: 0.12;
  transform: rotate(12deg) translateY(18px);
  transition:
    transform 260ms ease,
    opacity 260ms ease;
}

.service-card:hover::after {
  opacity: 0.26;
  transform: rotate(0deg) translateY(0);
}

.snake-section {
  height: auto;
  background: var(--ink);
  color: var(--paper);
  padding: 88px 0 104px;
}

.snake-sticky {
  position: relative;
  display: grid;
  align-content: start;
  height: auto;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden;
}

.snake-copy {
  max-width: 860px;
  margin-bottom: 34px;
}

.snake-copy h2 {
  max-width: 920px;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.03;
}

.snake-copy .eyebrow {
  color: var(--signal);
}

.snake-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
  color: rgba(255, 252, 244, 0.62);
  font-size: 17px;
}

.snake-board {
  position: relative;
  min-height: 640px;
  border: 1px solid rgba(255, 252, 244, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(15, 123, 103, 0.2), transparent 34%),
    linear-gradient(320deg, rgba(215, 255, 95, 0.16), transparent 42%),
    #1e1f1d;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.24);
}

.snake-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 252, 244, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 252, 244, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.65;
}

.snake-bg-label {
  display: none;
}

.label-a {
  left: 24px;
  top: 24px;
}

.label-b {
  right: 24px;
  bottom: 24px;
  text-align: right;
}

.snake-path {
  position: absolute;
  inset: 94px 54px 74px;
  width: calc(100% - 108px);
  height: calc(100% - 168px);
  overflow: visible;
  opacity: 0.92;
}

.snake-path path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.snake-shadow-path {
  stroke: rgba(0, 0, 0, 0.36);
  stroke-width: 18;
}

.snake-base-path {
  stroke: rgba(255, 252, 244, 0.14);
  stroke-width: 7;
  stroke-dasharray: 1 18;
}

.snake-progress-path {
  stroke: url("#snakeGradient");
  stroke-width: 7;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--snake-progress, 0));
  filter: drop-shadow(0 0 16px rgba(215, 255, 95, 0.24));
}

.snake-packet {
  position: absolute;
  z-index: 3;
  left: calc(var(--snake-x, 8%) - 8px);
  top: calc(var(--snake-y, 22%) - 8px);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow:
    0 0 0 12px rgba(215, 255, 95, 0.12),
    0 0 34px rgba(215, 255, 95, 0.56);
  transition:
    left 80ms linear,
    top 80ms linear;
  display: none;
}

.snake-packet span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

.snake-node {
  position: absolute;
  z-index: 2;
  width: min(330px, 28vw);
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 252, 244, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.065);
  backdrop-filter: blur(12px);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.snake-node span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.snake-node h3 {
  margin-top: 22px;
  font-size: 28px;
}

.snake-node p {
  margin-top: 10px;
  color: rgba(255, 252, 244, 0.62);
  font-size: 15px;
  line-height: 1.48;
}

.snake-node small {
  display: block;
  margin-top: 16px;
  color: rgba(215, 255, 95, 0.72);
  font-size: 12px;
  font-weight: 760;
}

.snake-node.is-active,
.snake-node:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 255, 95, 0.42);
  background: rgba(255, 252, 244, 0.105);
}

.node-1 {
  left: 4%;
  top: 7%;
}

.node-2 {
  right: 4%;
  top: 7%;
}

.node-3 {
  left: 12%;
  bottom: 8%;
}

.node-4 {
  right: 4%;
  bottom: 7%;
}

.case-list article:hover {
  transform: translateX(8px);
  padding-left: 18px;
  padding-right: 18px;
  border-color: rgba(20, 24, 23, 0.18);
  background:
    linear-gradient(90deg, rgba(157, 255, 34, 0.16), transparent 52%),
    rgba(255, 253, 245, 0.72);
  border-radius: var(--radius);
}

.tags span:hover {
  transform: translateY(-2px);
  background: var(--paper);
}

.leadmagnet-panel,
.contact-links a,
.btn {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.leadmagnet-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 24, 23, 0.18);
  background:
    linear-gradient(90deg, rgba(157, 255, 34, 0.42), transparent 54%),
    var(--steel);
  box-shadow: 0 28px 80px rgba(20, 24, 23, 0.1);
}

.contact-links a:hover {
  transform: translateY(-2px);
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}

.btn-primary:hover {
  box-shadow: 0 16px 44px rgba(157, 255, 34, 0.18);
}

.btn-secondary:hover {
  border-color: var(--accent);
  box-shadow: 0 14px 34px rgba(20, 24, 23, 0.08);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visualIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes logoDotBounce {
  0% {
    transform: translate3d(-50%, -50%, 0) scale(1.16, 0.84);
    box-shadow:
      0 0 0 12px rgba(157, 255, 34, 0.1),
      0 12px 28px rgba(157, 255, 34, 0.28);
  }
  5% {
    transform: translate3d(-50%, calc(-50% - 3px), 0) scale(1.08, 0.92);
  }
  20% {
    transform: translate3d(-50%, calc(-50% - 34px), 0) scale(0.94, 1.06);
  }
  33% {
    transform: translate3d(-50%, calc(-50% - 46px), 0) scale(1);
    box-shadow:
      0 0 0 8px rgba(157, 255, 34, 0.08),
      0 30px 68px rgba(157, 255, 34, 0.36);
  }
  47% {
    transform: translate3d(-50%, calc(-50% - 34px), 0) scale(1);
  }
  62% {
    transform: translate3d(-50%, calc(-50% - 9px), 0) scale(1.02, 0.98);
  }
  69% {
    transform: translate3d(-50%, calc(-50% + 2px), 0) scale(1.22, 0.78);
    box-shadow:
      0 0 0 14px rgba(157, 255, 34, 0.13),
      0 10px 28px rgba(157, 255, 34, 0.3);
  }
  76% {
    transform: translate3d(-50%, calc(-50% - 15px), 0) scale(0.96, 1.04);
  }
  86% {
    transform: translate3d(-50%, calc(-50% - 6px), 0) scale(1);
  }
  93% {
    transform: translate3d(-50%, calc(-50% + 1px), 0) scale(1.12, 0.88);
  }
  100% {
    transform: translate3d(-50%, -50%, 0) scale(1.16, 0.84);
  }
}

@keyframes floatNode {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes mapNodeFocus {
  0%,
  28%,
  100% {
    opacity: 0;
  }
  6%,
  20% {
    opacity: 1;
  }
}

@keyframes mapLightSwitch {
  0%,
  24% {
    top: 98px;
    transform: translateY(0) scale(1);
  }
  29% {
    transform: translateY(72px) scale(0.86, 1.12);
  }
  34%,
  56% {
    top: 258px;
    transform: translateY(0) scale(1);
  }
  61% {
    transform: translateY(72px) scale(0.86, 1.12);
  }
  66%,
  88% {
    top: 418px;
    transform: translateY(0) scale(1);
  }
  94% {
    top: 98px;
    transform: translateY(-22px) scale(0.96, 1.04);
  }
  100% {
    top: 98px;
    transform: translateY(0) scale(1);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(215, 255, 95, 0);
  }
  50% {
    box-shadow: 0 0 34px rgba(215, 255, 95, 0.16);
  }
}

@keyframes barRise {
  from {
    transform: scaleY(0.2);
    opacity: 0.2;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes statusPing {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(215, 255, 95, 0.36);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(215, 255, 95, 0);
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .section-head,
  .content-grid,
  .audience-panel,
  .definition-panel,
  .mentor-panel,
  .training-panel,
  .growth-panel,
  .leadmagnet-panel,
  .contact-grid,
  .founder-panel {
    grid-template-columns: 1fr;
  }

  .founder-visual {
    justify-self: start;
    width: min(100%, 420px);
    aspect-ratio: 0.82;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 0;
  }

  .system-map {
    min-height: 460px;
  }

  .problem-grid,
  .fit-grid,
  .service-grid,
  .model-grid,
  .build-grid,
  .diagnostic-grid,
  .before-after-grid,
  .tools-grid,
  .faq-grid,
  .role-grid,
  .check-grid,
  .program-grid,
  .packages-grid,
  .blog-grid,
  .dash-grid,
  .value-grid,
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .formats-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .dash-lower {
    grid-template-columns: 1fr;
  }

  .snake-section {
    height: auto;
  }

  .chaos-system-section {
    height: auto;
  }

  .chaos-sticky {
    position: relative;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .chaos-stage {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 18px;
  }

  .chaos-label,
  .chaos-connector {
    display: none;
  }

  .chaos-item,
  .system-output {
    position: relative;
    inset: auto;
    width: auto;
    min-width: 0;
    transform: none;
    opacity: 1;
  }

  .snake-sticky {
    position: relative;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .snake-board {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .snake-path,
  .snake-packet {
    display: none;
  }

  .snake-node {
    position: relative;
    inset: auto;
    width: auto;
  }

  .case-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 1180px) {
  .scroll-system-rail {
    display: none;
  }
}

@media (max-height: 820px) and (min-width: 981px) {
  .chaos-sticky,
  .snake-sticky {
    padding-top: 24px;
    padding-bottom: 84px;
  }

  .chaos-copy,
  .snake-copy {
    margin-bottom: 16px;
  }

  .chaos-copy h2,
  .snake-copy h2 {
    font-size: clamp(36px, 5.2vw, 62px);
    line-height: 0.98;
  }

  .chaos-copy p:not(.eyebrow),
  .snake-copy p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.45;
  }

  .snake-board {
    min-height: 600px;
  }

  .snake-node {
    min-height: 190px;
    padding: 20px;
  }

  .snake-node h3 {
    margin-top: 14px;
  }

  .snake-node p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .snake-node small {
    margin-top: 12px;
  }
}

@media (max-width: 720px) {
  .hero-scroll-scene {
    height: auto;
  }

  .hero-sticky {
    position: relative;
    min-height: auto;
    overflow: visible;
    padding: 44px 16px 64px;
  }

  .founder-panel {
    padding: 24px;
  }

  .founder-copy h2 {
    font-size: clamp(34px, 12vw, 54px);
  }

  .founder-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .founder-actions {
    flex-direction: column;
  }

  .founder-visual {
    width: 100%;
    aspect-ratio: 0.86;
  }

  .founder-badge {
    align-items: flex-start;
    flex-direction: column;
  }

  .founder-badge strong {
    text-align: left;
  }

  .founder-facts {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
    min-height: 66px;
    padding: 10px 16px;
    z-index: 60;
  }

  .brand-text {
    display: block;
    max-width: 128px;
    font-size: 11px;
  }

  .brand-logo {
    width: 70px;
    height: 42px;
  }

  .nav-toggle {
    display: block;
  }

  .scroll-system-rail {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    z-index: 70;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    background: rgba(255, 253, 245, 0.98);
    border: 1px solid rgba(21, 21, 21, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.2;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  body.nav-open .site-header {
    background: rgba(247, 246, 241, 0.98);
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(20, 24, 23, 0.12);
    backdrop-filter: blur(3px);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-toggle span {
    transition: transform 180ms ease;
  }

  .section-pad {
    padding: 64px 16px;
  }

  h1 {
    font-size: clamp(40px, 12.5vw, 58px);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-logo-stage {
    width: min(260px, 68vw);
    margin: 34px auto 24px;
    justify-items: center;
    text-align: center;
  }

  .hero-copy > .eyebrow,
  .hero-copy > h1,
  .hero-copy > .hero-lead,
  .hero-copy > .hero-actions,
  .hero-copy > .hero-metrics,
  .hero-copy > .hero-lead-form {
    margin-left: 0;
  }

  .hero-metrics,
  .hero-lead-form,
  .problem-grid,
  .fit-grid,
  .service-grid,
  .model-grid,
  .build-grid,
  .diagnostic-grid,
  .before-after-grid,
  .tools-grid,
  .faq-grid,
  .role-grid,
  .check-grid,
  .program-grid,
  .packages-grid,
  .blog-grid,
  .value-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .formats-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div,
  .hero-lead-form,
  .problem-grid article,
  .blog-grid article,
  .fit-grid article,
  .build-grid article,
  .role-grid article,
  .check-grid article,
  .program-grid article,
  .packages-grid article,
  .formats-grid article,
  .diagnostic-grid article,
  .before-after-grid article,
  .faq-grid article,
  .tools-grid span,
  .model-grid article,
  .growth-panel,
  .leadmagnet-panel,
  .service-card,
  .process-steps li,
  .lead-form {
    padding: 22px;
  }

  .service-card,
  .service-grid-secondary .service-card,
  .process-steps li,
  .model-grid article,
  .value-grid article {
    min-height: auto;
  }

  .service-card h3 {
    font-size: 27px;
  }

  .service-card ul {
    margin: 20px 0 24px;
  }

  .process-steps h3 {
    margin: 34px 0 12px;
  }

  .model-grid h3 {
    margin-top: 34px;
  }

  .growth-stack article {
    grid-template-columns: 1fr;
  }

  .leadmagnet-panel .btn {
    justify-self: stretch;
  }

  .system-map {
    min-height: auto;
    padding: 22px;
  }

  .map-node {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 16px;
  }

  .map-node span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(21, 21, 21, 0.16);
    border-radius: 50%;
    background: rgba(255, 252, 244, 0.72);
  }

  .map-node strong {
    min-width: 0;
    margin-top: 0;
    font-size: 22px;
    line-height: 1.05;
  }

  .map-node small {
    grid-column: 2;
    margin-top: 4px;
    font-size: 13px;
  }

  .map-line {
    height: 24px;
    margin-left: 32px;
  }

  .map-panel {
    margin-top: 18px;
    padding: 20px;
  }

  .motion-layer {
    display: none;
  }

  .audience-panel {
    padding: 24px;
  }

  .contact-grid {
    gap: 32px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .dash-grid,
  .dash-lower {
    grid-template-columns: 1fr;
  }

  .dash-topbar {
    flex-direction: column;
  }

  .dash-card {
    min-height: 140px;
  }

  .dash-chart {
    min-height: 210px;
    padding: 24px;
  }

  .btn {
    width: 100%;
  }

  html,
  body {
    overflow-x: hidden;
  }

  html {
    scroll-padding-top: 76px;
  }

  body {
    font-size: 16px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero,
  .hero-scroll-scene,
  .hero-sticky,
  .hero-grid {
    min-height: auto;
  }

  .hero-scroll-scene {
    padding: 28px 16px 42px;
  }

  .hero-sticky {
    top: auto;
    padding: 0;
  }

  .hero-grid {
    gap: 24px;
    align-items: stretch;
    padding-bottom: 0;
  }

  .hero-copy {
    margin: 0;
  }

  .hero-logo-stage {
    width: min(190px, 58vw);
    margin: 18px 0 8px;
    justify-items: start;
    text-align: left;
  }

  .hero-copy > .eyebrow {
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  .hero-visual {
    width: 100%;
    min-height: auto;
    margin: 0;
    border-radius: 8px;
    transform: none !important;
  }

  .hero-statement {
    margin-bottom: 44px;
    padding-top: 0;
  }

  .page-hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-head {
    gap: 18px;
  }

  .section-lead {
    font-size: 17px;
  }

  h1 {
    font-size: clamp(38px, 11.5vw, 54px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(31px, 9.4vw, 44px);
    line-height: 1.04;
  }

  h3 {
    font-size: 24px;
    line-height: 1.08;
  }

  .hero-lead-form,
  .lead-form {
    gap: 14px;
  }

  .hero-metrics div,
  .hero-lead-form,
  .problem-grid article,
  .blog-grid article,
  .fit-grid article,
  .build-grid article,
  .role-grid article,
  .check-grid article,
  .program-grid article,
  .packages-grid article,
  .formats-grid article,
  .diagnostic-grid article,
  .before-after-grid article,
  .faq-grid article,
  .tools-grid span,
  .model-grid article,
  .growth-panel,
  .leadmagnet-panel,
  .service-card,
  .process-steps li,
  .lead-form {
    padding: 20px;
    border-radius: 8px;
  }

  .system-map {
    padding: 16px;
  }

  .map-node {
    padding: 14px;
  }

  .map-panel {
    padding: 18px;
  }

  .snake-section {
    padding: 64px 0 70px;
  }

  .snake-copy h2,
  .chaos-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.02;
  }

  .snake-board,
  .chaos-stage {
    border-radius: 8px;
  }

  .site-footer {
    padding: 30px 16px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  img,
  svg,
  video,
  canvas {
    max-width: 100%;
  }

  h1,
  h2,
  h3,
  p,
  a,
  button,
  input,
  select,
  textarea {
    overflow-wrap: anywhere;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    max-width: 148px;
    overflow-wrap: normal;
  }

  .particle-field {
    display: none;
  }

  .contact-page h1,
  .hero-statement h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.8vw, 52px);
  }

  .contact-links a,
  .diagnostic-list li,
  .tags span {
    max-width: 100%;
  }

  .formats-note,
  .leadmagnet-panel,
  .training-panel,
  .growth-panel {
    gap: 18px;
  }

  .dashboard-shell {
    border-radius: 8px;
  }

  .dashboard-shell::before,
  .dashboard-shell::after {
    opacity: 0.45;
  }

  .dash-grid {
    gap: 12px;
  }

  .case-list article {
    padding: 20px 0;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand-text {
    max-width: 118px;
    font-size: 10px;
    line-height: 1.1;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .site-nav {
    top: 68px;
    left: 10px;
    right: 10px;
    max-height: calc(100svh - 82px);
  }

  .section-pad {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-scroll-scene {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-logo-stage {
    width: min(172px, 62vw);
  }

  .hero-ivi-mark img {
    max-height: 122px;
  }

  .hero-statement h1,
  .contact-page h1 {
    font-size: clamp(34px, 10.4vw, 46px);
  }

  h2 {
    font-size: clamp(29px, 9vw, 39px);
  }

  .hero-lead,
  .section-lead,
  .contact-grid p {
    font-size: 16px;
  }

  .map-node {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 10px;
  }

  .map-node span {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .map-node strong {
    font-size: 20px;
  }

  .map-line {
    margin-left: 28px;
  }

  .hero-metrics div,
  .hero-lead-form,
  .problem-grid article,
  .blog-grid article,
  .fit-grid article,
  .build-grid article,
  .role-grid article,
  .check-grid article,
  .program-grid article,
  .packages-grid article,
  .formats-grid article,
  .diagnostic-grid article,
  .before-after-grid article,
  .faq-grid article,
  .tools-grid span,
  .model-grid article,
  .growth-panel,
  .leadmagnet-panel,
  .service-card,
  .process-steps li,
  .lead-form,
  .audience-panel,
  .founder-panel {
    padding: 18px;
  }
}

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

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

  .motion-layer,
  .motion-node,
  .motion-line,
  .dashboard-shell::before,
  .dashboard-shell::after {
    display: none;
    transform: none !important;
  }
}
