:root {
  color-scheme: dark;
  --ink: #080c14;
  --ink-soft: #111d30;
  --paper: #e8eff9;
  --paper-shade: #101a29;
  --acid: #64d8ff;
  --line: #2b3b52;
  --muted: #8fa2bd;
  --font-display: "Space Grotesk", "Trebuchet MS", sans-serif;
  --font-mono: "DM Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

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

button, a { color: inherit; font: inherit; }
a { text-decoration: none; }
button { border: 0; }
::selection { color: var(--ink); background: var(--acid); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 82px;
  padding: 0 6.1%;
  color: var(--paper);
  border-bottom: 1px solid rgb(255 255 255 / 11%);
}

.wordmark { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; letter-spacing: 0; }
.wordmark-light { color: #91a6c2; font-weight: 400; }
.wordmark-symbol { display: flex; align-items: end; gap: 3px; width: 20px; height: 18px; transform: skew(-22deg); }
.wordmark-symbol i { display: block; width: 4px; height: 8px; background: var(--acid); }
.wordmark-symbol i:nth-child(2) { height: 14px; }
.wordmark-symbol i:nth-child(3) { height: 18px; }
.main-nav { display: flex; align-items: center; gap: 39px; margin-left: 4%; }
.main-nav a, .header-link { font-size: 12px; font-weight: 500; }
.main-nav a { color: #9eafc8; transition: color 180ms ease; }
.main-nav a[aria-current="page"] { color: var(--paper); }
.main-nav a:hover, .footer-wordmark:hover, .site-footer a:hover { color: var(--acid); }
.header-link { display: inline-flex; align-items: center; gap: 13px; padding: 11px 0; }
.header-link .arrow { color: var(--acid); font-size: 17px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.91fr 1.09fr;
  min-height: 750px;
  padding: 158px 6.1% 57px;
  overflow: hidden;
  color: var(--paper);
  background-color: var(--ink);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 0 36%;
  background-image: linear-gradient(rgb(255 255 255 / 3.1%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 3.1%) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 30%);
}

.hero-copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 45px 0 0 4.8%; }
.eyebrow, .section-kicker, .hero-build, .showcase-topline, .boot-showcase figcaption, .figure-index, .principle-number, .principle-tail, .tour-overline, .tour-detail, .image-corner-label, .spec-label, .spec-note, .closing-note, .site-footer > span, .site-footer > a:last-child { font-family: var(--font-mono); font-size: 10px; font-weight: 400; letter-spacing: 0; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 30px; color: #9aadc7; text-transform: uppercase; }
.live-dot { display: inline-block; flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px rgb(100 216 255 / 45%); }
.hero h1 { margin: 0; font-size: 72px; font-weight: 600; line-height: 0.99; letter-spacing: 0; }
.hero h1 span { color: var(--acid); }
.hero-bottom { display: flex; align-items: end; gap: 24px; width: min(100%, 401px); margin-top: 29px; }
.hero-description { max-width: 310px; margin: 0; color: #a5b4ca; font-size: 15px; line-height: 1.65; }
.round-link { display: grid; flex: 0 0 42px; place-items: center; width: 42px; height: 42px; color: var(--acid); border: 1px solid #3b4f69; border-radius: 50%; font-family: var(--font-mono); font-size: 18px; transition: color 180ms ease, background 180ms ease, border-color 180ms ease; }
.round-link:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.hero-build { display: flex; align-items: center; gap: 12px; margin: auto 0 0; color: #8497b0; font-size: 9px; }
.build-divider { display: block; width: 26px; height: 1px; background: #3b4f69; }

.boot-showcase { position: relative; z-index: 1; align-self: center; justify-self: end; width: 100%; max-width: 603px; margin: 0 0 0 3%; animation: settle-in 850ms 80ms both cubic-bezier(.2,.7,.2,1); }
.showcase-topline { display: flex; justify-content: space-between; margin-bottom: 11px; color: #91a4bf; }
.showcase-topline > span:first-child { display: flex; align-items: center; gap: 9px; }
.showcase-topline .live-dot { width: 5px; height: 5px; }
.monitor-frame { position: relative; padding: 7px; overflow: hidden; background: #111b2a; border: 1px solid #34465d; box-shadow: 0 28px 80px rgb(0 0 0 / 26%); }
.monitor-frame::before { position: absolute; z-index: 2; inset: 0; border: 1px solid rgb(255 255 255 / 5%); content: ""; pointer-events: none; }
.monitor-frame img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.frame-crosshair { position: absolute; z-index: 3; width: 13px; height: 13px; border-color: var(--acid); border-style: solid; opacity: .72; }
.frame-crosshair-a { top: 0; left: 0; border-width: 1px 0 0 1px; }
.frame-crosshair-b { right: 0; bottom: 0; border-width: 0 1px 1px 0; }
.boot-showcase figcaption { display: flex; justify-content: space-between; margin-top: 12px; color: #879ab4; font-size: 9px; }
.figure-index { position: absolute; top: 42%; right: -41px; color: var(--acid); writing-mode: vertical-rl; }
.hero-grid-mark { position: absolute; bottom: 57px; left: 0; width: 42px; height: 1px; background: var(--acid); }

.section-light { background: #0c1421; }
.approach { padding: 74px 10.9% 92px; }
.section-kicker { display: flex; justify-content: space-between; color: #8296b1; }
.approach-layout { display: grid; grid-template-columns: 1.05fr 0.6fr; align-items: end; gap: 12%; margin-top: 71px; }
.approach h2, .tour-heading h2, .specs-intro h2 { margin: 0; font-size: 58px; font-weight: 500; line-height: 1.04; letter-spacing: 0; }
.approach h2 span, .specs-intro h2 span { color: #91a3bb; }
.approach-aside { padding-bottom: 5px; }
.large-copy { margin: 0 0 17px; font-size: 19px; line-height: 1.5; }
.small-copy { max-width: 355px; margin: 0; color: #9aacc3; font-size: 13px; line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: 24px; margin-top: 29px; padding-bottom: 8px; border-bottom: 1px solid #536881; font-size: 12px; font-weight: 600; transition: color 180ms ease, border-color 180ms ease; }
.text-link span { color: var(--acid); font-size: 16px; }
.text-link:hover { color: var(--acid); border-color: var(--acid); }
.principles { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 85px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle { position: relative; display: flex; flex-direction: column; min-height: 140px; padding: 17px 18px 19px 0; border-right: 1px solid var(--line); }
.principle + .principle { padding-left: 22px; }
.principle-last { border: 0; }
.principle-number { color: #879ab4; }
.principle > span:nth-child(2) { margin-top: 17px; font-size: 16px; line-height: 1.3; }
.principle-tail { margin-top: auto; color: #879ab4; font-size: 9px; }

.home-glimpse { padding: 73px 10.9% 90px; background: #111d30; }
.glimpse-layout { display: grid; grid-template-columns: 1.12fr .8fr; align-items: center; gap: 9%; margin-top: 54px; }
.glimpse-image { margin: 0; padding: 8px; background: #152238; border: 1px solid #354760; }
.glimpse-image img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.glimpse-image figcaption { padding: 10px 2px 2px; color: #91a4bf; font-family: var(--font-mono); font-size: 9px; }
.glimpse-copy h2, .architecture h2, .build-overview h2, .build-steps h2, .modes-layout h2, .roadmap h2 { margin: 0; font-size: 54px; font-weight: 500; line-height: 1.04; }
.glimpse-copy h2 span, .architecture h2 span, .build-overview h2 span, .build-steps h2 span, .modes-layout h2 span, .roadmap h2 span { color: #91a3bb; }
.glimpse-copy > p, .build-overview > div:first-child > p { max-width: 355px; margin: 20px 0 0; color: #a5b4ca; font-size: 14px; line-height: 1.75; }

.page-hero { position: relative; padding: 157px 10.9% 86px; overflow: hidden; background: var(--ink-soft); isolation: isolate; }
.page-hero::before { position: absolute; z-index: -1; inset: 0 0 0 36%; background-image: linear-gradient(rgb(255 255 255 / 3.1%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 3.1%) 1px, transparent 1px); background-size: 64px 64px; content: ""; mask-image: linear-gradient(90deg, transparent, black 30%); }
.page-hero .eyebrow { margin-bottom: 27px; }
.page-hero h1 { max-width: 750px; margin: 0; font-size: 64px; font-weight: 500; line-height: 1.02; }
.page-hero h1 span { color: var(--acid); }
.page-hero > p:not(.eyebrow) { max-width: 490px; margin: 21px 0 0; color: #a5b4ca; font-size: 15px; line-height: 1.7; }
.page-index { position: absolute; right: 10.9%; bottom: 35px; color: #8296b1; font-family: var(--font-mono); font-size: 9px; }

.architecture { padding: 73px 10.9% 91px; }
.architecture h2 { margin-top: 55px; }
.architecture-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 52px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.architecture-item { display: flex; flex-direction: column; align-items: flex-start; min-height: 245px; padding: 19px 23px 20px 0; }
.architecture-item + .architecture-item { padding-left: 23px; border-left: 1px solid var(--line); }
.architecture-item > span, .architecture-item > a { color: #8ea1bb; font-family: var(--font-mono); font-size: 9px; }
.architecture-item h3 { margin: 27px 0 0; font-size: 21px; font-weight: 500; }
.architecture-item p { margin: 12px 0 20px; color: #a5b4ca; font-size: 12px; line-height: 1.7; }
.architecture-item > a { margin-top: auto; color: var(--acid); }

.build-guide { padding: 74px 10.9% 87px; }
.build-overview, .modes-layout { display: grid; grid-template-columns: .82fr 1.05fr; align-items: start; gap: 13%; margin-top: 59px; }
.build-overview h2, .modes-layout h2 { font-size: 52px; }
.requirements-list { border-top: 1px solid var(--line); }
.requirements-list > div { display: grid; grid-template-columns: 44px 1fr 1fr; align-items: center; gap: 11px; min-height: 59px; border-bottom: 1px solid var(--line); }
.requirements-list > div > span:first-child { color: #8599b3; font-family: var(--font-mono); font-size: 9px; }
.requirements-list strong { font-size: 14px; font-weight: 500; }
.requirements-list > div > span:last-child { color: #94a6bf; font-size: 11px; text-align: right; }

.build-steps { padding: 74px 10.9% 82px; color: var(--paper); background: var(--ink-soft); }
.build-steps h2 { margin-top: 51px; }
.command-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; margin-top: 48px; }
.command-step { padding-top: 20px; border-top: 1px solid #354760; }
.command-step h3 { margin: 17px 0 0; font-size: 21px; font-weight: 500; }
.command-step > p:not(.tour-overline) { min-height: 44px; margin: 10px 0 18px; color: #a5b4ca; font-size: 12px; line-height: 1.65; }
.command-step pre { margin: 0; padding: 17px; overflow-x: auto; color: #e0eaf7; background: #080d16; border: 1px solid #30435c; font-family: var(--font-mono); font-size: 11px; line-height: 1.8; tab-size: 2; }
.command-step code { font-family: inherit; }
.build-tip { display: flex; align-items: flex-start; gap: 10px; max-width: 730px; margin: 34px 0 0; color: #a5b4ca; font-size: 12px; line-height: 1.7; }
.build-tip .live-dot { margin-top: 5px; }
.modes-layout { align-items: center; }
.mode-list { border-top: 1px solid var(--line); }
.mode-list > div { display: grid; grid-template-columns: 45px 1fr 1fr; align-items: center; gap: 12px; min-height: 63px; border-bottom: 1px solid var(--line); }
.mode-list kbd { display: grid; place-items: center; width: 27px; height: 27px; color: var(--acid); background: #14243a; border: 1px solid #354b67; font-family: var(--font-mono); font-size: 11px; }
.mode-list > div > span:nth-child(2) { font-size: 13px; font-weight: 500; }
.mode-list > div > span:last-child { color: #94a6bf; font-size: 10px; text-align: right; }

.roadmap { padding: 74px 10.9% 82px; color: var(--paper); background: #111d30; }
.roadmap-layout { display: grid; grid-template-columns: .82fr 1.1fr; gap: 13%; margin-top: 54px; }
.roadmap h2 { font-size: 49px; }
.roadmap-list { border-top: 1px solid #354760; }
.roadmap-list p { display: flex; align-items: flex-start; gap: 12px; margin: 0; padding: 14px 0; color: #a5b4ca; border-bottom: 1px solid #354760; font-size: 12px; line-height: 1.6; }
.roadmap-state { flex: 0 0 7px; width: 7px; height: 7px; margin-top: 5px; border: 1px solid #7489a5; border-radius: 50%; }
.roadmap-state.is-done { background: var(--acid); border-color: var(--acid); box-shadow: 0 0 10px rgb(100 216 255 / 35%); }
.roadmap .text-link { margin-top: 27px; }

.system-tour { padding: 75px 10.9% 88px; color: var(--paper); background: var(--ink-soft); }
.section-kicker-dark { color: #8296b1; }
.tour-heading { display: flex; align-items: end; justify-content: space-between; margin: 57px 0 42px; }
.tour-heading h2 { font-size: 55px; }
.tour-heading h2 span { color: var(--acid); }
.tour-heading > p { max-width: 243px; margin: 0 0 6px; color: #a5b4ca; font-size: 13px; line-height: 1.7; }
.tour-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #354760; }
.tour-tab { display: flex; align-items: center; gap: 19px; min-height: 58px; padding: 0 16px 0 0; color: #8da0ba; background: transparent; border-bottom: 1px solid #354760; text-align: left; cursor: pointer; transition: color 160ms ease; }
.tour-tab + .tour-tab { padding-left: 20px; border-left: 1px solid #354760; }
.tour-tab.is-active { color: var(--paper); border-bottom: 2px solid var(--acid); }
.tab-index { color: #8295af; font-family: var(--font-mono); font-size: 10px; }
.tour-tab > span:nth-child(2) { font-size: 13px; font-weight: 500; }
.tab-arrow { margin-left: auto; color: var(--acid); font-size: 14px; opacity: 0; transition: opacity 160ms ease, transform 160ms ease; }
.tour-tab.is-active .tab-arrow { opacity: 1; transform: translate(2px, -2px); }
.tour-content { display: grid; grid-template-columns: 1.08fr 0.8fr; gap: 9%; padding-top: 32px; animation: reveal 380ms both; }
.tour-image-wrap { position: relative; align-self: start; padding: 8px; background: #152238; border: 1px solid #354760; }
.tour-image { display: block; width: 100%; aspect-ratio: 1.8 / 1; object-fit: cover; }
.image-corner-label { position: absolute; right: 8px; bottom: 8px; padding: 7px 9px; color: var(--acid); background: var(--ink); font-size: 8px; }
.tour-description { display: flex; flex-direction: column; align-items: flex-start; padding: 5px 0 0; }
.tour-overline { margin: 0 0 17px; color: var(--acid); font-size: 9px; }
.tour-description h3 { margin: 0; font-size: 29px; font-weight: 500; line-height: 1.12; }
.tour-description > p:not(.tour-overline) { max-width: 335px; margin: 18px 0 0; color: #a5b4ca; font-size: 13px; line-height: 1.75; }
.tour-detail { display: flex; flex-direction: column; gap: 7px; width: 100%; margin-top: 24px; padding-top: 13px; color: #8ea1bb; border-top: 1px solid #354760; font-size: 9px; }
.tour-detail span + span { color: #d7e3f2; }
.text-link-light { margin-top: 23px; color: var(--paper); border-color: #405674; }
.text-link-light span { color: var(--acid); }
.text-link-light:hover { color: var(--acid); }

.specs { padding: 73px 10.9% 93px; }
.specs-layout { display: grid; grid-template-columns: .74fr 1.1fr; gap: 13%; margin-top: 61px; }
.specs-intro h2 { font-size: 54px; }
.specs-intro > p { max-width: 284px; margin: 18px 0 0; color: #9aacc3; font-size: 13px; line-height: 1.75; }
.solid-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 29px; min-width: 211px; margin-top: 28px; padding: 14px 16px; color: var(--paper); background: var(--ink); font-size: 11px; font-weight: 500; transition: background 180ms ease, color 180ms ease; }
.solid-link span:last-child { color: var(--acid); font-size: 15px; }
.solid-link:hover { color: var(--ink); background: var(--acid); }
.solid-link:hover span:last-child { color: var(--ink); }
.spec-list { align-self: center; border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: .58fr 1.25fr 1fr; align-items: center; gap: 14px; min-height: 61px; border-bottom: 1px solid var(--line); }
.spec-label { color: #879ab4; font-size: 9px; }
.spec-value { font-size: 13px; font-weight: 500; }
.spec-note { color: #879ab4; font-size: 9px; text-align: right; }

.closing { position: relative; min-height: 407px; padding: 65px 10.9% 63px; overflow: hidden; color: var(--paper); background-color: #0b1c32; isolation: isolate; }
.closing::before { position: absolute; z-index: -1; inset: 0; background-image: linear-gradient(rgb(255 255 255 / 3.4%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 3.4%) 1px, transparent 1px); background-size: 64px 64px; content: ""; mask-image: linear-gradient(90deg, black, transparent 80%); }
.closing .eyebrow { margin-bottom: 24px; color: #a0b3cd; }
.closing h2 { position: relative; z-index: 1; margin: 0; font-size: 57px; font-weight: 500; line-height: 1; }
.closing-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 35px; margin-top: 29px; padding-bottom: 9px; border-bottom: 1px solid #45617e; font-size: 12px; font-weight: 500; }
.closing-link span:last-child { color: var(--acid); font-size: 16px; }
.closing-link:hover { border-color: var(--acid); }
.closing-note { position: absolute; right: 10.9%; bottom: 28px; color: #8fa3bf; font-size: 9px; }
.closing-orbit { position: absolute; top: 50%; right: 13%; display: grid; place-items: center; width: 258px; height: 258px; border: 1px solid rgb(100 216 255 / 25%); border-radius: 50%; transform: translateY(-50%); }
.closing-orbit::before, .closing-orbit::after { position: absolute; inset: 17px; border: 1px solid rgb(100 216 255 / 19%); border-radius: 50%; content: ""; }
.closing-orbit::after { inset: 34px; border-color: rgb(100 216 255 / 14%); }
.closing-orbit span { z-index: 1; color: var(--acid); font-size: 104px; font-weight: 500; line-height: 1; }

.site-footer { display: flex; align-items: center; justify-content: space-between; min-height: 79px; padding: 0 6.1%; color: var(--paper); background: var(--ink); }
.footer-wordmark { font-size: 15px; }
.footer-wordmark .wordmark-symbol { transform: scale(.8) skew(-22deg); transform-origin: left center; }
.site-footer > span { color: #8a9db7; font-size: 8px; }
.site-footer > a:last-child { display: inline-flex; align-items: center; gap: 8px; color: #a0b2cb; font-size: 9px; }
.site-footer > a:last-child span { color: var(--acid); font-size: 14px; }

@keyframes settle-in { from { opacity: 0; transform: translateY(17px); } to { opacity: 1; transform: translateY(0); } }
@keyframes reveal { from { opacity: .25; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1000px) {
  .site-header { padding-inline: 5%; }
  .main-nav { gap: 23px; }
  .hero { grid-template-columns: .9fr 1.1fr; min-height: 682px; padding: 140px 5% 50px; }
  .hero-copy { padding-left: 1%; }
  .hero h1 { font-size: 60px; }
  .figure-index { right: -25px; }
  .approach, .system-tour, .specs { padding-right: 7%; padding-left: 7%; }
  .home-glimpse, .page-hero, .architecture, .build-guide, .build-steps, .roadmap { padding-right: 7%; padding-left: 7%; }
  .approach-layout { gap: 7%; }
  .approach h2 { font-size: 51px; }
  .tour-content { gap: 6%; }
  .specs-layout { gap: 8%; }
  .glimpse-copy h2, .architecture h2, .build-overview h2, .build-steps h2, .modes-layout h2, .roadmap h2 { font-size: 48px; }
  .build-overview, .modes-layout, .roadmap-layout { gap: 8%; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 64px; }
  .site-header { position: absolute; height: 67px; padding-inline: 22px; }
  .wordmark { font-size: 16px; }
  .header-link { margin-left: auto; margin-right: 22px; font-size: 11px; }
  .main-nav { position: absolute; top: 66px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 8px 22px 15px; background: var(--ink); border-bottom: 1px solid #293a52; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid #29374a; }
  .main-nav a:last-child { border: 0; }
  .menu-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 28px; height: 32px; padding: 4px; background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 19px; height: 1px; background: var(--acid); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; gap: 46px; min-height: initial; padding: 119px 24px 50px; }
  .hero::before { inset: 37% 0 0 0; background-size: 48px 48px; mask-image: linear-gradient(180deg, transparent, black 25%); }
  .hero-copy { padding: 0; }
  .eyebrow { margin-bottom: 24px; font-size: 9px; }
  .hero h1 { font-size: 55px; }
  .hero-bottom { width: 100%; margin-top: 22px; }
  .hero-description { max-width: 290px; font-size: 14px; }
  .round-link { flex-basis: 38px; width: 38px; height: 38px; }
  .hero-build { margin-top: 31px; font-size: 8px; }
  .boot-showcase { justify-self: stretch; width: calc(100% - 7px); margin-left: 0; }
  .showcase-topline, .boot-showcase figcaption { font-size: 8px; }
  .figure-index { right: -16px; font-size: 8px; }
  .hero-grid-mark { display: none; }
  .approach, .system-tour, .specs { padding: 52px 24px 60px; }
  .home-glimpse, .architecture, .build-guide, .build-steps, .roadmap { padding: 52px 24px 60px; }
  .page-hero { padding: 122px 24px 76px; }
  .page-hero h1 { font-size: 48px; }
  .page-index { right: 24px; bottom: 22px; font-size: 8px; }
  .section-kicker { gap: 12px; font-size: 8px; }
  .section-kicker span:last-child { text-align: right; }
  .approach-layout { grid-template-columns: 1fr; gap: 27px; margin-top: 47px; }
  .approach h2 { font-size: 43px; }
  .large-copy { font-size: 17px; }
  .small-copy { font-size: 12px; }
  .text-link { margin-top: 22px; }
  .principles { grid-template-columns: repeat(2, 1fr); margin-top: 46px; }
  .principle { min-height: 121px; padding: 14px 8px 14px 0; }
  .principle + .principle { padding-left: 15px; }
  .principle:nth-child(2) { border-right: 0; }
  .principle:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .principle:nth-child(3) { padding-left: 0; }
  .principle > span:nth-child(2) { margin-top: 12px; font-size: 14px; }
  .glimpse-layout { grid-template-columns: 1fr; gap: 29px; margin-top: 41px; }
  .glimpse-copy h2, .architecture h2, .build-overview h2, .build-steps h2, .modes-layout h2, .roadmap h2 { font-size: 43px; }
  .architecture h2, .build-steps h2 { margin-top: 39px; }
  .architecture-grid { grid-template-columns: 1fr; margin-top: 33px; }
  .architecture-item { min-height: initial; padding: 16px 0 20px; }
  .architecture-item + .architecture-item { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .architecture-item h3 { margin-top: 17px; }
  .build-overview, .modes-layout, .roadmap-layout { grid-template-columns: 1fr; gap: 30px; margin-top: 41px; }
  .command-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 35px; }
  .command-step > p:not(.tour-overline) { min-height: 0; }
  .command-step pre { padding: 13px; font-size: 10px; }
  .requirements-list > div { grid-template-columns: 38px 1fr 1fr; gap: 8px; }
  .mode-list > div { grid-template-columns: 36px 1fr 1fr; gap: 8px; }
  .build-tip { margin-top: 25px; }
  .tour-heading { align-items: start; flex-direction: column; gap: 19px; margin: 42px 0 31px; }
  .tour-heading h2 { font-size: 46px; }
  .tour-heading > p { max-width: 280px; font-size: 12px; }
  .tour-tabs { grid-template-columns: repeat(3, 1fr); }
  .tour-tab { gap: 8px; min-height: 52px; padding-right: 5px; }
  .tour-tab + .tour-tab { padding-left: 9px; }
  .tab-index { font-size: 8px; }
  .tour-tab > span:nth-child(2) { font-size: 11px; }
  .tab-arrow { font-size: 12px; }
  .tour-content { grid-template-columns: 1fr; gap: 27px; padding-top: 23px; }
  .tour-description { padding-top: 0; }
  .tour-description h3 { font-size: 27px; }
  .tour-description > p:not(.tour-overline) { margin-top: 12px; }
  .tour-detail { margin-top: 18px; }
  .specs-layout { grid-template-columns: 1fr; gap: 39px; margin-top: 44px; }
  .specs-intro h2 { font-size: 47px; }
  .spec-row { grid-template-columns: .55fr 1fr; gap: 9px; min-height: 64px; }
  .spec-label { font-size: 8px; }
  .spec-value { font-size: 12px; }
  .spec-note { grid-column: 2; margin-top: -14px; text-align: left; font-size: 8px; }
  .closing { min-height: 386px; padding: 54px 24px 55px; }
  .closing h2 { font-size: 51px; }
  .closing-orbit { top: 49%; right: -84px; width: 200px; height: 200px; opacity: .6; }
  .closing-orbit span { font-size: 80px; }
  .closing-note { right: auto; left: 24px; bottom: 20px; font-size: 8px; }
  .site-footer { flex-wrap: wrap; gap: 13px; min-height: 86px; padding: 17px 24px; }
  .footer-wordmark { flex: 1 0 100%; }
  .site-footer > span { font-size: 7px; }
  .site-footer > a:last-child { font-size: 8px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 49px; }
  .approach h2 { font-size: 38px; }
  .tour-heading h2 { font-size: 42px; }
  .page-hero h1, .glimpse-copy h2, .architecture h2, .build-overview h2, .build-steps h2, .modes-layout h2, .roadmap h2 { font-size: 38px; }
  .section-kicker { font-size: 7px; }
  .tour-tab { gap: 5px; }
  .tour-tab + .tour-tab { padding-left: 6px; }
}

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