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

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

:root {
  color-scheme: light;
  --paper: #f7f6f5;
  --surface: #fcfcfb;
  --ink: #171717;
  --muted: #646363;
  --line: #d1d0d0;
  --line-faint: #e8e6e3;
  --orange: #ef5b0e;
  --success: #2b9151;
  --header-h: 72px;
  --edge: clamp(28px, 4.2vw, 68px);
  --content: 1536px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  background: var(--paper);
}

html[data-route="blog"],
html[data-route="playground"] {
  scroll-snap-type: none;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", "Helvetica Neue", sans-serif;
  font-synthesis: none;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

figure,
dl,
dd,
p,
h1,
h2,
h3,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

svg {
  width: 1em;
  height: 1em;
  stroke-width: 1.6;
}

::selection {
  background: var(--orange);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  font: 600 12px/1 "Geist Mono", monospace;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: var(--header-h);
  padding: 0 var(--edge);
  background: rgba(247, 246, 245, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-faint);
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  width: clamp(128px, 10.4vw, 158px);
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: clamp(24px, 3.1vw, 52px);
}

.desktop-nav a,
.header-link {
  position: relative;
  font-size: 13px;
  font-weight: 540;
  letter-spacing: -0.01em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
}

.header-link svg {
  font-size: 15px;
  transition: transform 200ms var(--ease);
}

.header-link:hover svg {
  transform: translate(2px, -2px);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
}

.scroll-progress b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

main {
  position: relative;
}

.screen {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100svh;
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(118px, 13vh, 158px) var(--edge) clamp(54px, 7vh, 88px);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--paper);
  border-bottom: 1px solid var(--line-faint);
}

.screen::after {
  position: absolute;
  right: var(--edge);
  bottom: 0;
  left: var(--edge);
  height: 1px;
  background: var(--line-faint);
  content: "";
}

.screen-meta {
  position: absolute;
  top: calc(var(--header-h) + 19px);
  right: var(--edge);
  left: var(--edge);
  display: flex;
  justify-content: space-between;
  color: #777572;
  font: 500 10px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(44px, 4.25vw, 66px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

h2 {
  font-size: clamp(44px, 4.25vw, 66px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

h3 {
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--orange);
  font: 600 10px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 590;
  letter-spacing: -0.01em;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms var(--ease);
}

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

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

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

.button--outline {
  background: transparent;
}

.button--outline:hover {
  color: var(--orange);
  border-color: var(--orange);
}

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

.screen--hero {
  grid-template-columns: minmax(390px, 0.82fr) minmax(540px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 5.8vw, 98px);
}

.hero-copy {
  align-self: center;
  padding-bottom: 2vh;
}

.hero-lede {
  max-width: 520px;
  margin: clamp(27px, 3.5vh, 40px) 0 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 420;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.runtime-status {
  display: grid;
  grid-template-columns: auto 7px 1fr;
  align-items: center;
  gap: 10px;
  max-width: 390px;
  margin-top: clamp(40px, 7vh, 78px);
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 500 10px/1.3 "Geist Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.runtime-status b {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(43, 145, 81, 0.09);
}

.runtime-status code {
  color: var(--ink);
  font: inherit;
}

.hero-art {
  position: relative;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 850px;
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-color: var(--line);
  content: "";
}

.hero-art::before {
  top: 3%;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

.hero-art::after {
  right: 0;
  bottom: 8%;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.hero-art img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  mix-blend-mode: darken;
}

.hero-art figcaption,
.scenario-art figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 500 10px/1.35 "Geist Mono", monospace;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.screen--scenario {
  grid-template-columns: minmax(280px, 0.62fr) minmax(600px, 1.38fr);
  align-items: center;
  gap: clamp(54px, 8vw, 130px);
}

.screen--scenario--reverse {
  grid-template-columns: minmax(520px, 1.12fr) minmax(400px, 0.88fr);
}

.screen--scenario--reverse .scenario-copy {
  grid-column: 2;
  grid-row: 1;
}

.screen--scenario--reverse .scenario-art {
  grid-column: 1;
  grid-row: 1;
}

.scenario-copy {
  align-self: center;
}

.scenario-copy > p,
.product-copy > p,
.lan-copy > p,
.advantages-copy > p,
.cta-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
  letter-spacing: -0.018em;
}

.scenario-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: clamp(34px, 6vh, 66px);
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font: 550 11px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.scenario-note svg {
  color: var(--orange);
  font-size: 17px;
}

.scenario-art {
  align-self: center;
  min-width: 0;
}

.scenario-art img {
  width: 100%;
  max-height: 61vh;
  object-fit: contain;
}

.screen--scenario--reverse .scenario-art img {
  mix-blend-mode: darken;
}

.scenario-art--edge img {
  max-height: 53vh;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--orange);
  font: 650 12px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen--cost {
  grid-template-columns: minmax(620px, 1.28fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(52px, 6vw, 104px);
}

.cost-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.cost-copy > p:last-child {
  max-width: 480px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
  letter-spacing: -0.018em;
}

.cost-comparison {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(18px, 2vw, 30px);
  min-width: 0;
}

.cost-option {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.cost-option figure {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.cost-option img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  mix-blend-mode: darken;
}

.cost-option figcaption {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 10px;
  color: #5f5b57;
  background: rgba(247, 246, 245, 0.88);
  border: 1px solid rgba(30, 29, 28, 0.12);
  font: 620 9px/1 "Geist Mono", monospace;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.cost-option > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 12px;
  padding: 17px 18px 18px;
  border-top: 1px solid var(--line);
}

.cost-option small {
  align-self: end;
  color: var(--muted);
  font: 550 9px/1.25 "Geist Mono", monospace;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.cost-option strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: clamp(27px, 2.45vw, 38px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.05em;
}

.cost-option span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.cost-option--server strong,
.cost-option--server span {
  color: #686461;
}

.cost-option--prima {
  border-color: rgba(239, 91, 14, 0.42);
  box-shadow: 0 18px 42px rgba(239, 91, 14, 0.08);
}

.cost-option--prima > div {
  border-top-color: var(--orange);
}

.cost-option--prima figcaption {
  color: var(--orange);
  border-color: rgba(239, 91, 14, 0.28);
}

.cost-option--prima small,
.cost-option--prima strong {
  color: var(--orange);
}

.screen--scale {
  grid-template-columns: minmax(310px, 0.72fr) minmax(620px, 1.28fr);
  align-items: center;
  gap: clamp(54px, 8vw, 130px);
}

.scale-copy {
  align-self: center;
}

.scale-kicker {
  margin-bottom: 18px;
  color: var(--orange);
  font: 650 12px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scale-copy > p:last-child {
  max-width: 460px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
  letter-spacing: -0.018em;
}

.scale-visual {
  align-self: center;
  min-width: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.upgrade-card header > span,
.upgrade-card header small {
  font-family: "Geist Mono", monospace;
  text-transform: uppercase;
}

.scale-upgrades {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--line);
  gap: 1px;
}

.upgrade-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: clamp(206px, 25vh, 250px);
  padding: clamp(17px, 1.7vw, 24px);
  background: var(--paper);
}

.upgrade-card header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
}

.upgrade-card header > span,
.upgrade-card header small {
  color: var(--muted);
  font-size: clamp(10px, 0.78vw, 12px);
  font-style: normal;
  font-weight: 620;
  letter-spacing: 0.065em;
}

.upgrade-card header > span {
  color: var(--orange);
}

.upgrade-card header strong {
  grid-column: 1 / -1;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 620;
  letter-spacing: -0.045em;
}

.upgrade-card header strong i {
  margin-inline: 0.12em;
  color: var(--orange);
  font-style: normal;
  font-weight: 430;
}

.upgrade-graphic {
  position: relative;
  flex: 1;
  min-height: 78px;
  margin-top: 15px;
}

.upgrade-graphic--model {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-inline: 5%;
}

.upgrade-graphic--model::before {
  position: absolute;
  right: 5%;
  bottom: 0;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--orange));
  content: "";
}

.upgrade-graphic--model i {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  background: var(--paper);
  border: 1px solid rgba(239, 91, 14, 0.4);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(239, 91, 14, 0.05);
}

.upgrade-graphic--model i:nth-child(1) { width: 18px; }
.upgrade-graphic--model i:nth-child(2) { width: 34px; background: rgba(239, 91, 14, 0.12); }
.upgrade-graphic--model i:nth-child(3) { width: 54px; background: rgba(239, 91, 14, 0.35); }
.upgrade-graphic--model i:nth-child(4) { width: 82px; background: var(--orange); box-shadow: 0 12px 28px rgba(239, 91, 14, 0.18); }

.upgrade-graphic--speed {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 8px 7px;
  padding-right: 4px;
}

.upgrade-graphic--speed::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--line), var(--line)) 0 25% / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(239, 91, 14, 0.35), var(--orange)) 0 75% / 100% 1px no-repeat;
  content: "";
}

.upgrade-graphic--speed i {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 13px;
  height: 13px;
  background: #aaa7a3;
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #aaa7a3;
}

.upgrade-graphic--speed i:nth-child(1) { grid-column: 1; grid-row: 1; }
.upgrade-graphic--speed i:nth-child(2) { grid-column: 5; grid-row: 1; }
.upgrade-graphic--speed i:nth-child(3) { grid-column: 9; grid-row: 1; }
.upgrade-graphic--speed i:nth-child(4) { grid-column: 1; grid-row: 2; }
.upgrade-graphic--speed i:nth-child(5) { grid-column: 2; grid-row: 2; }
.upgrade-graphic--speed i:nth-child(6) { grid-column: 3; grid-row: 2; }
.upgrade-graphic--speed i:nth-child(7) { grid-column: 4; grid-row: 2; }
.upgrade-graphic--speed i:nth-child(8) { grid-column: 5; grid-row: 2; }
.upgrade-graphic--speed i:nth-child(9) { grid-column: 6; grid-row: 2; }
.upgrade-graphic--speed i:nth-child(10) { grid-column: 7; grid-row: 2; }
.upgrade-graphic--speed i:nth-child(11) { grid-column: 8; grid-row: 2; }
.upgrade-graphic--speed i:nth-child(12) { grid-column: 9; grid-row: 2; }
.upgrade-graphic--speed i:nth-child(n + 4) {
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.upgrade-graphic--context {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 2px;
}

.upgrade-graphic--context i {
  display: block;
  height: 10px;
  background:
    repeating-linear-gradient(90deg, rgba(239, 91, 14, 0.2) 0 7px, transparent 7px 10px),
    linear-gradient(90deg, rgba(239, 91, 14, 0.07), rgba(239, 91, 14, 0.17));
  border-left: 2px solid var(--orange);
}

.upgrade-graphic--context i:nth-child(1) { width: 18%; opacity: 0.4; }
.upgrade-graphic--context i:nth-child(2) { width: 36%; opacity: 0.55; }
.upgrade-graphic--context i:nth-child(3) { width: 56%; opacity: 0.7; }
.upgrade-graphic--context i:nth-child(4) { width: 78%; opacity: 0.85; }
.upgrade-graphic--context i:nth-child(5) { width: 100%; }

.upgrade-graphic--precision {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 9px;
}

.upgrade-graphic--precision i {
  border: 1px solid var(--line);
  background-color: rgba(239, 91, 14, 0.04);
  background-image:
    linear-gradient(rgba(239, 91, 14, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 91, 14, 0.3) 1px, transparent 1px);
}

.upgrade-graphic--precision i:nth-child(1) { background-size: 24px 24px; }
.upgrade-graphic--precision i:nth-child(2) { background-size: 14px 14px; background-color: rgba(239, 91, 14, 0.08); }
.upgrade-graphic--precision i:nth-child(3) { background-size: 8px 8px; background-color: rgba(239, 91, 14, 0.13); }
.upgrade-graphic--precision i:nth-child(4) { background-size: 4px 4px; background-color: rgba(239, 91, 14, 0.22); border-color: var(--orange); }

.screen--cards {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  gap: clamp(30px, 4vh, 46px);
  padding-top: clamp(104px, 11vh, 132px);
  padding-bottom: clamp(38px, 5vh, 62px);
}

.cards-heading {
  max-width: 940px;
}

.cards-heading h2 {
  font-size: clamp(42px, 3.65vw, 58px);
}

.cards-heading > p:last-child {
  max-width: 680px;
  margin-top: 17px;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.45;
  letter-spacing: -0.016em;
}

@media (min-width: 901px) {
  .screen--features .cards-heading > p:last-child {
    max-width: none;
    white-space: nowrap;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  min-width: 0;
}

.story-card {
  min-width: 0;
  padding-top: 17px;
  border-top: 1px solid var(--ink);
}

.story-card figure {
  display: grid;
  place-items: center;
  height: clamp(215px, 29vh, 285px);
  margin-bottom: 18px;
  overflow: hidden;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
}

.story-card > span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font: 620 clamp(11px, 0.82vw, 13px)/1.2 "Geist Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-card h3 {
  font-size: clamp(22px, 1.75vw, 28px);
}

.story-card > p {
  max-width: 390px;
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
  letter-spacing: -0.012em;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.92fr) minmax(0, 1.16fr);
  gap: 1px;
  min-width: 0;
  overflow: hidden;
  background: var(--line);
  border-top: 1px solid var(--orange);
  border-bottom: 1px solid var(--ink);
}

.feature-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: clamp(330px, 42vh, 390px);
  background: var(--paper);
}

.feature-panel header,
.feature-panel > div {
  padding: clamp(20px, 2.1vw, 30px);
}

.feature-panel header {
  border-bottom: 1px solid var(--line);
}

.feature-panel--join header {
  color: var(--orange);
  background: rgba(239, 91, 14, 0.055);
}

.feature-panel--heal header {
  background: rgba(30, 29, 28, 0.032);
}

.feature-panel header span {
  font: 620 clamp(11px, 0.82vw, 13px)/1.2 "Geist Mono", monospace;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.feature-panel > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: start;
}

.feature-panel h3 {
  font-size: clamp(22px, 1.85vw, 29px);
}

.feature-panel p {
  max-width: 410px;
  margin-top: 11px;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
}

.feature-panel--connect {
  color: var(--ink);
  background: #fbf7f3;
}

.feature-panel--connect header {
  color: var(--ink);
  background: #f5e9df;
  border-bottom-color: var(--line);
}

.feature-panel--connect header span {
  color: var(--orange);
}

.feature-panel--connect > div {
  border-bottom: 0;
}

.feature-panel--connect p {
  color: var(--muted);
}

@media (min-width: 1100px) {
  .feature-panel--connect h3 {
    font-size: clamp(20px, 1.6vw, 24px);
    letter-spacing: -0.045em;
    white-space: nowrap;
  }
}

.blog-view {
  width: 100%;
  min-height: 100svh;
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(124px, 14vh, 160px) var(--edge) clamp(72px, 9vh, 108px);
  background: var(--paper);
}

.blog-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.blog-index__header {
  max-width: 880px;
  padding-bottom: clamp(42px, 6vh, 62px);
  border-bottom: 1px solid var(--ink);
}

.blog-index__header h1 {
  margin-top: 14px;
}

.blog-index__header > p:last-child {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.018em;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  margin-top: clamp(40px, 6vh, 64px);
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 2px solid var(--orange);
  transition: border-color 180ms ease, transform 180ms ease;
}

.blog-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.blog-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.2vw, 30px);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font: 600 9px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-top: 19px;
  font-size: clamp(26px, 2.25vw, 35px);
  line-height: 1.02;
  letter-spacing: -0.048em;
}

.blog-card__content > p {
  margin-top: 17px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.blog-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 26px;
  color: var(--orange);
  font: 620 10px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.blog-card__link b {
  font-size: 18px;
  font-weight: 400;
}

.blog-post {
  width: min(100%, 820px);
  margin: 0 auto;
}

.blog-back {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: clamp(42px, 6vh, 64px);
  color: var(--muted);
  font: 600 10px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.blog-back:hover,
.blog-post__footer a:hover {
  color: var(--orange);
}

.blog-post__header {
  padding-bottom: clamp(40px, 6vh, 58px);
  border-bottom: 1px solid var(--line);
}

.blog-post__header h1 {
  margin-top: 23px;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 0.97;
  letter-spacing: -0.058em;
}

.blog-post__header > p {
  margin-top: 27px;
  color: var(--muted);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.5;
}

.blog-post__body {
  padding-top: clamp(42px, 7vh, 64px);
}

.blog-post__body > p {
  margin-top: 22px;
  color: #353433;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.72;
}

.blog-post__body > p:first-child {
  margin-top: 0;
}

.blog-post__body h2 {
  margin-top: clamp(45px, 7vh, 68px);
  font-size: clamp(29px, 2.8vw, 40px);
  line-height: 1.08;
}

.blog-post__body blockquote {
  margin: clamp(44px, 7vh, 66px) 0;
  padding: 4px 0 4px 24px;
  color: var(--ink);
  border-left: 2px solid var(--orange);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 520;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.blog-post__footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(58px, 9vh, 88px);
  padding-top: 21px;
  border-top: 1px solid var(--ink);
}

.blog-post__footer a {
  font: 620 10px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.screen--product {
  grid-template-columns: minmax(290px, 0.56fr) minmax(620px, 1.44fr);
  align-items: center;
  gap: clamp(46px, 6vw, 96px);
}

.product-copy {
  align-self: center;
}

.flow-key {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  max-width: 330px;
  margin-top: clamp(37px, 6vh, 64px);
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 500 9px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.flow-key li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.key-line {
  width: 22px;
  height: 1px;
  background: var(--line);
}

.key-line--active {
  background: var(--orange);
}

.key-node {
  width: 7px;
  height: 7px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.key-node--join {
  background: var(--success);
  border-color: var(--success);
}

.key-node--leave {
  background: transparent;
  border-color: #9c9a97;
}

.inference-visual {
  align-self: center;
  min-width: 0;
  padding: clamp(34px, 5vw, 58px) 0 0;
  border-top: 1px solid var(--ink);
}

.inference-track {
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(390px, 1.7fr) minmax(175px, 0.72fr);
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.io-block {
  min-width: 0;
}

.io-block > span,
.lan-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font: 550 9px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.io-block code {
  display: block;
  min-height: 88px;
  padding: 17px;
  background: var(--ink);
  color: #fff;
  font: 450 12px/1.55 "Geist Mono", monospace;
}

.io-block--input code::after {
  display: inline-block;
  width: 1px;
  height: 1.15em;
  margin-left: 3px;
  background: var(--orange);
  vertical-align: -0.2em;
  content: "";
  animation: cursorBlink 1s steps(1) infinite;
}

.output-tokens {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 5px 6px;
  min-height: 88px;
  padding: 17px;
  border: 1px solid var(--ink);
}

.output-tokens b {
  font: 500 12px/1.45 "Geist Mono", monospace;
}

.compute-chain {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(76px, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
  min-width: 0;
}

.token-rail {
  position: absolute;
  top: 50%;
  right: 4%;
  left: 4%;
  z-index: 0;
  display: block;
  height: 1px;
  background: var(--line);
}

.token-rail::before {
  position: absolute;
  inset: 0;
  background: var(--orange);
  content: "";
  opacity: 0.9;
  transform: scaleX(0.22);
  transform-origin: left;
}

.token-train {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 4;
  display: flex;
  gap: 3px;
  width: max-content;
  transform: translate3d(0, -50%, 0);
  will-change: transform, opacity;
}

.token-train i {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

.compute-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 13px 7px;
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
}

.compute-node svg {
  margin-bottom: 8px;
  font-size: 26px;
}

.compute-node strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
}

.compute-node span {
  margin-top: 4px;
  color: var(--muted);
  font: 500 8px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.membership-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: clamp(40px, 6vh, 66px) 0 0;
}

.membership-event {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 15px 12px 15px 17px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-faint);
}

.membership-event > svg {
  font-size: 25px;
}

.membership-event strong,
.membership-event span {
  display: block;
}

.membership-event strong {
  font-size: 12px;
  font-weight: 600;
}

.membership-event div span {
  margin-top: 4px;
  color: var(--muted);
  font: 500 9px/1.2 "Geist Mono", monospace;
  text-transform: uppercase;
}

.event-line {
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 1px;
  background: #999793;
}

.membership-event--join .event-line {
  background: var(--success);
}

.motion-controls {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
}

.motion-controls button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 13px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  font: 550 10px/1 "Geist Mono", monospace;
  text-transform: uppercase;
}

.motion-controls button:hover:not(:disabled) {
  border-color: var(--ink);
}

.motion-controls button:disabled {
  color: var(--muted);
  cursor: default;
}

.motion-controls button svg {
  font-size: 14px;
}

.play-icon {
  display: none;
}

.motion-scene.is-paused .pause-icon {
  display: none;
}

.motion-scene.is-paused .play-icon {
  display: block;
}

.endpoint-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--muted);
  font: 500 9px/1.2 "Geist Mono", monospace;
  text-transform: uppercase;
}

.endpoint-status svg {
  color: var(--success);
  font-size: 15px;
}

.screen--lan {
  grid-template-columns: minmax(330px, 0.68fr) minmax(640px, 1.32fr);
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
}

.lan-copy {
  align-self: center;
}

.motion-controls--inline {
  margin-top: clamp(36px, 6vh, 66px);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.lan-map {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(120px, 0.54fr) minmax(210px, 1fr);
  align-items: stretch;
  min-width: 0;
  min-height: 350px;
}

.lan-zone {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: clamp(21px, 2.2vw, 32px);
  border: 1px dashed #a9a7a3;
}

.lan-zone::before,
.lan-zone::after {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.lan-zone::before {
  top: -4px;
  left: -4px;
}

.lan-zone::after {
  right: -4px;
  bottom: -4px;
}

.lan-devices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 12px;
}

.lan-devices svg {
  padding: 11px;
  width: clamp(50px, 5vw, 72px);
  height: clamp(50px, 5vw, 72px);
  background: var(--surface);
  border: 1px solid var(--line);
}

.local-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font: 500 8px/1.25 "Geist Mono", monospace;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.local-note svg {
  color: var(--orange);
  font-size: 14px;
}

.lan-bridge {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}

.bridge-route {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  height: 1px;
  background: var(--line);
}

.bridge-route::before {
  position: absolute;
  inset: 0;
  background: var(--orange);
  content: "";
  transform: scaleX(0.18);
  transform-origin: left;
}

.bridge-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
}

.bridge-node svg {
  font-size: 21px;
}

.lan-bridge em {
  position: absolute;
  top: calc(50% + 38px);
  color: var(--muted);
  font: normal 500 8px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.screen--simulation {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  gap: clamp(28px, 4vh, 44px);
  min-height: max(100svh, 800px);
}

.simulation-intro {
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
  align-items: end;
  gap: clamp(50px, 8vw, 128px);
}

.simulation-intro .eyebrow {
  margin-bottom: 12px;
}

.simulation-intro h2 {
  font-size: clamp(39px, 3.6vw, 56px);
}

.simulation-disclosure {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: start;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.simulation-disclosure strong {
  color: var(--orange);
  font: 600 11px/1.35 "Geist Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.simulation-disclosure p {
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.45;
}

.simulator-shell {
  min-width: 0;
  border-top: 1px solid var(--ink);
}

.sim-topology {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(360px, 1.6fr) minmax(210px, 0.7fr);
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  min-width: 0;
  padding: clamp(22px, 3vh, 30px) 0;
  border-bottom: 1px solid var(--line);
}

.sim-device {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

.sim-device--server {
  grid-template-columns: 1fr 54px;
  text-align: right;
}

.sim-device--server > svg {
  order: 2;
}

.sim-device--server > div {
  order: 1;
}

.sim-device > svg {
  width: 54px;
  height: 54px;
  padding: 13px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.sim-device h3 {
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: -0.025em;
}

.sim-device p,
.sim-device div > span {
  display: block;
  color: var(--muted);
  font: 500 12px/1.4 "Geist Mono", monospace;
  letter-spacing: -0.01em;
}

.sim-device p {
  margin-top: 7px;
  color: var(--ink);
}

.sim-device div > span {
  margin-top: 3px;
}

.sim-zone {
  grid-column: 1 / -1;
  margin-bottom: -2px;
  color: var(--orange);
  font: 550 8px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.sim-device--server .sim-zone {
  text-align: right;
}

.sim-path {
  position: relative;
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 108px;
  padding-bottom: 42px;
}

.sim-path-line {
  position: absolute;
  top: 24px;
  right: 5%;
  left: 5%;
  z-index: 0;
  display: block;
  height: 1px;
  background: var(--line);
}

.sim-route-summary {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: center;
  padding: 15px 18px;
  background: var(--paper);
  color: var(--ink);
  font: 550 12px/1.2 "Geist Mono", monospace;
  white-space: nowrap;
}

.sim-route-summary span {
  margin: 0 8px;
  color: var(--orange);
}

.sim-path-line::before {
  position: absolute;
  inset: 0;
  background: var(--orange);
  content: "";
  opacity: 0.7;
  transform: scaleX(0.18);
  transform-origin: left;
}

.sim-path-line b {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
}

.sim-hops {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.3vw, 19px);
}

.sim-hops li {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font: 500 8px/1.25 "Geist Mono", monospace;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
}

.sim-hops svg {
  width: 40px;
  height: 40px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
}

.sim-hops.sr-only {
  position: absolute;
  display: block;
}

.sim-bandwidth {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 58px);
}

.sim-bandwidth > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.sim-bandwidth dt {
  color: var(--muted);
  font: 500 10px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sim-bandwidth dd {
  font: 600 14px/1.2 "Geist Mono", monospace;
}

.sim-topology figcaption {
  grid-column: 1 / -1;
  padding-top: 12px;
  border-top: 1px solid var(--line-faint);
  color: var(--muted);
  font: 450 8px/1.45 "Geist Mono", monospace;
  letter-spacing: 0.025em;
  text-align: center;
}

.sim-topology figcaption.sr-only {
  position: absolute;
  padding: 0;
  border: 0;
}

.sim-console {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  min-width: 0;
  border-bottom: 1px solid var(--ink);
}

.sim-controls-panel,
.sim-response-panel {
  min-width: 0;
  padding: clamp(22px, 2.5vw, 34px) clamp(22px, 2.8vw, 40px);
}

.sim-controls-panel {
  padding-left: 0;
  border-right: 1px solid var(--line);
}

.sim-response-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-right: 0;
}

.sim-model-line,
.sim-response-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.sim-model-line > span,
.sim-response-head > span:first-child,
.sim-prompt-label {
  color: var(--muted);
  font: 550 11px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sim-model-line strong {
  font: 600 14px/1.2 "Geist Mono", monospace;
}

.sim-switch {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  margin-top: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-faint);
  cursor: pointer;
}

.sim-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  opacity: 0;
}

.sim-switch-track {
  position: relative;
  width: 42px;
  height: 22px;
  background: var(--line);
  border: 1px solid #aaa8a4;
  border-radius: 22px;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.sim-switch-track b {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 220ms var(--ease);
}

.sim-switch input:checked + .sim-switch-track {
  background: var(--orange);
  border-color: var(--orange);
}

.sim-switch input:checked + .sim-switch-track b {
  transform: translateX(19px);
}

.sim-switch input:focus-visible + .sim-switch-track {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.sim-switch input:disabled + .sim-switch-track {
  opacity: 0.5;
}

.sim-switch > span:last-child strong,
.sim-switch > span:last-child small {
  display: block;
}

.sim-switch > span:last-child strong {
  font-size: 14px;
  font-weight: 600;
}

.sim-switch > span:last-child small {
  margin-top: 4px;
  color: var(--muted);
  font: 500 8px/1.25 "Geist Mono", monospace;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.sim-switch-help {
  margin-top: 8px;
  color: var(--muted);
  font: 450 8px/1.4 "Geist Mono", monospace;
}

.sim-prompt-label {
  display: block;
  margin: 15px 0 8px;
}

.sim-controls-panel textarea {
  display: block;
  width: 100%;
  min-height: 92px;
  margin-top: 16px;
  padding: 15px 16px;
  resize: none;
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0;
  font: 450 14px/1.5 "Geist Mono", monospace;
}

.sim-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
}

.sim-actions .button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 14px;
  column-gap: 8px;
  align-items: center;
  min-height: 44px;
  padding-inline: 15px;
}

.sim-actions > button:not(.button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  font: 550 10px/1 "Geist Mono", monospace;
  text-transform: uppercase;
}

.sim-actions button:disabled {
  color: #9b9995;
  cursor: default;
  opacity: 0.62;
}

.sim-actions .sim-action-icon {
  display: grid;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  place-items: center;
}

.sim-actions .sim-run-icon::before {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  content: "";
}

.sim-actions .sim-stop-icon::before {
  width: 9px;
  height: 9px;
  border-radius: 1px;
  background: currentColor;
  content: "";
}

.sim-actions .sim-stop-icon,
.sim-actions .button.is-stop .sim-run-icon {
  display: none;
}

.sim-actions .button.is-stop .sim-stop-icon {
  display: grid;
}

.simulator-shell.is-paused .sim-actions .pause-icon {
  display: none;
}

.simulator-shell.is-paused .sim-actions .play-icon {
  display: block;
}

.sim-response-head {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-faint);
}

.sim-response-head > span:last-child {
  color: var(--success);
  font: 550 10px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.035em;
  text-align: right;
  text-transform: uppercase;
}

.sim-response-head > strong {
  margin-left: auto;
  color: var(--orange);
  font: 700 13px/1.2 "Geist Mono", monospace;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.sim-response-panel.is-measurement-missing .sim-response-head > strong {
  color: #8e8b86;
}

.sim-response {
  min-height: 112px;
  padding: 16px 0 18px;
  overflow-y: auto;
  font: 430 clamp(14px, 1.08vw, 16px)/1.55 "Geist Mono", monospace;
  letter-spacing: -0.01em;
}

.sim-markdown {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.sim-markdown > :first-child {
  margin-top: 0;
}

.sim-markdown > :last-child {
  margin-bottom: 0;
}

.sim-markdown p,
.sim-markdown ul,
.sim-markdown ol,
.sim-markdown blockquote,
.sim-markdown pre,
.sim-markdown table,
.sim-markdown .katex-display {
  margin: 0 0 0.85em;
}

.sim-markdown h1,
.sim-markdown h2,
.sim-markdown h3,
.sim-markdown h4,
.sim-markdown h5,
.sim-markdown h6 {
  margin: 1em 0 0.45em;
  color: var(--ink);
  font-family: "Geist", sans-serif;
  font-weight: 650;
  line-height: 1.2;
}

.sim-markdown h1 {
  font-size: 1.35em;
}

.sim-markdown h2 {
  font-size: 1.22em;
}

.sim-markdown h3,
.sim-markdown h4,
.sim-markdown h5,
.sim-markdown h6 {
  font-size: 1.08em;
}

.sim-markdown strong {
  color: var(--ink);
  font-weight: 600;
}

.sim-markdown em {
  color: var(--ink);
}

.sim-markdown ul,
.sim-markdown ol {
  padding-left: 1.55em;
}

.sim-markdown li + li {
  margin-top: 0.3em;
}

.sim-markdown blockquote {
  padding-left: 0.8em;
  border-left: 2px solid var(--orange);
  color: var(--muted);
}

.sim-markdown code {
  padding: 0.12em 0.28em;
  background: #efede9;
  color: var(--ink);
  font: 500 0.92em/1.45 "Geist Mono", monospace;
}

.sim-markdown pre {
  padding: 0.75em 0.85em;
  overflow-x: auto;
  background: #eceae6;
  border: 1px solid var(--line-faint);
}

.sim-markdown pre code {
  padding: 0;
  background: transparent;
  white-space: pre;
}

.sim-markdown a {
  color: var(--ink);
  text-decoration-color: var(--orange);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.sim-markdown hr {
  margin: 1em 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.sim-markdown table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
}

.sim-markdown th,
.sim-markdown td {
  padding: 0.35em 0.45em;
  border: 1px solid var(--line-faint);
  text-align: left;
}

.sim-markdown th {
  color: var(--ink);
  font-weight: 650;
}

.sim-markdown .katex {
  color: var(--ink);
  font-size: 1.06em;
}

.sim-markdown .katex-display {
  padding: 0.25em 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.sim-stream-cursor {
  display: inline-block;
  width: 1px;
  height: 1.05em;
  margin-left: 3px;
  background: var(--orange);
  vertical-align: -0.14em;
  content: "";
  opacity: 0;
}

.simulator-shell.is-streaming .sim-stream-cursor {
  opacity: 1;
  animation: cursorBlink 1s steps(1) infinite;
}

.sim-response-panel.is-measurement-missing .sim-stream-cursor {
  display: none;
}

.sim-response-panel.is-awaiting-first-token .sim-stream-cursor {
  display: none;
}

.sim-telemetry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-faint);
}

.sim-telemetry > div {
  padding: 10px 12px;
  border-right: 1px solid var(--line-faint);
}

.sim-telemetry > div:first-child {
  padding-left: 0;
}

.sim-telemetry > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.sim-telemetry dt {
  color: var(--muted);
  font: 500 9px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.sim-telemetry dd {
  margin-top: 5px;
  font: 600 14px/1.2 "Geist Mono", monospace;
}

.sim-boundary {
  margin-top: 9px;
  color: var(--muted);
  font: 450 7px/1.45 "Geist Mono", monospace;
  letter-spacing: 0.02em;
}

.sim-boundary.sr-only,
.sim-switch-help.sr-only,
.sim-prompt-label.sr-only,
.sim-switch small.sr-only,
.sim-model-line > span.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;
}

.simulation-intro--playground {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: start;
  gap: 8px;
}

.simulation-intro--playground h2 {
  font-size: clamp(56px, 6vw, 92px);
  letter-spacing: -0.065em;
}

.screen--simulation {
  min-height: auto;
  align-content: start;
}

.sim-topology.sim-topology--devices {
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 0.72fr) minmax(280px, 1fr);
  align-items: stretch;
  gap: clamp(22px, 2.5vw, 40px);
  padding: 26px 0 30px;
}

.sim-machine-card {
  display: grid;
  grid-template-rows: auto minmax(190px, 1fr) auto;
  min-width: 0;
  padding: 20px;
  background: rgba(252, 252, 251, 0.72);
  border: 1px solid var(--line);
}

.sim-machine-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.sim-machine-head > div > span {
  color: var(--orange);
  font: 600 9px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sim-machine-head h3 {
  margin-top: 5px;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.04em;
}

.sim-network-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  font: 550 9px/1 "Geist Mono", monospace;
  text-transform: uppercase;
}

.sim-network-badge svg {
  font-size: 14px;
}

.sim-machine-visual {
  display: grid;
  place-items: center;
  min-height: 190px;
  margin: 10px 0 14px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 58%, rgba(239, 91, 14, 0.08), transparent 45%);
}

.sim-machine-visual img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(23, 23, 23, 0.12));
}

.sim-machine-visual--server img {
  max-height: 230px;
}

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

.sim-machine-specs > div {
  min-width: 0;
  padding: 10px 8px 8px 0;
  border-bottom: 1px solid var(--line-faint);
}

.sim-machine-specs > div:nth-child(even) {
  padding-right: 0;
  padding-left: 10px;
  border-left: 1px solid var(--line-faint);
}

.sim-machine-specs dt {
  color: var(--muted);
  font: 550 8px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sim-machine-specs dd {
  margin-top: 5px;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.25;
}

[data-sim-server-gpu][data-sim-gpu-count="4"] {
  overflow-wrap: normal;
  font-size: 11px;
  white-space: nowrap;
}

.sim-machine-specs dd.is-pending,
.sim-machine-specs dd.is-zero {
  color: #9a9792;
  font-weight: 500;
}

.sim-link-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 100%;
}

.sim-link-line {
  position: absolute;
  top: 50%;
  right: 6%;
  left: 6%;
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0 25%, var(--line) 25% 75%, var(--ink) 75% 100%);
}

.sim-link-line b {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
}

.sim-link-node,
.sim-link-core {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.sim-link-node svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.sim-wifi-router {
  position: relative;
  display: block;
  width: 62px;
  height: 56px;
  margin: 0 !important;
  font: normal normal 0/1 sans-serif !important;
}

.sim-router-antenna {
  position: absolute;
  bottom: 16px;
  width: 2px;
  height: 32px;
  background: linear-gradient(var(--ink), #777);
  border-radius: 2px;
  transform-origin: bottom;
}

.sim-router-antenna--left {
  left: 12px;
  transform: rotate(-10deg);
}

.sim-router-antenna--right {
  right: 12px;
  transform: rotate(10deg);
}

.sim-router-waves {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 42px;
  height: 30px;
  margin: 0 !important;
  transform: translateX(-50%);
}

.sim-router-waves b {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid var(--orange);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sim-router-waves b:nth-child(1) {
  width: 12px;
  height: 12px;
}

.sim-router-waves b:nth-child(2) {
  width: 24px;
  height: 24px;
}

.sim-router-waves b:nth-child(3) {
  width: 36px;
  height: 36px;
}

.sim-router-body {
  position: absolute;
  right: 3px;
  bottom: 3px;
  left: 3px;
  height: 18px;
  margin: 0 !important;
  background: linear-gradient(180deg, #4c4c4c, #1d1d1d 58%, #090909);
  border: 1px solid #050505;
  border-radius: 4px 4px 6px 6px;
  box-shadow: 0 6px 10px rgba(23, 23, 23, 0.2), inset 0 1px rgba(255, 255, 255, 0.22);
}

.sim-router-body b {
  position: absolute;
  top: 7px;
  width: 3px;
  height: 3px;
  background: #63d58a;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(99, 213, 138, 0.72);
}

.sim-router-body b:nth-child(1) { left: 9px; }
.sim-router-body b:nth-child(2) { left: 17px; }
.sim-router-body b:nth-child(3) { left: 25px; background: var(--orange); }
.sim-router-body b:nth-child(4) { right: 9px; }

.sim-link-core.sim-vpn-tunnel {
  position: relative;
  display: block;
  width: 88px;
  height: 72px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.sim-tunnel-ring,
.sim-tunnel-mouth {
  position: absolute;
  bottom: 5px;
  left: 50%;
  border-radius: 50% 50% 12px 12px;
  transform: translateX(-50%);
}

.sim-tunnel-ring {
  width: 66px;
  height: 58px;
  background: #b9b8b5;
  border: 5px solid #deddda;
  box-shadow: inset 0 0 0 1px #8d8b88;
}

.sim-tunnel-ring--rear {
  left: calc(50% + 10px);
  width: 58px;
  height: 50px;
  background: #777572;
  border-color: #aaa8a4;
}

.sim-tunnel-ring--middle {
  left: calc(50% + 4px);
  width: 62px;
  height: 54px;
  background: #95938f;
  border-color: #c5c3bf;
}

.sim-tunnel-mouth {
  display: grid;
  place-items: center;
  align-content: center;
  width: 58px;
  height: 52px;
  background: radial-gradient(circle at 50% 48%, #3d3d3d, #111 68%);
  color: #fff;
  border: 5px solid var(--ink);
  box-shadow: inset 0 0 14px #000, 0 5px 10px rgba(23, 23, 23, 0.18);
}

.sim-tunnel-mouth svg {
  width: 17px;
  height: 17px;
  margin: 0 0 3px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--orange);
}

.sim-tunnel-mouth strong {
  font: 650 7px/1 "Geist Mono", monospace;
  letter-spacing: 0.08em;
}

.sim-network-gateway {
  position: relative;
  display: block;
  width: 76px;
  height: 58px;
  margin: 0 !important;
  font: normal normal 0/1 sans-serif !important;
}

.sim-gateway-body {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 49px;
  height: 37px;
  margin: 0 !important;
  background: linear-gradient(145deg, #fafafa, #c8c7c4);
  border: 1px solid #777572;
  border-radius: 3px;
  box-shadow: 3px 4px 0 #aaa8a4, 0 7px 11px rgba(23, 23, 23, 0.14);
}

.sim-gateway-body b {
  position: absolute;
  bottom: 8px;
  width: 10px;
  height: 8px;
  background: #202020;
  border: 1px solid #000;
  box-shadow: inset 0 2px #575757;
}

.sim-gateway-body b:nth-child(1) { left: 7px; }
.sim-gateway-body b:nth-child(2) { left: 20px; }
.sim-gateway-body b:nth-child(3) { left: 33px; }

.sim-gateway-body i {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 4px;
  height: 4px;
  background: #52c979;
  border-radius: 50%;
  box-shadow: 8px 0 var(--orange), 0 0 4px rgba(82, 201, 121, 0.55);
}

.sim-gateway-cable {
  position: absolute;
  top: 28px;
  right: -24px;
  width: 47px;
  height: 3px;
  margin: 0 !important;
  background: var(--ink);
}

.sim-gateway-cable b {
  position: absolute;
  top: -3px;
  right: 0;
  width: 8px;
  height: 9px;
  background: #3a3a3a;
  border: 1px solid #111;
}

.sim-network-gateway em {
  position: absolute;
  bottom: 0;
  left: 7px;
  color: var(--muted);
  font: normal 600 5px/1 "Geist Mono", monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sim-link-node span {
  margin-top: 9px;
  font: 550 9px/1.2 "Geist Mono", monospace;
}

.sim-link-core {
  align-content: center;
  justify-self: center;
  width: 112px;
  height: 112px;
  padding: 12px;
  background: var(--ink);
  color: #fff;
  border: 8px solid var(--paper);
  border-radius: 50%;
}

.sim-link-core svg {
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 21px;
}

.sim-link-core strong {
  font-size: 12px;
}

.sim-link-core span {
  margin-top: 3px;
  color: #aaa7a2;
  font: 500 8px/1.2 "Geist Mono", monospace;
  text-transform: uppercase;
}

.sim-link-core.sim-vpn-tunnel .sim-tunnel-ring,
.sim-link-core.sim-vpn-tunnel .sim-tunnel-mouth {
  margin: 0;
}

.sim-link-core.sim-vpn-tunnel .sim-tunnel-mouth svg {
  width: 17px;
  height: 17px;
  margin: 0 0 3px;
  color: var(--orange);
}

.sim-link-core.sim-vpn-tunnel .sim-tunnel-mouth strong {
  font-size: 7px;
}

.sim-link-map--generated {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: center;
  gap: 7px;
  min-height: 0;
}

.sim-link-map--generated > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(23, 23, 23, 0.14));
}

.sim-link-legend {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  width: 100%;
  color: var(--ink);
  font: 650 10px/1.2 "Geist Mono", monospace;
  text-align: center;
}

.sim-link-legend span:first-child {
  color: var(--orange);
  text-align: left;
}

.sim-link-legend span:last-child {
  text-align: right;
}

.sim-link-map--generated .sim-link-line {
  display: none;
}

.sim-model-field,
.sim-testbed-field {
  position: relative;
  display: grid;
  gap: 9px;
}

.sim-model-field > span,
.sim-testbed-field > span {
  color: var(--muted);
  font: 550 9px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sim-testbed-field select,
.sim-model-field select,
.sim-prompt-select {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 14px;
  appearance: none;
  background-color: var(--surface);
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 19px) 21px, calc(100% - 14px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font: 600 13px/1.2 "Geist Mono", monospace;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.sim-testbed-field select:hover,
.sim-model-field select:hover,
.sim-prompt-select:hover {
  border-color: var(--ink);
}

.sim-testbed-field select:focus-visible,
.sim-model-field select:focus-visible,
.sim-prompt-select:focus-visible {
  border-color: var(--orange);
  outline: 0;
  box-shadow: 0 0 0 2px rgba(239, 91, 14, 0.16);
}

.sim-testbed-field select {
  padding-left: 17px;
  border-color: var(--ink);
  box-shadow: inset 4px 0 0 var(--orange);
}

.sim-console {
  display: block;
}

.sim-controls-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(150px, 0.36fr) minmax(360px, 1.5fr) 86px;
  align-items: end;
  gap: 12px;
  padding-right: 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.sim-model-cluster {
  display: flex;
  align-items: end;
  gap: 12px;
  min-width: 0;
}

.sim-model-cluster > .sim-model-field {
  flex: 1 1 auto;
  min-width: 0;
}

.sim-model-cluster > .sim-switch {
  flex: 0 0 112px;
}

.sim-controls-panel > .sim-model-cluster {
  grid-column: 1;
  grid-row: 1;
}

.sim-controls-panel > .sim-testbed-field {
  grid-column: 2;
  grid-row: 1;
}

.sim-controls-panel > .sim-prompt-select {
  grid-column: 3;
  grid-row: 1;
  margin-top: 0;
}

.sim-controls-panel > .sim-actions {
  grid-column: 4;
  grid-row: 1;
  margin-top: 0;
}

.sim-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.sim-results .sim-response-panel {
  grid-template-rows: auto minmax(156px, 1fr) auto;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.sim-results .sim-response-panel:first-child {
  padding-left: 0;
}

.sim-results .sim-response-panel:last-child {
  padding-right: 0;
  border-right: 0;
}

.sim-response-panel--prima {
  box-shadow: inset 0 3px 0 var(--orange);
}

.sim-results .sim-response {
  min-height: 156px;
  font-size: clamp(12px, 0.92vw, 14px);
}

.sim-results .sim-telemetry dt {
  font-size: 7px;
}

.sim-results .sim-telemetry dd {
  font-size: 10px;
}

.sim-disclaimer {
  padding: 15px 0 2px;
  color: var(--muted);
  font: 450 9px/1.55 "Geist Mono", monospace;
}

.sim-disclaimer strong {
  color: var(--ink);
  font-weight: 650;
}

.simulator-shell.is-streaming .sim-link-line b:nth-child(1),
.simulator-shell.is-streaming .sim-link-line b:nth-child(2) {
  animation: simPacketForward 2.1s linear infinite;
}

.simulator-shell.is-streaming .sim-link-line b:nth-child(2) {
  animation-delay: 0.7s;
}

.simulator-shell.is-streaming .sim-link-line b:nth-child(3),
.simulator-shell.is-streaming .sim-link-line b:nth-child(4) {
  right: 0;
  left: auto;
  animation: simPacketReverse 2.4s linear infinite;
}

.simulator-shell.is-streaming .sim-link-line b:nth-child(4) {
  animation-delay: 0.9s;
}

.simulator-shell.is-paused .sim-link-line b {
  animation-play-state: paused !important;
}

.simulator-shell.is-unavailable .sim-response-head > span:last-child,
.simulator-shell.is-unavailable .sim-response {
  color: var(--muted);
}

.simulator-shell.is-streaming .sim-path-line b:nth-child(1),
.simulator-shell.is-streaming .sim-path-line b:nth-child(2) {
  animation: simPacketForward 2.1s linear infinite;
}

.simulator-shell.is-streaming .sim-path-line b:nth-child(2) {
  animation-delay: 0.7s;
}

.simulator-shell.is-streaming .sim-path-line b:nth-child(3),
.simulator-shell.is-streaming .sim-path-line b:nth-child(4) {
  right: 0;
  left: auto;
  animation: simPacketReverse 2.5s linear infinite;
}

.simulator-shell.is-streaming .sim-path-line b:nth-child(4) {
  animation-delay: 0.85s;
}

.simulator-shell.is-paused .sim-path-line b,
.simulator-shell.is-paused .sim-stream-cursor {
  animation-play-state: paused !important;
}

@keyframes simPacketForward {
  0% {
    left: 0;
    opacity: 0;
  }
  8%,
  90% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 5px);
    opacity: 0;
  }
}

@keyframes simPacketReverse {
  0% {
    right: 0;
    opacity: 0;
  }
  8%,
  90% {
    opacity: 1;
  }
  100% {
    right: calc(100% - 5px);
    opacity: 0;
  }
}

@keyframes simPacketDown {
  0% {
    top: 0;
    opacity: 0;
  }
  8%,
  90% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 5px);
    opacity: 0;
  }
}

@keyframes simPacketUp {
  0% {
    top: calc(100% - 5px);
    opacity: 0;
  }
  8%,
  90% {
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 0;
  }
}

.screen--advantages {
  grid-template-columns: minmax(350px, 0.76fr) minmax(560px, 1.24fr);
  align-items: center;
  gap: clamp(62px, 9vw, 142px);
}

.advantages-copy {
  align-self: center;
}

.advantage-list {
  border-top: 1px solid var(--ink);
}

.advantage-list article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: clamp(23px, 3vw, 46px);
  padding: clamp(25px, 3.8vh, 39px) 0;
  border-bottom: 1px solid var(--line);
}

.advantage-list article > svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
}

.advantage-list article > div {
  display: grid;
  grid-template-columns: 34px minmax(180px, 0.82fr) minmax(220px, 1.18fr);
  align-items: start;
  gap: clamp(16px, 2.2vw, 34px);
}

.advantage-list article span {
  padding-top: 6px;
  color: var(--orange);
  font: 550 9px/1.2 "Geist Mono", monospace;
}

.advantage-list article p {
  padding-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.screen--evidence {
  grid-template-columns: 1fr;
  align-content: center;
  gap: clamp(34px, 5vh, 56px);
}

.evidence-copy {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(500px, 1.58fr);
  align-items: end;
}

.evidence-copy .eyebrow {
  align-self: end;
  margin: 0 0 8px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.evidence-grid > div {
  min-width: 0;
  padding: clamp(23px, 3.4vw, 46px) clamp(15px, 2.4vw, 36px);
  border-right: 1px solid var(--line);
}

.evidence-grid > div:first-child {
  padding-left: 0;
}

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

.evidence-grid dt {
  min-height: 2.05em;
  font-size: clamp(37px, 4vw, 61px);
  font-weight: 560;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.evidence-grid dt span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font: 550 9px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.evidence-grid dd {
  margin-top: 18px;
  color: var(--muted);
  font: 500 10px/1.4 "Geist Mono", monospace;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.development-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(500px, 1.58fr);
  align-items: start;
  padding-top: 5px;
}

.development-note > span {
  color: var(--orange);
  font: 550 9px/1.2 "Geist Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.development-note p {
  max-width: 970px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.evidence-caveat {
  max-width: 900px;
  margin-left: 21%;
  color: var(--muted);
  font: 450 9px/1.5 "Geist Mono", monospace;
}

.screen--cta {
  grid-template-columns: minmax(520px, 1.3fr) minmax(360px, 0.7fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 50px clamp(54px, 9vw, 150px);
}

.cta-copy {
  align-self: center;
}

.cta-actions {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
}

.cta-actions code {
  display: block;
  width: 100%;
  max-width: 500px;
  padding: 18px;
  overflow-x: auto;
  background: var(--ink);
  color: #fff;
  font: 450 11px/1.4 "Geist Mono", monospace;
  white-space: nowrap;
}

.paper-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 560;
}

.paper-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.site-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: end;
  gap: clamp(24px, 4vw, 64px);
  padding-top: 27px;
  border-top: 1px solid var(--ink);
}

.site-footer > a:first-child img {
  width: 135px;
}

.site-footer .product-lockup {
  width: 124px;
  opacity: 0.68;
}

.site-footer nav {
  display: flex;
  justify-self: end;
  gap: 24px;
  font-size: 11px;
}

.site-footer > span {
  color: var(--muted);
  font: 500 9px/1.2 "Geist Mono", monospace;
  white-space: nowrap;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.js .reveal--late {
  transition-delay: 100ms;
}

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

.motion-scene.is-playing:not(.is-paused) .token-rail:not(.is-vertical) .token-train,
.motion-scene.is-playing:not(.is-paused) .bridge-route:not(.is-vertical) .token-train {
  animation: tokenTravelX 5.4s linear infinite;
}

.motion-scene.is-playing:not(.is-paused) .token-rail.is-vertical .token-train,
.motion-scene.is-playing:not(.is-paused) .bridge-route.is-vertical .token-train {
  animation: tokenTravelY 4.8s linear infinite;
}

.motion-scene.is-playing:not(.is-paused) .output-tokens b {
  animation: tokenReveal 5.4s steps(1) infinite;
}

.motion-scene.is-playing:not(.is-paused) .output-tokens b:nth-child(2) {
  animation-delay: 0.32s;
}

.motion-scene.is-playing:not(.is-paused) .output-tokens b:nth-child(3) {
  animation-delay: 0.64s;
}

.motion-scene.is-playing:not(.is-paused) .output-tokens b:nth-child(4) {
  animation-delay: 0.96s;
}

.motion-scene.is-playing:not(.is-paused) .compute-node {
  animation: nodeActivity 5.4s linear infinite;
}

.motion-scene.is-playing:not(.is-paused) .compute-node:nth-child(3) {
  animation-delay: 0.55s;
}

.motion-scene.is-playing:not(.is-paused) .compute-node:nth-child(4) {
  animation-delay: 1.1s;
}

.motion-scene.is-playing:not(.is-paused) .compute-node:nth-child(5) {
  animation-delay: 1.65s;
}

.motion-scene.is-playing:not(.is-paused) .membership-event--leave {
  animation: nodeLeave 5.4s var(--ease) infinite;
}

.motion-scene.is-playing:not(.is-paused) .membership-event--join {
  animation: nodeJoin 5.4s var(--ease) infinite;
}

.motion-scene.is-paused *,
.motion-scene.is-paused *::before,
.motion-scene.is-paused *::after {
  animation-play-state: paused !important;
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}

@keyframes tokenTravelX {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
  }
  8%,
  88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--travel-x, 320px), -50%, 0);
  }
}

@keyframes tokenTravelY {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  8%,
  88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, var(--travel-y, 180px), 0);
  }
}

@keyframes tokenReveal {
  0%,
  42% {
    opacity: 0.18;
  }
  43%,
  94% {
    opacity: 1;
  }
  95%,
  100% {
    opacity: 0.18;
  }
}

@keyframes nodeActivity {
  0%,
  13%,
  34%,
  100% {
    border-color: var(--line);
  }
  18%,
  27% {
    border-color: var(--orange);
  }
}

@keyframes nodeLeave {
  0%,
  54% {
    opacity: 1;
    transform: translateX(0);
  }
  65%,
  82% {
    opacity: 0.28;
    transform: translateX(-10px);
  }
  92%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes nodeJoin {
  0%,
  34% {
    opacity: 0.28;
    transform: translateX(10px);
  }
  46%,
  88% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0.28;
    transform: translateX(10px);
  }
}

@media (max-width: 1180px) {
  .screen--hero,
  .screen--scenario,
  .screen--cost,
  .screen--scale,
  .screen--cards,
  .screen--product,
  .screen--lan,
  .screen--advantages {
    gap: 48px;
  }

  .screen--hero {
    grid-template-columns: minmax(340px, 0.86fr) minmax(460px, 1.14fr);
  }

  .screen--scenario {
    grid-template-columns: minmax(270px, 0.68fr) minmax(480px, 1.32fr);
  }

  .screen--scenario--reverse {
    grid-template-columns: minmax(450px, 1.08fr) minmax(340px, 0.92fr);
  }

  .screen--cost {
    grid-template-columns: minmax(500px, 1.2fr) minmax(330px, 0.8fr);
  }

  .card-grid {
    gap: 24px;
  }

  .screen--scale {
    grid-template-columns: minmax(280px, 0.7fr) minmax(500px, 1.3fr);
  }

  .screen--product,
  .screen--lan {
    grid-template-columns: minmax(280px, 0.65fr) minmax(540px, 1.35fr);
  }

  .simulation-intro {
    grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 1.18fr);
    gap: 48px;
  }

  .sim-topology {
    grid-template-columns: minmax(160px, 0.55fr) minmax(400px, 1.9fr) minmax(160px, 0.55fr);
    gap: 18px;
  }

  .sim-console {
    grid-template-columns: minmax(330px, 0.76fr) minmax(470px, 1.24fr);
  }

  .inference-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .io-block code,
  .output-tokens {
    min-height: 68px;
  }

  .compute-chain {
    order: 2;
  }

  .io-block--output {
    order: 3;
  }

  .advantage-list article > div {
    grid-template-columns: 28px minmax(170px, 0.85fr) minmax(190px, 1.15fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 66px;
    --edge: 28px;
  }

  html {
    scroll-snap-type: y proximity;
  }

  .desktop-nav {
    justify-self: end;
    gap: 24px;
  }

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

  .screen {
    min-height: max(100svh, 780px);
    padding-top: 110px;
    padding-bottom: 54px;
    scroll-snap-stop: normal;
  }

  .screen--hero,
  .screen--scenario,
  .screen--cost,
  .screen--scale,
  .screen--cards,
  .screen--product,
  .screen--lan,
  .screen--simulation,
  .screen--advantages,
  .screen--cta {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 34px;
  }

  .hero-copy,
  .scenario-copy,
  .cost-copy,
  .scale-copy,
  .product-copy,
  .lan-copy,
  .advantages-copy,
  .cta-copy {
    align-self: auto;
  }

  .hero-art,
  .scenario-art {
    justify-self: center;
    max-width: 760px;
  }

  .screen--scale {
    align-content: center;
  }

  .screen--cost {
    min-height: 1040px;
    align-content: start;
  }

  .cost-copy,
  .cost-comparison {
    grid-column: auto;
    grid-row: auto;
  }

  .cost-comparison {
    width: 100%;
    max-width: 760px;
    justify-self: center;
  }

  .screen--cards {
    min-height: 980px;
    align-content: start;
  }

  .screen--scenario--reverse .scenario-copy,
  .screen--scenario--reverse .scenario-art {
    grid-column: auto;
    grid-row: auto;
  }

  .scale-visual {
    width: 100%;
    max-width: 760px;
    justify-self: center;
  }

  .hero-art img {
    max-height: 47vh;
  }

  .scenario-art img,
  .scenario-art--edge img {
    max-height: 45vh;
  }

  .runtime-status,
  .scenario-note,
  .flow-key,
  .motion-controls--inline {
    margin-top: 28px;
  }

  .screen--product,
  .screen--lan {
    min-height: 960px;
    align-content: start;
  }

  .screen--simulation {
    min-height: 1120px;
    align-content: start;
  }

  .simulation-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .simulation-disclosure {
    grid-template-columns: 120px 1fr;
  }

  .sim-topology {
    grid-template-columns: minmax(145px, 0.58fr) minmax(330px, 1.84fr) minmax(145px, 0.58fr);
    gap: 14px;
  }

  .sim-device {
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .sim-device--server {
    grid-template-columns: 1fr 44px;
  }

  .sim-device > svg {
    width: 44px;
    height: 44px;
    padding: 10px;
  }

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

  .sim-controls-panel,
  .sim-response-panel {
    padding-right: 0;
    padding-left: 0;
  }

  .sim-controls-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .inference-visual {
    padding-top: 30px;
  }

  .lan-map {
    min-height: 330px;
  }

  .screen--advantages {
    min-height: 900px;
  }

  .advantages-copy > p {
    max-width: 620px;
  }

  .evidence-copy,
  .development-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .evidence-grid > div:nth-child(3) {
    border-right: 0;
  }

  .evidence-grid > div:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .evidence-caveat {
    margin-left: 0;
  }

  .screen--cta {
    grid-template-rows: auto auto 1fr;
    min-height: 900px;
  }

  .site-footer {
    grid-row: 3;
    grid-template-columns: 1fr 1fr;
    align-self: end;
  }

  .site-footer nav {
    justify-self: start;
  }

  .site-footer > span {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
    --edge: 20px;
  }

  .site-header {
    padding-inline: 20px;
  }

  .brand {
    width: 116px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .header-link {
    font-size: 12px;
  }

  .header-link svg {
    display: none;
  }

  .screen {
    min-height: max(100svh, 720px);
    padding: 104px 20px 42px;
  }

  .screen-meta {
    top: 78px;
    right: 20px;
    left: 20px;
    font-size: 8px;
  }

  h1 {
    font-size: clamp(46px, 13.7vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(37px, 10.8vw, 45px);
    line-height: 0.99;
  }

  .hero-lede,
  .scenario-copy > p,
  .product-copy > p,
  .lan-copy > p,
  .advantages-copy > p,
  .cta-copy > p:not(.eyebrow) {
    margin-top: 21px;
    font-size: 16px;
    line-height: 1.48;
  }

  .button {
    min-height: 46px;
    padding-inline: 16px;
  }

  .screen--hero {
    align-content: start;
    gap: 22px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .actions .button {
    padding-inline: 10px;
    font-size: 11px;
  }

  .hero-lede {
    margin-bottom: 0;
  }

  .runtime-status {
    grid-template-columns: auto 7px 1fr;
    gap: 8px;
    margin-top: 23px;
    padding-top: 11px;
    font-size: 8px;
  }

  .hero-art img {
    max-height: 37vh;
  }

  .hero-art figcaption,
  .scenario-art figcaption {
    gap: 12px;
    padding-top: 9px;
    font-size: 8px;
  }

  .screen--scenario {
    align-content: start;
    gap: 22px;
  }

  .screen--cost {
    min-height: 930px;
    gap: 28px;
  }

  .section-kicker {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .cost-copy > p:last-child {
    margin-top: 20px;
    font-size: 16px;
  }

  .cost-comparison {
    gap: 12px;
  }

  .cost-option > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 11px 10px 12px;
  }

  .cost-option strong {
    grid-column: 1;
    grid-row: auto;
    font-size: 25px;
  }

  .cost-option small {
    min-height: 22px;
    font-size: 8px;
  }

  .cost-option span {
    font-size: 12px;
  }

  .cost-option figcaption {
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    padding: 6px 7px;
    font-size: 7px;
    line-height: 1.25;
  }

  .screen--cards {
    min-height: auto;
    gap: 28px;
    padding-top: 104px;
    padding-bottom: 64px;
  }

  .cards-heading h2 {
    font-size: clamp(37px, 10.8vw, 45px);
  }

  .cards-heading > p:last-child {
    margin-top: 15px;
    font-size: 16px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-card figure,
  .screen--features .story-card figure {
    height: min(62vw, 270px);
    margin-bottom: 14px;
  }

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

  .feature-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-panel header,
  .feature-panel > div {
    padding: 20px;
  }

  .feature-panel header {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-panel header span {
    font-size: 10px;
  }

  .feature-panel > div {
    min-height: 164px;
  }

  .feature-panel h3 {
    font-size: 25px;
  }

  .feature-panel p {
    font-size: 15px;
  }

  .feature-panel--connect {
    display: flex;
  }

  .feature-panel--connect header {
    border-bottom-color: var(--line);
  }

  .story-card h3 {
    font-size: 24px;
  }

  .story-card > p {
    font-size: 15px;
  }

  .story-card > span {
    font-size: 10px;
  }

  .screen--scale {
    align-content: start;
    gap: 30px;
    min-height: max(100svh, 880px);
  }

  .scale-kicker {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .scale-copy > p:last-child {
    margin-top: 20px;
    font-size: 16px;
  }

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

  .upgrade-card {
    min-height: 184px;
    padding: 12px;
  }

  .upgrade-card header > span,
  .upgrade-card header small {
    font-size: 9px;
  }

  .upgrade-card header strong {
    font-size: clamp(16px, 4.5vw, 18px);
  }

  .upgrade-graphic {
    min-height: 66px;
    margin-top: 11px;
  }

  .upgrade-graphic--model {
    padding-inline: 2%;
  }

  .upgrade-graphic--model::before {
    right: 2%;
    left: 2%;
  }

  .upgrade-graphic--model i:nth-child(1) { width: 10px; }
  .upgrade-graphic--model i:nth-child(2) { width: 22px; }
  .upgrade-graphic--model i:nth-child(3) { width: 36px; }
  .upgrade-graphic--model i:nth-child(4) { width: 54px; }

  .upgrade-graphic--speed {
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 4px 2px;
    padding-right: 0;
  }

  .upgrade-graphic--speed i {
    width: 8px;
    height: 8px;
    border-width: 2px;
  }

  .upgrade-graphic--speed i:nth-child(n + 4) {
    height: 8px;
  }

  .upgrade-graphic--precision {
    gap: 4px;
  }

  .scenario-note {
    margin-top: 22px;
    padding-top: 11px;
    font-size: 9px;
  }

  .scenario-art img,
  .scenario-art--edge img {
    max-height: 35vh;
  }

  .screen--product {
    min-height: 1000px;
    gap: 30px;
  }

  .product-copy h2 br,
  .lan-copy h2 br {
    display: none;
  }

  .flow-key {
    gap: 11px 16px;
    margin-top: 24px;
    padding-top: 13px;
    font-size: 8px;
  }

  .inference-visual {
    padding-top: 23px;
  }

  .inference-track {
    gap: 16px;
  }

  .io-block code,
  .output-tokens {
    min-height: 62px;
    padding: 13px;
    font-size: 10px;
  }

  .output-tokens b {
    font-size: 10px;
  }

  .compute-chain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .token-rail {
    top: 50%;
    right: 7%;
    left: 7%;
  }

  .compute-node {
    min-height: 83px;
    padding: 9px 5px;
  }

  .compute-node svg {
    margin-bottom: 5px;
    font-size: 21px;
  }

  .compute-node strong {
    font-size: 10px;
  }

  .compute-node span {
    font-size: 7px;
  }

  .membership-events {
    gap: 8px;
    margin-top: 25px;
  }

  .membership-event {
    grid-template-columns: 23px 1fr;
    gap: 8px;
    min-height: 68px;
    padding: 11px 7px 11px 10px;
  }

  .membership-event > svg {
    font-size: 21px;
  }

  .membership-event strong {
    font-size: 10px;
  }

  .membership-event div span {
    font-size: 7px;
  }

  .motion-controls {
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .motion-controls button {
    min-width: 44px;
    min-height: 44px;
    padding: 0 11px;
    font-size: 8px;
  }

  .endpoint-status {
    flex-basis: 100%;
    margin: 5px 0 0;
    font-size: 8px;
  }

  .screen--lan {
    min-height: 990px;
    gap: 26px;
  }

  .motion-controls--inline {
    margin-top: 22px;
  }

  .lan-map {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(190px, 1fr) 122px minmax(190px, 1fr);
    min-height: 520px;
  }

  .lan-zone {
    padding: 19px;
  }

  .lan-devices svg {
    width: 55px;
    height: 55px;
  }

  .lan-bridge {
    min-height: 122px;
  }

  .bridge-route {
    top: 0;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .bridge-route::before {
    transform: scaleY(0.18);
    transform-origin: top;
  }

  .bridge-route.is-vertical .token-train {
    top: 0;
    left: 50%;
    flex-direction: column;
    transform: translate3d(-50%, 0, 0);
  }

  .lan-bridge em {
    top: 50%;
    left: calc(50% + 34px);
    transform: translateY(-50%);
    white-space: nowrap;
  }

  .screen--simulation {
    min-height: max(100svh, 1180px);
    gap: 30px;
  }

  .simulation-intro {
    gap: 20px;
  }

  .simulation-intro h2 br {
    display: none;
  }

  .simulation-disclosure {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 13px 0;
  }

  .simulation-disclosure p {
    font-size: 15px;
  }

  .sim-topology {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 18px;
  }

  .sim-device,
  .sim-device--server {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 12px 0;
    text-align: left;
  }

  .sim-device--server > svg,
  .sim-device--server > div {
    order: initial;
  }

  .sim-device--server .sim-zone {
    text-align: left;
  }

  .sim-device > svg {
    width: 52px;
    height: 52px;
    padding: 12px;
  }

  .sim-zone {
    margin-bottom: -4px;
  }

  .sim-path {
    min-height: 150px;
    padding: 14px 0 72px;
  }

  .sim-path-line {
    top: 0;
    right: auto;
    bottom: 70px;
    left: 21px;
    width: 1px;
    height: auto;
  }

  .sim-route-summary {
    align-self: center;
    padding: 12px 14px;
    font-size: 11px;
  }

  .sim-path-line::before {
    transform: scaleY(0.18);
    transform-origin: top;
  }

  .sim-path-line b,
  .simulator-shell.is-streaming .sim-path-line b:nth-child(3),
  .simulator-shell.is-streaming .sim-path-line b:nth-child(4) {
    top: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .sim-hops {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sim-hops li {
    grid-template-columns: 42px 1fr;
    align-items: center;
    justify-items: start;
    gap: 13px;
    text-align: left;
  }

  .sim-hops svg {
    width: 42px;
    height: 42px;
  }

  .sim-bandwidth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line-faint);
  }

  .sim-bandwidth > div {
    display: grid;
    gap: 5px;
    padding-top: 12px;
  }

  .sim-console {
    display: block;
  }

  .sim-controls-panel,
  .sim-response-panel {
    padding: 22px 0;
  }

  .sim-model-line {
    display: grid;
    gap: 7px;
  }

  .sim-switch {
    min-height: 62px;
  }

  .sim-controls-panel textarea {
    min-height: 112px;
    font-size: 16px;
  }

  .sim-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sim-actions .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .sim-actions > button:not(.button) {
    min-height: 44px;
  }

  .sim-response-head {
    display: grid;
    gap: 7px;
  }

  .sim-response-head > span:last-child {
    text-align: left;
  }

  .sim-response {
    min-height: 140px;
    padding-block: 18px;
    font-size: 14px;
  }

  .sim-telemetry > div {
    padding: 10px 8px;
  }

  .sim-telemetry dd {
    font-size: 12px;
  }

  .simulator-shell.is-streaming .sim-path-line b:nth-child(1),
  .simulator-shell.is-streaming .sim-path-line b:nth-child(2) {
    animation-name: simPacketDown;
  }

  .simulator-shell.is-streaming .sim-path-line b:nth-child(3),
  .simulator-shell.is-streaming .sim-path-line b:nth-child(4) {
    animation-name: simPacketUp;
  }

  .screen--advantages {
    min-height: 980px;
    gap: 35px;
  }

  .advantage-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .advantage-list article > svg {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .advantage-list article > div {
    grid-template-columns: 28px 1fr;
    gap: 9px;
  }

  .advantage-list article p {
    grid-column: 1 / -1;
    padding-top: 6px;
    font-size: 13px;
  }

  .screen--evidence {
    min-height: 980px;
    align-content: start;
    gap: 27px;
  }

  .evidence-copy {
    gap: 8px;
  }

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

  .evidence-grid > div {
    min-height: 128px;
    padding: 20px 15px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .evidence-grid > div:first-child,
  .evidence-grid > div:nth-child(2) {
    border-top: 0;
  }

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

  .evidence-grid > div:first-child {
    padding-left: 15px;
  }

  .evidence-grid > div:last-child {
    grid-column: 1 / -1;
    padding-right: 15px;
    border-right: 0;
  }

  .evidence-grid dt {
    min-height: 1.8em;
    font-size: 38px;
  }

  .evidence-grid dd {
    margin-top: 11px;
    font-size: 8px;
  }

  .development-note {
    gap: 9px;
  }

  .development-note p {
    font-size: 14px;
  }

  .evidence-caveat {
    font-size: 8px;
  }

  .screen--cta {
    min-height: 850px;
    align-content: start;
    gap: 36px;
  }

  .cta-actions {
    gap: 13px;
  }

  .cta-actions .button {
    width: 100%;
  }

  .cta-actions code {
    padding: 15px;
    font-size: 9px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 21px 18px;
    padding-top: 20px;
  }

  .site-footer > a:first-child img {
    width: 118px;
  }

  .site-footer .product-lockup {
    width: 100px;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    order: 3;
    gap: 20px;
    font-size: 10px;
  }

  .site-footer > span {
    align-self: center;
    font-size: 8px;
  }
}

@media (max-width: 900px) {
  .screen--simulation {
    min-height: auto;
  }

  .sim-topology.sim-topology--devices {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sim-link-map {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(62px, auto));
    min-height: 220px;
  }

  .sim-link-map--generated {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .sim-link-line {
    top: 5%;
    right: auto;
    bottom: 5%;
    left: 50%;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--orange) 0 25%, var(--line) 25% 75%, var(--ink) 75% 100%);
  }

  .sim-link-line b,
  .simulator-shell.is-streaming .sim-link-line b:nth-child(3),
  .simulator-shell.is-streaming .sim-link-line b:nth-child(4) {
    top: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .simulator-shell.is-streaming .sim-link-line b:nth-child(1),
  .simulator-shell.is-streaming .sim-link-line b:nth-child(2) {
    animation-name: simPacketDown;
  }

  .simulator-shell.is-streaming .sim-link-line b:nth-child(3),
  .simulator-shell.is-streaming .sim-link-line b:nth-child(4) {
    animation-name: simPacketUp;
  }

  .sim-controls-panel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sim-controls-panel > .sim-model-cluster,
  .sim-controls-panel > .sim-testbed-field,
  .sim-controls-panel > .sim-prompt-select,
  .sim-controls-panel > .sim-actions {
    grid-column: 1;
    grid-row: auto;
  }

  .sim-controls-panel > .sim-prompt-select {
    margin-top: 0;
  }

  .sim-results {
    grid-template-columns: 1fr;
  }

  .sim-results .sim-response-panel,
  .sim-results .sim-response-panel:first-child,
  .sim-results .sim-response-panel:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sim-results .sim-response-panel:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .simulation-intro--playground h2 {
    font-size: 52px;
  }

  .sim-testbed-field {
    width: 100%;
  }

  .sim-machine-card {
    grid-template-rows: auto 180px auto;
    padding: 16px;
  }

  .sim-machine-visual,
  .sim-machine-visual img,
  .sim-machine-visual--server img {
    min-height: 0;
    max-height: 180px;
  }

  .sim-machine-specs dd {
    font-size: 11px;
  }

  .sim-link-map {
    min-height: 190px;
  }

  .sim-results .sim-response {
    min-height: 124px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 37px;
  }

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

  .hero-art img {
    max-height: 31vh;
  }

  .membership-events {
    grid-template-columns: 1fr;
  }

  .screen--product {
    min-height: 1090px;
  }
}

@media (max-height: 720px) and (min-width: 901px) {
  .screen {
    min-height: 760px;
  }
}

@media (min-width: 901px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  main {
    height: 100%;
  }

  body[data-route="home"] main {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scroll-snap-type: y mandatory;
  }

  body[data-route="blog"] main {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scroll-snap-type: none;
  }

  body[data-route="playground"] main {
    overflow: hidden;
  }

  .screen--simulation {
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(5px, 1vh, 10px);
    height: 100svh;
    min-height: 0;
    padding-top: calc(var(--header-h) + clamp(10px, 1.8vh, 18px));
    padding-bottom: clamp(8px, 1.4vh, 14px);
  }

  .simulation-intro--playground h2 {
    font-size: clamp(38px, 4.1vh, 48px);
    line-height: 0.94;
  }

  .simulation-intro--playground {
    gap: clamp(4px, 0.7vh, 7px);
  }

  .simulator-shell {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
  }

  .sim-topology.sim-topology--devices {
    grid-template-columns: minmax(310px, 1fr) minmax(300px, 0.72fr) minmax(310px, 1fr);
    gap: clamp(12px, 1.35vw, 20px);
    min-height: 0;
    padding: clamp(7px, 1.1vh, 11px) 0;
  }

  .sim-machine-card {
    grid-template-columns: minmax(126px, 0.78fr) minmax(190px, 1.22fr);
    grid-template-rows: auto minmax(0, 1fr);
    gap: 5px 12px;
    min-height: 0;
    padding: clamp(10px, 1.3vh, 14px);
  }

  .sim-machine-head {
    grid-column: 1 / -1;
  }

  .sim-machine-head > div > span {
    font-size: 9px;
  }

  .sim-machine-head h3 {
    margin-top: 2px;
    font-size: clamp(20px, 2.55vh, 25px);
  }

  .sim-network-badge {
    min-height: 28px;
    padding-inline: 9px;
    font-size: 9px;
  }

  .sim-machine-visual {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
    height: 100%;
    margin: 0;
  }

  .sim-machine-visual img,
  .sim-machine-visual--server img {
    max-height: clamp(104px, 16vh, 142px);
  }

  .sim-machine-specs {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
  }

  .sim-machine-specs > div {
    display: grid;
    align-content: center;
    padding: 3px 4px 3px 0;
  }

  .sim-machine-specs > div:nth-child(even) {
    padding-left: 7px;
  }

  .sim-machine-specs dt {
    font-size: 8px;
  }

  .sim-machine-specs dd {
    margin-top: 3px;
    font-size: clamp(10px, 1.45vh, 12px);
  }

  .sim-link-map {
    min-height: 0;
  }

  .sim-link-map--generated > img {
    max-height: clamp(132px, 20vh, 170px);
  }

  .sim-link-legend {
    font-size: clamp(9px, 1.25vh, 11px);
  }

  .sim-link-line {
    right: 1%;
    left: 1%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0 24%, transparent 24% 27%, var(--line) 27% 73%, transparent 73% 76%, var(--ink) 76% 100%);
  }

  .sim-link-line::before,
  .sim-link-line::after {
    position: absolute;
    top: -5px;
    width: 28%;
    height: 14px;
    border: 1px dashed var(--line);
    content: "";
  }

  .sim-link-line::before {
    left: 22%;
    border-right: 0;
  }

  .sim-link-line::after {
    right: 22%;
    border-left: 0;
  }

  .sim-link-core {
    width: clamp(76px, 11vh, 96px);
    height: clamp(76px, 11vh, 96px);
    border-width: 6px;
  }

  .sim-link-core svg {
    margin-bottom: 4px;
    font-size: 17px;
  }

  .sim-link-core strong {
    font-size: 9px;
  }

  .sim-wifi-glyph,
  .sim-link-node svg {
    width: 46px;
    height: 46px;
  }

  .sim-link-node svg {
    padding: 11px;
  }

  .sim-wifi-glyph b:nth-child(3) {
    width: 36px;
    height: 36px;
  }

  .sim-wifi-glyph b:nth-child(2) {
    width: 25px;
    height: 25px;
  }

  .sim-wifi-glyph b:nth-child(1) {
    width: 14px;
    height: 14px;
  }

  .sim-controls-panel {
    grid-template-columns: minmax(340px, 0.9fr) minmax(150px, 0.36fr) minmax(360px, 1.5fr) 86px;
    grid-template-rows: auto;
    align-items: end;
    gap: 12px;
    padding: clamp(8px, 1.1vh, 12px) 0;
  }

  .sim-console {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(205px, 29vh) minmax(0, 1fr);
    min-height: 0;
  }

  .sim-console > .sim-controls-panel {
    grid-column: 1;
    grid-row: 1;
  }

  .sim-console > .sim-results {
    grid-column: 1;
    grid-row: 3;
  }

  .sim-console > .sim-topology {
    grid-column: 1;
    grid-row: 2;
  }

  .sim-controls-panel > .sim-model-cluster,
  .sim-controls-panel > .sim-testbed-field,
  .sim-controls-panel > .sim-prompt-select,
  .sim-controls-panel > .sim-actions {
    grid-row: 1;
  }

  .sim-controls-panel > .sim-model-cluster {
    grid-column: 1;
  }

  .sim-controls-panel > .sim-testbed-field {
    grid-column: 2;
  }

  .sim-controls-panel > .sim-prompt-select {
    grid-column: 3;
    min-height: 46px;
    max-height: 46px;
    margin: 0;
    padding: 0 42px 0 14px;
    background-color: transparent;
    background-position: calc(100% - 19px) 20px, calc(100% - 14px) 20px;
    border-color: var(--ink);
    font-size: 13px;
  }

  .sim-controls-panel > .sim-actions {
    grid-column: 4;
    margin: 0;
  }

  .sim-model-field {
    gap: 5px;
  }

  .sim-model-field > span,
  .sim-testbed-field > span {
    font-size: 9px;
  }

  .sim-model-field select,
  .sim-testbed-field select {
    min-height: 46px;
    padding-left: 17px;
    background-color: transparent;
    background-position: calc(100% - 19px) 20px, calc(100% - 14px) 20px;
    border-color: var(--ink);
    box-shadow: inset 4px 0 0 var(--orange);
    font-size: 13px;
  }

  .sim-model-cluster > .sim-switch {
    align-self: end;
    min-height: 46px;
    margin: 0;
    padding: 0;
    border-bottom: 0;
  }

  .sim-switch > span:last-child strong {
    font-size: 13px;
  }

  .sim-switch-track {
    width: 36px;
    height: 20px;
  }

  .sim-switch-track b {
    top: 3px;
    width: 12px;
    height: 12px;
  }

  .sim-switch input:checked + .sim-switch-track b {
    transform: translateX(17px);
  }

  .sim-actions .button {
    width: 86px;
    min-height: 46px;
    padding-inline: 12px;
  }

  .sim-results {
    min-height: 0;
  }

  .sim-results .sim-response-panel {
    grid-template-rows: auto minmax(0, 1fr) auto;
    min-height: 0;
    padding: clamp(9px, 1.3vh, 13px);
  }

  .sim-results .sim-response-head {
    padding-bottom: 7px;
  }

  .sim-results .sim-response-head > span:first-child,
  .sim-results .sim-response-head > span:last-child {
    font-size: 9px;
  }

  .sim-results .sim-response-head > strong {
    font-size: clamp(11px, 1.55vh, 13px);
  }

  .sim-results .sim-response {
    min-height: 0;
    padding: clamp(7px, 1vh, 11px) 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: clamp(11px, 1.55vh, 14px);
    line-height: 1.42;
  }

  .sim-results .sim-telemetry > div {
    padding: 6px;
  }

  .sim-results .sim-telemetry dt {
    font-size: 8px;
  }

  .sim-results .sim-telemetry dd {
    margin-top: 3px;
    font-size: 11px;
  }

  .sim-disclaimer {
    overflow: hidden;
    padding: clamp(4px, 0.7vh, 7px) 0 0;
    font-size: 8px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .blog-view {
    padding: 102px 20px 68px;
  }

  .blog-index__header {
    padding-bottom: 34px;
  }

  .blog-index__header h1 {
    font-size: clamp(42px, 12vw, 50px);
  }

  .blog-index__header > p:last-child {
    margin-top: 20px;
    font-size: 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .blog-card {
    min-height: 0;
  }

  .blog-card__content {
    min-height: 300px;
    padding: 22px;
  }

  .blog-card h2 {
    font-size: 30px;
  }

  .blog-post {
    width: 100%;
  }

  .blog-back {
    margin-bottom: 38px;
  }

  .blog-post__header {
    padding-bottom: 37px;
  }

  .blog-post__header h1 {
    margin-top: 19px;
    font-size: clamp(42px, 12vw, 50px);
  }

  .blog-post__header > p {
    margin-top: 22px;
    font-size: 19px;
  }

  .blog-post__body {
    padding-top: 38px;
  }

  .blog-post__body > p {
    font-size: 18px;
    line-height: 1.62;
  }

  .blog-post__body h2 {
    margin-top: 46px;
    font-size: 32px;
  }

  .blog-post__body blockquote {
    margin-block: 42px;
    padding-left: 18px;
    font-size: 27px;
  }

  .blog-post__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 56px;
  }

  .screen--hero .actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .screen--hero .actions .button {
    gap: 6px;
    padding-inline: 5px;
    white-space: nowrap;
  }

  .screen--simulation {
    gap: 18px;
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .simulation-intro--playground h2 {
    font-size: clamp(44px, 12vw, 48px);
  }

  .sim-controls-panel {
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 10px;
    padding: 12px 0 14px;
  }

  .sim-controls-panel > .sim-model-cluster {
    grid-column: 1;
    grid-row: 1;
  }

  .sim-controls-panel > .sim-testbed-field {
    grid-column: 2;
    grid-row: 1;
  }

  .sim-controls-panel > .sim-prompt-select {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    min-height: 46px;
    max-height: 46px;
  }

  .sim-controls-panel > .sim-actions {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    margin: 0;
  }

  .sim-model-field,
  .sim-testbed-field {
    gap: 5px;
    min-width: 0;
  }

  .sim-model-field select,
  .sim-testbed-field select,
  .sim-prompt-select {
    min-width: 0;
    min-height: 46px;
    padding-right: 34px;
    padding-left: 12px;
    background-position: calc(100% - 17px) 20px, calc(100% - 12px) 20px;
    font-size: 12px;
  }

  .sim-actions .button {
    min-height: 46px;
    padding-inline: 12px;
  }

  .sim-controls-panel:has(.sim-switch:not([hidden])) > .sim-model-cluster {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .sim-controls-panel:has(.sim-switch:not([hidden])) > .sim-testbed-field {
    grid-column: 1;
    grid-row: 2;
  }

  .sim-controls-panel:has(.sim-switch:not([hidden])) > .sim-actions {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }

  .sim-controls-panel:has(.sim-switch:not([hidden])) > .sim-prompt-select {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .sim-topology.sim-topology--devices {
    gap: 14px;
    padding: 18px 0 20px;
  }

  .sim-machine-card {
    grid-template-rows: auto 142px auto;
    padding: 14px;
  }

  .sim-machine-visual,
  .sim-machine-visual img,
  .sim-machine-visual--server img {
    max-height: 142px;
  }

  .sim-link-map,
  .sim-link-map--generated {
    min-height: 142px;
  }

  .sim-results .sim-response-panel,
  .sim-results .sim-response-panel:first-child,
  .sim-results .sim-response-panel:last-child {
    grid-template-rows: auto 112px auto;
    min-height: 0;
    padding: 16px 0;
  }

  .sim-response-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: baseline;
    gap: 8px;
  }

  .sim-response-head > span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sim-response-head > span:last-child {
    text-align: right;
  }

  .sim-results .sim-response {
    min-height: 112px;
    max-height: 112px;
    padding: 12px 0;
    font-size: 13px;
    line-height: 1.5;
  }

  .sim-telemetry > div {
    padding: 8px 7px;
  }

  .sim-disclaimer {
    padding-top: 12px;
    font-size: 8px;
    line-height: 1.45;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal,
  .js .screen.is-visible .reveal {
    opacity: 1;
    transform: none;
  }
}
