@font-face {
  font-family: "Gilroy";
  src: url("assets/gilroy-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/gilroy-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/gilroy-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --bg: #151817;
  --bg-deep: #0d0f0e;
  --panel: #1d211f;
  --panel-soft: #222826;
  --text: #f4f3ec;
  --muted: #a3aaa5;
  --line: #34413d;
  --line-bright: #466765;
  --yellow: #ffca0a;
  --yellow-soft: #ffe788;
  --green: #018c6e;
  --green-deep: #014f42;
  --danger: #ff6b58;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 48% 0%, rgba(1, 140, 110, .1), transparent 28rem),
    var(--bg);
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 200;
  background: rgba(255, 255, 255, .04);
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), #fff4b1);
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 2 * var(--pad)), var(--max));
  min-height: 112px;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand {
  width: 148px;
}

.brand img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.header-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
}

.header-cta {
  justify-self: end;
  padding: 12px 22px;
  border: 1px solid var(--line-bright);
  border-radius: 99px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.header-cta:hover {
  color: var(--bg-deep);
  background: var(--yellow);
  transform: translateY(-2px);
}

.section-shell {
  width: min(100%, calc(var(--max) + 2 * var(--pad)));
  margin: 0 auto;
  padding-inline: var(--pad);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  gap: clamp(42px, 5vw, 90px);
  align-items: center;
  min-height: 100svh;
  padding-top: 158px;
  padding-bottom: 72px;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0 var(--pad);
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}

.hero-glow--yellow {
  top: 28%;
  right: 34%;
  width: 260px;
  height: 260px;
  background: var(--yellow);
}

.hero-glow--green {
  right: 1%;
  bottom: 8%;
  width: 360px;
  height: 360px;
  background: var(--green);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.kicker span {
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 770px;
  margin-bottom: 32px;
  font-size: clamp(48px, 5.7vw, 88px);
  font-weight: 700;
  line-height: .91;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: #ccd0cc;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.52;
}

.hero-actions,
.offer-action > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

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

.button--primary {
  color: #121510;
  background: var(--yellow);
  box-shadow: 0 16px 46px rgba(255, 202, 10, .13);
}

.button--primary:hover {
  box-shadow: 0 18px 54px rgba(255, 202, 10, .25);
}

.button--ghost {
  border-color: var(--line-bright);
  color: var(--text);
  background: rgba(255, 255, 255, .015);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, .06);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 58px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.hero-facts div {
  min-width: 0;
  padding: 18px 12px 18px 0;
  background: var(--bg);
}

.hero-facts div + div {
  padding-left: 18px;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: 20px;
  line-height: 1;
}

.hero-facts span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.growth-console {
  position: relative;
  min-height: 625px;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .05), transparent 34%),
    radial-gradient(circle at 50% 42%, rgba(1, 140, 110, .18), transparent 40%),
    var(--bg-deep);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .4);
}

.growth-console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, .05) 50%, transparent 62%);
  transform: translateX(-130%);
  animation: console-sweep 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes console-sweep {
  0%, 55% { transform: translateX(-130%); }
  78%, 100% { transform: translateX(130%); }
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #92dfc5;
}

.live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ed89d;
  box-shadow: 0 0 0 5px rgba(62, 216, 157, .1);
}

.orbit {
  position: relative;
  height: 455px;
}

.orbit-ring,
.orbit-core,
.orbit-node {
  position: absolute;
  border-radius: 50%;
}

.orbit-ring {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  transform: translate(-50%, -50%);
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 24px rgba(255, 202, 10, .65);
}

.orbit-ring--outer {
  width: 355px;
  height: 355px;
  animation: orbit-spin 26s linear infinite;
}

.orbit-ring--outer::before {
  top: 25px;
  left: 46px;
  width: 8px;
  height: 8px;
}

.orbit-ring--inner {
  width: 230px;
  height: 230px;
  border-style: dashed;
  animation: orbit-spin 18s linear infinite reverse;
}

.orbit-ring--inner::after {
  right: 2px;
  bottom: 72px;
  width: 6px;
  height: 6px;
  background: #58d3b1;
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-core {
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 202, 10, .48);
  background: radial-gradient(circle at 38% 32%, #ffed8d, var(--yellow) 40%, #b98500 100%);
  color: #10120f;
  box-shadow: 0 0 80px rgba(255, 202, 10, .16);
}

.orbit-core span {
  font-size: 56px;
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.07em;
}

.orbit-core small {
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}

.orbit-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border: 1px solid var(--line-bright);
  background: rgba(20, 25, 23, .92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.orbit-node b {
  color: var(--yellow);
  font-size: 12px;
}

.orbit-node span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
}

.orbit-node--one { top: 42px; left: 54px; }
.orbit-node--two { top: 58px; right: 42px; }
.orbit-node--three { right: 48px; bottom: 38px; }
.orbit-node--four { bottom: 24px; left: 62px; }

.console-bottom {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.console-bottom div {
  padding: 18px 22px;
  background: rgba(10, 13, 12, .95);
}

.console-bottom span,
.console-bottom b {
  display: block;
}

.console-bottom span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.console-bottom b {
  font-size: 12px;
  font-weight: 600;
}

.section-index {
  padding-top: 26px;
  border-top: 1px solid var(--line-bright);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

.context,
.strategy,
.responsibility,
.roadmap,
.metrics,
.proof,
.team,
.operating,
.offer {
  padding-top: clamp(88px, 10vw, 152px);
}

.context-intro,
.section-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
  margin-top: 58px;
  margin-bottom: 58px;
}

.context-intro h2,
.section-heading h2,
.roadmap-sticky h2,
.north-star h2,
.operating-copy h2,
.offer h2 {
  margin-bottom: 0;
  font-size: clamp(39px, 5vw, 70px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.04em;
}

.context-intro h2 span {
  color: var(--yellow);
}

.context-intro p,
.section-heading p,
.roadmap-sticky > p,
.north-star > p,
.operating-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.status-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.status-board article {
  min-height: 260px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, .012);
}

.status-board article:last-child {
  border-right: 0;
}

.status-board__accent {
  background: linear-gradient(145deg, rgba(1, 140, 110, .3), rgba(1, 79, 66, .12)) !important;
}

.status-label {
  display: block;
  margin-bottom: 52px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.status-board strong {
  display: block;
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.05;
}

.status-board p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.thesis {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  max-width: 900px;
  margin: 72px 0 0 auto;
}

.thesis-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--bg-deep);
  background: var(--yellow);
  font-size: 24px;
}

.thesis p {
  margin: 0;
  font-size: clamp(21px, 2.5vw, 34px);
  line-height: 1.25;
  letter-spacing: -.02em;
}

.strategy-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(36px, 8vw, 130px);
  align-items: end;
  margin-top: 58px;
}

.strategy-intro h2 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.045em;
}

.strategy-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.strategy-kernel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.kernel-card {
  min-height: 310px;
  padding: 28px 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .012);
}

.kernel-card--accent {
  background: linear-gradient(145deg, rgba(255, 202, 10, .14), rgba(1, 140, 110, .08));
}

.kernel-card > span {
  display: block;
  margin-bottom: 58px;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.kernel-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1.05;
}

.kernel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.growth-engine {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  margin-top: 80px;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid #31584d;
  background: radial-gradient(circle at 100% 0%, rgba(1, 140, 110, .17), transparent 42rem), rgba(255, 255, 255, .015);
}

.growth-engine__copy h3,
.budget-head h3,
.hypothesis-board h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.growth-engine__copy p,
.budget-head p,
.hypothesis-board p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.engine-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.engine-flow div {
  min-height: 112px;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.engine-flow span,
.engine-flow b,
.engine-flow small {
  display: block;
}

.engine-flow span {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 700;
}

.engine-flow b {
  margin-bottom: 5px;
  font-size: 15px;
}

.engine-flow small {
  color: var(--muted);
  font-size: 10px;
}

.budget-board {
  margin-top: 80px;
}

.budget-head {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

.budget-head h3 {
  margin-bottom: 0;
}

.budget-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.budget-grid article {
  min-height: 238px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.budget-grid strong,
.budget-grid span {
  display: block;
}

.budget-grid strong {
  margin-bottom: 50px;
  color: var(--yellow);
  font-size: 27px;
  font-variant-numeric: tabular-nums;
}

.budget-grid span {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.budget-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hypothesis-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 60px;
  border: 1px solid var(--line);
}

.hypothesis-board > div {
  min-height: 290px;
  padding: clamp(26px, 4vw, 48px);
}

.hypothesis-board > div + div {
  border-left: 1px solid var(--line);
}

.hypothesis-board ul,
.system-copy ul,
.dependencies ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
}

.hypothesis-board li + li,
.system-copy li + li,
.dependencies li + li {
  margin-top: 10px;
}

.scope-board {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.scope-board article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 190px;
  gap: 24px;
  align-items: center;
  min-height: 132px;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color .25s ease;
}

.scope-board article:hover {
  background: rgba(1, 140, 110, .07);
}

.scope-board .chain-number {
  margin: 0;
}

.scope-board h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.scope-board p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.scope-board article > span {
  color: #d6dad5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.monthly-output {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 40px;
  margin-top: 28px;
  padding: 24px 0;
  border-block: 1px solid var(--line-bright);
}

.monthly-output span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.monthly-output p {
  margin: 0;
  color: var(--muted);
}

.growth-chain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.growth-chain article {
  position: relative;
  min-height: 300px;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color .3s ease;
}

.growth-chain article:hover {
  background: rgba(1, 140, 110, .09);
}

.growth-chain article::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 202, 10, .18);
  border-radius: 50%;
}

.chain-number {
  margin-bottom: 68px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
}

.growth-chain h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.05;
}

.growth-chain p {
  max-width: 310px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14px;
}

.growth-chain article > span {
  position: absolute;
  bottom: 27px;
  color: #d6dad5;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.roadmap-layout {
  display: grid;
  grid-template-columns: minmax(330px, .75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 8vw, 120px);
  margin-top: 58px;
}

.roadmap-sticky {
  position: sticky;
  top: 40px;
  align-self: start;
}

.roadmap-sticky h2 {
  margin-bottom: 30px;
}

.roadmap-sticky > p {
  max-width: 420px;
  margin-bottom: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.sprint {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 28px;
  padding: 38px 0 50px;
  border-top: 1px solid var(--line);
}

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

.sprint-period span,
.sprint-period strong {
  display: block;
}

.sprint-period span {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.sprint-period strong {
  font-size: 15px;
}

.sprint-copy h3 {
  margin-bottom: 24px;
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.sprint-copy ul,
.system-copy ul,
.dependencies ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sprint-copy li,
.system-copy li,
.dependencies li {
  position: relative;
  padding: 10px 0 10px 25px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #c5cac6;
  font-size: 14px;
}

.sprint-copy li::before,
.system-copy li::before,
.dependencies li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

.sprint-result {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(1, 140, 110, .35);
  background: rgba(1, 140, 110, .08);
}

.sprint-result span {
  color: #83d9bf;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sprint-result p {
  margin: 0;
  font-size: 13px;
}

.metrics-layout {
  display: grid;
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
  margin-top: 58px;
}

.north-star__eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 13px;
  border-radius: 99px;
  color: #10130f;
  background: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.north-star h2 {
  margin-bottom: 25px;
}

.funnel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}

.funnel div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.funnel div:nth-child(2n) {
  border-right: 0;
}

.funnel div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.funnel span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
}

.funnel p {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
}

.funnel b {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kpi-note {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(50px, 8vw, 120px);
  margin-top: 42px;
  padding: 26px 0;
  border-block: 1px solid var(--line-bright);
}

.kpi-note strong {
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.kpi-note p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.decision-gates {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.decision-gates div {
  min-height: 145px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-gates strong,
.decision-gates span {
  display: block;
}

.decision-gates strong {
  margin-bottom: 28px;
  color: var(--yellow);
  font-size: 26px;
  font-variant-numeric: tabular-nums;
}

.decision-gates span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.case {
  margin-top: 36px;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .008));
}

.case--saygav {
  margin-top: 58px;
  border-color: #31584d;
  background:
    radial-gradient(circle at 100% 0%, rgba(1, 140, 110, .18), transparent 32rem),
    linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .008));
}

.case-head,
.offer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.case-head > div:first-child {
  max-width: 720px;
}

.case-tag {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.case-head h3 {
  margin-bottom: 15px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.04em;
}

.case-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.case-head > a {
  flex: 0 0 auto;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-head__aside {
  max-width: 190px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.case-metrics,
.mini-metrics,
.analytics-metrics,
.team-evidence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
  border-block: 1px solid var(--line);
}

.case-metrics div,
.mini-metrics div,
.team-evidence div {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.case-metrics div:first-child,
.mini-metrics div:first-child,
.team-evidence div:first-child {
  padding-left: 0;
}

.case-metrics div:last-child,
.mini-metrics div:last-child,
.team-evidence div:last-child {
  border-right: 0;
}

.case-metrics strong,
.case-metrics span,
.mini-metrics strong,
.mini-metrics span,
.team-evidence strong,
.team-evidence span {
  display: block;
}

.case-metrics strong,
.mini-metrics strong,
.team-evidence strong {
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1;
}

.case-metrics span,
.mini-metrics span,
.team-evidence span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.media-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.media-frame,
.wide-media {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--text);
  background: #090b0a;
  cursor: zoom-in;
}

.media-frame img,
.wide-media img {
  width: 100%;
  transition: transform .4s ease, opacity .4s ease;
}

.media-frame:hover img,
.wide-media:hover img {
  opacity: .82;
  transform: scale(1.025);
}

.media-frame span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #111410;
  background: var(--yellow);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.source-note,
.legal-note {
  margin: 16px 0 0;
  color: #78817c;
  font-size: 11px;
  line-height: 1.5;
}

.source-note a {
  color: #b6c2bc;
  border-bottom: 1px solid #52625b;
}

.source-note a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.system-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  margin-top: 66px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.system-copy h4 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.system-copy > p {
  color: var(--muted);
}

.system-media {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(180px, .45fr);
  gap: 12px;
  align-items: stretch;
}

.system-media .media-frame img {
  height: 380px;
}

.system-media__wide img {
  object-fit: cover;
  object-position: left center;
}

.system-media__bot img {
  object-fit: contain;
  background: #1f2529;
}

.ai-console {
  padding: 18px;
  border: 1px solid #4b5552;
  border-radius: 24px;
  background: #20262a;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.ai-console__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #b69cff;
  font-size: 11px;
  font-weight: 700;
}

.ai-console__head i {
  padding: 3px 7px;
  border-radius: 10px;
  color: #62c98a;
  background: rgba(63, 177, 100, .15);
  font-size: 8px;
  font-style: normal;
}

.ai-message {
  margin-top: 10px;
  padding: 15px;
  border-radius: 15px;
  background: #2d3439;
}

.ai-message--alert {
  border-left: 3px solid var(--danger);
}

.ai-message b {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.ai-message p,
.ai-message small {
  margin: 0;
  color: #cbd0d2;
  font-size: 11px;
}

.ai-message small {
  display: block;
  margin-top: 7px;
  color: #f2a18e;
}

.ai-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.ai-stats > span {
  color: var(--yellow);
  font-size: 19px;
  font-weight: 700;
}

.ai-stats small {
  display: block;
  margin-top: 4px;
  color: #aeb6b7;
  font-size: 7px;
  font-weight: 400;
}

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

.case-grid .case {
  display: flex;
  flex-direction: column;
}

.case-metrics--equal div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 116px;
}

.case-metrics--equal strong {
  min-height: 36px;
  font-variant-numeric: tabular-nums;
}

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

.media-triple .media-frame img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-triple--dashboard .media-frame img {
  object-position: left top;
}

.launch-hero-metric {
  flex: 0 0 260px;
  padding: 18px 20px;
  border: 1px solid #6f672f;
  background: rgba(255, 202, 10, .05);
}

.launch-hero-metric strong,
.launch-hero-metric span {
  display: block;
}

.launch-hero-metric strong {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 30px;
  font-variant-numeric: tabular-nums;
}

.launch-hero-metric span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.profile-case {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(0, 1.28fr);
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .012);
}

.profile-shot {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  background: #0a0d0c;
  cursor: zoom-in;
}

.profile-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 24% top;
  transition: transform .35s ease, opacity .35s ease;
}

.profile-shot:hover img {
  opacity: .8;
  transform: scale(1.025);
}

.profile-case > div {
  padding: 25px;
}

.profile-case a {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
}

.profile-case h4 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.05;
}

.profile-case p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.mini-metrics {
  grid-template-columns: repeat(2, 1fr);
}

.mini-metrics div:nth-child(2) {
  border-right: 0;
}

.mini-metrics div:nth-child(-n+2) {
  border-bottom: 1px solid var(--line);
}

.wide-media {
  margin-top: 28px;
}

.launch-list {
  margin-top: 36px;
}

.launch-list > div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.launch-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.launch-list strong {
  color: var(--yellow);
  font-size: 22px;
}

.launch-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.analytics-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 18px;
}

.analytics-metrics span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.analytics-metrics b {
  color: var(--text);
}

.media-pair--dashboard img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.person {
  position: relative;
  min-height: 620px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid var(--line);
}

.person::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, .025), 0 0 0 90px rgba(255, 255, 255, .018);
}

.person--ivan {
  background: radial-gradient(circle at 95% 100%, rgba(255, 202, 10, .18), transparent 45%), var(--panel);
}

.person--vitaly {
  background: radial-gradient(circle at 95% 100%, rgba(1, 140, 110, .3), transparent 48%), var(--panel);
}

.person-monogram {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin-bottom: 38px;
  border-radius: 50%;
  color: #101310;
  background: var(--yellow);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.05em;
}

.person--vitaly .person-monogram {
  color: #e7fff7;
  background: linear-gradient(145deg, var(--green), var(--green-deep));
}

.person-role {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.person h3 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1;
  letter-spacing: -.04em;
}

.person > p {
  max-width: 510px;
  color: var(--muted);
  font-size: 16px;
}

.person-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 36px;
  border: 1px solid var(--line);
  background: var(--line);
}

.person-facts span {
  display: flex;
  flex-direction: column;
  min-height: 92px;
  padding: 15px;
  color: var(--muted);
  background: rgba(12, 15, 14, .65);
  font-size: 11px;
}

.person-facts b {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 18px;
}

.person-links {
  position: absolute;
  right: clamp(28px, 4vw, 52px);
  bottom: clamp(28px, 4vw, 52px);
  left: clamp(28px, 4vw, 52px);
  z-index: 1;
  display: flex;
  gap: 12px;
}

.person-links a {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line-bright);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.person-links a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.team-evidence {
  margin-top: 18px;
  border: 1px solid var(--line);
}

.team-evidence div:first-child {
  padding-left: 22px;
}

.operating-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(48px, 8vw, 120px);
  margin-top: 58px;
}

.operating-copy h2 {
  margin-bottom: 28px;
}

.cadence {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.cadence > div {
  min-height: 240px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cadence span {
  display: block;
  margin-bottom: 60px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.cadence h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.cadence p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.offer {
  padding-bottom: 42px;
}

.offer-panel {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid #6f672f;
  border-radius: 36px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 202, 10, .17), transparent 30rem),
    radial-gradient(circle at 0 100%, rgba(1, 140, 110, .19), transparent 34rem),
    #171b19;
  box-shadow: 0 40px 110px rgba(0, 0, 0, .25);
}

.offer h2 {
  max-width: 700px;
}

.offer-price {
  flex: 0 0 auto;
  text-align: right;
}

.offer-price strong,
.offer-price span {
  display: block;
}

.offer-price strong {
  color: var(--yellow);
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.04em;
}

.offer-price span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border: 1px solid var(--line);
}

.offer-grid > div {
  min-height: 240px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.offer-grid > div:last-child {
  border-right: 0;
}

.offer-grid span,
.offer-grid strong {
  display: block;
}

.offer-grid span {
  margin-bottom: 56px;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offer-grid strong {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.15;
}

.offer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.dependencies {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 56px;
  margin-top: 58px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.dependencies h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.1;
}

.offer-action {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
  margin-top: 56px;
  padding-top: 38px;
  border-top: 1px solid var(--line-bright);
}

.offer-action > p {
  max-width: 460px;
  margin: 0;
  font-size: 19px;
  line-height: 1.4;
}

.legal-note {
  max-width: 920px;
  margin: 20px auto 0;
  text-align: center;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 150px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer img {
  width: 128px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.footer p {
  margin: 0;
  text-align: center;
}

.footer div {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer a:hover {
  color: var(--yellow);
}

.lightbox {
  width: min(94vw, 1320px);
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  border: 1px solid var(--line-bright);
  color: var(--text);
  background: #080a09;
}

.lightbox::backdrop {
  background: rgba(4, 6, 5, .88);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 12px;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #101310;
  background: var(--yellow);
  font-size: 27px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .65, .25, 1);
}

.reveal--delay {
  transition-delay: .12s;
}

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

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 170px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .growth-console {
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .context-intro,
  .strategy-intro,
  .section-heading,
  .growth-engine,
  .budget-head,
  .hypothesis-board,
  .metrics-layout,
  .kpi-note,
  .operating-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .hypothesis-board > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .status-board,
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-board article:nth-child(2),
  .offer-grid > div:nth-child(2) {
    border-right: 0;
  }

  .status-board article:nth-child(-n+2),
  .offer-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .roadmap-sticky {
    position: static;
  }

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

  .person {
    min-height: 660px;
  }

  .offer-action {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 18px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 86px;
  }

  .brand {
    width: 120px;
  }

  .header-meta {
    display: none;
  }

  .header-cta {
    padding: 10px 16px;
    font-size: 10px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 134px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-facts div:nth-child(2) {
    padding-right: 0;
  }

  .hero-facts div:nth-child(3) {
    padding-left: 0;
  }

  .growth-console {
    min-height: 530px;
    margin-top: 54px;
    border-radius: 24px;
  }

  .orbit {
    height: 380px;
    transform: scale(.86);
    transform-origin: center center;
  }

  .orbit-ring--outer {
    width: 300px;
    height: 300px;
  }

  .orbit-ring--inner {
    width: 205px;
    height: 205px;
  }

  .orbit-node--one { left: 6px; }
  .orbit-node--two { right: 0; }
  .orbit-node--three { right: 0; }
  .orbit-node--four { left: 8px; }

  .console-bottom {
    grid-template-columns: 1fr;
  }

  .console-bottom div + div {
    display: none;
  }

  .section-index {
    padding-top: 18px;
  }

  .context-intro,
  .strategy-intro,
  .section-heading {
    margin-top: 38px;
    margin-bottom: 38px;
  }

  .context-intro h2,
  .strategy-intro h2,
  .section-heading h2,
  .roadmap-sticky h2,
  .north-star h2,
  .operating-copy h2,
  .offer h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .status-board,
  .offer-grid,
  .growth-chain,
  .strategy-kernel,
  .budget-grid,
  .engine-flow,
  .team-grid,
  .system-demo,
  .system-media,
  .media-triple,
  .profile-grid,
  .monthly-output,
  .dependencies {
    grid-template-columns: 1fr;
  }

  .strategy-kernel,
  .growth-engine,
  .budget-board,
  .hypothesis-board {
    margin-top: 48px;
  }

  .kernel-card,
  .budget-grid article,
  .hypothesis-board > div {
    min-height: auto;
  }

  .kernel-card > span,
  .budget-grid strong {
    margin-bottom: 30px;
  }

  .scope-board article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 16px;
  }

  .scope-board article > span {
    grid-column: 2;
  }

  .monthly-output {
    gap: 12px;
  }

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

  .status-board article,
  .offer-grid > div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-board article:last-child,
  .offer-grid > div:last-child {
    border-bottom: 0;
  }

  .status-label,
  .offer-grid span {
    margin-bottom: 28px;
  }

  .thesis {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .growth-chain {
    border-left: 1px solid var(--line);
  }

  .growth-chain article {
    min-height: 270px;
  }

  .sprint {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sprint-result {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .funnel div,
  .funnel div:nth-child(2n),
  .funnel div:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .funnel div:last-child {
    border-bottom: 0;
  }

  .case {
    padding: 24px 18px;
  }

  .case-head,
  .offer-top {
    flex-direction: column;
    gap: 24px;
  }

  .case-head > a {
    align-self: flex-start;
  }

  .case-metrics,
  .mini-metrics,
  .team-evidence {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-metrics div:nth-child(2),
  .mini-metrics div:nth-child(2),
  .team-evidence div:nth-child(2) {
    border-right: 0;
  }

  .case-metrics div:nth-child(-n+2),
  .team-evidence div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .case-metrics div:nth-child(3),
  .mini-metrics div:nth-child(3),
  .team-evidence div:nth-child(3) {
    padding-left: 0;
  }

  .media-pair {
    grid-template-columns: 1fr;
  }

  .system-media .media-frame img {
    height: auto;
    max-height: 520px;
    object-fit: contain;
  }

  .system-demo {
    margin-top: 50px;
  }

  .ai-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .launch-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .launch-hero-metric {
    flex-basis: auto;
    width: 100%;
  }

  .profile-case {
    grid-template-columns: 1fr;
  }

  .profile-shot {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .profile-shot img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-position: center top;
  }

  .person {
    min-height: 650px;
  }

  .team-evidence div:first-child {
    padding-left: 22px;
  }

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

  .cadence > div {
    min-height: 210px;
  }

  .offer-panel {
    border-radius: 24px;
  }

  .offer-price {
    text-align: left;
  }

  .dependencies {
    gap: 28px;
  }

  .offer-action > div,
  .hero-actions {
    width: 100%;
  }

  .offer-action .button,
  .hero-actions .button {
    width: 100%;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 38px;
  }

  .footer img {
    object-position: center;
  }

  .footer div {
    justify-content: center;
  }

  .lightbox-close {
    top: 6px;
    right: 6px;
  }
}

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

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

@media print {
  :root {
    --bg: #fff;
    --bg-deep: #fff;
    --panel: #f7f7f3;
    --text: #101310;
    --muted: #505651;
    --line: #d8dcd8;
    --line-bright: #9ea8a2;
  }

  body {
    background: #fff;
  }

  body::before,
  .page-progress,
  .hero-grid,
  .hero-glow,
  .growth-console::after {
    display: none;
  }

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

  .site-header {
    position: relative;
  }

  .hero {
    min-height: auto;
    page-break-after: always;
  }

  .case,
  .person,
  .offer-panel {
    break-inside: avoid;
  }
}
