:root {
  color-scheme: dark;
  --bg: #080a12;
  --panel: #10131f;
  --panel-2: #151929;
  --ink: #f3f6ff;
  --muted: #9aa4bb;
  --line: rgba(196, 211, 255, .14);
  --cyan: #61e7ff;
  --violet: #9b7cff;
  --green: #7cf7bf;
  --yellow: #ffd66b;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(97, 231, 255, .11), transparent
    30%),
    radial-gradient(circle at 82% 14%, rgba(155, 124, 255, .14), transparent
    34%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.stripe {
  background-color: #090b14;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 50;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--bg);
}
.skip-link:focus {
  top: 12px;
}
.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
}

.topbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  letter-spacing: -.03em;
}
.mark span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(97,231,255,.5);
  border-radius: 10px;
  background: rgba(97,231,255,.08);
  color: var(--cyan);
  font: 700 13px/1 ui-monospace, monospace;
  box-shadow: inset 0 0 18px rgba(97,231,255,.08);
}
.mark b {
  font-size: 16px;
}
.topbar nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
}
.topbar nav a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease;
}
.topbar nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: 740px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 72px;
  padding-block: 90px 110px;
}
.kicker,
.section-number {
  color: var(--cyan);
  font: 700 11px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
}
.kicker span {
  width: 28px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(52px, 6.7vw, 94px);
  line-height: .98;
  letter-spacing: -.067em;
}
h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.3px var(--cyan);
  text-shadow: 0 0 34px rgba(97,231,255,.18);
}
.hero-lede {
  max-width: 700px;
  color: #b6bfd2;
  font-size: clamp(17px, 1.6vw, 20px);
}
.hero-actions,
.closing > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: 700 12px/1 ui-monospace, monospace;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  border-color: transparent;
  background: linear-gradient(120deg, var(--cyan), #83f2c0);
  color: #071017;
  box-shadow: 0 12px 38px rgba(97,231,255,.17);
}
.button.ghost {
  background: rgba(255,255,255,.025);
  color: var(--ink);
}
.button.ghost:hover {
  border-color: rgba(97,231,255,.5);
}
.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 50px);
  margin: 54px 0 0;
}
.hero-stats div {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.hero-stats dt {
  font: 700 22px/1 ui-monospace, monospace;
}
.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.code-orbit {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.code-card {
  position: relative;
  z-index: 3;
  width: min(100%, 500px);
  overflow: hidden;
  border: 1px solid rgba(180,197,255,.2);
  border-radius: 18px;
  background: rgba(12,15,25,.9);
  box-shadow: 0 42px 100px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
  transform: rotate(1.5deg);
}
.code-bar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 11px/1 ui-monospace, monospace;
}
.code-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31384b;
}
.code-bar i:first-child {
  background: #ff6f73;
}
.code-bar i:nth-child(2) {
  background: #ffd66b;
}
.code-bar i:nth-child(3) {
  background: #68e7a1;
}
.code-bar span {
  margin-left: 8px;
}
.code-bar b {
  margin-left: auto;
  color: var(--cyan);
}
.code-card pre {
  margin: 0;
  padding: 34px 28px 38px;
  overflow: auto;
  color: #e9edfa;
  font: 14px/1.75 ui-monospace, SFMono-Regular, Consolas, monospace;
}
.muted {
  color: #69748d;
}
.cyan {
  color: var(--cyan);
}
.violet {
  color: #c5a8ff;
}
.green {
  color: var(--green);
}
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(97,231,255,.12);
  border-radius: 50%;
}
.ring-one {
  width: 530px;
  height: 530px;
  animation: spin 20s linear infinite;
}
.ring-two {
  width: 390px;
  height: 390px;
  border-color: rgba(155,124,255,.13);
  animation: spin 14s linear infinite reverse;
}
.orbit-ring::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 12%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}
.ring-two::after {
  top: auto;
  left: auto;
  right: 7%;
  bottom: 24%;
  background: var(--violet);
  box-shadow: 0 0 18px var(--violet);
}
.api-chip {
  position: absolute;
  z-index: 4;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #111624;
  color: var(--cyan);
  font: 11px/1 ui-monospace, monospace;
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
}
.chip-a {
  top: 14%;
  right: -4%;
}
.chip-b {
  bottom: 13%;
  left: -2%;
}
.chip-c {
  right: 4%;
  bottom: 3%;
  color: var(--violet);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.manifesto {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.manifesto-grid {
  min-height: 180px;
  display: grid;
  grid-template-columns: .7fr 1.6fr .7fr;
  align-items: center;
  gap: 54px;
}
.manifesto-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.manifesto-grid .manifesto-main {
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.25;
  letter-spacing: -.035em;
}

.story,
.weight,
.demo,
.component-lab,
.closing {
  padding-block: 130px;
}
.section-heading {
  max-width: 790px;
  margin-bottom: 74px;
}
.section-heading.compact {
  margin-bottom: 58px;
}
.section-heading h2,
.demo h2,
.closing h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.055em;
}
.section-heading > p:last-child,
.demo-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.timeline {
  position: relative;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 116px;
  width: 1px;
  background: var(--line);
}
.timeline-line span {
  position: sticky;
  top: 100px;
  display: block;
  width: 1px;
  height: 110px;
  background: linear-gradient(var(--cyan), var(--violet));
  box-shadow: 0 0 15px rgba(97,231,255,.7);
}
.timeline-card {
  position: relative;
  display: grid;
  grid-template-columns: 116px 1fr 260px;
  gap: 44px;
  padding: 44px 0 58px 42px;
  border-top: 1px solid var(--line);
  opacity: .46;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.timeline-card.visible {
  opacity: 1;
  transform: none;
}
.timeline-card::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 50px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px rgba(97,231,255,.6);
}
.timeline-card.current::before {
  background: var(--violet);
  box-shadow: 0 0 15px rgba(155,124,255,.7);
}
.year b {
  display: block;
  font: 700 21px/1 ui-monospace, monospace;
}
.year span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.event-copy h3 {
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -.03em;
}
.event-copy p {
  color: var(--muted);
}
.event-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.event-copy li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #c6cede;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.timeline-card > code {
  align-self: start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--green);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.weight {
  border-top: 1px solid var(--line);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 28px;
}
.bars,
.scope-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.035),
    rgba(255,255,255,.012));
}
.bars {
  padding: 14px 28px;
}
.bar-row {
  display: grid;
  grid-template-columns: 190px 1fr 86px;
  align-items: center;
  gap: 18px;
  min-height: 90px;
  border-bottom: 1px solid var(--line);
}
.bar-row:last-child {
  border-bottom: 0;
}
.bar-row > div:first-child strong,
.bar-row > div:first-child span {
  display: block;
}
.bar-row > div:first-child strong {
  font-size: 13px;
}
.bar-row > div:first-child span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}
.bar-row > b {
  color: var(--muted);
  font: 11px/1 ui-monospace, monospace;
  text-align: right;
}
.bar-track {
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: #252a3a;
}
.bar-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5d6680, #909bb7);
  transition: width 1.1s cubic-bezier(.2,.7,.2,1);
}
.bar-row.featured .bar-track i {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 13px rgba(97,231,255,.45);
}
.bar-row.featured strong,
.bar-row.featured > b {
  color: var(--cyan);
}
.scope-card {
  padding: 42px;
}
.scope-label {
  color: var(--violet);
  font: 700 10px/1 ui-monospace, monospace;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scope-card h3 {
  margin: 24px 0 18px;
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -.04em;
}
.scope-card p {
  color: var(--muted);
}
.scope-card blockquote {
  margin: 30px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-style: italic;
}

.demo-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border: 1px solid rgba(97,231,255,.22);
  border-radius: 24px;
  background: linear-gradient(135deg, #111725, #0c101a);
  box-shadow: 0 45px 100px rgba(0,0,0,.3);
}
.demo-copy {
  position: relative;
  z-index: 2;
  padding: clamp(42px, 6vw, 78px);
}
.demo-copy h2 {
  max-width: 600px;
  font-size: clamp(36px, 4vw, 58px);
}
.demo-copy code {
  color: var(--green);
  font-size: .88em;
}
.demo-copy .button {
  margin-top: 20px;
}
.demo-status {
  min-height: 25px;
  margin: 20px 0 0;
  color: var(--cyan) !important;
  font: 12px/1.5 ui-monospace, monospace;
}
.demo-stage {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent
    1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px;
}
.core {
  position: relative;
  z-index: 3;
  width: 132px;
  height: 132px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(97,231,255,.4);
  border-radius: 50%;
  background: #111828;
  text-align: center;
  box-shadow: 0 0 70px rgba(97,231,255,.15), inset 0 0 35px
    rgba(97,231,255,.09);
}
.core span,
.core b {
  display: block;
}
.core span {
  color: var(--cyan);
  font: 700 22px/1 ui-monospace, monospace;
}
.core b {
  margin-top: 9px;
  color: var(--muted);
  font: 10px/1 ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.rail {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 300px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.rail-b {
  width: 390px;
  height: 190px;
}
.rail-c {
  width: 190px;
  height: 390px;
}
.pulse {
  position: absolute;
  z-index: 4;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px 6px rgba(97,231,255,.35);
  animation: signal 1.25s ease-out forwards;
}
@keyframes signal {
  0% {
    opacity: 0;
    transform: scale(.2) translate(0,0);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(2.4) translate(var(--tx), var(--ty));
  }
}

.component-lab {
  border-top: 1px solid var(--line);
}
.release-strip {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  border: 1px solid rgba(97,231,255,.2);
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(97,231,255,.055),
    rgba(155,124,255,.045));
  overflow: hidden;
}
.release-strip > * {
  min-height: 108px;
  margin: 0;
  padding: 24px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
}
.release-strip > *:last-child {
  border-right: 0;
}
.release-strip span,
.release-strip b {
  color: var(--muted);
  font: 9px/1.3 ui-monospace, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.release-strip strong {
  margin-block: 7px;
  color: var(--cyan);
  font: 700 14px/1.2 ui-monospace, monospace;
}
.release-strip p {
  color: var(--muted);
  font-size: 13px;
}
.release-strip code {
  color: var(--green);
}
.component-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.component-example {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13,16,27,.78);
  box-shadow: 0 28px 70px rgba(0,0,0,.2);
}
.component-example.component-wide {
  grid-column: 1 / -1;
}
.component-example > header {
  min-height: 84px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.component-example > header > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(97,231,255,.25);
  border-radius: 10px;
  background: rgba(97,231,255,.06);
  color: var(--cyan);
  font: 700 11px/1 ui-monospace, monospace;
}
.component-example > header div {
  min-width: 0;
}
.component-example > header p,
.component-example > header h3 {
  margin: 0;
}
.component-example > header p {
  margin-bottom: 3px;
  color: var(--muted);
  font: 700 9px/1.2 ui-monospace, monospace;
  letter-spacing: .13em;
}
.component-example > header h3 {
  font-size: 20px;
  letter-spacing: -.025em;
}
.component-example > header > b {
  margin-left: auto;
  padding: 7px 9px;
  border: 1px solid rgba(124,247,191,.25);
  border-radius: 999px;
  color: var(--green);
  font: 700 10px/1 ui-monospace, monospace;
}
.component-preview {
  min-height: 255px;
  padding: 30px;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    #0b0e18;
  background-size: 26px 26px;
}
.example-code {
  min-height: 205px;
  max-height: 285px;
  margin: 0;
  padding: 24px;
  overflow: auto;
  border-top: 1px solid var(--line);
  background: #080a12;
  color: #dbe2f4;
  font: 11px/1.75 ui-monospace, SFMono-Regular, Consolas, monospace;
  tab-size: 2;
}
.mini-button,
.mini-submit,
.text-button,
.accordion-item button,
.tab-list button,
.table-preview th button {
  font: inherit;
}
.mini-button,
.mini-submit {
  border: 1px solid rgba(97,231,255,.35);
  border-radius: 10px;
  background: rgba(97,231,255,.09);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.mini-button:hover,
.mini-submit:hover {
  background: rgba(97,231,255,.16);
  transform: translateY(-1px);
}
.mini-button:focus-visible,
.mini-submit:focus-visible,
.text-button:focus-visible,
.accordion-item button:focus-visible,
.tab-list button:focus-visible,
.table-preview th button:focus-visible,
.form-preview input:focus-visible,
.form-preview textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.mini-button {
  width: 52px;
  height: 52px;
  font-size: 24px;
}
.mini-submit {
  min-height: 42px;
  padding: 0 16px;
  font: 700 11px/1 ui-monospace, monospace;
}
.text-button {
  padding: 8px 3px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 700 10px/1 ui-monospace, monospace;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.counter-preview {
  display: grid;
  grid-template-columns: auto 110px auto;
  place-content: center;
  align-items: center;
  gap: 16px;
}
.counter-preview output {
  color: var(--cyan);
  font: 700 64px/1 ui-monospace, monospace;
  text-align: center;
  text-shadow: 0 0 28px rgba(97,231,255,.2);
}
.counter-preview .text-button {
  grid-column: 1 / -1;
  justify-self: center;
}
.slider-preview {
  position: relative;
  display: grid;
  align-content: center;
  gap: 24px;
  overflow: hidden;
}
.slider-value {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font: 700 11px/1 ui-monospace, monospace;
}
.slider-value output {
  color: var(--cyan);
}
.slider-preview input[type="range"] {
  position: relative;
  z-index: 2;
  width: 100%;
  accent-color: var(--cyan);
}
.slider-orb {
  --level: .64;
  position: absolute;
  left: calc(18% + var(--level) * 58%);
  bottom: 24px;
  width: calc(42px + var(--level) * 54px);
  height: calc(42px + var(--level) * 54px);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff, var(--cyan) 20%,
    var(--violet) 68%, transparent 72%);
  filter: blur(.2px);
  opacity: calc(.35 + var(--level) * .65);
  box-shadow: 0 0 calc(16px + var(--level) * 45px) rgba(97,231,255,.32);
  transform: translateX(-50%);
  transition: all .18s ease;
}
.accordion-preview {
  padding: 20px 30px;
}
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item:last-child {
  border-bottom: 0;
}
.accordion-item button {
  width: 100%;
  min-height: 58px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.accordion-item button::after {
  content: "+";
  color: var(--cyan);
  font: 20px/1 ui-monospace, monospace;
}
.accordion-item button[aria-expanded="true"]::after {
  content: "−";
}
.accordion-item div {
  padding: 0 30px 18px 0;
  color: var(--muted);
  font-size: 13px;
}
.tabs-preview {
  padding: 24px 30px 30px;
}
.tab-list {
  display: flex;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.tab-list button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: 700 10px/1 ui-monospace, monospace;
  cursor: pointer;
}
.tab-list button[aria-selected="true"] {
  border-color: rgba(97,231,255,.26);
  background: rgba(97,231,255,.08);
  color: var(--cyan);
}
.tab-panel {
  padding-top: 28px;
}
.tab-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: -.03em;
}
.tab-panel p {
  color: var(--muted);
  font-size: 14px;
}
.table-preview {
  min-height: auto;
  padding: 18px 26px 28px;
  overflow-x: auto;
}
.table-preview table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
.table-preview caption {
  padding: 6px 0 20px;
  color: var(--muted);
  font: 10px/1 ui-monospace, monospace;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.table-preview th,
.table-preview td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.table-preview th {
  color: var(--muted);
  font: 700 10px/1 ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.table-preview th button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.table-preview th button span {
  color: var(--cyan);
}
.table-preview td {
  color: #d7deee;
  font-size: 13px;
}
.status {
  padding: 5px 8px;
  border-radius: 999px;
  font: 700 9px/1 ui-monospace, monospace;
  text-transform: uppercase;
}
.status.ready {
  background: rgba(124,247,191,.1);
  color: var(--green);
}
.status.stable {
  background: rgba(155,124,255,.11);
  color: #c5a8ff;
}
.form-preview {
  padding: 26px 30px;
}
.form-preview form {
  display: grid;
  gap: 16px;
}
.form-preview label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font: 700 10px/1 ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-preview input,
.form-preview textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.035);
  color: var(--ink);
  font: 14px/1.4 Inter, ui-sans-serif, sans-serif;
  text-transform: none;
}
.form-preview input {
  min-height: 42px;
  padding: 0 12px;
}
.form-preview textarea {
  padding: 10px 12px;
  resize: vertical;
}
.form-preview input::placeholder,
.form-preview textarea::placeholder {
  color: #5f6980;
}
.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font: 10px/1.5 ui-monospace, monospace;
}
.form-status.success {
  color: var(--green);
}
.form-status.error {
  color: #ff8f92;
}
.http-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
}
.http-layout .example-code {
  min-height: 100%;
  max-height: none;
  border-top: 0;
  border-left: 1px solid var(--line);
}
.http-preview {
  min-height: 430px;
  display: grid;
  align-content: center;
  gap: 22px;
}
.http-preview > p {
  color: var(--muted);
  font-size: 14px;
}
.http-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.http-metrics {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.http-metrics div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.02);
}
.http-metrics dt {
  color: var(--muted);
  font: 8px/1 ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.http-metrics dd {
  margin: 8px 0 0;
  color: var(--cyan);
  font: 700 15px/1 ui-monospace, monospace;
}
.http-preview > output {
  min-height: 48px;
  padding: 14px;
  border: 1px solid rgba(124,247,191,.2);
  border-radius: 9px;
  background: rgba(124,247,191,.045);
  color: var(--green);
  font: 10px/1.6 ui-monospace, monospace;
}

.closing {
  border-top: 1px solid var(--line);
}
.closing > p {
  color: var(--cyan);
  font: 700 11px/1 ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.closing h2 {
  max-width: 940px;
}
footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
footer a {
  color: var(--ink);
  text-decoration: none;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.site-footer-links a {
  transition: color .2s ease;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--cyan);
}

@media (max-width: 900px) {
  .topbar nav a:not(:last-child) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 70px;
  }
  .code-orbit {
    min-height: 470px;
  }
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 42px;
  }
  .timeline-card {
    grid-template-columns: 82px 1fr;
    padding-left: 20px;
  }
  .timeline-card > code {
    grid-column: 2;
  }
  .timeline-line {
    left: 82px;
  }
  .timeline-card::before {
    left: 76px;
  }
  .comparison-grid,
  .demo-panel,
  .http-layout {
    grid-template-columns: 1fr;
  }
  .release-strip {
    grid-template-columns: 1fr 1fr;
  }
  .release-strip > p {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
  .release-strip > div:nth-child(2) {
    border-right: 0;
  }
  .http-layout .example-code {
    min-height: 260px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .demo-stage {
    min-height: 390px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }
  .topbar {
    min-height: 70px;
  }
  .topbar nav {
    gap: 12px;
  }
  h1 {
    font-size: clamp(47px, 15vw, 68px);
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .code-orbit {
    min-height: 390px;
  }
  .code-card pre {
    padding: 24px 18px;
    font-size: 11px;
  }
  .ring-one {
    width: 390px;
    height: 390px;
  }
  .ring-two {
    width: 300px;
    height: 300px;
  }
  .api-chip {
    display: none;
  }
  .story,
  .weight,
  .demo,
  .component-lab,
  .closing {
    padding-block: 90px;
  }
  .timeline-card {
    display: block;
    padding: 30px 0 44px 30px;
  }
  .timeline-line {
    left: 5px;
  }
  .timeline-card::before {
    left: -1px;
    top: 36px;
  }
  .year {
    margin-bottom: 24px;
  }
  .timeline-card > code {
    display: block;
    margin-top: 22px;
  }
  .bars {
    padding: 8px 18px;
  }
  .bar-row {
    grid-template-columns: 1fr 70px;
    gap: 10px;
    padding-block: 18px;
  }
  .bar-track {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .bar-row > b {
    grid-column: 2;
    grid-row: 1;
  }
  .scope-card {
    padding: 30px;
  }
  .demo-copy {
    padding: 38px 26px;
  }
  .release-strip,
  .component-grid {
    grid-template-columns: 1fr;
  }
  .release-strip > *,
  .release-strip > div:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .release-strip > p {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .component-example.component-wide {
    grid-column: auto;
  }
  .component-preview {
    min-height: 230px;
    padding: 24px 20px;
  }
  .counter-preview {
    grid-template-columns: auto 86px auto;
    gap: 10px;
  }
  .counter-preview output {
    font-size: 48px;
  }
  .example-code {
    padding: 20px;
    font-size: 10px;
  }
  .http-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
  }
  .site-footer-links {
    justify-content: flex-start;
  }
}

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