:root {
  color-scheme: dark;
  --bg: #000000;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(6, 18, 26, 0.82);
  --panel-soft: rgba(4, 14, 21, 0.62);
  --line: rgba(56, 189, 248, 0.28);
  --line-soft: rgba(255, 255, 255, 0.12);
  --line-faint: rgba(255, 255, 255, 0.085);
  --blue: #38bdf8;
  --blue-deep: #2aa0db;
  --green: #43b565;
  --gold: #f4c860;
  --bronze: #d38b66;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-strong: rgba(255, 255, 255, 0.82);
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Space Grotesk", Inter, system-ui, sans-serif;
  --brand-display: "Staatliches", "Arial Narrow", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.16), transparent 34rem),
    #000;
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

main {
  width: 100%;
  background: #000;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 110px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(6, 17, 23, 0.98), rgba(2, 7, 11, 0.98)),
    #000;
}

.site-header-inner {
  width: 100%;
  max-width: 1920px;
  min-height: 110px;
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) minmax(0, 1.46fr) auto;
  align-items: center;
  gap: clamp(24px, 2.7vw, 52px);
  margin: 0 auto;
  padding: 0 clamp(22px, 3.75vw, 72px);
}

.site-brand,
.site-nav,
.site-action {
  display: inline-flex;
  align-items: center;
}

.site-brand {
  justify-self: start;
  gap: 5.76px;
  min-width: 0;
  width: 122.76px;
  height: 48px;
  color: #fff;
  white-space: nowrap;
}

.site-brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
  border-radius: 11px;
}

.site-brand-text {
  display: grid;
  align-content: start;
  gap: 0;
  min-width: 0;
  height: 48px;
  padding-top: 1.92px;
  font-family: var(--brand-display);
  font-size: 19.2px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: none;
}

.site-brand-text span:first-child {
  justify-self: start;
  color: #38bdf8;
}

.site-brand-text span:last-child {
  justify-self: start;
  margin-top: -3.84px;
  color: #fff;
}

.site-nav {
  justify-self: center;
  gap: clamp(20px, 1.88vw, 36px);
  min-width: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 0.89vw, 17px);
  line-height: 1;
  white-space: nowrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: #fff;
}

a:focus-visible,
button:focus-visible,
.scroll-region:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.92);
  outline-offset: 4px;
}

.site-action {
  justify-self: end;
  justify-content: center;
  gap: 10px;
  width: 129px;
  min-height: 48px;
  padding: 0;
  border: 1px solid rgba(82, 190, 255, 0.44);
  border-radius: 8px;
  background: linear-gradient(90deg, #2eb4ed 0%, #242e9d 100%);
  color: #fff;
  filter: brightness(1.04);
  font: 500 16px/1 var(--sans);
  white-space: nowrap;
  box-shadow: 0 0 26px rgba(56, 189, 248, 0.12);
  transition: transform 160ms ease, border-color 160ms ease;
}

.site-action:hover {
  transform: translateY(-1px);
  border-color: rgba(82, 190, 255, 0.72);
}

.site-action img {
  width: 20px;
  height: 20px;
}

@media (min-width: 1600px) {
  .site-header-inner {
    position: relative;
    display: block;
    padding: 0;
  }

  .site-brand {
    position: absolute;
    top: 31px;
    left: 72px;
  }

  .site-nav {
    position: absolute;
    top: 32px;
    left: 1018px;
    width: auto;
    height: 48px;
    justify-content: flex-start;
    gap: 36px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
  }

  .site-action {
    position: absolute;
    top: 31px;
    right: 86px;
    width: 115px;
    height: 48px;
    justify-content: flex-start;
    gap: 8px;
    padding-left: 24px;
    font-size: 16px;
  }

  .site-action img {
    width: 20px;
    height: 20px;
  }
}

.section {
  position: relative;
  isolation: isolate;
  min-height: 960px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(36px, 3.35vw, 64px);
  padding: clamp(74px, 6.25vw, 120px) clamp(22px, 5.2vw, 100px);
  overflow: hidden;
}

.section:not(.hero):not(.final-cta) {
  justify-content: flex-start;
  padding-top: clamp(68px, 5vw, 96px);
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.section::after {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 28%, rgba(56, 189, 248, 0.074), transparent 38rem),
    radial-gradient(circle at 0% 82%, rgba(56, 189, 248, 0.038), transparent 28rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.88));
}

.mesh-bg::before {
  background:
    linear-gradient(rgba(56, 189, 248, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.09) 1px, transparent 1px),
    url("../assets/figma/section-network-bg.png") center / cover no-repeat;
  background-size: 92px 92px, 92px 92px, cover;
  opacity: 0.6;
}

.mesh-grid::before {
  background: url("../assets/figma/hero-bg.png") center top / cover no-repeat;
  opacity: 0.1;
}

.mesh-grid::after {
  background:
    radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.07), transparent 24rem),
    radial-gradient(circle at 50% 36%, rgba(56, 189, 248, 0.055), transparent 42rem),
    radial-gradient(circle at 50% 96%, rgba(56, 189, 248, 0), transparent 30rem),
    linear-gradient(180deg, rgba(5, 21, 28, 0.62), rgba(2, 11, 15, 0.22) 30%, rgba(0, 0, 0, 0.86) 78%);
  filter: brightness(1.35) saturate(0.94);
}

.section:nth-of-type(2) {
  min-height: 1220px;
}

.section:nth-of-type(3) {
  min-height: 1074px;
}

.section:nth-of-type(3).mesh-bg::before {
  opacity: 0;
}

.section:nth-of-type(3)::after {
  background:
    radial-gradient(circle at 50% 28%, rgba(56, 189, 248, 0.038), transparent 38rem),
    radial-gradient(circle at 0% 82%, rgba(56, 189, 248, 0.018), transparent 28rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.9));
}

.section:nth-of-type(3)::after,
.commands::after {
  background: none;
}

.section:nth-of-type(4) {
  min-height: 1140px;
}

.section:nth-of-type(6) {
  min-height: 1344px;
}

.section:nth-of-type(8) {
  min-height: 1232px;
}

#applications::after {
  background:
    linear-gradient(rgba(2, 8, 12, 1.00), rgba(2, 8, 12, 1.00)),
    linear-gradient(rgba(2, 24, 30, 0.20), rgba(2, 24, 30, 0.20)),
    linear-gradient(rgba(2, 8, 12, 0.30), rgba(2, 8, 12, 0.30)),
    radial-gradient(circle at 50% 28%, rgba(56, 189, 248, 0.086), transparent 38rem),
    radial-gradient(circle at 0% 82%, rgba(56, 189, 248, 0.038), transparent 28rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.94));
}

.section:nth-of-type(5) {
  min-height: 775px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.section:nth-of-type(5)::after {
  background:
    url("../assets/figma/full-frame-background-wash.png") center -4394px / 1920px 9907px no-repeat,
    radial-gradient(circle at 56% 54%, rgba(56, 189, 248, 0.026), transparent 35rem),
    radial-gradient(circle at 82% 72%, rgba(56, 189, 248, 0.01), transparent 24rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.88) 82%, rgba(0, 0, 0, 0.98) 100%);
}

.section:nth-of-type(6),
.section:nth-of-type(8) {
  padding-top: 92px;
  padding-bottom: 92px;
}

.hero {
  min-height: 960px;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 1.46vw, 28px);
  padding-top: clamp(76px, 4.55vw, 87px);
  padding-bottom: clamp(34px, 2.6vw, 50px);
}

.section:nth-of-type(2):not(.hero):not(.final-cta) {
  gap: 36px;
  padding-top: 73px;
}

.section:nth-of-type(2) .feature-grid {
  width: min(100%, 1760px);
  gap: 32px;
}

.section:nth-of-type(2) .section-head {
  transform: translate(1px, -11px);
}

.section:nth-of-type(2) .section-head h2,
.section:nth-of-type(2) .section-head h2 strong {
  color: #fff;
  font-weight: 500;
}

.section:nth-of-type(2) .section-head h2 strong {
  color: rgba(56, 189, 248, 0.98);
}

.section:nth-of-type(2).mesh-bg::before {
  opacity: 0.20;
}

.section:nth-of-type(2)::after {
  background:
    linear-gradient(rgba(2, 8, 12, 1.00), rgba(2, 8, 12, 1.00)),
    linear-gradient(rgba(0, 24, 30, 0.08), rgba(0, 24, 30, 0.08)),
    radial-gradient(circle at 50% 28%, rgba(56, 189, 248, 0.034), transparent 38rem),
    radial-gradient(circle at 0% 82%, rgba(56, 189, 248, 0.026), transparent 28rem),
    linear-gradient(180deg, rgba(2, 10, 13, 1), rgba(1, 1, 1, 1));
}

.section:nth-of-type(2) .pill,
.leaderboard .pill {
  min-height: 48px;
  padding: 0 18px;
  border-color: transparent;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.075);
  font-size: 21px;
  box-shadow: none;
}

.section:nth-of-type(2) .feature-card {
  min-height: 472px;
  padding: 34px;
  border-color: rgba(56, 189, 248, 0.28);
  background:
    linear-gradient(180deg, rgba(10, 23, 29, 0.88), rgba(8, 20, 26, 0.98)),
    url("../assets/figma/section-network-bg.png") center / 210% auto no-repeat,
    rgba(10, 23, 30, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.012),
    0 8px 28px rgba(0, 0, 0, 0.12);
}

.section:nth-of-type(2) .feature-card.accent {
  border-color: rgba(56, 189, 248, 0.50);
  background:
    linear-gradient(180deg, rgba(10, 23, 29, 0.88), rgba(8, 20, 26, 0.98)),
    url("../assets/figma/section-network-bg.png") center / 210% auto no-repeat,
    rgba(10, 23, 30, 0.58);
}

.section:nth-of-type(2) .feature-card .server-icon {
  margin-top: 6px;
  background: rgba(56, 189, 248, 0.16);
}

.section:nth-of-type(2) .feature-card h3 {
  margin-top: 28px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.section:nth-of-type(2) .feature-card p {
  max-width: 307px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.02);
  font-size: 18px;
  line-height: 1.72;
}

.section:nth-of-type(4) {
  gap: 8px;
  padding-top: 0;
  padding-bottom: 100px;
}

.section:nth-of-type(4) .process-grid {
  gap: 26px;
}

.section:nth-of-type(4) .process-grid article {
  min-height: 280px;
  border-color: rgba(56, 189, 248, 0.06);
  background:
    linear-gradient(180deg, rgba(12, 22, 28, 0.84), rgba(8, 18, 24, 0.78)),
    url("../assets/figma/section-network-bg.png") center / 160% auto no-repeat,
    rgba(8, 19, 25, 0.72);
}

.section:nth-of-type(4).mesh-bg::before {
  opacity: 0.06;
}

.section:nth-of-type(4)::after {
  background:
    linear-gradient(rgba(0, 24, 30, 0.35), rgba(0, 24, 30, 0.35)),
    radial-gradient(circle at 50% 28%, rgba(56, 189, 248, 0.086), transparent 38rem),
    radial-gradient(circle at 0% 82%, rgba(56, 189, 248, 0.044), transparent 28rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.90));
}

.section:nth-of-type(6) {
  gap: 0;
  padding-top: 0;
}

.section:nth-of-type(8) {
  gap: 8px;
  padding-top: 0;
}

@media (min-width: 1201px) {
  .hero {
    padding-top: 197px;
    filter: saturate(1.05);
  }

  .section.leaderboard:not(.hero):not(.final-cta) {
    gap: 60px;
    padding-top: 0;
  }

  .section:nth-of-type(2) .section-head {
    transform: translate(1px, 101px);
  }

  .section:nth-of-type(2) .feature-grid {
    transform: translateY(114px);
  }

  .leaderboard .section-head {
    transform: translate(4px, 107px);
  }

  .leaderboard .table-shell {
    transform: translate(4px, 113px);
  }

  .section:nth-of-type(2) .section-head > p:not(.pill) {
    color: rgba(255, 255, 255, 0.64);
  }

  .section:nth-of-type(2) .pill,
  .section:nth-of-type(5) .pill {
    background: rgba(255, 255, 255, 0.06);
  }

  .section:nth-of-type(2) .pill {
    background: rgba(255, 255, 255, 0.045);
    color: rgba(56, 189, 248, 0.92);
  }

  .section:nth-of-type(2) .feature-card,
  .section:nth-of-type(2) .feature-card.accent {
    background:
      linear-gradient(180deg, rgba(10, 23, 29, 0.91), rgba(8, 20, 26, 0.98)),
      url("../assets/figma/section-network-bg.png") center / 210% auto no-repeat,
      rgba(10, 23, 30, 0.58);
  }

  .section:nth-of-type(2) .feature-card h3 {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
  }

  .section:nth-of-type(2) .feature-card .server-icon {
    opacity: 0.82;
  }

  .section:nth-of-type(2) .feature-card p {
    color: rgba(255, 255, 255, 0.62);
  }

  .section:nth-of-type(4):not(.hero):not(.final-cta) {
    gap: 0;
    padding-top: 2px;
  }

  .section:nth-of-type(4) .section-head,
  .section:nth-of-type(4) .process-grid {
    transform: translateY(105px);
  }

  .section:nth-of-type(4) .section-head > p:not(.pill) {
    width: min(100%, 1308px);
    font-size: 23px;
    line-height: 1.32;
  }

  .section:nth-of-type(4) .section-head > p:not(.pill) {
    color: rgba(255, 255, 255, 0.36);
  }

  .section:nth-of-type(4) .process-grid {
    width: min(100%, 1720px);
    gap: 32px;
  }

  .section:nth-of-type(4) .process-grid article {
    min-height: 276px;
    padding: 34px;
    background:
      linear-gradient(180deg, rgba(17, 28, 33, 0.8), rgba(13, 24, 28, 0.72)),
      url("../assets/figma/section-network-bg.png") center / 160% auto no-repeat,
      rgba(13, 25, 29, 0.72);
  }

  .section:nth-of-type(4) .process-grid h3 {
    color: rgba(255, 255, 255, 0.76);
    margin-top: 39px;
  }

  .section:nth-of-type(4) .process-grid p {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.5;
  }

  .process-grid article::before {
    top: 60px;
    background: rgba(255, 255, 255, 0);
  }

  .process-grid b {
    border-color: rgba(56, 189, 248, 0.08);
    background: rgba(56, 189, 248, 0.045);
    color: rgba(56, 189, 248, 0.82);
    transform: translateY(6px);
  }

  .section:nth-of-type(5):not(.hero):not(.final-cta) {
    align-content: start;
    align-items: start;
    grid-template-columns: minmax(0, 716px) minmax(0, 936px);
    gap: 68px;
    padding-top: 0;
  }

  .section:nth-of-type(5).mesh-bg::before {
    background:
      linear-gradient(rgba(56, 189, 248, 0.075) 1px, transparent 1px),
      linear-gradient(90deg, rgba(56, 189, 248, 0.075) 1px, transparent 1px),
      url("../assets/figma/section-network-bg.png") 53% 43% / cover no-repeat;
    background-size: 92px 92px, 92px 92px, cover;
    opacity: 0;
  }

  .section:nth-of-type(5) > .split-copy {
    max-width: 716px;
    padding-top: 52px;
    transform: translate(0, 112px);
  }

  .section:nth-of-type(5) .pill,
  .section:nth-of-type(5) .split-copy h2,
  .section:nth-of-type(5) .split-copy > p:not(.pill) {
    transform: translateX(14px);
  }

  .section:nth-of-type(5) .pill {
    min-height: 32px;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(56, 189, 248, 0.72);
    font-size: 14px;
  }

  .section:nth-of-type(5) .split-copy h2 {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 54px;
  }

  .section:nth-of-type(5) .split-copy > p:not(.pill) {
    max-width: 650px;
    margin-top: 38px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 22px;
    line-height: 1.36;
  }

  .section:nth-of-type(5) .callout {
    gap: 16px;
    margin-top: 41px;
    min-height: 159px;
    padding: 28px;
    border-color: rgba(56, 189, 248, 0.08);
    background:
      radial-gradient(circle at 8% 38%, rgba(56, 189, 248, 0.012), transparent 9rem),
      linear-gradient(180deg, rgba(6, 17, 22, 0.97), rgba(4, 14, 18, 0.93)),
      rgba(4, 13, 17, 0.88);
    box-shadow:
      0 48px 144px rgba(0, 0, 0, 1);
  }

  .section:nth-of-type(5) .callout h3 {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
  }

  .section:nth-of-type(5) .callout p {
    margin-top: 6px;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.36;
  }

  .section:nth-of-type(5) > .feature-grid {
    justify-self: end;
    gap: 30px 24px;
    transform: translate(0, 105px);
  }

  .section:nth-of-type(5) .feature-card {
    height: 270px;
    min-height: 270px;
    padding: 34px 26px 26px;
    border-color: rgba(56, 189, 248, 0.20);
    background:
      linear-gradient(180deg, rgba(38, 39, 39, 0.26), rgba(10, 11, 11, 1)),
      url("../assets/figma/section-network-bg.png") 70% 62% / 280% auto no-repeat,
      rgba(9, 11, 11, 0.68);
    box-shadow:
      0 26px 76px rgba(0, 0, 0, 1);
  }

  .section:nth-of-type(5) .feature-card h3 {
    color: rgba(255, 255, 255, 0.88);
    font-size: 25px;
    font-weight: 300;
    line-height: 1.28;
  }

  .section:nth-of-type(5) .feature-card p {
    max-width: 220px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 16px;
    line-height: 1.38;
  }

  .section:nth-of-type(5) .feature-card .server-icon,
  .section:nth-of-type(5) .feature-card h3,
  .section:nth-of-type(5) .feature-card p {
    transform: translate(8px, 7px);
  }

  .section:nth-of-type(5) .server-icon {
    border-color: rgba(56, 189, 248, 0.06);
    background: rgba(56, 189, 248, 0.15);
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.28);
    opacity: 0.82;
  }

  .commands .terminal-stack {
    transform: translate(1px, 2px);
  }

  .commands .split-copy {
    transform: translate(7px, -123px);
  }

  .commands .pill {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(56, 189, 248, 0.88);
  }

  .commands .split-copy > p:not(.pill) {
    color: rgba(255, 255, 255, 0.38);
  }

  .commands::after {
    background:
      url("../assets/figma/full-frame-background-wash.png") center -6513px / 1920px 9907px no-repeat,
      radial-gradient(circle at 72% 58%, rgba(56, 189, 248, 0.058), transparent 30rem),
      radial-gradient(circle at 18% 72%, rgba(56, 189, 248, 0.038), transparent 25rem),
      linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.88));
  }

  .commands.mesh-bg::before {
    opacity: 0.16;
    background-position:
      center,
      center,
      47% 48%;
    background-size:
      92px 92px,
      92px 92px,
      112% auto;
  }

  .commands .terminal-stack header {
    min-height: 64px;
    align-items: flex-start;
    gap: 9px;
    padding-top: 12px;
  }

  .commands .terminal-stack article {
    border-color: rgba(56, 189, 248, 0.16);
    background:
      radial-gradient(circle at 48% 62%, rgba(255, 255, 255, 0), transparent 19rem),
      linear-gradient(180deg, rgba(1, 5, 8, 0.9), rgba(1, 4, 7, 0.94)),
      url("../assets/figma/section-network-bg.png") 58% 50% / 130% auto no-repeat,
      rgba(1, 5, 8, 0.9);
  }

  .commands .terminal-stack header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    background: rgba(3, 12, 17, 0.88);
  }

  .commands .terminal-stack b {
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 18px;
  }

  .commands .terminal-stack button {
    gap: 5px;
    min-height: 28px;
    padding: 0 10px;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.018);
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
  }

  .commands .terminal-stack button img {
    width: 11px;
    height: 11px;
  }

  .commands .terminal-stack header span {
    width: 12px;
    height: 12px;
  }

  .commands pre code {
    gap: 38px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 18px;
  }

  .commands pre code span::before {
    background: rgba(56, 189, 248, 0.58);
  }

  .section:nth-of-type(6):not(.hero):not(.final-cta) {
    gap: 48px;
    padding-top: 0;
  }

  .section:nth-of-type(6).mesh-bg::before {
    opacity: 0.32;
    background-position:
      center,
      center,
      45% 47%;
    background-size:
      92px 92px,
      92px 92px,
      118% auto;
  }

  .section:nth-of-type(6)::after {
    background:
      url("../assets/figma/full-frame-background-wash.png") center -5169px / 1920px 9907px no-repeat,
      linear-gradient(rgba(5, 21, 28, 0.14), rgba(5, 21, 28, 0.14)),
      radial-gradient(circle at 50% 28%, rgba(56, 189, 248, 0.032), transparent 38rem),
      radial-gradient(circle at 0% 82%, rgba(56, 189, 248, 0.026), transparent 28rem),
      linear-gradient(180deg, rgba(2, 10, 13, 1), rgba(1, 1, 1, 1));
  }

  .section:nth-of-type(6) .section-head {
    transform: translate(0, 98px);
  }

  .section:nth-of-type(6) .section-head h2,
  .section:nth-of-type(6) .section-head h2 strong {
    color: #fff;
    font-weight: 500;
  }

  .section:nth-of-type(6) .section-head h2 strong {
    color: rgba(56, 189, 248, 0.98);
  }

  .section:nth-of-type(6) .section-head > p:not(.pill) {
    color: rgba(255, 255, 255, 0.54);
  }

  .section:nth-of-type(6) .research-grid {
    gap: 34px;
    transform: translate(0, 106px);
  }

  .section:nth-of-type(6) .research-grid article {
    padding: 36px;
    border-color: rgba(56, 189, 248, 0.14);
    background:
      linear-gradient(180deg, rgba(11, 32, 43, 0.78), rgba(6, 21, 29, 0.98)),
      url("../assets/figma/section-network-bg.png") center / 160% auto no-repeat,
      rgba(7, 22, 31, 0.76);
  }

  .section:nth-of-type(6) .research-grid article > div {
    padding-bottom: 24px;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .section:nth-of-type(6) .research-grid article > p {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 21px;
    line-height: 1.52;
  }

  .section:nth-of-type(6) .research-grid h3 {
    color: rgba(255, 255, 255, 0.94);
    font-weight: 400;
  }

  .section:nth-of-type(6) .research-grid code {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(56, 189, 248, 0.74);
  }

  .section:nth-of-type(6) .research-grid hr {
    margin: 40px 0 16px;
    background: rgba(255, 255, 255, 0.09);
  }

  .section:nth-of-type(6) .research-grid small {
    color: rgba(56, 189, 248, 0.74);
    font-size: 12px;
  }

  .section:nth-of-type(6) .research-grid ul {
    gap: 18px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
  }

  .section:nth-of-type(6) .research-grid li::before {
    background: rgba(56, 189, 248, 0.85);
  }

  .section:nth-of-type(6) .research-grid .server-icon {
    opacity: 0.86;
  }

  .section:nth-of-type(8):not(.hero):not(.final-cta) {
    gap: 3px;
    padding-top: 0;
  }

  #applications.mesh-bg::before {
    opacity: 0.4;
    background-position:
      center,
      center,
      44% 48%;
    background-size:
      92px 92px,
      92px 92px,
      112% auto;
  }

  .section:nth-of-type(8) .section-head {
    margin-bottom: 88px;
    transform: translateY(108px);
  }

  .section:nth-of-type(8) .section-head h2 {
    margin-top: 24px;
    font-size: 58px;
    line-height: 1.01;
  }

  .section:nth-of-type(8) .section-head > p:not(.pill) {
    width: min(100%, 1290px);
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 18px;
    line-height: 1.38;
  }

  .section:nth-of-type(8) .pill {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(56, 189, 248, 0.88);
  }

  .section:nth-of-type(8) .infra-grid {
    width: min(100%, 1720px);
    gap: 32px;
    transform: translateY(103px);
  }

  .section:nth-of-type(8) .infra-grid article {
    height: 677px;
    min-height: 677px;
    padding: 32px;
    border-color: rgba(56, 189, 248, 0.24);
    background:
      linear-gradient(180deg, rgba(3, 10, 15, 0.78), rgba(2, 8, 12, 0.88)),
      url("../assets/figma/section-network-bg.png") center / 160% auto no-repeat,
      rgba(2, 9, 13, 0.76);
  }

  .section:nth-of-type(8) .infra-grid small {
    color: rgba(56, 189, 248, 0.62);
    margin-top: 50px;
  }

  .section:nth-of-type(8) .infra-grid h3 {
    color: rgba(255, 255, 255, 0.86);
    margin-top: 23px;
  }

  .section:nth-of-type(8) .infra-grid article > p {
    color: rgba(255, 255, 255, 0.58);
    margin-top: 38px;
  }

  .section:nth-of-type(8) .console {
    min-height: 296px;
    margin-top: 31px;
    padding: 24px 18px 18px;
    border-color: rgba(67, 181, 101, 0.001);
    background: rgba(8, 24, 25, 0.72);
    font-size: 11px;
  }

  .section:nth-of-type(8) .console hr {
    margin: 24px 0 18px;
  }

  .section:nth-of-type(8) .console code {
    margin-top: 16px;
  }

  .section:nth-of-type(8) .console p {
    margin-top: 16px;
    font-size: 10px;
  }

  .section:nth-of-type(8) .console span {
    margin-top: 16px;
  }

  .section:nth-of-type(8) .console b,
  .section:nth-of-type(8) .console code,
  .section:nth-of-type(8) .console i,
  .section:nth-of-type(8) .console mark,
  .section:nth-of-type(8) .console strong {
    color: rgba(67, 181, 101, 0.72);
  }
}

@media (min-width: 1800px) {
  .section:nth-of-type(4) .section-head {
    min-height: 343px;
  }

  .section:nth-of-type(8) .infra-grid {
    width: 1720px;
  }
}

.hero-copy,
.section-head {
  width: min(100%, 1370px);
  margin: 0 auto;
  text-align: center;
}

.hero-copy,
.hero .stats {
  transform: none;
}

.hero .stats {
  transform: translateY(-2px);
}

.hero-copy {
  display: grid;
  justify-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0;
  padding: 9px 20px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--blue);
  font: 400 14.5px/1.2 var(--mono);
  letter-spacing: 0;
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.13);
}

.hero .pill {
  min-height: 48px;
  padding: 10px 22px;
  border-color: rgba(56, 189, 248, 0.26);
  background: rgba(56, 189, 248, 0.075);
  color: rgba(56, 189, 248, 0.78);
  font-size: 17px;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.06);
}

.hero h1,
.section h2 {
  margin: 30px 0 0;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(51px, 3.75vw, 72px);
  line-height: 1.3;
}

.hero h1 span,
.hero h1 strong,
.section h2 strong {
  display: block;
}

.hero h1 span,
.hero h1 strong {
  white-space: nowrap;
}

.hero h1 strong,
.section h2 strong {
  color: rgba(56, 189, 248, 0.95);
  font-weight: 500;
}

.hero h1 strong {
  color: rgba(56, 189, 248, 0.84);
}

.lede,
.section-head > p:not(.pill),
.split-copy > p:not(.pill),
.final-cta p:not(.pill) {
  color: var(--muted);
  font-size: clamp(18px, 1.46vw, 28px);
  line-height: 1.44;
}

.lede {
  width: min(100%, 1240px);
  margin: 44px auto 0;
  font-size: clamp(18px, 1.2vw, 23px);
}

.hero .lede {
  color: rgba(255, 255, 255, 0.45);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.hero .actions {
  margin-top: 43px;
  gap: 24px;
}

.button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 52px;
  border-radius: 8px;
  font: 400 14px/1 var(--mono);
  letter-spacing: 0;
  white-space: nowrap;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.outline-button:hover {
  transform: translateY(-1px);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .outline-button:hover,
  .site-action:hover,
  .feature-card:hover,
  .process-grid article:hover,
  .research-grid article:hover,
  .infra-grid article:hover,
  .table-shell:hover,
  .terminal-stack article:hover {
    transform: none;
  }
}

.button img,
.outline-button img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.button.primary {
  padding: 0 23px;
  border: 1px solid rgba(56, 189, 248, 0.88);
  background: var(--blue);
  color: #001018;
}

.hero .button.primary {
  border-color: rgba(82, 190, 255, 0.58);
  background: linear-gradient(90deg, #2eb4ed 0%, #242e9d 100%);
  color: #fff;
}

.button.ghost,
.outline-button {
  padding: 0 22px;
  border: 1px solid rgba(56, 189, 248, 0.48);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.button.ghost:hover,
.outline-button:hover {
  border-color: rgba(56, 189, 248, 0.82);
  background: rgba(56, 189, 248, 0.09);
}

.hero .button {
  min-height: 48px;
  gap: 14px;
  font-size: 14px;
}

.hero .button.primary {
  padding-right: 16px;
  padding-left: 16px;
  width: 270px;
}

.hero .button.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  gap: 16px;
  padding-right: 16px;
  padding-left: 16px;
  width: 200px;
}

.hero .button img {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

@media (min-width: 1201px) {
  .hero .button {
    font-weight: 500;
  }

  .hero .button.primary {
    gap: 16px;
    font-size: 14.5px;
  }

  .hero .button.primary img {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

.stats {
  width: min(100%, 1092px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 20px auto 0;
}

.stats article {
  min-height: 120px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.01);
  border-radius: 8px;
  background: rgba(12, 12, 13, 0.80);
  box-shadow: inset 0 0 28px rgba(56, 189, 248, 0.018);
  text-align: center;
}

.stats strong {
  color: var(--blue);
  font-size: clamp(27px, 1.6vw, 31px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.stats span {
  color: var(--muted);
  font: 400 11.5px/1.38 var(--mono);
}

.section-head h2,
.split-copy h2,
.final-cta h2 {
  font-size: clamp(42px, 3.25vw, 62px);
  line-height: 1.02;
}

.section-head > p:not(.pill) {
  width: min(100%, 1170px);
  margin: 22px auto 0;
}

.section-head.wide > p:not(.pill) {
  width: min(100%, 1240px);
}

.feature-grid,
.process-grid,
.research-grid,
.infra-grid {
  width: min(100%, 1840px);
  margin: 0 auto;
  min-width: 0;
}

.feature-grid {
  display: grid;
  gap: 24px;
}

.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-card,
.callout,
.process-grid article,
.research-grid article,
.infra-grid article,
.table-shell,
.terminal-stack article {
  min-width: 0;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 18, 25, 0.8), rgba(5, 15, 21, 0.72)),
    url("../assets/figma/section-network-bg.png") center / 160% auto no-repeat,
    rgba(5, 17, 24, 0.66);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 12px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.feature-card:hover,
.process-grid article:hover,
.research-grid article:hover,
.infra-grid article:hover,
.terminal-stack article:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.024),
    0 14px 38px rgba(0, 0, 0, 0.2);
}

.table-shell:hover {
  border-color: rgba(56, 189, 248, 0.28);
}

.feature-card {
  min-height: 304px;
  padding: clamp(30px, 1.95vw, 38px);
}

.feature-card.accent {
  border-color: rgba(56, 189, 248, 0.42);
  background:
    radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.074), transparent 17rem),
    linear-gradient(180deg, rgba(4, 14, 20, 0.74), rgba(3, 10, 15, 0.66)),
    url("../assets/figma/section-network-bg.png") center / 150% auto no-repeat,
    rgba(5, 18, 26, 0.62);
}

.server-icon {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: inline-block;
  border: 1px solid rgba(56, 189, 248, 0.36);
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.11);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.12);
}

.server-icon::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 10px;
  width: 20px;
  height: 24px;
  background:
    linear-gradient(#38bdf8, #38bdf8) 0 0 / 18px 1px no-repeat,
    linear-gradient(#38bdf8, #38bdf8) 0 6px / 18px 1px no-repeat,
    linear-gradient(#38bdf8, #38bdf8) 0 12px / 18px 1px no-repeat,
    linear-gradient(#38bdf8, #38bdf8) 0 18px / 18px 1px no-repeat,
    linear-gradient(#38bdf8, #38bdf8) 5px 3px / 10px 1px no-repeat,
    linear-gradient(#38bdf8, #38bdf8) 5px 9px / 10px 1px no-repeat,
    linear-gradient(#38bdf8, #38bdf8) 5px 15px / 10px 1px no-repeat;
  border-left: 1px solid #38bdf8;
  border-right: 1px solid #38bdf8;
}

.server-icon::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 29px;
  width: 8px;
  height: 20px;
  background:
    linear-gradient(#38bdf8, #38bdf8) 0 3px / 7px 1px no-repeat,
    linear-gradient(#38bdf8, #38bdf8) 0 11px / 7px 1px no-repeat,
    linear-gradient(#38bdf8, #38bdf8) 0 19px / 7px 1px no-repeat,
    radial-gradient(circle, #38bdf8 0 2px, transparent 2px) 7px 1px / 4px 4px no-repeat,
    radial-gradient(circle, #38bdf8 0 2px, transparent 2px) 7px 9px / 4px 4px no-repeat,
    radial-gradient(circle, #38bdf8 0 2px, transparent 2px) 7px 17px / 4px 4px no-repeat;
}

.feature-card h3,
.process-grid h3,
.research-grid h3,
.infra-grid h3,
.callout h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.18;
}

.feature-card p,
.process-grid p,
.research-grid p,
.infra-grid p,
.callout p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 0.89vw, 17px);
  line-height: 1.46;
}

.leaderboard {
  min-height: 1073px;
  gap: 42px;
  padding-top: 46px;
  padding-bottom: 82px;
}

.leaderboard .section-head > p:not(.pill) {
  width: min(100%, 1308px);
  font-size: 23px;
  line-height: 1.32;
}

.outline-button {
  width: fit-content;
  margin: 26px auto 0;
}

.leaderboard .outline-button {
  min-height: 56px;
  margin-top: 28px;
  padding-right: 24px;
  padding-left: 24px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(8, 10, 12, 0.38);
  color: rgba(56, 189, 248, 0.48);
  font-size: 16px;
}

.table-shell {
  width: min(100%, 1720px);
  margin: 0 auto;
  overflow-x: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.scroll-region {
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.62) rgba(255, 255, 255, 0.08);
}

.scroll-region::-webkit-scrollbar {
  height: 8px;
}

.scroll-region::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.scroll-region::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.62);
}

table {
  width: 100%;
  min-width: 1180px;
  border-collapse: separate;
  border-spacing: 0 4px;
  color: rgba(255, 255, 255, 0.52);
  font: 400 14px/1.28 var(--sans);
}

th,
td {
  border-bottom: 0;
  padding: 13px 26px;
  text-align: left;
  vertical-align: middle;
}

th {
  padding-top: 13px;
  padding-bottom: 13px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 400;
  font-family: var(--mono);
  text-transform: none;
  background: rgba(255, 255, 255, 0.04);
}

td {
  background: rgba(255, 255, 255, 0.038);
}

th + th,
td + td {
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

th:first-child,
td:first-child {
  width: 100px;
  padding-left: 26px;
}

th:last-child,
td:last-child {
  padding-right: 28px;
}

th:nth-child(2),
td:nth-child(2) {
  width: 327px;
}

th:nth-child(3),
td:nth-child(3) {
  width: 377px;
}

th:nth-child(4),
td:nth-child(4) {
  width: 326px;
}

th:nth-child(5),
td:nth-child(5),
th:nth-child(6),
td:nth-child(6) {
  width: 168px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td b {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

td b.gold {
  background: rgba(244, 200, 96, 0.12);
  color: var(--gold);
}

td b.bronze {
  background: rgba(211, 139, 102, 0.1);
  color: var(--bronze);
}

td small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

td img {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  vertical-align: -2px;
}

.success {
  color: var(--green);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-grid article {
  position: relative;
  min-height: 218px;
  padding: 28px;
}

.process-grid article::before {
  content: "";
  position: absolute;
  top: 54px;
  right: 28px;
  left: 102px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.process-grid b {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 8px;
  color: var(--blue);
  font: 600 28px/1 var(--mono);
  background: rgba(56, 189, 248, 0.075);
}

.process-grid h3 {
  margin-top: 24px;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.2;
}

.process-grid p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 19px;
  line-height: 1.3;
}

.split {
  min-height: 776px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(48px, 4.8vw, 92px);
}

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

.split-copy h2,
.split-copy > p:not(.pill),
.final-cta h2,
.final-cta p:not(.pill) {
  margin-left: 0;
  text-align: left;
}

.split-copy h2 {
  margin-top: 24px;
}

.split-copy > p:not(.pill) {
  margin: 20px 0 0;
}

.callout {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-top: 28px;
  padding: 24px;
}

.callout h3 {
  margin-top: 0;
}

.callout p {
  margin-top: 10px;
}

.split .feature-card {
  min-height: 236px;
  padding: 26px;
}

.split .feature-card h3 {
  margin-top: 22px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.18;
}

.split .feature-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 19px;
  line-height: 1.32;
}

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

.research-grid article {
  min-height: 376px;
  padding: 32px;
}

.research-grid article > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-faint);
}

.research-grid .server-icon {
  width: 48px;
  height: 48px;
  background:
    linear-gradient(#38bdf8, #38bdf8) 13px 15px / 22px 2px no-repeat,
    linear-gradient(#38bdf8, #38bdf8) 13px 23px / 22px 2px no-repeat,
    linear-gradient(#38bdf8, #38bdf8) 13px 31px / 22px 2px no-repeat,
    rgba(56, 189, 248, 0.11);
}

.research-grid h3 {
  margin-top: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.research-grid code {
  grid-column: auto;
  justify-self: end;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--blue);
  font: 400 14px/1.35 var(--mono);
}

.research-grid article > p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 20px;
  line-height: 1.32;
}

.research-grid hr,
.console hr {
  height: 1px;
  border: 0;
  margin: 16px 0 12px;
  background: var(--line-faint);
}

.research-grid small,
.infra-grid small {
  display: block;
  color: var(--blue);
  font: 400 12px/1.2 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}

.research-grid ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.68);
  font: 400 14px/1.32 var(--mono);
}

.research-grid li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--blue);
  vertical-align: 1px;
}

.commands {
  min-height: 864px;
  grid-template-columns: minmax(0, 724px) minmax(0, 936px);
  justify-content: space-between;
  gap: clamp(34px, 3.2vw, 60px);
  padding-top: 52px;
  padding-bottom: 52px;
}

.commands .split-copy {
  align-self: center;
  max-width: 724px;
  transform: translate(6px, -22px);
}

.commands .pill,
.final-cta .pill {
  min-height: 48px;
  padding: 9px 20px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  font: 400 24px/1.2 var(--sans);
}

.commands .pill {
  min-width: 251px;
}

.commands .split-copy h2 {
  font-size: clamp(42px, 2.82vw, 54px);
}

.commands .split-copy > p:not(.pill) {
  margin-top: 32px;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.34;
}

.terminal-stack {
  display: grid;
  align-self: center;
  gap: 40px;
  width: min(100%, 936px);
  justify-self: end;
  transform: translate(6px, 4px);
}

.terminal-stack article {
  position: relative;
  height: 313px;
  overflow: hidden;
  border-color: rgba(56, 189, 248, 0.18);
  background:
    radial-gradient(circle at 48% 62%, rgba(255, 255, 255, 0.018), transparent 19rem),
    linear-gradient(180deg, rgba(1, 5, 8, 0.88), rgba(1, 4, 7, 0.91)),
    url("../assets/figma/section-network-bg.png") 58% 50% / 130% auto no-repeat,
    rgba(1, 5, 8, 0.94);
}

.terminal-stack header {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line-faint);
  background: rgba(3, 12, 17, 0.58);
}

.terminal-stack header span {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.terminal-stack header span:first-child {
  background: #ff6b6b;
}

.terminal-stack header span:nth-child(2) {
  background: #f4c860;
}

.terminal-stack header span:nth-child(3) {
  background: var(--blue);
}

.terminal-stack b {
  margin-left: 16px;
  color: rgba(255, 255, 255, 0.88);
  font: 500 24px/1 var(--sans);
}

.terminal-stack button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.84);
  font: 400 12px/1 var(--mono);
}

.terminal-stack button img {
  width: 14px;
  height: 14px;
}

pre {
  margin: 0;
  height: 224px;
  padding: 43px 40px 32px;
  overflow-x: auto;
  box-sizing: border-box;
}

pre code {
  display: grid;
  gap: 29px;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.78);
  font: 400 clamp(15px, 1.32vw, 25px)/1.05 var(--sans);
  white-space: pre;
}

pre code span {
  position: relative;
  display: block;
  line-height: inherit;
}

pre code span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: -26px;
  width: 2px;
  height: 28px;
  background: var(--blue);
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.infra-grid article {
  min-height: 680px;
  padding: 26px;
}

.infra-grid small {
  margin-top: 26px;
  font-size: 15px;
  line-height: 1.2;
}

.infra-grid h3 {
  margin-top: 18px;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.2;
}

.infra-grid article > p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.38;
}

.console {
  min-width: 0;
  min-height: 260px;
  margin-top: 12px;
  padding: 20px;
  border: 1px solid rgba(67, 181, 101, 0.26);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  color: rgba(255, 255, 255, 0.66);
  font: 400 13px/1.48 var(--mono);
  overflow-wrap: anywhere;
}

.console b,
.console em {
  display: inline-block;
  color: var(--green);
  font-style: normal;
  font-weight: 400;
}

.console em {
  float: right;
  color: rgba(67, 181, 101, 0.82);
}

.console s {
  display: block;
  color: rgba(255, 255, 255, 0.34);
  text-decoration: line-through;
}

.console code {
  display: block;
  margin-top: 8px;
  color: var(--green);
  white-space: normal;
}

.console p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.48;
}

.console span {
  display: block;
  margin-top: 6px;
}

.console i,
.console mark,
.console strong {
  color: var(--green);
  background: transparent;
  font-style: normal;
  font-weight: 400;
}

.agent-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 54px;
}

.agent-row span {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.agent-row span:last-child {
  text-align: right;
}

progress {
  width: 100%;
  height: 8px;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.1);
}

progress::-webkit-progress-value {
  background: var(--green);
}

progress::-moz-progress-bar {
  background: var(--green);
}

.final-cta {
  min-height: 713px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 0;
  padding-bottom: 48px;
  background:
    radial-gradient(circle at 50% 58%, rgba(56, 189, 248, 0), transparent 34rem),
    linear-gradient(180deg, #000, #000004 48%, #000);
}

.final-cta::before {
  background:
    linear-gradient(rgba(56, 189, 248, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.09) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0;
}

.final-cta::after {
  background:
    url("../assets/figma/full-frame-background-wash.png") center -8609px / 1920px 9907px no-repeat,
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
}

.final-cta > div {
  width: min(100%, 1720px);
  min-height: 374px;
  display: grid;
  align-content: center;
  justify-items: center;
  transform: translateY(-2px);
  padding: clamp(38px, 2.92vw, 56px) clamp(24px, 4.6vw, 88px);
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(98, 22, 35, 0.08) 0%, rgba(98, 22, 35, 0.035) 30%, transparent 58%),
    radial-gradient(ellipse at 6% 16%, rgba(56, 189, 248, 0.16), transparent 32rem),
    radial-gradient(ellipse at 88% 55%, rgba(56, 189, 248, 0.06), transparent 34rem),
    radial-gradient(ellipse at 50% 100%, rgba(56, 189, 248, 0.10), transparent 28rem),
    linear-gradient(118deg, rgba(3, 26, 33, 0.96) 0%, rgba(1, 8, 12, 0.94) 48%, rgba(7, 48, 60, 0.84) 100%),
    rgba(5, 28, 36, 0.9);
  box-shadow:
    inset 0 0 58px rgba(56, 189, 248, 0.038),
    0 16px 48px rgba(0, 0, 0, 0.2);
}

.final-cta h2,
.final-cta p:not(.pill) {
  text-align: center;
}

.final-cta .pill {
  min-width: 273px;
}

.final-cta h2 {
  margin-top: 22px;
  color: #fff;
  font-size: clamp(40px, 3.02vw, 58px);
  font-weight: 500;
  line-height: 1.16;
}

.final-cta p:not(.pill) {
  width: min(100%, 1240px);
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.1vw, 21px);
  line-height: 1.34;
}

.final-cta .actions {
  gap: 100px;
  margin-top: 68px;
}

.final-cta .button.primary {
  width: 195px;
  border-color: transparent;
  background: linear-gradient(90deg, #38bdf8 0%, #2630a8 100%);
  color: #fff;
}

.final-cta .button.ghost {
  width: 200px;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
}

.final-cta .button {
  min-height: 48px;
  padding-right: 16px;
  padding-left: 16px;
  font: 400 12px/1 var(--mono);
}

.final-cta .button img {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

@media (min-width: 1201px) {
  .final-cta > div {
    transform: translateY(102px);
  }

  .final-cta .pill {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(56, 189, 248, 0.6);
  }

  .final-cta h2 {
    color: rgba(255, 255, 255, 0.94);
  }

  .final-cta > div {
    border-color: rgba(56, 189, 248, 0.1);
    box-shadow:
      inset 0 0 70px rgba(56, 189, 248, 0.09),
      0 18px 54px rgba(0, 0, 0, 0.23);
  }

  .final-cta p:not(.pill) {
    color: rgba(255, 255, 255, 0.62);
  }

  .final-cta .actions {
    gap: 96px;
    transform: translateY(-5px);
  }

  .final-cta .button.ghost {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    gap: 11px;
    font-size: 13px;
    font-weight: 500;
  }

  .final-cta .button.ghost img {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

.site-footer {
  position: relative;
  isolation: isolate;
  min-height: 475px;
  margin-top: 110px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(2, 8, 12, 1.00), rgba(2, 8, 12, 1.00)),
    linear-gradient(180deg, rgba(3, 9, 13, 0.98), rgba(0, 5, 7, 0.98)),
    #000;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(rgba(5, 21, 28, 0.16), rgba(5, 21, 28, 0.16));
}

.site-footer-inner {
  width: 100%;
  max-width: 1920px;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 236px 236px;
  align-items: center;
  gap: clamp(70px, 9.7vw, 186px);
  margin: 0 auto;
  padding: 72px 80px 46px;
  transform: translateY(-8px);
}

.footer-brand-block {
  max-width: 620px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 18px;
}

.footer-brand-text {
  display: grid;
  align-content: center;
  font-family: var(--brand-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-brand-text span:first-child {
  color: var(--blue);
}

.footer-brand-text span:last-child {
  margin-top: 8px;
  color: #fff;
}

.footer-brand-block p {
  width: min(100%, 556px);
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 23px;
  line-height: 1.4;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 26px;
  min-height: 174px;
}

@media (min-width: 1201px) {
  .footer-links {
    transform: translateX(-15px);
  }
}

.footer-links h2 {
  margin: 0 0 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--blue);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.2;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links img {
  width: 18px;
  height: 18px;
}

.footer-legal {
  min-height: 70px;
  display: grid;
  place-items: center;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  font: 400 14px/1.2 var(--mono);
}

/* Text visibility repair for live page readability. */
.section:nth-of-type(2) .section-head > p:not(.pill),
.hero .lede,
.section:nth-of-type(2) .feature-card h3,
.section:nth-of-type(2) .feature-card p,
.section:nth-of-type(4) .section-head > p:not(.pill),
.section:nth-of-type(4) .process-grid h3,
.section:nth-of-type(4) .process-grid p,
.section:nth-of-type(5) .split-copy > p:not(.pill),
.section:nth-of-type(5) .callout h3,
.section:nth-of-type(5) .callout p,
.section:nth-of-type(5) .feature-card h3,
.section:nth-of-type(5) .feature-card p,
.commands .split-copy > p:not(.pill),
.commands .terminal-stack b,
.commands .terminal-stack button,
.commands pre code,
.section:nth-of-type(6) .section-head > p:not(.pill),
.section:nth-of-type(6) .research-grid article > p,
.section:nth-of-type(6) .research-grid h3,
.section:nth-of-type(6) .research-grid ul,
.section:nth-of-type(8) .section-head > p:not(.pill),
.section:nth-of-type(8) .infra-grid h3,
.section:nth-of-type(8) .infra-grid article > p,
.section:nth-of-type(8) .console s,
td small,
.final-cta p:not(.pill) {
  color: rgba(255, 255, 255, 0.54) !important;
}

.section:nth-of-type(2) .pill,
.section:nth-of-type(5) .pill,
.commands .pill,
.section:nth-of-type(6) .research-grid small,
.section:nth-of-type(6) .research-grid code,
.section:nth-of-type(8) .infra-grid small,
.section:nth-of-type(8) .pill {
  color: rgba(56, 189, 248, 0.68) !important;
}

.section:nth-of-type(2) .pill {
  color: rgba(56, 189, 248, 0.8) !important;
}

.section:nth-of-type(2) .section-head > p:not(.pill),
.section:nth-of-type(2) .feature-card p {
  color: rgba(255, 255, 255, 0.58) !important;
}

.section:nth-of-type(2) .feature-card h3 {
  color: rgba(255, 255, 255, 0.88) !important;
}

.section:nth-of-type(8) .console b,
.section:nth-of-type(8) .console code,
.section:nth-of-type(8) .console i,
.section:nth-of-type(8) .console mark,
.section:nth-of-type(8) .console strong {
  color: rgba(67, 181, 101, 0.66) !important;
}

.hero .lede {
  color: rgba(255, 255, 255, 0.40) !important;
}

.section:nth-of-type(5) .split-copy > p:not(.pill) {
  color: rgba(255, 255, 255, 0.62) !important;
}

.section:nth-of-type(5) .pill {
  color: rgba(56, 189, 248, 0.76) !important;
}

.section:nth-of-type(5) .callout h3 {
  color: rgba(255, 255, 255, 0.88) !important;
}

.section:nth-of-type(5) .callout p {
  color: rgba(255, 255, 255, 0.54) !important;
}

.section:nth-of-type(5) .feature-card h3 {
  color: rgba(255, 255, 255, 0.88) !important;
}

.section:nth-of-type(5) .feature-card p {
  color: rgba(255, 255, 255, 0.56) !important;
}

.section:nth-of-type(6) .research-grid article > p {
  color: rgba(255, 255, 255, 0.58) !important;
}

.section:nth-of-type(6) .research-grid article {
  border-color: rgba(56, 189, 248, 0.13) !important;
}

.section:nth-of-type(6) .research-grid h3 {
  color: rgba(255, 255, 255, 0.9) !important;
}

.section:nth-of-type(6) .research-grid ul {
  color: rgba(255, 255, 255, 0.56) !important;
}

.section:nth-of-type(6) .research-grid small {
  color: rgba(56, 189, 248, 0.62) !important;
}

.section:nth-of-type(6) .research-grid code {
  color: rgba(56, 189, 248, 0.63) !important;
}

#research .section-head h2 {
  color: rgba(255, 255, 255, 0.94) !important;
}

#research .section-head h2 strong {
  color: rgba(56, 189, 248, 0.96) !important;
}

#research .section-head > p:not(.pill) {
  color: rgba(255, 255, 255, 0.58) !important;
}

.section:nth-of-type(4) .process-grid h3 {
  color: rgba(255, 255, 255, 0.88) !important;
}

.section:nth-of-type(4) .section-head > p:not(.pill) {
  color: rgba(255, 255, 255, 0.56) !important;
}

.commands .split-copy > p:not(.pill) {
  color: rgba(255, 255, 255, 0.62) !important;
}

.commands pre code {
  color: rgba(255, 255, 255, 0.78) !important;
}

.section:nth-of-type(4) .process-grid p {
  color: rgba(255, 255, 255, 0.56) !important;
}

.commands .terminal-stack b {
  color: rgba(255, 255, 255, 0.82) !important;
}

.leaderboard .section-head > p:not(.pill) {
  color: rgba(255, 255, 255, 0.56) !important;
}

.leaderboard table,
.leaderboard td,
.leaderboard th {
  color: rgba(255, 255, 255, 0.62) !important;
}

.leaderboard td small {
  color: rgba(255, 255, 255, 0.46) !important;
}

.section:nth-of-type(8) .section-head > p:not(.pill) {
  color: rgba(255, 255, 255, 0.56) !important;
}

.section:nth-of-type(8) .infra-grid h3 {
  color: rgba(255, 255, 255, 0.84) !important;
}

.section:nth-of-type(8) .infra-grid article > p {
  color: rgba(255, 255, 255, 0.54) !important;
}

.final-cta p:not(.pill) {
  color: rgba(255, 255, 255, 0.62) !important;
}

.final-cta h2 {
  color: rgba(255, 255, 255, 0.94) !important;
}

@media (max-width: 1200px) {
  .site-header,
  .site-header-inner {
    min-height: 96px;
  }

  .site-header-inner {
    grid-template-columns: 1fr auto;
    row-gap: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    flex-wrap: wrap;
    gap: 14px 24px;
    white-space: normal;
  }

  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 56px 48px 48px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .section {
    min-height: auto;
  }

  .section:nth-of-type(2) {
    min-height: auto;
  }

  .section:nth-of-type(3),
  .section:nth-of-type(4),
  .section:nth-of-type(5),
  .section:nth-of-type(6),
  .section:nth-of-type(8) {
    min-height: auto;
  }

  .section:nth-of-type(5),
  .section:nth-of-type(6),
  .section:nth-of-type(8) {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .stats,
  .feature-grid.four,
  .infra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-copy {
    max-width: 920px;
  }

  .leaderboard .section-head > p:not(.pill),
  .section:nth-of-type(4) .section-head > p:not(.pill) {
    font-size: 18px;
    line-height: 1.44;
  }

  .section:nth-of-type(4) .section-head {
    margin-bottom: 32px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header-inner {
    min-height: 86px;
  }

  .site-header-inner {
    gap: 14px;
    padding: 16px 18px;
  }

  .site-brand {
    gap: 10px;
    font-size: 18px;
  }

  .site-brand img {
    width: 38px;
    height: 38px;
  }

  .site-action {
    min-height: 42px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 14px;
  }

  .site-action img {
    width: 18px;
    height: 18px;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    justify-content: start;
    gap: 12px 20px;
    font-size: 13px;
    line-height: 1.2;
  }

  .site-footer {
    min-height: auto;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 22px 34px;
  }

  .footer-brand img {
    width: 70px;
    height: 70px;
    border-radius: 14px;
  }

  .footer-brand-text {
    font-size: 34px;
  }

  .footer-brand-block p {
    margin-top: 24px;
    font-size: 18px;
  }

  .footer-links {
    min-height: 0;
    gap: 18px;
  }

  .footer-links h2 {
    padding-bottom: 14px;
    font-size: 21px;
  }

  .footer-links a {
    font-size: 15px;
  }

  .section {
    gap: 32px;
    padding: 56px 18px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 172px;
  }

  .hero-copy,
  .hero .stats {
    transform: none;
  }

  .hero h1,
  .section-head h2,
  .split-copy h2,
  .final-cta h2 {
    font-size: clamp(42px, 13vw, 74px);
  }

  .hero h1 span,
  .hero h1 strong {
    white-space: normal;
  }

  .lede,
  .section-head > p:not(.pill),
  .split-copy > p:not(.pill),
  .final-cta p:not(.pill) {
    font-size: 17px;
  }

  .stats,
  .feature-grid.four,
  .feature-grid.two,
  .process-grid,
  .research-grid,
  .infra-grid {
    grid-template-columns: 1fr;
  }

  .stats article {
    min-height: 116px;
  }

  .feature-card,
  .process-grid article,
  .research-grid article,
  .infra-grid article {
    min-height: auto;
    padding: 22px;
  }

  .section:nth-of-type(2):not(.hero):not(.final-cta) {
    padding-top: 56px;
  }

  .section:nth-of-type(2) .feature-grid {
    gap: 14px;
  }

  .section:nth-of-type(2) .pill,
  .leaderboard .pill {
    min-height: 40px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 15px;
  }

  .leaderboard .section-head > p:not(.pill) {
    font-size: 17px;
    line-height: 1.42;
  }

  .section:nth-of-type(4) .section-head > p:not(.pill) {
    font-size: 17px;
    line-height: 1.42;
  }

  .section:nth-of-type(4) .section-head {
    margin-bottom: 36px;
  }

  .leaderboard .outline-button {
    min-height: 48px;
    margin-top: 20px;
    font-size: 13px;
  }

  .section:nth-of-type(2) .feature-card,
  .section:nth-of-type(4) .process-grid article,
  .section:nth-of-type(5) .feature-card,
  .section:nth-of-type(6) .research-grid article {
    min-height: auto;
  }

  .research-grid ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section:nth-of-type(2) .feature-card h3,
  .process-grid h3,
  .research-grid h3,
  .infra-grid h3 {
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.2;
  }

  .section:nth-of-type(2) .feature-card p,
  .process-grid p,
  .research-grid article > p,
  .infra-grid article > p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.38;
  }

  .research-grid .server-icon {
    width: 42px;
    height: 42px;
    background:
      linear-gradient(#38bdf8, #38bdf8) 11px 13px / 20px 2px no-repeat,
      linear-gradient(#38bdf8, #38bdf8) 11px 20px / 20px 2px no-repeat,
      linear-gradient(#38bdf8, #38bdf8) 11px 27px / 20px 2px no-repeat,
      rgba(56, 189, 248, 0.11);
  }

  .research-grid code {
    justify-self: start;
    font-size: 12px;
  }

  .infra-grid small {
    margin-top: 14px;
    font-size: 11px;
  }

  .console {
    min-height: auto;
    margin-top: 18px;
    padding: 16px;
    font-size: 11px;
  }

  .terminal-stack {
    transform: none;
    width: 100%;
  }

  .split-copy,
  .split-copy h2,
  .split-copy > p:not(.pill) {
    text-align: center;
  }

  .split-copy {
    max-width: none;
    margin: 0 auto;
  }

  .callout {
    text-align: left;
  }

  .split .feature-card h3 {
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.2;
  }

  .split .feature-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.38;
  }

  .terminal-stack {
    min-width: 0;
    gap: 18px;
  }

  pre {
    padding: 18px;
  }

  pre code {
    line-height: 1.55;
  }

  .infra-grid {
    gap: 18px;
  }

  .infra-grid article {
    padding: 20px;
  }

  .console {
    min-height: auto;
    margin-top: 18px;
    padding: 15px;
    font-size: 11px;
    line-height: 1.48;
  }

  .console hr {
    margin: 14px 0 10px;
  }

  .console code,
  .console p {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.48;
  }

  .agent-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
  }

  .agent-row span:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-header-inner {
    min-height: 0;
  }

  .site-header-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px;
  }

  .site-brand {
    gap: 8px;
    font-size: 15px;
  }

  .site-brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .site-action {
    gap: 7px;
    min-height: 38px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
  }

  .site-action img {
    width: 16px;
    height: 16px;
  }

  .site-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    font-size: 12px;
  }

  .section {
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 42px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero {
    min-height: 760px;
    padding-top: 154px;
  }

  .hero-copy,
  .hero h1,
  .hero h1 span,
  .hero h1 strong,
  .hero .lede,
  .hero .actions,
  .hero .stats {
    width: min(100%, 100cqw);
    max-width: 100%;
  }

  .hero-copy {
    container-type: inline-size;
  }

  .hero h1,
  .hero h1 span,
  .hero h1 strong,
  .hero .lede,
  .hero .actions {
    width: 100%;
    min-width: 0;
  }

  .pill {
    min-height: 36px;
    padding: 7px 13px;
    font-size: 12px;
  }

  .hero .pill {
    min-height: 36px;
    padding: 7px 13px;
    font-size: 12px;
  }

  .hero h1,
  .section-head h2,
  .split-copy h2,
  .final-cta h2 {
    margin-top: 18px;
    font-size: clamp(32px, 9.8vw, 42px);
  }

  .hero h1 {
    font-size: clamp(32px, 9.6vw, 40px);
  }

  .final-cta h2 {
    width: min(100%, 280px);
    max-width: 280px;
    font-size: clamp(28px, 8.4vw, 34px);
  }

  .final-cta h2 strong,
  .final-cta p:not(.pill) {
    width: min(100%, 280px);
    max-width: 280px;
  }

  .final-cta .actions {
    width: min(100%, 280px);
    gap: 10px;
  }

  .final-cta .button {
    min-height: 40px;
    width: auto;
    padding-right: 5px;
    padding-left: 5px;
    gap: 4px;
    font-size: 9px;
  }

  .final-cta .button.primary,
  .final-cta .button.ghost {
    width: auto;
  }

  .final-cta .button img {
    width: 12px;
    height: 12px;
  }

  .lede,
  .section-head > p:not(.pill),
  .split-copy > p:not(.pill),
  .final-cta p:not(.pill) {
    font-size: 14px;
    line-height: 1.42;
  }

  .section:nth-of-type(4) .section-head > p:not(.pill) {
    font-size: 14px;
    line-height: 1.42;
  }

  .actions {
    width: 100%;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 30px;
  }

  .hero .actions {
    margin-top: 24px;
    gap: 10px;
  }

  .button,
  .outline-button {
    flex: 1 1 0;
    min-height: 44px;
    padding-right: 7px;
    padding-left: 7px;
    gap: 6px;
    font-size: 10px;
    white-space: nowrap;
  }

  .hero .button {
    min-height: 44px;
    width: auto;
    padding-right: 5px;
    padding-left: 5px;
    gap: 3px;
    font-size: 8px;
  }

  .hero .button.primary,
  .hero .button.ghost {
    width: auto;
  }

  .button img,
  .outline-button img {
    width: 13px;
    height: 13px;
  }

  .stats,
  .feature-grid.four,
  .feature-grid.two,
  .process-grid,
  .research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stats {
    gap: 8px;
    margin-top: 4px;
  }

  .stats article {
    min-height: 78px;
    padding: 12px 8px;
    gap: 8px;
  }

  .stats strong {
    font-size: 22px;
  }

  .stats span {
    font-size: 10px;
  }

  .feature-card,
  .process-grid article,
  .research-grid article,
  .infra-grid article {
    min-height: auto;
    padding: 15px;
  }

  .section:nth-of-type(2):not(.hero):not(.final-cta) {
    gap: 22px;
    padding-top: 42px;
  }

  .section:nth-of-type(2) .feature-grid {
    gap: 8px;
  }

  .section:nth-of-type(2) .pill,
  .leaderboard .pill {
    min-height: 36px;
    padding-right: 13px;
    padding-left: 13px;
    font-size: 12px;
  }

  .leaderboard .outline-button {
    min-height: 44px;
    margin-top: 30px;
    font-size: 10px;
  }

  .section:nth-of-type(4),
  .section:nth-of-type(6) {
    gap: 22px;
  }

  .section:nth-of-type(4) .section-head {
    margin-bottom: 30px;
  }

  .feature-card h3,
  .process-grid h3,
  .research-grid h3,
  .infra-grid h3,
  .callout h3 {
    margin-top: 11px;
    font-size: 16px;
  }

  .feature-card p,
  .process-grid p,
  .research-grid p,
  .infra-grid p,
  .callout p {
    font-size: 12px;
    line-height: 1.36;
  }

  .section:nth-of-type(2) .feature-card h3,
  .process-grid h3,
  .research-grid h3,
  .infra-grid h3 {
    margin-top: 11px;
    font-size: 16px;
  }

  .section:nth-of-type(2) .feature-card p,
  .process-grid p,
  .research-grid article > p,
  .infra-grid article > p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.36;
  }

  .server-icon {
    width: 30px;
    height: 30px;
    background:
      linear-gradient(#38bdf8, #38bdf8) 9px 11px / 16px 2px no-repeat,
      linear-gradient(#38bdf8, #38bdf8) 9px 17px / 16px 2px no-repeat,
      linear-gradient(#38bdf8, #38bdf8) 9px 23px / 16px 2px no-repeat,
      rgba(56, 189, 248, 0.11);
  }

  .process-grid b {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .callout {
    padding: 15px;
  }

  .table-shell {
    margin-right: -14px;
    margin-left: -14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .callout {
    flex-direction: column;
  }

  .research-grid article > div {
    grid-template-columns: 1fr;
  }

  .research-grid code {
    grid-column: auto;
  }

  .research-grid ul {
    font-size: 11px;
  }

  .console {
    min-height: auto;
    margin-top: 10px;
    padding: 10px;
    font-size: 9px;
    line-height: 1.36;
  }

  .console hr {
    margin: 10px 0 8px;
  }

  .console code,
  .console p {
    margin-top: 5px;
    font-size: 9px;
    line-height: 1.36;
  }

  .console span {
    margin-top: 5px;
  }

  .infra-grid {
    gap: 10px;
  }

  .terminal-stack header {
    min-height: 42px;
  }

  pre {
    padding: 13px;
    overflow-x: visible;
  }

  pre code {
    font-size: 11px;
    line-height: 1.48;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .actions {
    gap: 8px;
  }

  .button,
  .outline-button,
  .hero .button {
    gap: 4px;
    padding-right: 4px;
    padding-left: 4px;
    font-size: 9px;
  }

  .button img,
  .outline-button img {
    width: 11px;
    height: 11px;
    flex-basis: 11px;
  }
}
