:root {
  --bg: #050607;
  --bg-soft: #0e1113;
  --graphite: #1a1d20;
  --paper: #f3f0e8;
  --muted: #a8aaa8;
  --orange: #d9792b;
  --green: #7daf73;
  --red: #d84a3a;
  --line: #2a2e32;
  --steel: #72787f;
  --shadow: 0 28px 90px rgba(0, 0, 0, .48);
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Rajdhani, Inter, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 10%, rgba(217, 121, 43, .12), transparent 24rem),
    radial-gradient(circle at 40% 45%, rgba(125, 175, 115, .06), transparent 28rem),
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px) 0 0 / 100% 4px,
    var(--bg);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .45), transparent 58%);
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(5, 6, 7, .76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .035em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(125, 175, 115, .48);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 13px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
}

nav a {
  padding: 26px 0 23px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: var(--paper);
  border-color: var(--orange);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(217, 121, 43, .75);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.nav-cta::after,
.button::after {
  content: ">";
  margin-left: 12px;
  color: currentColor;
}

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

.primary {
  background: linear-gradient(135deg, #e97c2f, #b94112);
  border-color: #f08a3d;
  box-shadow: 0 18px 42px rgba(217, 121, 43, .2);
}

.secondary {
  background: rgba(255, 255, 255, .02);
  border-color: rgba(255, 255, 255, .22);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr);
  gap: 22px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 62px 32px 30px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.status-row span {
  padding: 8px 10px;
  border: 1px solid rgba(125, 175, 115, .34);
  background: rgba(125, 175, 115, .07);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(58px, 6vw, 104px);
  line-height: .78;
  letter-spacing: .018em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: .9;
  letter-spacing: .01em;
}

h3 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.05;
}

.manifesto {
  margin-bottom: 24px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.hero-text,
.prose,
.section-copy p,
.system-lead p,
.deploy-copy p,
.waitlist-copy p,
.use-card p,
.feature-strip p,
details p {
  color: var(--muted);
}

.hero-text {
  max-width: 600px;
  margin-bottom: 32px;
  font-size: 18px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 600px;
  margin-top: 22px;
}

.hero-proof span {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .035);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(90deg, rgba(5, 6, 7, .15), rgba(5, 6, 7, 0)),
    #101113;
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "CONCEPT DESIGN / TARGET SPECIFICATIONS";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 10px;
  background: rgba(5, 6, 7, .72);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
}

.hero-media img {
  width: 100%;
  height: min(74vh, 760px);
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(.92) contrast(1.02);
  animation: floatDevice 7s ease-in-out infinite;
}

.hero-data {
  position: absolute;
  top: 72px;
  right: 20px;
  display: grid;
  gap: 9px;
  max-width: 190px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(125, 175, 115, .22);
  background: rgba(5, 6, 7, .58);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

@keyframes floatDevice {
  50% {
    transform: translateY(-8px) scale(1.012);
  }
}

.section {
  padding: 112px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.split,
.os-section,
.deploy-section,
.specs {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 60px;
}

.prose {
  max-width: 760px;
  font-size: 19px;
}

.short-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.short-lines span {
  padding: 18px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, .035);
  color: var(--paper);
  font-family: var(--font-mono);
  font-weight: 800;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 32px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: var(--line);
  transform: translateY(-1px);
}

.feature-strip article {
  min-height: 220px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(26, 29, 32, .96), rgba(14, 17, 19, .96));
}

.icon {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 42px;
  margin-bottom: 24px;
  padding: 0 8px;
  border: 1px solid rgba(217, 121, 43, .55);
  color: var(--orange);
  font-family: var(--font-mono);
  font-weight: 800;
}

.hardware-section {
  display: grid;
  grid-template-columns: minmax(320px, .55fr) minmax(0, .75fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 96px;
}

.hardware-copy,
.confidence-grid,
.hardware-visual {
  min-height: 100%;
}

.hardware-copy {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(145deg, rgba(26, 29, 32, .82), rgba(8, 10, 11, .94));
}

.hardware-copy p:last-child {
  color: var(--muted);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .12);
}

.confidence-grid article {
  min-height: 210px;
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 32px 32px,
    rgba(14, 17, 19, .98);
}

.confidence-grid span,
.kit-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
}

.confidence-grid p,
.kit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.hardware-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  padding: 18px;
  background: #050607;
  object-fit: contain;
  object-position: center;
}

.system-panel {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 50px;
  align-items: center;
}

.kit-section {
  padding-top: 92px;
}

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

.kit-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(to bottom, transparent, rgba(5, 6, 7, .88)),
    radial-gradient(circle at 18% 18%, rgba(125, 175, 115, .11), transparent 13rem),
    var(--graphite);
}

.system-lead {
  max-width: 620px;
}

.orbit {
  position: relative;
  min-height: 650px;
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at center, rgba(125, 175, 115, .12), transparent 18rem),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--bg-soft);
  overflow: hidden;
}

.device-core {
  position: absolute;
  inset: 18% 18% 18% 18%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #111;
  box-shadow: var(--shadow);
}

.device-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 50%;
}

.node {
  position: absolute;
  padding: 11px 13px;
  border: 1px solid rgba(125, 175, 115, .5);
  background: rgba(5, 6, 7, .78);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.image-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--bg-soft);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: auto;
}

.image-panel figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(5, 6, 7, .72);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.accessories-section {
  padding-top: 96px;
}

.accessories-section .section-heading p:last-child {
  max-width: 760px;
  color: var(--muted);
}

.accessory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.accessory-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(145deg, rgba(26, 29, 32, .88), rgba(8, 10, 11, .96)),
    var(--bg-soft);
}

.accessory-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 172px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .08), transparent 54%),
    #050607;
}

.accessory-visual img {
  width: auto;
  height: 108px;
  max-width: 74%;
  margin-top: 14px;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.product-plate {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(5, 6, 7, .78);
  backdrop-filter: blur(10px);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.product-plate strong {
  color: var(--paper);
  letter-spacing: .08em;
}

.product-plate span {
  color: var(--orange);
}

.accessory-copy {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 16px;
}

.accessory-copy > span {
  display: block;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.accessory-card h3 {
  margin: 0;
}

.accessory-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.accessory-card dl {
  display: grid;
  gap: 0;
  margin: 6px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--font-mono);
  font-size: 10px;
}

.accessory-card dl div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.accessory-card dt {
  color: var(--steel);
  text-transform: uppercase;
}

.accessory-card dd {
  margin: 0;
  color: var(--paper);
}

.os-visual {
  display: grid;
  gap: 16px;
}

.screen-panel img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.n1 { top: 8%; left: 9%; }
.n2 { top: 15%; right: 7%; }
.n3 { bottom: 14%; left: 7%; }
.n4 { bottom: 8%; right: 12%; }
.n5 { top: 48%; left: 4%; }
.n6 { top: 50%; right: 4%; }

.terminal {
  overflow: hidden;
  border: 1px solid rgba(125, 175, 115, .42);
  background: radial-gradient(circle at 70% 30%, rgba(125, 175, 115, .1), transparent 17rem), #07100c;
  box-shadow: var(--shadow);
}

.terminal-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(125, 175, 115, .28);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
}

#terminal-output {
  min-height: 220px;
  margin: 0;
  padding: 22px;
  color: #a9e7a0;
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.8;
  white-space: pre-wrap;
}

.deploy-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(145deg, rgba(26, 29, 32, .96), rgba(10, 11, 12, .96));
}

.prompt {
  margin-bottom: 28px;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 18px;
}

.deploy-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.deploy-card li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--paper);
}

.deploy-card li::before {
  content: counter(steps, decimal-leading-zero);
  display: grid;
  place-items: center;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, .1);
  color: var(--orange);
  font-family: var(--font-mono);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 44px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.use-visual {
  margin-bottom: 16px;
}

.use-visual img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.use-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(to bottom, transparent, rgba(5, 6, 7, .86)),
    radial-gradient(circle at 22% 20%, rgba(217, 121, 43, .12), transparent 12rem),
    var(--graphite);
}

.use-card span {
  display: block;
  margin-bottom: 140px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
}

.spec-table {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(26, 29, 32, .76);
}

.spec-table div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, .12);
}

.timeline span {
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.timeline span:last-child {
  border-right: 0;
}

.timeline .done {
  color: var(--green);
  background: rgba(125, 175, 115, .08);
}

.timeline .active {
  color: var(--paper);
  background: rgba(217, 121, 43, .14);
}

.waitlist {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  margin: 32px;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    linear-gradient(135deg, rgba(243, 240, 232, .95), rgba(220, 214, 201, .95));
  color: #111315;
}

.waitlist .eyebrow,
.waitlist-copy p {
  color: #bf4d10;
}

.waitlist h2 {
  color: #111315;
}

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

label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 19, 21, .26);
  background: rgba(255, 255, 255, .58);
  color: #111315;
  padding: 0 14px;
  font: 600 14px var(--font-body);
}

input:focus,
select:focus {
  outline: 2px solid rgba(217, 121, 43, .44);
  outline-offset: 1px;
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: #234d1f;
  font-weight: 800;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1fr);
  gap: 16px 48px;
}

.faq .section-heading {
  grid-row: span 6;
}

details {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0;
}

summary {
  cursor: pointer;
  color: var(--paper);
  font-size: 18px;
  font-weight: 800;
}

summary::marker {
  color: var(--orange);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 32px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .split,
  .hardware-section,
  .system-panel,
  .os-section,
  .deploy-section,
  .specs,
  .waitlist,
  .faq {
    grid-template-columns: 1fr;
  }

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

  .hero-media img {
    height: 58vh;
    object-position: 50% 50%;
  }

  .feature-strip,
  .use-grid,
  .accessory-grid,
  .kit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hardware-visual {
    grid-column: 1 / -1;
  }

  .hardware-visual img {
    min-height: 420px;
  }

  .faq .section-heading {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  html,
  body,
  main,
  .site-header {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    min-height: 64px;
    padding: 0 16px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-cta {
    display: none;
    max-width: 136px;
    min-height: 40px;
    padding: 0 10px;
    font-size: 10px;
    white-space: nowrap;
  }

  .nav-cta::after {
    margin-left: 7px;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 48px;
    line-height: .86;
  }

  h2 {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 23px;
  }

  .hero-copy,
  .hero-media {
    min-width: 0;
    max-width: calc(100vw - 36px);
  }

  .hero-subtitle,
  .hero-text {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    max-width: 340px;
  }

  .hero-text {
    max-width: 340px;
  }

  .button {
    max-width: 100%;
  }

  .status-row {
    margin-bottom: 28px;
  }

  .status-row span {
    padding: 7px 8px;
    font-size: 10px;
  }

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

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

  .hero::after {
    left: 18px;
    right: 18px;
  }

  .hero-media img {
    height: 420px;
    object-position: 55% 50%;
  }

  .hero-data {
    position: static;
    max-width: none;
    border-width: 1px 0 0;
  }

  .short-lines,
  .hero-proof,
  .feature-strip,
  .use-grid,
  .accessory-grid,
  .confidence-grid,
  .kit-grid,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .waitlist {
    margin-left: 18px;
    margin-right: 18px;
  }

  .feature-strip article {
    min-height: auto;
  }

  .system-panel {
    padding-top: 86px;
  }

  .orbit {
    min-height: 520px;
  }

  .device-core {
    inset: 24% 7% 20%;
  }

  .node {
    font-size: 10px;
  }

  .terminal-top {
    display: grid;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .waitlist {
    padding: 30px 18px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 18px;
  }
}
