@font-face {
  font-family: "Ronzino";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ronzino/Ronzino-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Ronzino";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ronzino/Ronzino-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Ronzino";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/ronzino/Ronzino-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/geist/Geist-Latin.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/geist/GeistMono-Latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --canvas: oklch(0.97 0 0);
  --surface: oklch(1 0 0);
  --surface-hover: oklch(0.97 0 0);
  --surface-pressed: oklch(0.94 0 0);
  --text-primary: #343434;
  --text-secondary: oklch(0.4 0 0);
  /* Slightly darker than the canonical tertiary token for AA at 9–11px. */
  --text-tertiary: #6f6f6f;
  --border: oklch(0.885 0 0);
  --border-subtle: oklch(0.93 0 0);
  --border-strong: oklch(0.49 0 0);
  --border-focus: oklch(0.76 0 0);
  --action: oklch(0.32 0 0);
  --action-hover: oklch(0.4 0 0);
  --action-active: oklch(0.48 0 0);
  --action-foreground: oklch(0.985 0 0);
  --success-bg: #e8f5e9;
  --success-text: #1e7832;
  --warning-bg: #fff3e0;
  --warning-text: #b46400;
  --warning-text-accessible: #8a4c00;
  --warning-border: #efd8b5;
  --agent: oklch(0.54 0.13 268);
  --agent-soft: #eef0f8;
  --terminal: #1e1e1e;
  --terminal-raised: #272727;
  --terminal-text: #f2f2f2;
  --display: "Ronzino", "Geist", system-ui, sans-serif;
  --body: "Geist", system-ui, sans-serif;
  --mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  --shell: min(1180px, calc(100vw - 48px));
  --section-space: clamp(88px, 10vw, 136px);
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--text-primary);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

code,
pre {
  font-family: var(--mono);
}

::selection {
  background: #dfe1e8;
  color: var(--text-primary);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  transform: translateY(-150%);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-primary);
  font: 600 12px/1 var(--mono);
  text-decoration: none;
  transition: transform 100ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 48px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  min-height: 36px;
  color: var(--text-primary);
  text-decoration: none;
}

.brand-lockup img {
  display: block;
  width: 93px;
  height: 20px;
}

.brand-separator {
  color: var(--border-strong);
  font: 400 18px/1 var(--display);
}

.product-wordmark {
  font: 500 17px/1 var(--display);
  letter-spacing: -0.025em;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warning-text);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 75ms ease;
}

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

.nav-github {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  min-height: calc(100vh - 48px);
  padding-block: clamp(76px, 10vw, 132px);
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--text-tertiary);
  font: 600 11px/1.2 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--display);
  font-weight: 500;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 5.5vw, 70px);
  line-height: 0.99;
  letter-spacing: -0.052em;
}

h1 span {
  display: block;
  color: var(--text-tertiary);
}

.hero-summary {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 550;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 75ms ease,
    border-color 75ms ease,
    color 75ms ease;
}

.button-primary {
  border-color: var(--action);
  background: var(--action);
  color: var(--action-foreground);
}

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

.button-primary:active {
  border-color: var(--action-active);
  background: var(--action-active);
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text-primary);
}

.button-secondary:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

.button-secondary:active {
  background: var(--surface-pressed);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-secondary);
  font: 500 11px/1.2 var(--mono);
}

.hero-proof {
  align-self: center;
  min-width: 0;
}

.proof-label,
.diagram-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding-inline: 12px;
  border: 1px solid var(--border);
  border-bottom: 0;
  background: var(--surface);
  color: var(--text-tertiary);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.1em;
}

.terminal {
  overflow: hidden;
  border: 1px solid #3d3d3d;
  background: var(--terminal);
  color: var(--terminal-text);
}

.terminal-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid #3d3d3d;
  background: var(--terminal-raised);
  color: #a8a8a8;
  font: 500 10px/1 var(--mono);
}

.terminal-bar > :last-child {
  justify-self: end;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5c5c5c;
}

.terminal pre {
  min-height: 294px;
  margin: 0;
  padding: clamp(26px, 4vw, 44px);
  overflow: auto;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.9;
}

.terminal .prompt {
  color: #c8c8c8;
}

.agent-commands span {
  color: var(--agent);
}

.proof-routing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-top: 0;
  background: var(--surface);
}

.proof-routing span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  color: var(--text-tertiary);
  font: 500 9px/1.2 var(--mono);
  text-align: center;
  text-transform: uppercase;
}

.proof-routing span + span {
  border-left: 1px solid var(--border);
}

.proof-routing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success-text);
}

.proof-routing span:last-child i {
  background: var(--agent);
}

.manifest-strip {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.manifest-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  min-width: max-content;
  min-height: 50px;
  padding-inline: 24px;
  color: var(--text-tertiary);
  font: 550 10px/1 var(--mono);
  letter-spacing: 0.09em;
}

.manifest-track i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border-strong);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1fr);
  gap: 12px clamp(40px, 8vw, 120px);
  align-items: start;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  grid-row: 1 / span 2;
  padding-top: 9px;
}

.section-heading h2,
.branch-copy h2,
.scope-intro h2,
.early-access h2,
.cta h2 {
  font-size: clamp(38px, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.branch-copy > p,
.scope-intro > p,
.early-access > div > p,
.cta > p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

.section-heading > p:last-child {
  grid-column: 2;
}

.manifest-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.manifest-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(180px, auto);
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.manifest-number {
  color: var(--text-tertiary);
  font: 500 11px/1.5 var(--mono);
}

.manifest-list h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.manifest-list p {
  max-width: 630px;
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.manifest-list code {
  justify-self: end;
  padding: 5px 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 11px;
}

.workflow-note {
  margin: 22px 0 0 92px;
  color: var(--text-tertiary);
  font: 500 11px/1.6 var(--mono);
}

.branch-section {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.branch-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.branch-copy > p {
  margin-top: 22px;
}

.branch-facts {
  margin: 36px 0 0;
  border-top: 1px solid var(--border);
}

.branch-facts div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.branch-facts dt {
  color: var(--text-tertiary);
  font: 500 10px/1.5 var(--mono);
  text-transform: uppercase;
}

.branch-facts dd {
  margin: 0;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 550;
}

.branch-diagram {
  min-width: 0;
}

.branch-diagram > svg {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  background:
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px),
    var(--canvas);
  background-size: 40px 40px;
}

.repo-node rect,
.route rect {
  fill: var(--surface);
  stroke: var(--border);
  stroke-width: 1.5;
}

.trunk,
.route > path {
  fill: none;
  stroke: var(--border-strong);
  stroke-width: 1.6;
}

.route-agent > path {
  stroke: var(--agent);
}

.route > circle:not(.route-node) {
  fill: var(--surface);
  stroke: var(--border-strong);
  stroke-width: 1.5;
}

.route-node {
  fill: var(--success-text);
  stroke: var(--success-bg);
  stroke-width: 8;
}

.route-agent .route-node {
  fill: var(--agent);
  stroke: var(--agent-soft);
}

.svg-label {
  fill: var(--text-tertiary);
  font: 500 9px var(--mono);
  letter-spacing: 0.08em;
}

.svg-title {
  fill: var(--text-primary);
  font: 500 16px var(--display);
}

.svg-meta {
  fill: var(--text-tertiary);
  font: 500 9px var(--mono);
}

.mobile-branch-map {
  display: none;
}

.section-heading-compact {
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1fr);
}

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

.principle {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--border);
  background: var(--surface);
}

.principle-agent::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 2px;
  background: var(--agent);
  content: "";
}

.principle-index {
  margin-bottom: 44px;
  color: var(--text-tertiary);
  font: 550 10px/1 var(--mono);
  letter-spacing: 0.08em;
}

.principle-agent .principle-index {
  color: var(--agent);
}

.principle h3 {
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.principle > p {
  max-width: 540px;
  min-height: 78px;
  margin: 18px 0 34px;
  color: var(--text-secondary);
}

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

.placement div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 48px;
  border-bottom: 1px solid var(--border);
}

.placement span {
  color: var(--text-tertiary);
  font: 550 9px/1 var(--mono);
  letter-spacing: 0.08em;
}

.placement div:last-child span {
  color: var(--success-text);
}

.placement code {
  color: var(--text-primary);
  font-size: 12px;
}

.agent-commands {
  margin: 0;
  padding: 22px;
  overflow: auto;
  border: 1px solid #3d3d3d;
  background: var(--terminal);
  color: var(--terminal-text);
  font-size: 11px;
  line-height: 2.05;
}

.scope {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.scope-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(48px, 8vw, 112px);
}

.scope-intro > p {
  margin-top: 22px;
}

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

.scope-column {
  padding: 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.scope-state {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 8px;
  background: var(--surface-pressed);
  color: var(--text-secondary);
  font: 600 10px/1 var(--mono);
  text-transform: uppercase;
}

.scope-now .scope-state {
  background: var(--success-bg);
  color: var(--success-text);
}

.scope-column h3 {
  min-height: 58px;
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.scope-column ul {
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.scope-column li {
  position: relative;
  padding: 12px 0 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 13px;
}

.scope-column li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
  content: "";
}

.scope-now li::before {
  background: var(--success-text);
}

.early-access {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.warning-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--warning-border);
  background: var(--warning-bg);
  color: var(--warning-text);
  font: 500 28px/1 var(--display);
}

.early-access .eyebrow {
  color: var(--warning-text-accessible);
}

.early-access > div > p {
  max-width: 760px;
}

.early-access .fine-print {
  max-width: 900px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--text-tertiary);
  font: 450 11px/1.75 var(--mono);
}

.fine-print code {
  color: var(--text-primary);
}

.cta {
  position: relative;
  padding: clamp(48px, 7vw, 80px);
  border: 1px solid var(--border);
  background: var(--surface);
}

.cta-coordinate {
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--text-tertiary);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.08em;
}

.cta h2 {
  max-width: 790px;
}

.cta > p {
  max-width: 700px;
}

.cta-command {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 16px;
  border: 1px solid var(--border);
  background: var(--canvas);
  color: var(--text-primary);
  font-size: 14px;
}

.cta-command > span {
  color: var(--agent);
  font-family: var(--mono);
}

.site-footer {
  margin-top: var(--section-space);
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  min-height: 180px;
  padding-block: 40px;
}

.brand-lockup-footer {
  min-height: 30px;
}

.footer-inner > div:first-child > p {
  margin: 14px 0 0;
  color: var(--text-tertiary);
  font-size: 13px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  color: var(--text-tertiary);
  font: 500 10px/1.4 var(--mono);
}

.footer-meta a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 75ms ease;
}

.footer-meta a:hover {
  color: var(--text-primary);
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-proof {
    width: min(680px, 100%);
  }

  .branch-layout,
  .scope-inner {
    grid-template-columns: 1fr;
  }

  .branch-copy,
  .scope-intro {
    max-width: 680px;
  }

  .scope-columns {
    max-width: 760px;
  }
}

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

  .principle > p {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 1180px);
    --section-space: 80px;
  }

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

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

  .nav-status {
    display: none;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a:first-child {
    display: none;
  }

  .brand-lockup img {
    width: 84px;
    height: auto;
  }

  .product-wordmark {
    font-size: 16px;
  }

  .hero {
    gap: 56px;
    padding-block: 72px;
  }

  h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .hero-summary {
    margin-top: 24px;
  }

  .manifest-track {
    justify-content: flex-start;
  }

  .section-heading,
  .section-heading-compact {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 44px;
  }

  .section-heading .eyebrow {
    grid-row: auto;
    padding-top: 0;
  }

  .section-heading > p:last-child {
    grid-column: auto;
  }

  .manifest-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 18px;
  }

  .manifest-list li > code {
    grid-column: 2;
    justify-self: start;
  }

  .workflow-note {
    margin-left: 58px;
  }

  .branch-diagram > svg {
    display: none;
  }

  .diagram-label {
    border-bottom: 1px solid var(--border);
  }

  .mobile-branch-map {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
    padding: 28px;
    border: 1px solid var(--border);
    border-top: 0;
    background:
      linear-gradient(var(--border-subtle) 1px, transparent 1px),
      linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px),
      var(--canvas);
    background-size: 32px 32px;
  }

  .mobile-repo,
  .mobile-routes div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border: 1px solid var(--border);
    background: var(--surface);
  }

  .mobile-repo span,
  .mobile-routes span {
    color: var(--text-primary);
    font: 500 15px/1.2 var(--display);
  }

  .mobile-repo strong {
    margin-top: 8px;
    font: 500 23px/1 var(--display);
  }

  .mobile-repo code,
  .mobile-routes code {
    margin-top: 6px;
    color: var(--text-tertiary);
    font-size: 8px;
  }

  .mobile-routes {
    display: grid;
    gap: 10px;
  }

  .mobile-routes div:last-child {
    border-color: #c9cce0;
  }

  .principle-grid,
  .scope-columns {
    grid-template-columns: 1fr;
  }

  .scope-column h3 {
    min-height: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding-block: 40px;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 500px) {
  .manifest-track {
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
  }

  .manifest-track span:nth-of-type(n + 3),
  .manifest-track i:nth-of-type(n + 2) {
    display: none;
  }

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

  .button {
    width: 100%;
  }

  .terminal pre {
    min-height: 260px;
    padding: 24px 18px;
    font-size: 12px;
  }

  .agent-commands {
    overflow-wrap: anywhere;
    white-space: pre-wrap;
  }

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

  .proof-routing span + span {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .manifest-list li {
    grid-template-columns: 1fr;
  }

  .manifest-list li > code {
    grid-column: 1;
  }

  .workflow-note {
    margin-left: 0;
  }

  .mobile-branch-map {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .mobile-repo {
    position: relative;
  }

  .mobile-repo::after {
    position: absolute;
    bottom: -29px;
    left: 6px;
    width: 1px;
    height: 29px;
    background: var(--border-strong);
    content: "";
  }

  .mobile-routes {
    position: relative;
    padding-left: 28px;
  }

  .mobile-routes::before {
    position: absolute;
    top: -19px;
    bottom: 24px;
    left: 7px;
    width: 1px;
    background: var(--border-strong);
    content: "";
  }

  .mobile-routes div {
    position: relative;
  }

  .mobile-routes div::before {
    position: absolute;
    top: 50%;
    left: -21px;
    width: 20px;
    height: 1px;
    background: var(--border-strong);
    content: "";
  }

  .mobile-routes div:last-child::before {
    background: var(--agent);
  }

  .principle {
    padding: 28px 22px;
  }

  .principle > p {
    min-height: 0;
  }

  .early-access {
    grid-template-columns: 1fr;
  }

  .warning-mark {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .cta {
    padding: 48px 24px 28px;
  }

  .cta-coordinate {
    top: 14px;
    right: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
