/* AIGate: native static UI. See docs/DESIGN.md for tokens and rationale. */
@font-face {
  font-family: Geist;
  src: url("assets/fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("assets/fonts/geist-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --font: Geist, Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
  --radius: 16px;
  --control-radius: 8px;
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
  color-scheme: dark;
  --bg: #101413;
  --surface: #151b18;
  --surface-raised: #1b221e;
  --text: #edf1ec;
  --secondary: #b7c1b9;
  --muted: #939f96;
  --accent: #82dab1;
  --accent-hover: #a3e8c7;
  --accent-ink: #102a1c;
  --accent-surface: #1a3025;
  --border: #2a342d;
  --border-strong: #46534a;
  --shadow: 0 20px 70px #040b082b;
  --divider: 2px;
  --honest-bg: #30291e;
  --honest-fg: #e5bb83;
  --kill-bg: #301e1e;
  --kill-fg: #e58b83;
}
[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f7f5;
  --surface: #edf1ed;
  --surface-raised: #e5ece5;
  --text: #182b20;
  --secondary: #435b4a;
  --muted: #586e60;
  --accent: #276844;
  --accent-hover: #1c5334;
  --accent-ink: #f5fcf7;
  --accent-surface: #e2efe6;
  --border: #d2dcd3;
  --border-strong: #95aa9a;
  --shadow: 0 20px 70px #1c493010;
  --honest-bg: #fbf3df;
  --honest-fg: #7a5a0a;
  --kill-bg: #f8e2dd;
  --kill-fg: #8a2418;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
iframe {
  border: 0;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  color: inherit;
}
code,
pre {
  font-family: var(--mono);
}
code {
  font-size: 0.86em;
}
strong {
  font-weight: 600;
}
h1,
h2,
h3 {
  font-weight: 550;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
h3 {
  letter-spacing: -0.025em;
}
::selection {
  background: var(--accent);
  color: var(--accent-ink);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
main:focus {
  outline: none;
}
[hidden] {
  display: none !important;
}
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.container {
  width: min(100% - 96px, 1240px);
  margin-inline: auto;
}
.section {
  padding-block: 104px;
  scroll-margin-top: 20px;
}
.section-heading {
  margin-bottom: 40px;
  max-width: 640px;
}
.section-heading h2 {
  font-size: clamp(34px, 4vw, 50px);
}
.section-heading > p:not(.eyebrow) {
  color: var(--secondary);
  max-width: 530px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.7;
}
.section-heading--center {
  margin-inline: auto;
  text-align: center;
}
.section-heading--center > p {
  margin-inline: auto;
}
.section-heading--center > .status {
  margin-bottom: 24px;
}
.text-accent {
  color: var(--accent);
}
.text-muted {
  color: var(--muted);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.status {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  padding: 5px 10px;
  white-space: nowrap;
}
.status--accent {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 32%, var(--border));
  background: var(--accent-surface);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--accent-ink);
  z-index: 50;
  transform: translateY(-160%);
  border-radius: var(--control-radius);
}
.skip-link:focus {
  transform: translateY(0);
}
/* Controls: one shape and explicit hover, focus, active and disabled states. */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--control-radius);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.4;
  white-space: nowrap;
  background: transparent;
  transition: transform 0.18s var(--ease);
}
.button:hover {
  background: var(--surface-raised);
  border-color: var(--muted);
}
.button:active {
  transform: translateY(1px);
}
.button--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.button--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.button--quiet {
  border-color: transparent;
}
.button--quiet:hover {
  border-color: var(--border);
}
.button--small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 12px;
}
.button--small .icon {
  width: 16px;
  height: 16px;
}
.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  transition: transform 0.18s var(--ease);
}
.icon-button:hover {
  background: var(--surface-raised);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 550;
  min-height: 44px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.text-link .icon {
  transition: transform 0.18s var(--ease);
}
.text-link:hover .icon {
  transform: translateX(3px);
}
/* Navigation layers: header 20, mobile links 21. */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.7px;
  white-space: nowrap;
}
.logo__mark {
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 21px;
  line-height: 32px;
  width: 30px;
  height: 32px;
  display: block;
  text-align: center;
  border-radius: 6px;
}
.logo__accent {
  color: var(--accent);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__link {
  font-size: 12px;
  color: var(--secondary);
  min-height: 44px;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}
.nav__link:hover,
.nav__link[aria-current] {
  color: var(--text);
}
.nav__link[aria-current]::after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  background: var(--accent);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  display: none;
}
.theme-moon,
[data-theme="light"] .theme-sun,
.menu-close {
  display: none;
}
[data-theme="light"] .theme-moon {
  display: block;
}
/* Art is an illustration, never presented as a product screenshot. */
.hero {
  padding-top: 68px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  min-height: 405px;
  gap: 0;
}
.hero__copy {
  position: relative;
  z-index: 1;
  padding-bottom: 18px;
}
.hero h1 {
  font-size: clamp(48px, 5.1vw, 70px);
  font-weight: 550;
  letter-spacing: -0.06em;
  line-height: 1.08;
  white-space: nowrap;
}
.hero h1 span {
  color: var(--accent);
}
.hero__description {
  max-width: 440px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--secondary);
  margin-top: 25px;
}
.hero__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero__art {
  margin-left: -8%;
  margin-right: -8%;
  overflow: hidden;
  min-width: 0;
}
.hero__art img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  mix-blend-mode: lighten;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 13%,
    #000 85%,
    transparent
  );
}
[data-theme="light"] .hero__art {
  border-radius: var(--radius);
  margin-left: 10px;
  margin-right: 0;
  background: #101413;
}
[data-theme="light"] .hero__art img {
  mix-blend-mode: normal;
  mask-image: none;
}
.architecture {
  display: grid;
  grid-template-columns: 1fr 70px 1.4fr 70px 1fr;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 26px;
  padding: 24px 30px;
  gap: 8px;
  background: var(--surface);
}
.architecture__node {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.architecture__node > .icon {
  color: var(--muted);
  width: 24px;
  height: 24px;
}
.architecture__node strong {
  display: block;
  font-size: 13px;
  font-weight: 550;
}
.architecture__node span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.architecture__node--gate > .icon,
.architecture__node--gate strong {
  color: var(--accent);
}
.architecture__node code {
  font-size: 10px;
  color: var(--muted);
  margin-left: auto;
}
.architecture__connector {
  display: flex;
  align-items: center;
  color: var(--border-strong);
  padding-right: 20px;
}
.architecture__connector::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--border-strong);
}
.architecture__connector .icon {
  margin-left: -5px;
  width: 16px;
}
.release-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  margin-top: 18px;
  padding-bottom: 4px;
}
.release-note a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  white-space: nowrap;
  color: var(--secondary);
}
.release-note .icon {
  width: 14px;
  height: 14px;
}
.release-note a:hover {
  text-decoration: underline;
}
.problem {
  padding-top: 120px;
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.problem .section-heading {
  margin: 0;
}
.problem .section-heading > p {
  max-width: 365px;
}
.problem__items {
  display: grid;
  gap: 26px;
}
.problem__item {
  display: flex;
  gap: 22px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}
.problem__item:last-child {
  border: 0;
  padding-bottom: 0;
}
.feature-icon {
  color: var(--accent);
  flex-shrink: 0;
  display: inline-flex;
  padding-top: 3px;
}
.feature-icon .icon {
  width: 24px;
  height: 24px;
}
.problem__item h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.problem__item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--secondary);
}
.inline-note {
  display: inline-block;
  font-size: 11px;
  color: var(--accent);
  margin-top: 10px;
}
.inline-note--muted {
  color: var(--muted);
}
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.feature {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 32px;
}
.feature h3 {
  font-size: 25px;
  margin-block: 20px 16px;
}
.feature p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--secondary);
}
.feature--main {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  padding: 42px;
  background: var(--accent-surface);
  gap: 80px;
  border-color: color-mix(in srgb, var(--accent) 26%, var(--border));
}
.feature--main h3 {
  font-size: 32px;
}
.feature__copy > p {
  max-width: 440px;
}
.feature__copy .text-link {
  margin-top: 20px;
}
.threshold {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  padding-left: 64px;
}
.threshold__number {
  font-family: var(--mono);
  font-size: 110px;
  line-height: 1.2;
  letter-spacing: -0.09em;
  color: var(--accent);
}
.threshold__number > span {
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0;
  color: var(--secondary);
  margin-left: 15px;
}
.threshold__track {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--secondary);
}
.threshold__track > .icon {
  width: 14px;
  color: var(--muted);
}
.threshold__stop {
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  padding: 4px 9px;
  border-radius: 6px;
}
.threshold > p {
  font-size: 11px;
  line-height: 1.8;
  max-width: 235px;
  margin-top: 20px;
}
.feature__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feature--planned p {
  max-width: 450px;
}
.feature__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
}
.feature__foot .icon {
  width: 18px;
  height: 18px;
}
.demo-section {
  padding-top: 100px;
}
.demo-section .section-heading h2 {
  font-size: clamp(40px, 5vw, 60px);
}
.demo-shell {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.demo-shell__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding: 17px 28px;
  font-size: 12px;
}
.demo-shell__bar > span,
.demo-shell__bar > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.demo-shell__bar > span {
  font-family: var(--mono);
  color: var(--secondary);
}
.demo-shell__bar > a {
  font-size: 11px;
  color: var(--muted);
  min-height: 28px;
}
.demo-shell__bar > a:hover {
  color: var(--text);
}
.demo-shell__bar .icon {
  width: 16px;
  height: 16px;
}
iframe {
  display: block;
  width: 100%;
  height: 630px;
  background: var(--surface);
}
.demo-caption {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin: 18px auto 0;
  max-width: 700px;
}
.setup__grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 88px;
  align-items: start;
  scroll-margin-top: 110px;
}
.setup .section-heading {
  margin: 0;
}
.setup__steps {
  list-style: none;
  padding: 0;
  margin-top: 34px;
  display: grid;
  gap: 24px;
}
.setup__steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.setup__steps li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  flex-shrink: 0;
}
.setup__steps strong {
  font-size: 14px;
}
.setup__steps p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}
.setup__panel {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  min-width: 0;
}
.setup__tabs {
  display: flex;
  gap: 8px;
  padding: 10px 15px;
  border-bottom: 1px solid var(--border);
}
.setup__tabs button {
  min-height: 42px;
  flex: 1;
  background: transparent;
  border: 0;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--muted);
}
.setup__tabs button[aria-selected="true"] {
  background: var(--surface-raised);
  color: var(--text);
}
.setup__tabs button:hover {
  color: var(--text);
}
[role="tabpanel"] {
  padding: 24px;
  min-height: 285px;
}
.code-heading {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 24px;
}
.copy-button {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--secondary);
  font-size: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  min-height: 36px;
  white-space: nowrap;
}
.copy-button .icon {
  width: 14px;
  height: 14px;
}
.copy-button:hover {
  background: var(--surface-raised);
}
pre {
  max-width: 100%;
  overflow-x: auto;
  font-size: 12px;
  line-height: 1.85;
  color: var(--accent);
  padding-bottom: 4px;
  tab-size: 2;
}
pre code {
  font-size: inherit;
}
.code-note {
  color: var(--secondary);
  font-size: 12px;
  line-height: 1.8;
  margin-top: 26px;
}
.setup__foot {
  padding: 18px 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
}
.setup__foot .icon {
  width: 16px;
  height: 16px;
}
.endpoint {
  display: grid;
  gap: 5px;
  margin-top: 20px;
}
.endpoint span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
}
.endpoint code {
  font-size: 11px;
  color: var(--accent);
  overflow-wrap: anywhere;
}
.challenge-section {
  padding-block: 24px 70px;
}
.challenge {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 76px;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.challenge h2 {
  font-size: 36px;
  line-height: 1.15;
  margin-top: 22px;
}
.challenge__intro > p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 18px;
}
.challenge__body {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.85;
  align-self: center;
}
.challenge__body > p + p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.pricing .section-heading {
  margin: 0;
}
.section-heading > .pricing__note {
  font-size: 12px;
  max-width: 350px;
  color: var(--muted);
  margin-top: 30px;
}
.price-card {
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--border));
  border-radius: var(--radius);
  padding: 32px;
  background: var(--surface);
}
.price-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.price-card__top h3 {
  font-size: 18px;
}
.price {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block: 24px;
}
.price > strong {
  font-size: 76px;
  font-weight: 450;
  line-height: 1.2;
  letter-spacing: -0.07em;
}
.price > span {
  max-width: 150px;
  color: var(--muted);
  font-size: 12px;
}
.price-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
  margin-block: 12px 32px;
}
.price-list li {
  display: flex;
  gap: 11px;
  font-size: 12px;
  color: var(--secondary);
}
.price-list .icon {
  width: 16px;
  height: 18px;
  color: var(--accent);
}
.price-card > .button {
  width: 100%;
}
.price-card > p {
  font-size: 10px;
  text-align: center;
  color: var(--muted);
  margin-top: 14px;
}
.closing {
  border-top: 1px solid var(--border);
  text-align: center;
  padding-block: 86px 94px;
}
.closing h2 {
  font-size: clamp(42px, 5.5vw, 68px);
}
.text-link--large {
  font-size: 18px;
  margin-top: 30px;
}
.text-link--large .icon {
  width: 24px;
  height: 24px;
}
.footer {
  padding-block: 30px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer .logo {
  font-size: 16px;
}
.footer .logo__mark {
  font-size: 17px;
  line-height: 26px;
  width: 24px;
  height: 26px;
  border-radius: 5px;
}
.footer p {
  font-size: 11px;
  color: var(--muted);
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--secondary);
  font-size: 11px;
  min-height: 36px;
}
.footer__links .icon {
  width: 12px;
  height: 12px;
}
.footer__links a:hover {
  color: var(--accent);
}
.toast {
  position: fixed;
  z-index: 40;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--text);
  color: var(--bg);
  box-shadow: var(--shadow);
  border-radius: var(--control-radius);
  padding: 12px 20px;
  font-size: 13px;
  max-width: calc(100% - 32px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s var(--ease);
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ============================================================
   Claude-style additions (docs/CLAUDE-DESIGN-PATTERN.md)
   - Stats strip
   - Kill signal block
   - NOT ENFORCED tinted aside
   - Routing surface table
   All on 2px strong dividers, mono for data.
   ============================================================ */

.stats-strip {
  margin-top: clamp(36px, 5vw, 64px);
  border-top: var(--divider) solid var(--border);
  border-bottom: var(--divider) solid var(--border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 0;
}
.stats-strip__cell {
  padding: 22px 20px 22px 0;
  border-left: 1px solid var(--border);
  margin-left: -1px;
}
.stats-strip__cell:first-child {
  border-left: 0;
  margin-left: 0;
}
.stats-strip__value {
  font: 600 clamp(24px, 3vw, 34px) / 1 var(--mono);
  letter-spacing: -0.03em;
  color: var(--text);
}
.stats-strip__value--accent {
  color: var(--accent);
}
.stats-strip__label {
  font: 400 11.5px / 1.5 var(--font);
  color: var(--muted);
  margin-top: 8px;
}
@media (max-width: 767px) {
  .stats-strip__cell {
    padding: 16px 14px 16px 0;
    border-left: 0;
    border-top: 1px solid var(--border);
    margin-left: 0;
  }
  .stats-strip__cell:first-child {
    border-top: 0;
  }
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.kill-signal {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: var(--control-radius);
  background: var(--kill-bg);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.kill-signal__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--kill-fg);
  flex: none;
  animation: kill-blink 1.4s ease-in-out infinite;
}
@keyframes kill-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.kill-signal__text {
  font: 600 12.5px / 1.5 var(--mono);
  letter-spacing: 0.02em;
  color: var(--kill-fg);
}
@media (prefers-reduced-motion: reduce) {
  .kill-signal__dot {
    animation: none;
  }
}

.not-enforced {
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: var(--control-radius);
  background: var(--honest-bg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.not-enforced__tag {
  font: 600 10px / 1 var(--mono);
  letter-spacing: 0.1em;
  color: var(--honest-fg);
  text-transform: uppercase;
}
.not-enforced__body {
  font: 400 12.5px / 1.55 var(--font);
  color: var(--honest-fg);
  text-wrap: pretty;
}
.not-enforced__code {
  font: 400 11.5px / 1.5 var(--mono);
  color: var(--honest-fg);
  background: rgb(0 0 0 / 0.18);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 2px;
}
[data-theme="light"] .not-enforced__code {
  background: rgb(0 0 0 / 0.08);
}

.routing-surface {
  margin-top: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.routing-surface__head {
  padding: 14px 18px;
  border-bottom: var(--divider) solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--bg);
}
.routing-surface__title {
  font: 600 11px / 1 var(--mono);
  letter-spacing: 0.1em;
  color: var(--muted);
}
.routing-surface__hint {
  font: 400 12px / 1.5 var(--font);
  color: var(--muted);
}
.routing-surface__row {
  display: grid;
  grid-template-columns: minmax(180px, 2fr) minmax(70px, auto) minmax(180px, 2.4fr);
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.routing-surface__row:last-child {
  border-bottom: 0;
}
.routing-surface__path {
  font: 400 12.5px / 1.5 var(--mono);
  color: var(--text);
  word-break: break-all;
}
.routing-surface__status {
  font: 600 11.5px / 1.5 var(--mono);
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  text-align: center;
  justify-self: start;
}
.routing-surface__status--2xx {
  color: var(--accent);
  background: var(--accent-surface);
}
.routing-surface__status--4xx {
  color: var(--honest-fg);
  background: var(--honest-bg);
}
.routing-surface__status--kill {
  color: var(--kill-fg);
  background: var(--kill-bg);
}
.routing-surface__note {
  font: 400 12.5px / 1.55 var(--font);
  color: var(--secondary);
  text-wrap: pretty;
}
.routing-surface__foot {
  padding: 14px 18px;
  background: var(--bg);
  font: 400 12.5px / 1.7 var(--mono);
  color: var(--muted);
  text-wrap: pretty;
}
.routing-surface__foot code {
  color: var(--secondary);
}
@media (max-width: 767px) {
  .routing-surface__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 16px;
  }
  .routing-surface__status {
    justify-self: start;
  }
}
@media (min-width: 1600px) {
  .hero__grid {
    min-height: 440px;
  }
}
@media (max-width: 1150px) {
  .nav__links {
    gap: 18px;
  }
  .nav__inner {
    gap: 20px;
  }
  .container {
    width: calc(100% - 64px);
  }
  .hero h1 {
    font-size: 5.4vw;
  }
  .hero__art {
    margin-right: 0;
  }
  .architecture {
    grid-template-columns: 1fr 40px 1.3fr 40px 1fr;
    padding: 22px;
  }
  .architecture__node code {
    display: none;
  }
  .problem__grid,
  .pricing__grid {
    gap: 60px;
  }
  .setup__grid {
    gap: 40px;
  }
  .feature--main {
    gap: 40px;
  }
  .threshold {
    padding-left: 40px;
  }
  .challenge {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .nav__links {
    gap: 14px;
  }
  .nav__link {
    font-size: 11px;
  }
  .nav__github span,
  .nav__github > .icon:last-child {
    display: none;
  }
  .nav__github {
    min-width: 40px;
    padding: 10px;
  }
  .hero {
    padding-top: 48px;
  }
  .hero__grid {
    min-height: 355px;
  }
  .hero__description {
    font-size: 15px;
  }
  .hero__actions {
    gap: 8px;
  }
  .hero__actions .button {
    font-size: 12px;
    padding: 11px 14px;
  }
  .section {
    padding-block: 76px;
  }
  .problem {
    padding-top: 90px;
  }
  .problem__grid {
    gap: 44px;
  }
  .problem .section-heading h2 {
    font-size: 36px;
  }
  .release-note {
    flex-wrap: wrap;
    font-size: 10px;
  }
  .release-note a {
    margin-left: 0;
  }
  .feature--main {
    padding: 30px;
    gap: 30px;
  }
  .threshold {
    padding-left: 30px;
  }
  .threshold__number {
    font-size: 86px;
  }
  .threshold__number > span {
    display: block;
    margin: 0;
    font-size: 12px;
    letter-spacing: 0;
  }
  .threshold__track {
    gap: 7px;
    font-size: 10px;
  }
  .threshold > p {
    font-size: 10px;
  }
  .setup__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
  }
  .setup .section-heading h2 {
    font-size: 36px;
  }
  .challenge-section {
    padding-top: 0;
  }
  .pricing__grid {
    gap: 40px;
  }
  .price-card {
    padding: 26px;
  }
  .price-card__top {
    gap: 10px;
  }
  .footer__inner {
    flex-wrap: wrap;
  }
  .footer__links {
    gap: 18px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .nav__inner {
    height: 68px;
    gap: 12px;
  }
  .nav__actions {
    gap: 4px;
  }
  .logo {
    font-size: 18px;
  }
  .menu-toggle {
    display: grid;
  }
  .nav__links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    z-index: 21;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px 22px;
    box-shadow: var(--shadow);
  }
  .nav__links.is-open {
    display: grid;
    gap: 2px;
  }
  .nav__link {
    font-size: 15px;
    padding: 8px 12px;
    min-height: 48px;
    border-radius: 6px;
  }
  .nav__link:hover {
    background: var(--surface);
  }
  .nav__link[aria-current]::after {
    display: none;
  }
  .menu-toggle[aria-expanded="true"] .menu-open {
    display: none;
  }
  .menu-toggle[aria-expanded="true"] .menu-close {
    display: block;
  }
  .hero {
    padding-top: 44px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }
  .hero__copy {
    padding-bottom: 0;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(40px, 8.5vw, 62px);
    white-space: normal;
    letter-spacing: -0.055em;
  }
  .hero__description {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 23px;
    max-width: 430px;
  }
  .hero__actions {
    margin-top: 26px;
    gap: 8px;
  }
  .hero__actions .button {
    font-size: 13px;
    min-height: 48px;
    padding: 12px 15px;
  }
  .hero__art {
    margin: 8px auto 0;
    width: min(100%, 520px);
    max-height: 320px;
    display: flex;
    align-items: center;
  }
  .hero__art img {
    mask-image: linear-gradient(
      to bottom,
      transparent,
      #000 10%,
      #000 85%,
      transparent
    );
  }
  [data-theme="light"] .hero__art {
    margin: 30px auto 8px;
  }
  .architecture {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
    margin-top: 10px;
    border-radius: var(--radius);
  }
  .architecture__node {
    gap: 14px;
  }
  .architecture__node strong {
    font-size: 13px;
  }
  .architecture__node span {
    font-size: 11px;
  }
  .architecture__node code {
    display: block;
    font-size: 9px;
  }
  .architecture__connector {
    height: 18px;
    padding: 0;
    margin-left: 4px;
    transform: rotate(90deg);
    width: 16px;
  }
  .architecture__connector::before {
    display: none;
  }
  .architecture__connector .icon {
    margin: 0;
  }
  .release-note {
    font-size: 11px;
    align-items: start;
    line-height: 1.8;
    gap: 8px;
  }
  .release-note .status {
    margin-top: 2px;
  }
  .release-note a {
    width: 100%;
    margin-top: 3px;
    min-height: 30px;
  }
  .section {
    padding-block: 64px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading h2,
  .problem .section-heading h2,
  .setup .section-heading h2 {
    font-size: 36px;
  }
  .section-heading > p:not(.eyebrow) {
    font-size: 15px;
    margin-top: 20px;
  }
  .problem__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .problem .section-heading h2 br:nth-of-type(2) {
    display: none;
  }
  .problem__item {
    gap: 18px;
  }
  .problem__item h3 {
    font-size: 18px;
  }
  .problem__item p {
    font-size: 14px;
  }
  .problem__items {
    gap: 22px;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature {
    padding: 26px;
  }
  .feature--main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feature--main h3 {
    font-size: 28px;
  }
  .feature h3 {
    font-size: 24px;
  }
  .feature p {
    font-size: 14px;
  }
  .threshold {
    padding: 25px 0 0;
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  }
  .threshold__number {
    font-size: 84px;
  }
  .threshold__number > span {
    display: inline-block;
    margin-left: 16px;
  }
  .threshold__track {
    font-size: 11px;
    gap: 12px;
    margin-top: 6px;
  }
  .threshold > p {
    max-width: none;
    font-size: 11px;
  }
  .feature__foot {
    margin-top: 24px;
  }
  .demo-section .section-heading h2 {
    font-size: 46px;
  }
  .demo-shell {
    border-radius: 12px;
  }
  .demo-shell__bar {
    padding: 14px 16px;
    gap: 8px;
  }
  .demo-shell__bar > span {
    font-size: 10px;
    gap: 7px;
  }
  .demo-shell__bar > a {
    font-size: 10px;
    gap: 4px;
  }
  .demo-shell__bar .icon {
    width: 14px;
    height: 14px;
  }
  iframe {
    height: 940px;
  }
  .demo-caption {
    font-size: 11px;
    line-height: 1.8;
  }
  .setup__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .setup__steps {
    gap: 20px;
    margin-top: 28px;
  }
  .setup__tabs {
    padding: 8px;
  }
  .setup__tabs button {
    padding: 8px 10px;
  }
  [role="tabpanel"] {
    padding: 20px;
    min-height: 260px;
  }
  .code-heading {
    gap: 8px;
    font-size: 10px;
  }
  .copy-button {
    min-height: 40px;
  }
  pre {
    font-size: 11px;
  }
  .setup__foot {
    padding: 16px 20px;
  }
  .challenge-section {
    padding-block: 8px 32px;
  }
  .challenge {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px;
  }
  .challenge h2 {
    font-size: 34px;
  }
  .challenge__intro > p {
    margin-top: 12px;
  }
  .challenge__body {
    font-size: 13px;
  }
  .pricing__grid {
    gap: 32px;
  }
  .price-card {
    padding: 26px;
  }
  .price-card__top h3 {
    font-size: 19px;
  }
  .price > strong {
    font-size: 76px;
  }
  .price-list {
    gap: 18px;
  }
  .price-list li {
    font-size: 13px;
  }
  .price-card > p {
    font-size: 11px;
  }
  .closing {
    padding-block: 60px;
  }
  .closing h2 {
    font-size: 42px;
  }
  .text-link--large {
    font-size: 17px;
    margin-top: 22px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer__links {
    gap: 24px;
  }
  .footer p {
    font-size: 11px;
  }
  .footer {
    padding-block: 28px;
  }
  .toast {
    bottom: 18px;
    width: max-content;
  }
}
@media (max-width: 374px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero__actions {
    align-items: stretch;
  }
  .hero__actions .button {
    font-size: 12px;
    padding-inline: 12px;
  }
  .nav__github {
    display: none;
  }
  .architecture__node code {
    display: none;
  }
  .hero__art {
    max-height: 230px;
  }
  .demo-shell__bar {
    padding-inline: 12px;
  }
  .demo-shell__bar > span {
    font-size: 9px;
  }
  .demo-shell__bar > a {
    font-size: 9px;
  }
  .price-card {
    padding: 22px;
  }
  .price-list li {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .nav,
  .hero__actions,
  .toast,
  .copy-button,
  .menu-toggle {
    display: none;
  }
  .section {
    padding-block: 30px;
  }
  .hero {
    padding-top: 0;
  }
  .hero__art {
    max-height: 200px;
  }
  .container {
    width: 100%;
  }
  .demo-shell {
    box-shadow: none;
  }
  .footer {
    margin-top: 20px;
  }
}

.logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
