@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400&family=Inter:wght@400;500;600&display=swap");

:root {
  --paper: #f4f4f0;
  --paper-deep: #e9e9e3;
  --ink: #0c0e0d;
  --ink-soft: #585c59;
  --line: rgba(12, 14, 13, 0.14);
  --dark: #0a0c0b;
  --dark-soft: #111412;
  --white: #f7f7f3;
  --lime: #c8ff63;
  --blue: #b8d8ff;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.72;
  transition: opacity 0.6s ease;
}

.site-nav {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1160px, calc(100% - 32px));
  height: 58px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 10px 0 18px;
  border: 1px solid rgba(12, 14, 13, 0.1);
  border-radius: 18px;
  background: rgba(244, 244, 240, 0.7);
  backdrop-filter: blur(18px) saturate(140%);
  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s var(--ease);
}

.site-nav.is-dark {
  color: var(--white);
  background: rgba(10, 12, 11, 0.72);
  border-color: rgba(255, 255, 255, 0.13);
}

.site-nav.is-hidden {
  transform: translate(-50%, -92px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition:
    color 0.4s ease,
    background 0.4s ease;
}

.is-dark .brand-mark {
  color: var(--ink);
  background: var(--white);
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
}

.site-nav.is-dark nav {
  color: rgba(247, 247, 243, 0.62);
}

.site-nav nav a,
.text-link,
footer a {
  transition: opacity 0.2s ease;
}

.site-nav nav a:hover,
.text-link:hover,
footer a:hover {
  opacity: 0.55;
}

.nav-cta {
  justify-self: end;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 500;
  transition:
    transform 0.25s var(--ease),
    color 0.4s ease,
    background 0.4s ease;
}

.site-nav.is-dark .nav-cta {
  color: var(--ink);
  background: var(--white);
}

.nav-cta:hover {
  transform: translateY(-1px);
}

main,
footer {
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  min-height: 100vh;
  padding: 140px max(28px, calc((100vw - 1160px) / 2));
}

.section-dark {
  color: var(--white);
  background: var(--dark);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  top: 48%;
  right: -180px;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 730px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 255, 99, 0.14);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 34px;
  font-size: clamp(58px, 7.9vw, 112px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s ease;
}

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

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.text-link {
  font-size: 13px;
  font-weight: 500;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
}

.hero-orbit {
  position: relative;
  z-index: 2;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit,
.orbit-core,
.final-ring {
  position: absolute;
  border-radius: 50%;
}

.orbit {
  inset: 0;
  border: 1px solid rgba(12, 14, 13, 0.24);
}

.orbit-one {
  animation: rotate 28s linear infinite;
}

.orbit-one::after,
.orbit-two::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: -5px;
  left: 50%;
  background: var(--ink);
  border-radius: 50%;
}

.orbit-two {
  inset: 15%;
  border-style: dashed;
  animation: rotate-reverse 19s linear infinite;
}

.orbit-two::after {
  width: 6px;
  height: 6px;
  top: 50%;
  right: -3px;
  left: auto;
  background: var(--ink-soft);
}

.orbit-core {
  inset: 34%;
  display: grid;
  place-items: center;
  background: rgba(12, 14, 13, 0.045);
  border: 1px solid rgba(12, 14, 13, 0.13);
}

.orbit-core span {
  width: 12px;
  height: 12px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow:
    0 0 0 20px rgba(12, 14, 13, 0.04),
    0 0 0 52px rgba(12, 14, 13, 0.025);
}

.orbit-label {
  position: absolute;
  margin: 0;
  padding: 5px 8px;
  color: var(--ink-soft);
  background: rgba(244, 244, 240, 0.86);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.label-top {
  top: 8%;
  left: 14%;
}

.label-right {
  top: 47%;
  right: -3%;
}

.label-bottom {
  right: 25%;
  bottom: 7%;
}

.scroll-cue {
  position: absolute;
  right: max(28px, calc((100vw - 1160px) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-100%);
  animation: scan 2.4s ease-in-out infinite;
}

.statement {
  display: grid;
  min-height: 110vh;
  place-items: center;
  overflow: hidden;
}

.statement::before,
.statement::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.statement::before {
  width: 68vw;
  height: 68vw;
}

.statement::after {
  width: 39vw;
  height: 39vw;
  border-style: dashed;
}

.statement-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.statement h2,
.principles-intro h2,
.api-copy h2,
.benchmark-title h2,
.final-copy h2 {
  margin-bottom: 38px;
  font-size: clamp(45px, 7vw, 92px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.statement h2 span {
  color: rgba(247, 247, 243, 0.32);
}

.statement-inner > p:last-child {
  max-width: 570px;
  margin: 0 0 0 auto;
  color: rgba(247, 247, 243, 0.58);
  font-size: 19px;
  line-height: 1.6;
}

.section-dark .section-kicker {
  color: rgba(247, 247, 243, 0.48);
}

.horizon {
  min-height: 115vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.horizon-head {
  text-align: center;
}

.horizon-head h2 {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(64px, 14vw, 190px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.horizon-head > p:last-child {
  margin: 22px 0 80px;
  color: var(--ink-soft);
  font-size: 17px;
}

.horizon-scale {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.scale-track {
  position: relative;
  height: 1px;
  background: var(--line);
}

.scale-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--scale-progress, 0%);
  height: 1px;
  background: var(--ink);
  transition: width 0.15s linear;
}

.scale-node {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.node-one {
  left: 3%;
}

.node-two {
  left: 27%;
}

.node-three {
  left: 100%;
  width: 13px;
  height: 13px;
  background: var(--ink);
}

.scale-labels {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr 1fr;
  margin-top: 22px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}

.scale-labels span:nth-child(2) {
  justify-self: start;
}

.scale-labels span:last-child {
  justify-self: end;
  text-align: right;
}

.scale-labels strong {
  display: block;
  color: var(--ink);
  font-size: 10px;
  font-weight: 400;
}

.fine-print {
  max-width: 600px;
  margin: 80px auto 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.principles {
  min-height: auto;
  padding-top: 160px;
  padding-right: max(28px, calc((100vw - 1440px) / 2));
  padding-bottom: 180px;
  padding-left: max(28px, calc((100vw - 1440px) / 2));
  border-top: 1px solid var(--line);
}

.principles-intro {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  margin-bottom: 90px;
}

.principles-intro .section-kicker {
  padding-top: 13px;
}

.principles-intro h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-card {
  min-height: 485px;
  padding: 25px 28px 34px;
  border-right: 1px solid var(--line);
}

.principle-card:last-child {
  border-right: 0;
}

.card-index {
  display: block;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
}

.card-glyph {
  position: relative;
  height: 225px;
}

.glyph-memory i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.glyph-memory i:nth-child(1) {
  width: 34px;
  height: 34px;
  background: var(--ink);
}

.glyph-memory i:nth-child(2) {
  width: 90px;
  height: 90px;
}

.glyph-memory i:nth-child(3) {
  width: 160px;
  height: 160px;
  border-color: var(--line);
  border-style: dashed;
  animation: rotate 22s linear infinite;
}

.glyph-adaptive {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.glyph-adaptive i {
  width: 9px;
  height: 9px;
  background: var(--ink);
  border-radius: 50%;
  animation: breathe 2.6s ease-in-out infinite;
}

.glyph-adaptive i:nth-child(2) {
  width: 17px;
  height: 17px;
  animation-delay: 0.2s;
}

.glyph-adaptive i:nth-child(3) {
  width: 31px;
  height: 31px;
  animation-delay: 0.4s;
}

.glyph-adaptive i:nth-child(4) {
  width: 52px;
  height: 52px;
  animation-delay: 0.6s;
}

.glyph-native i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 168px;
  height: 56px;
  transform: translate(-50%, -50%) rotate(-18deg);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.glyph-native i:last-child {
  transform: translate(-50%, -50%) rotate(18deg);
}

.glyph-native::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  border-radius: 50%;
}

.principle-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.principle-card p {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.api-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 90px;
  padding-right: max(28px, calc((100vw - 1440px) / 2));
  padding-left: max(28px, calc((100vw - 1440px) / 2));
  overflow: hidden;
}

.api-section::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  right: -500px;
  bottom: -500px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.api-copy {
  position: relative;
  z-index: 2;
}

.api-copy h2 {
  font-size: clamp(48px, 5.7vw, 78px);
}

.api-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(247, 247, 243, 0.55);
  font-size: 17px;
  line-height: 1.65;
}

.code-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 19px;
  background: var(--dark-soft);
}

.code-bar {
  display: flex;
  height: 49px;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-bar span {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.23);
  border-radius: 50%;
}

.code-bar p {
  margin: 0 auto;
  padding-right: 42px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 9px;
}

pre {
  margin: 0;
  padding: 38px;
  overflow-x: auto;
  color: rgba(247, 247, 243, 0.92);
  font: 11px/1.9 var(--mono);
  tab-size: 2;
}

.code-dim {
  color: rgba(247, 247, 243, 0.36);
}

.code-string {
  color: var(--lime);
}

.code-status {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 9px;
  padding: 0 19px;
  color: rgba(247, 247, 243, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--mono);
  font-size: 9px;
}

.benchmarks {
  min-height: auto;
  padding-top: 180px;
  padding-right: max(28px, calc((100vw - 1440px) / 2));
  padding-bottom: 180px;
  padding-left: max(28px, calc((100vw - 1440px) / 2));
}

.benchmark-title {
  max-width: 980px;
  margin-bottom: 90px;
}

.benchmark-title h2 {
  margin-bottom: 25px;
  font-size: clamp(52px, 7vw, 92px);
}

.benchmark-title > p:last-child {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.benchmark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.benchmark-grid article {
  padding: 28px;
  background: var(--paper-deep);
  border-radius: 16px;
}

.benchmark-grid span,
.benchmark-grid strong {
  display: block;
}

.benchmark-grid span {
  margin-bottom: 80px;
  color: var(--ink-soft);
  font-size: 12px;
}

.benchmark-grid strong {
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

.pending-line {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(12, 14, 13, 0.12);
}

.pending-line i {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-100%);
  animation: benchmark-scan 3s var(--ease) infinite;
}

.benchmark-grid article:nth-child(2) i {
  animation-delay: 0.55s;
}

.benchmark-grid article:nth-child(3) i {
  animation-delay: 1.1s;
}

.benchmark-note {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.6;
}

.final-cta {
  display: grid;
  min-height: 105vh;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.final-ring {
  width: min(78vw, 980px);
  height: min(78vw, 980px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-ring::before,
.final-ring::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.final-ring::before {
  inset: 14%;
}

.final-ring::after {
  inset: 32%;
  background: rgba(255, 255, 255, 0.025);
}

.final-copy {
  position: relative;
  z-index: 2;
}

.final-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(58px, 9vw, 122px);
  line-height: 0.9;
}

.final-copy > p:not(.section-kicker) {
  max-width: 530px;
  margin: 0 auto 34px;
  color: rgba(247, 247, 243, 0.55);
  font-size: 17px;
  line-height: 1.6;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  min-height: 240px;
  padding: 70px max(28px, calc((100vw - 1160px) / 2));
  background: var(--dark);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: var(--white);
}

footer > p {
  margin: 0;
  color: rgba(247, 247, 243, 0.4);
  font-size: 11px;
  text-align: center;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(247, 247, 243, 0.4);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes scan {
  0%,
  20% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes benchmark-scan {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

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

  .principle-card {
    display: grid;
    grid-template-columns: 40px minmax(220px, 0.75fr) minmax(300px, 1.25fr);
    min-height: 270px;
    align-items: center;
    gap: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-card:last-child {
    border-bottom: 0;
  }

  .card-glyph {
    height: 220px;
  }

  .principle-card p {
    max-width: 560px;
  }

  .api-section {
    grid-template-columns: 1fr;
  }

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

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

  .site-nav nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero-copy {
    padding-top: 40px;
  }

  .hero-orbit {
    position: absolute;
    width: 70vw;
    right: -28vw;
    opacity: 0.42;
  }

  .statement-inner > p:last-child {
    margin-left: 0;
  }

  .principles-intro,
  .api-section {
    grid-template-columns: 1fr;
  }

  .api-section {
    gap: 70px;
  }

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

  .principle-card {
    display: grid;
    grid-template-columns: 36px 0.8fr 1fr;
    min-height: auto;
    align-items: center;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-card:last-child {
    border-bottom: 0;
  }

  .card-glyph {
    height: 220px;
  }

  .principle-card p {
    align-self: center;
  }

  .benchmark-grid article {
    min-height: 190px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: left;
  }

  footer > p {
    text-align: left;
  }

  footer > div {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .section {
    min-height: auto;
    padding: 120px 20px;
  }

  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
  }

  .hero {
    min-height: 100svh;
    padding-top: 110px;
    padding-bottom: 80px;
  }

  h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
  }

  .scroll-cue {
    display: none;
  }

  .statement {
    min-height: 100svh;
  }

  .statement h2,
  .principles-intro h2,
  .api-copy h2,
  .benchmark-title h2 {
    font-size: 43px;
  }

  .horizon {
    min-height: 100svh;
  }

  .horizon-head h2 {
    font-size: 18vw;
  }

  .horizon-head > p:last-child {
    margin-bottom: 60px;
  }

  .scale-labels {
    grid-template-columns: 0.35fr 0.75fr 0.9fr;
    font-size: 7px;
  }

  .principles {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .principles-intro {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 60px;
  }

  .principle-card {
    display: block;
    padding: 24px 5px 40px;
  }

  .card-glyph {
    height: 190px;
  }

  .principle-card p {
    max-width: 340px;
  }

  .api-section {
    gap: 55px;
  }

  pre {
    padding: 25px 20px;
    font-size: 9px;
  }

  .benchmarks {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .benchmark-title {
    margin-bottom: 55px;
  }

  .final-cta {
    min-height: 100svh;
  }

  .final-copy h2 {
    font-size: 17vw;
  }

  footer {
    padding: 60px 20px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  #field {
    display: none;
  }
}
