@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/SpaceGrotesk-wght.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("assets/fonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f5f6f2;
  --paper-light: #ffffff;
  --paper-dark: #e2e8df;
  --ink: #0a0d11;
  --ink-soft: #303943;
  --muted: #66707a;
  --line: #d1d9d0;
  --signal: #24766f;
  --signal-light: #4db9aa;
  --signal-pale: #d8eee9;
  --green: #5d8f62;
  --dark: #0b0e12;
  --dark-raised: #12171d;
  --dark-panel: #171d24;
  --dark-line: #2b333d;
  --dark-text: #f5f2ea;
  --dark-muted: #aeb7c1;
  --max: 1240px;
  --gutter: clamp(1.25rem, 4.5vw, 4.5rem);
  --section: clamp(5.5rem, 10vw, 9rem);
  --shadow: 0 28px 70px rgba(27, 22, 15, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(10, 13, 17, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 13, 17, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 48rem;
  margin-bottom: 1.65rem;
  font-size: 4.65rem;
  font-weight: 580;
  letter-spacing: 0;
  line-height: 0.94;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: 4rem;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
}

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

a {
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(10, 13, 17, 0.12);
  background: rgba(245, 246, 242, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 4.75rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 30px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.3vw, 2rem);
}

.nav-links a,
.header-cta {
  font-size: 0.86rem;
  font-weight: 550;
  text-decoration: none;
}

.nav-links a {
  color: #3e4650;
}

.nav-links a:hover {
  color: var(--signal);
}

.header-cta {
  padding: 0.68rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: 2px;
}

.header-cta:hover {
  background: var(--signal);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 8rem) clamp(4.5rem, 8vw, 7.5rem);
  background: var(--paper-light);
}

.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(31rem, 1.06fr) minmax(31rem, 0.94fr);
  align-items: center;
  gap: clamp(3rem, 5.8vw, 6.5rem);
}

.eyebrow,
.ui-kicker {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.4rem;
  color: var(--signal);
  font-size: 0.72rem;
}

.hero-lede {
  max-width: 40rem;
  margin-bottom: 2rem;
  font-size: 1.28rem;
  line-height: 1.55;
}

.hero-copy > p:not(.eyebrow):not(.hero-lede):not(.hero-note) {
  max-width: 41rem;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding-inline: 1.3rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

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

.button-primary:hover {
  border-color: var(--signal);
  background: var(--signal);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(10, 13, 17, 0.25);
  text-underline-offset: 0.3em;
}

.text-action:hover {
  color: var(--signal);
  text-decoration-color: var(--signal);
}

.hero-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
}

.console-shot {
  overflow: hidden;
  margin: 0;
  color: var(--dark-text);
  border: 1px solid #292f36;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.console-shot img {
  display: block;
  width: 100%;
  height: auto;
  background: #090d12;
}

.console-shot figcaption {
  padding: 0.75rem 1rem;
  color: var(--dark-muted);
  border-top: 1px solid var(--dark-line);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.ui-kicker {
  color: #7e8b97;
  font-size: 0.54rem;
}

.status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  text-transform: uppercase;
}

.status-review {
  color: #8eddd2;
  background: rgba(77, 185, 170, 0.09);
}

.stage-strip {
  color: #d6dce0;
  border-block: 1px solid #1e242b;
  background: var(--dark);
}

.stage-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stage-inner span {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem;
  border-right: 1px solid #242b33;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  text-align: center;
}

.stage-inner span:first-child {
  border-left: 1px solid #242b33;
}

.stage-inner i {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--signal-light);
}

.section {
  padding-block: var(--section);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 58rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading > p:last-child {
  max-width: 44rem;
  margin-bottom: 0;
  font-size: 1.12rem;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 8rem);
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
}

.problem-section {
  background: rgba(250, 248, 243, 0.72);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(28rem, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.section-intro h2 {
  max-width: 38rem;
}

.large-copy {
  max-width: 44rem;
  margin-bottom: 2.5rem;
  font-size: 1.45rem;
  line-height: 1.45;
}

.callout-copy {
  margin-top: 1.5rem;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
}

.split-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-block: 1.75rem 2rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.split-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--paper-light);
}

.split-list li {
  position: relative;
  padding: 0.78rem 1rem 0.78rem 2.1rem;
  color: #404a53;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

.split-list li:last-child {
  border-bottom: 0;
}

.split-list li::before {
  position: absolute;
  left: 1rem;
  color: var(--signal);
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  margin-top: 0.54rem;
  border-radius: 50%;
  background: currentColor;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.comparison-side {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--paper-light);
}

.comparison-side-accent {
  background: #efe6da;
}

.comparison-label {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.comparison-side-accent .comparison-label {
  color: var(--signal);
}

.comparison ul,
.compact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.4rem;
  color: #424b54;
  border-bottom: 1px solid rgba(10, 13, 17, 0.09);
  font-size: 0.92rem;
}

.comparison li:last-child {
  border-bottom: 0;
}

.comparison li::before {
  position: absolute;
  left: 0;
  color: #8b939a;
  content: "-";
}

.comparison-side-accent li::before {
  color: var(--signal);
  content: "+";
}

.role-section {
  background: var(--paper);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.role-grid article {
  min-height: 18rem;
  padding: 1.7rem;
  background: var(--paper-light);
}

.role-grid article > span {
  display: inline-flex;
  margin-bottom: 1.8rem;
  padding: 0.35rem 0.5rem;
  color: var(--signal);
  border: 1px solid rgba(180, 76, 33, 0.38);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.role-grid h3 {
  max-width: 18rem;
}

.role-grid p {
  margin: 0;
  font-size: 0.92rem;
}

.solution-section {
  background: #edf4f0;
}

.solution-grid,
.product-grid,
.why-grid,
.wedge-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.artifact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  align-self: start;
  border: 1px solid var(--line);
  background: var(--line);
}

.artifact-grid span {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  padding: 0.95rem 1rem;
  color: #253039;
  background: var(--paper-light);
  font-size: 0.88rem;
  font-weight: 550;
}

.product-section,
.why-section,
.wedge-section {
  background: var(--paper-light);
}

.product-copy > p:last-child,
.why-copy > p:last-child,
.wedge-grid > div:last-child > p:last-child {
  margin-bottom: 0;
}

.workflow-section {
  background: var(--paper);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.workflow-grid article {
  min-height: 24rem;
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
  background: var(--paper-light);
}

.workflow-grid .step-number {
  margin-bottom: 1.65rem;
}

.workflow-grid h3 {
  max-width: 18rem;
  font-size: 1.45rem;
}

.workflow-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.example-box {
  margin-top: 1.4rem;
  padding: 1rem;
  border: 1px solid #b8d8d1;
  background: #eff8f5;
}

.example-box span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--signal);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.example-box p {
  position: relative;
  padding-left: 1rem;
  color: #38434b;
  font-size: 0.78rem;
}

.example-box p + p {
  margin-top: 0.45rem;
}

.example-box p::before {
  position: absolute;
  left: 0;
  color: var(--signal);
  content: "+";
}

.workflow-product-shot {
  width: min(100%, 62rem);
  margin: clamp(3.25rem, 6vw, 5rem) auto 0;
}

.tour {
  border-top: 1px solid var(--line);
}

.tour-row {
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(32rem, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  border-bottom: 1px solid var(--line);
}

.tour-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.tour-row-reverse .tour-copy {
  order: 2;
}

.tour-row-reverse .tour-screen {
  order: 1;
}

.step-number {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  margin-bottom: 2rem;
  color: var(--paper);
  background: var(--signal);
  border-radius: 50%;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
}

.tour-copy h3 {
  max-width: 29rem;
  font-size: 2.45rem;
  font-weight: 560;
  line-height: 1.05;
}

.tour-copy > p {
  max-width: 30rem;
  font-size: 1.08rem;
}

.compact-list {
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.compact-list li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.25rem;
  color: #4d5660;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.compact-list li::before {
  position: absolute;
  left: 0;
  color: var(--signal);
  content: ">";
}

.tour-screen {
  overflow: hidden;
  min-height: 25rem;
  padding: 1.3rem;
  color: #e6eaed;
  border: 1px solid #222a32;
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--dark-raised);
  background-size: 26px 26px;
  box-shadow: 0 22px 50px rgba(36, 29, 20, 0.14);
}

.screen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -1.3rem -1.3rem 1.6rem;
  padding: 0.8rem 1.1rem;
  color: #cbd2d7;
  border-bottom: 1px solid var(--dark-line);
  background: #0e1318;
  font-size: 0.72rem;
  font-weight: 600;
}

.screen-head small {
  color: #7e8994;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
}

.task-title {
  max-width: 30rem;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  font-weight: 550;
  letter-spacing: 0;
  line-height: 1.15;
}

.task-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.task-meta span {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  color: #7f8a95;
  border: 1px solid var(--dark-line);
  background: #151b22;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.5rem;
}

.task-meta b {
  color: #d7dde1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
}

.criteria-box {
  padding: 1rem;
  border: 1px solid var(--dark-line);
  background: #10151a;
}

.criteria-box > span {
  display: block;
  margin-bottom: 0.65rem;
  color: #828e99;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  text-transform: uppercase;
}

.criteria-box p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  margin: 0;
  padding: 0.6rem 0;
  color: #c6cdd2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.69rem;
}

.criteria-box p:last-child {
  border-bottom: 0;
}

.criteria-box i {
  color: var(--signal-light);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  font-style: normal;
}

.gate-event {
  padding: 1.25rem;
  border: 1px solid #723c28;
  background: linear-gradient(135deg, rgba(180, 76, 33, 0.14), rgba(180, 76, 33, 0.04));
}

.gate-state {
  display: inline-flex;
  margin-bottom: 1.1rem;
  padding: 0.3rem 0.5rem;
  color: #f0a17b;
  border: 1px solid #7b432d;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.52rem;
  text-transform: uppercase;
}

.gate-event strong {
  display: block;
  max-width: 31rem;
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  letter-spacing: 0;
  line-height: 1.25;
}

.gate-event p {
  margin: 0;
  color: #a6b0b9;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
}

.gate-route {
  margin-top: 1rem;
  border: 1px solid var(--dark-line);
  background: #10151a;
}

.gate-route > div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.25rem;
  padding-inline: 1rem;
  border-bottom: 1px solid var(--dark-line);
}

.gate-route > div:last-child {
  border-bottom: 0;
}

.gate-route i {
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid #58636d;
  border-radius: 50%;
}

.gate-route i.done {
  border-color: var(--green);
  background: var(--green);
}

.gate-route i.active {
  border-color: var(--signal-light);
  box-shadow: 0 0 0 4px rgba(233, 130, 81, 0.1);
}

.gate-route span {
  color: #d2d8dc;
  font-size: 0.72rem;
}

.gate-route small {
  color: #818c96;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.51rem;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--dark-line);
  background: var(--dark-line);
  gap: 1px;
}

.review-stat {
  display: flex;
  min-height: 7rem;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  background: #12181e;
}

.review-stat span,
.review-stat small {
  color: #7f8b96;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.5rem;
}

.review-stat strong {
  margin-block: 0.35rem;
  color: #d9dfe2;
  font-size: 0.8rem;
}

.review-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--dark-line);
  background: #10151a;
}

.review-footer span {
  color: #7f8a94;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.5rem;
}

.review-footer strong {
  color: #d6dce0;
  font-size: 0.7rem;
}

.review-footer b {
  padding: 0.5rem 0.75rem;
  color: #1a110d;
  background: var(--signal-light);
  border-radius: 2px;
  font-size: 0.58rem;
}

.package-section {
  color: var(--dark-text);
  border-color: #242b32;
  background: var(--dark);
}

.package-grid {
  display: grid;
  grid-template-columns: minmax(22rem, 0.78fr) minmax(32rem, 1.22fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.package-section h2 {
  color: var(--dark-text);
}

.package-copy > p:not(.eyebrow) {
  max-width: 36rem;
  color: var(--dark-muted);
  font-size: 1.1rem;
}

.text-action-light {
  margin-top: 1rem;
  color: var(--dark-text);
  text-decoration-color: rgba(255, 255, 255, 0.25);
}

.package-manifest {
  border: 1px solid var(--dark-line);
  background: rgba(17, 22, 28, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.manifest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.25rem;
  padding-inline: 1.25rem;
  border-bottom: 1px solid var(--dark-line);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
}

.manifest-head small {
  color: #77a886;
  font-size: 0.55rem;
}

.package-manifest ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-manifest li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 5rem;
  padding-inline: 1.25rem;
  border-bottom: 1px solid var(--dark-line);
}

.package-manifest li:last-child {
  border-bottom: 0;
}

.package-manifest li > span {
  color: var(--signal-light);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
}

.package-manifest li > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.package-manifest strong {
  font-size: 0.88rem;
}

.package-manifest small {
  color: #87929c;
  font-size: 0.7rem;
}

.package-manifest li > b {
  padding: 0.3rem 0.42rem;
  color: #9da7b0;
  border: 1px solid #3a434c;
  border-radius: 2px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.48rem;
  font-weight: 400;
}

.difference-section {
  background: var(--paper);
}

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

.comparison-grid article {
  min-height: 15.5rem;
  padding: 1.45rem;
  background: var(--paper-light);
}

.comparison-grid article > span {
  display: block;
  margin-bottom: 2rem;
  color: var(--signal);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.comparison-grid h3 {
  max-width: 17rem;
}

.comparison-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.comparison-feature {
  grid-column: 1 / -1;
  min-height: auto;
  color: var(--dark-text);
  background: var(--dark) !important;
}

.comparison-feature h3 {
  max-width: 40rem;
  color: var(--dark-text);
  font-size: 2rem;
}

.comparison-feature p {
  max-width: 46rem;
  color: var(--dark-muted);
}

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

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  border-block: 1px solid var(--line);
}

.proof-metrics article {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
}

.proof-metrics article:first-child {
  padding-left: 0;
}

.proof-metrics article:last-child {
  border-right: 0;
}

.metric-value {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--signal);
  font-size: 5.1rem;
  font-weight: 550;
  letter-spacing: 0;
  line-height: 1;
}

.metric-word {
  max-width: 13rem;
  font-size: 2.1rem;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.proof-metrics p {
  max-width: 14rem;
  margin: 0;
  color: #58616a;
  font-size: 0.86rem;
}

.proof-pack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-pack > div {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--paper);
}

.proof-pack span,
.reference-heading .eyebrow {
  display: block;
}

.proof-pack span {
  margin-bottom: 1.2rem;
  color: var(--signal);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.proof-pack ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-pack li {
  padding-block: 0.65rem;
  border-bottom: 1px solid var(--line);
  color: #404a53;
  font-size: 0.92rem;
}

.proof-pack li:last-child {
  border-bottom: 0;
}

.proof-pack p {
  max-width: 33rem;
  margin-bottom: 0.8rem;
}

.proof-pack p:last-child {
  margin-bottom: 0;
}

.reference-heading {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.reference-heading h3 {
  font-size: 2.2rem;
  font-weight: 560;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.evidence-grid figure {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  background: var(--paper);
}

.evidence-grid img {
  width: 100%;
  height: 20rem;
  object-fit: contain;
  padding: 1rem;
  background: #ffffff;
}

.evidence-grid figcaption {
  min-height: 3.8rem;
  padding: 0.9rem 1rem;
  color: #56606a;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.proof-receipt {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(35, 28, 20, 0.07);
}

.receipt-head {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: clamp(1.25rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
}

.receipt-head > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.receipt-head strong {
  font-size: 1rem;
}

.receipt-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 2.4rem clamp(1.25rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
}

.receipt-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-left: 1.55rem;
  color: #879099;
}

.receipt-step::before {
  position: absolute;
  top: 0.45rem;
  right: calc(100% - 0.75rem);
  left: -50%;
  height: 1px;
  background: var(--line);
  content: "";
}

.receipt-step:first-child::before {
  display: none;
}

.receipt-step i {
  position: absolute;
  top: 0.1rem;
  left: 0;
  z-index: 1;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid #a1a8ae;
  border-radius: 50%;
  background: var(--paper);
}

.receipt-step span {
  font-size: 0.82rem;
  font-weight: 600;
}

.receipt-step small {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
}

.receipt-step.complete {
  color: var(--ink);
}

.receipt-step.complete::before {
  background: var(--green);
}

.receipt-step.complete i {
  border-color: var(--green);
  background: var(--green);
}

.receipt-step.current {
  color: var(--signal);
}

.receipt-step.current::before {
  background: var(--green);
}

.receipt-step.current i {
  border-color: var(--signal);
  box-shadow: 0 0 0 5px rgba(180, 76, 33, 0.1);
}

.receipt-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.receipt-details > div {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.receipt-details > div:first-child {
  border-right: 1px solid var(--line);
}

.receipt-details span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--signal);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.receipt-details p {
  max-width: 29rem;
  margin: 0;
  font-size: 0.92rem;
}

.incident-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  max-width: 52rem;
  margin: 2rem 0 0 auto;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-left: 3px solid var(--signal);
  background: #edf4f0;
}

.incident-mark {
  font-family: "JetBrains Mono", monospace;
  color: var(--signal);
  font-size: 0.7rem;
}

.incident-note h3 {
  margin-block: 0.45rem 0.55rem;
  font-size: 1.35rem;
}

.incident-note p {
  margin: 0;
}

.fit-section {
  background: var(--paper);
}

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

.fit-grid article {
  min-height: 20rem;
  padding: clamp(1.4rem, 2.7vw, 2rem);
  background: var(--paper-light);
}

.fit-grid article > span {
  display: block;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  color: var(--signal);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
}

.fit-grid h3 {
  font-size: 1.35rem;
}

.fit-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-block: 1.4rem 1.8rem;
}

.tag-grid span {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  padding: 0.35rem 0.75rem;
  color: #173f3b;
  border: 1px solid #a7d5ce;
  background: #edf8f5;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.controls-section {
  background: #eef3ef;
}

.controls-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(29rem, 1.2fr);
  gap: clamp(4rem, 9vw, 10rem);
}

.control-list {
  border-top: 1px solid var(--line);
}

.control-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.control-icon {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  color: var(--signal);
  border: 1px solid var(--signal);
  border-radius: 50%;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
}

.control-list h3 {
  margin-bottom: 0.35rem;
}

.control-list p {
  max-width: 34rem;
  margin: 0;
}

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

.category-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(26rem, 1.1fr);
  gap: 4rem;
}

.category-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.category-list article {
  padding: 1.65rem;
  background: var(--paper);
}

.category-list span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--signal);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.category-list p {
  max-width: 34rem;
  margin: 0;
}

.profile-section {
  padding-block: var(--section);
  background: var(--paper-light);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.52fr) minmax(28rem, 1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.founder-figure {
  overflow: hidden;
  width: 100%;
  max-width: 32rem;
  margin: 0;
  border: 1px solid var(--line);
  background: #eef1ee;
  box-shadow: 0 22px 60px rgba(21, 30, 28, 0.12);
}

.profile-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 0;
  border-radius: 0;
}

.profile-copy .eyebrow {
  margin-bottom: 0.55rem;
}

.profile-copy h2 {
  max-width: 44rem;
  margin-bottom: 1rem;
  font-size: 3.4rem;
  line-height: 1;
}

.profile-role {
  margin-bottom: 0.9rem;
  color: var(--signal);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.profile-copy > p:not(.eyebrow):not(.profile-role) {
  max-width: 49rem;
  font-size: 0.95rem;
}

.profile-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--signal);
  font-weight: 600;
  text-underline-offset: 0.25em;
}

.profile-link:hover {
  color: var(--ink);
}

.vision-section {
  color: var(--dark-text);
  background: var(--dark);
}

.vision-inner {
  max-width: 940px;
}

.vision-section h2 {
  color: var(--dark-text);
}

.vision-section p:not(.eyebrow) {
  max-width: 52rem;
  color: var(--dark-muted);
  font-size: 1.1rem;
}

.vision-section .callout-copy {
  color: var(--dark-text);
  font-size: 1.7rem;
}

.contact-section {
  padding-block: clamp(6rem, 11vw, 10rem);
  color: var(--dark-text);
  text-align: center;
  background: var(--dark);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section h2 {
  max-width: 60rem;
  color: var(--dark-text);
}

.contact-section > .container > p:not(.eyebrow) {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: var(--dark-muted);
  font-size: 1.15rem;
}

.button-light {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.button-light:hover {
  border-color: var(--signal-light);
  background: var(--signal-light);
}

.contact-section small {
  margin-top: 1.25rem;
  color: #818b95;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
}

.contact-section small a {
  color: #d4dade;
  text-underline-offset: 0.2em;
}

.site-footer {
  padding-block: 2.25rem;
  border-top: 1px solid #222930;
  background: var(--dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(12rem, 1fr) minmax(16rem, 1.3fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  width: auto;
  height: 24px;
  filter: invert(1) grayscale(1) brightness(2);
}

.footer-inner p {
  margin: 0;
  color: #747f89;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

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

  .hero-copy {
    max-width: 54rem;
  }

  .hero-product {
    max-width: 52rem;
  }

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

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

  .fit-grid article {
    min-height: 17rem;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .problem-grid,
  .solution-grid,
  .product-grid,
  .why-grid,
  .wedge-grid,
  .split-heading,
  .tour-row,
  .workflow-grid,
  .package-grid,
  .comparison-grid,
  .proof-pack,
  .controls-grid,
  .category-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .solution-grid,
  .product-grid,
  .why-grid,
  .wedge-grid,
  .package-grid,
  .controls-grid,
  .profile-grid {
    gap: 3rem;
  }

  .split-heading {
    gap: 1.5rem;
  }

  .split-heading > p {
    max-width: 40rem;
  }

  .tour-row {
    gap: 2.5rem;
  }

  .tour-row-reverse .tour-copy,
  .tour-row-reverse .tour-screen {
    order: initial;
  }

  .tour-copy {
    max-width: 36rem;
  }

  .tour-screen {
    max-width: 46rem;
  }

  .stage-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stage-inner span:nth-child(2) {
    border-right: 1px solid #242b33;
  }

  .stage-inner span:nth-child(n + 3) {
    border-top: 1px solid #242b33;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .proof-metrics article,
  .proof-metrics article:first-child {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-metrics article:last-child {
    border-bottom: 0;
  }

  .proof-metrics p {
    max-width: 28rem;
  }

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

  .receipt-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .receipt-step {
    min-height: 3.5rem;
    padding-left: 2rem;
  }

  .receipt-step::before {
    top: -2.5rem;
    bottom: calc(100% - 0.75rem);
    left: 0.4rem;
    width: 1px;
    height: auto;
  }

  .receipt-step:first-child::before {
    display: none;
  }

  .comparison-feature {
    min-height: auto;
  }

  .workflow-grid article,
  .comparison-grid article {
    min-height: auto;
  }

  .profile-link {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 1.1rem;
    --section: 4.75rem;
  }

  body {
    background-size: 36px 36px;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 4.25rem;
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 25px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    max-width: 20rem;
    font-size: 2.45rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 2.55rem;
  }

  .profile-copy h2,
  .reference-heading h3 {
    font-size: 2.55rem;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-lede,
  .hero-actions,
  .hero-note {
    width: 100%;
    max-width: 21rem;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .text-action {
    justify-content: center;
    min-height: 2.75rem;
  }

  .hero-product {
    width: calc(100vw - 2.2rem);
    max-width: calc(100vw - 2.2rem);
    margin-inline: 0;
  }

  .comparison,
  .split-list,
  .artifact-grid,
  .workflow-grid,
  .comparison-grid,
  .proof-pack,
  .role-grid,
  .task-meta,
  .review-grid,
  .receipt-details,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .role-grid article {
    min-height: auto;
  }

  .workflow-grid article,
  .comparison-grid article {
    min-height: auto;
  }

  .comparison-grid article,
  .comparison-feature {
    padding: 1.35rem;
  }

  .evidence-grid img {
    height: 16rem;
  }

  .stage-inner {
    grid-template-columns: 1fr;
  }

  .stage-inner span,
  .stage-inner span:first-child,
  .stage-inner span:nth-child(2) {
    min-height: 3.4rem;
    justify-content: flex-start;
    padding-inline: 1rem;
    border-right: 1px solid #242b33;
    border-left: 1px solid #242b33;
    border-top: 1px solid #242b33;
  }

  .stage-inner span:first-child {
    border-top: 0;
  }

  .comparison-side {
    padding: 1.25rem;
  }

  .tour-screen {
    min-height: auto;
    padding: 1rem;
  }

  .screen-head {
    margin: -1rem -1rem 1.25rem;
  }

  .gate-route > div {
    grid-template-columns: auto 1fr;
  }

  .gate-route small {
    grid-column: 2;
    padding-bottom: 0.65rem;
  }

  .review-footer {
    grid-template-columns: 1fr;
  }

  .package-manifest li {
    gap: 0.7rem;
    padding-inline: 0.85rem;
  }

  .package-manifest small {
    font-size: 0.62rem;
  }

  .receipt-head {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1.2rem;
  }

  .receipt-details > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .fit-grid article {
    min-height: auto;
  }

  .fit-grid article > span {
    margin-bottom: 2.5rem;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .profile-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .profile-link {
    grid-column: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
