@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@500;600&family=Space+Mono:wght@400;700&display=swap');

:root {
  --paper: #e9e6df;
  --ink: #161310;
  --blue: #2f37c9;
  --red: #f01e0c;
  --muted: rgba(22, 19, 16, 0.64);
  --line: rgba(22, 19, 16, 0.28);
  --banner-height: 32px;
  --nav-height: 64px;
  --grid-width: 144px;
  --shadow: 7px 7px 0 var(--ink);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: calc(var(--banner-height) + var(--nav-height));
  color: var(--ink);
  background: var(--paper);
  font-family: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.5;
}

::selection {
  color: var(--paper);
  background: var(--blue);
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

:where(a, button, input, [tabindex]):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

section[tabindex='-1']:focus {
  outline: none;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 500;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Persistent riso field and registration marks */
#field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.34;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: -55%;
  z-index: 80;
  width: 210%;
  height: 210%;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(8) infinite;
}

@keyframes grain-shift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-2%, 3%, 0); }
  50% { transform: translate3d(3%, -2%, 0); }
  75% { transform: translate3d(-3%, -3%, 0); }
  100% { transform: translate3d(2%, 2%, 0); }
}

.gridcol {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: var(--grid-width);
  border-left: 1px solid rgba(47, 55, 201, 0.5);
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(47, 55, 201, 0.1) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(47, 55, 201, 0.1) 0 1px, transparent 1px 22px);
}

.crosshair {
  position: fixed;
  z-index: 3;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(47, 55, 201, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.crosshair::before,
.crosshair::after {
  position: absolute;
  content: '';
  background: rgba(47, 55, 201, 0.55);
}

.crosshair::before {
  top: 50%;
  left: -15px;
  width: 100px;
  height: 1px;
}

.crosshair::after {
  top: -15px;
  left: 50%;
  width: 1px;
  height: 100px;
}

.crosshair-left {
  top: 38%;
  left: -35px;
}

.crosshair-right {
  right: 108px;
  bottom: 13%;
}

.mark {
  position: fixed;
  z-index: 85;
  color: var(--blue);
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  pointer-events: none;
}

.mark.tl { top: 104px; left: 12px; }
.mark.tr { top: 104px; right: 156px; }
.mark.bl { bottom: 12px; left: 12px; }
.mark.br { right: 12px; bottom: 12px; }

/* Fixed launch chrome */
.phase-banner {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--banner-height);
  padding: 6px 18px;
  color: var(--paper);
  background: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.phase-banner strong {
  color: var(--paper);
  background: var(--blue);
  padding: 3px 8px;
}

.site-nav {
  position: fixed;
  top: var(--banner-height);
  right: 0;
  left: 0;
  z-index: 105;
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--nav-height);
  padding: 0 calc(var(--grid-width) + 18px) 0 30px;
  border-bottom: 1px solid var(--ink);
  background: rgba(233, 230, 223, 0.94);
  backdrop-filter: blur(9px);
}

.wordmark {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
}

.wordmark sup {
  margin-left: 3px;
  color: var(--blue);
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  vertical-align: top;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a,
.section-index a,
.site-footer nav a {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.nav-links a {
  padding: 8px 9px;
}

.nav-links a:hover,
.nav-links a[aria-current='location'] {
  color: var(--paper);
  background: var(--blue);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--blue);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.nav-cta:hover {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 3px 3px 0 var(--blue);
}

.iteration {
  position: fixed;
  top: calc(var(--banner-height) + var(--nav-height) + 18px);
  right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  width: 126px;
  padding: 16px;
  color: var(--paper);
  background: var(--blue);
}

.iteration strong {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.86;
}

.iteration span {
  margin-top: 14px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.8;
}

main,
.site-footer {
  position: relative;
  z-index: 5;
  margin-right: var(--grid-width);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  min-height: calc(100vh - var(--banner-height) - var(--nav-height));
  padding: 72px clamp(24px, 5vw, 78px) 62px;
}

.hero-copy {
  min-width: 0;
  max-width: 940px;
}

.eyebrow,
.section-number,
.card-label,
.terminal-kicker {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.display {
  width: max-content;
  max-width: 100%;
  margin-top: 15px;
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(58px, 9.4vw, 144px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.84;
  text-transform: uppercase;
}

.display::after {
  display: block;
  width: min(340px, 45%);
  height: 10px;
  margin-top: 22px;
  content: '';
  background: repeating-linear-gradient(90deg, var(--blue) 0 24px, transparent 24px 37px);
}

.hero-explanation {
  max-width: 820px;
  margin-top: 27px;
  padding-left: 18px;
  border-left: 4px solid var(--blue);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--blue);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  cursor: pointer;
  transition: color 140ms ease, background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.button:hover {
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--blue);
}

.button:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--blue);
}

.button-quiet {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.button-quiet:hover {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--blue);
}

.install-card {
  position: relative;
  min-width: 0;
  padding: 23px;
  border: 1px solid var(--ink);
  background: rgba(233, 230, 223, 0.94);
  box-shadow: var(--shadow);
}

.install-card::before {
  position: absolute;
  top: -11px;
  right: -11px;
  width: 34px;
  height: 34px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  content: '';
}

.card-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}

.install-card code {
  display: block;
  margin: 20px 0;
  padding: 16px;
  color: var(--paper);
  background: var(--ink);
  font-size: 11px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.install-card > p:not(.gate-label) {
  margin-top: 13px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.75;
}

.gate-label {
  display: inline-block;
  margin-top: 17px;
  padding: 5px 8px;
  color: var(--paper);
  background: var(--red);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.copy-command {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: color 120ms ease, background 120ms ease;
}

.copy-command:hover,
.copy-command[data-copied='true'] {
  color: var(--paper);
  background: var(--blue);
}

.trust-strip {
  position: relative;
  z-index: 6;
  padding: 12px clamp(22px, 5vw, 76px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--paper);
  background: var(--blue);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(11px, 1.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
}

.ticker {
  position: relative;
  z-index: 6;
  overflow: hidden;
  padding: 10px 0;
  color: var(--paper);
  background: var(--ink);
}

.ticker-track {
  width: max-content;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  white-space: nowrap;
  animation: ticker-roll 34s linear infinite;
}

@keyframes ticker-roll {
  to { transform: translateX(-50%); }
}

.section-index {
  position: sticky;
  top: calc(var(--banner-height) + var(--nav-height));
  z-index: 60;
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--ink);
  background: rgba(233, 230, 223, 0.96);
  scrollbar-width: thin;
}

.section-index a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border-right: 1px solid var(--line);
  color: var(--muted);
}

.section-index a b {
  color: var(--blue);
}

.section-index a:hover,
.section-index a[aria-current='location'] {
  color: var(--paper);
  background: var(--ink);
}

.section-index a:hover b,
.section-index a[aria-current='location'] b {
  color: var(--paper);
}

/* Shared sections */
.section {
  position: relative;
  scroll-margin-top: 142px;
  padding: clamp(76px, 10vw, 126px) clamp(24px, 5vw, 78px);
  border-bottom: 1px solid var(--ink);
  background: rgba(233, 230, 223, 0.83);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(260px, 1.1fr);
  gap: 14px clamp(30px, 6vw, 90px);
  align-items: end;
  max-width: 1120px;
  margin-bottom: 46px;
}

.section-heading .section-number {
  grid-column: 1 / -1;
}

.section-heading h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(39px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 570px;
  padding-left: 17px;
  border-left: 3px solid var(--blue);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.statement {
  max-width: 960px;
  margin: 0 0 56px;
  padding: 25px 28px;
  border: 1px solid var(--ink);
  border-left: 9px solid var(--blue);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--blue);
}

.statement p {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(21px, 3.5vw, 39px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.feature-grid,
.command-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
}

.feature-card,
.command-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--ink);
  background: rgba(233, 230, 223, 0.95);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.feature-card:hover,
.command-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--blue);
}

.feature-card > span,
.manual-card > span,
.phase2-card > span,
.garden-card > span,
.form-heading > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.feature-card h3,
.command-card h3,
.manual-card h3,
.phase2-card h3,
.form-heading h3,
.legal-grid h3 {
  margin: 15px 0 11px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.15;
}

.feature-card p,
.manual-card p,
.phase2-card p,
.legal-grid p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

/* Quick start */
.section-blue {
  color: var(--paper);
  background: var(--blue);
}

.section-blue .section-number,
.section-blue .section-heading > p:last-child {
  color: var(--paper);
}

.section-blue .section-heading > p:last-child {
  border-left-color: var(--paper);
}

.steps {
  display: grid;
  gap: 13px;
  max-width: 1050px;
  list-style: none;
}

.steps > li {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--paper);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.steps > li > span {
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-family: 'Anton', Impact, sans-serif;
  font-size: 30px;
}

.steps > li > div {
  padding: 17px 19px;
  color: var(--ink);
}

.steps h3 {
  margin-bottom: 10px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.command-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.command-row code {
  min-width: 0;
  padding: 11px 13px;
  color: var(--paper);
  font-size: 10px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.command-row .copy-command {
  flex: 0 0 auto;
  margin-right: 6px;
}

.gate-note {
  max-width: 850px;
  margin-top: 28px;
  padding: 13px 16px;
  border: 1px dashed var(--paper);
  font-size: 10px;
  line-height: 1.7;
}

/* Commands and cockpit */
.command-card {
  display: flex;
  flex-direction: column;
  min-height: 205px;
}

.command-card > div:first-child {
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.command-card kbd {
  border: 1px solid var(--blue);
  padding: 2px 5px;
  font-size: 8px;
}

.command-card .command-row {
  margin-top: auto;
}

.cockpit-section {
  background: rgba(47, 55, 201, 0.07);
}

.cockpit {
  max-width: 1060px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--blue);
}

.cockpit-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.cockpit-bar span:last-child {
  color: var(--paper);
  background: var(--blue);
  padding: 2px 6px;
}

.cockpit-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 360px;
}

.cockpit-rail {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: start;
  gap: 0;
  border-right: 1px solid var(--ink);
}

.cockpit-rail b,
.cockpit-rail span {
  padding: 13px 12px;
  border-bottom: 1px dashed var(--line);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.cockpit-rail span {
  color: var(--blue);
  font-weight: 700;
}

.cockpit-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 6vw, 70px);
  background-image:
    linear-gradient(rgba(47, 55, 201, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 55, 201, 0.09) 1px, transparent 1px);
  background-size: 25px 25px;
}

.cockpit-main h3 {
  max-width: 620px;
  margin: 12px 0;
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(35px, 5vw, 60px);
  font-weight: 400;
  line-height: 0.94;
}

.cockpit-main > p:not(.terminal-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.signal-lines {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 45px;
  margin-top: 22px;
}

.signal-lines i {
  display: block;
  width: 15%;
  background: var(--blue);
}

.signal-lines i:nth-child(1) { height: 24%; }
.signal-lines i:nth-child(2) { height: 58%; }
.signal-lines i:nth-child(3) { height: 40%; }
.signal-lines i:nth-child(4) { height: 83%; }
.signal-lines i:nth-child(5) { height: 66%; }

.cockpit figcaption {
  padding: 11px 15px;
  border-top: 1px solid var(--ink);
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* Inspect and provenance */
.inspect-layout,
.waitlist-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  max-width: 1120px;
  align-items: start;
}

.terminal-panel {
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--blue);
}

.terminal-title {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(233, 230, 223, 0.25);
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.terminal-panel ol {
  padding: 20px 24px 7px 48px;
}

.terminal-panel li {
  margin-bottom: 17px;
  padding-left: 6px;
  color: var(--blue);
}

.terminal-panel code {
  color: var(--paper);
  font-size: 10px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.copy-wide {
  margin: 5px 24px 23px;
}

.manual-card,
.phase2-card {
  padding: 25px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.manual-card dl,
.provenance dl {
  margin-top: 22px;
}

.manual-card dl > div,
.provenance dl > div {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 9px;
}

.manual-card dt,
.provenance dt {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.manual-card dd,
.provenance dd {
  overflow-wrap: anywhere;
}

.section-ink {
  color: var(--paper);
  background: var(--ink);
}

.section-ink .section-number,
.section-ink .section-heading > p:last-child {
  color: var(--paper);
}

.section-ink .section-heading > p:last-child {
  border-left-color: var(--blue);
}

.trust-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(233, 230, 223, 0.58);
  background: rgba(233, 230, 223, 0.04);
}

.trust-grid article > span {
  display: block;
  color: var(--blue);
  font-family: 'Anton', Impact, sans-serif;
  font-size: 40px;
}

.trust-grid h3 {
  margin: 12px 0;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.trust-grid p,
.security-footnote {
  color: rgba(233, 230, 223, 0.72);
  font-size: 10px;
  line-height: 1.8;
}

.security-footnote {
  max-width: 920px;
  margin-top: 30px;
  padding: 15px 17px;
  border: 1px dashed var(--blue);
}

.provenance {
  max-width: 920px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--blue);
}

.provenance-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  color: var(--paper);
  background: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.provenance-head strong {
  color: var(--paper);
  background: var(--red);
  padding: 3px 8px;
}

.provenance dl {
  margin: 0;
  padding: 15px 22px;
}

.provenance dl > div {
  grid-template-columns: 190px minmax(0, 1fr);
}

.provenance > p {
  padding: 15px 22px 21px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.8;
}

/* Backend hooks, Phase 2, legal */
.phase-one {
  background: rgba(47, 55, 201, 0.08);
}

.garden-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--ink);
  background: var(--blue);
  box-shadow: 8px 8px 0 var(--ink);
}

.garden-card > span {
  color: var(--paper);
}

.garden-card strong {
  display: block;
  margin: 24px 0;
  color: var(--paper);
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 400;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.garden-card p {
  color: rgba(233, 230, 223, 0.78);
  font-size: 9px;
  line-height: 1.7;
}

.waitlist-form {
  padding: 25px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--blue);
}

.waitlist-form > label:not(.checkbox-row) {
  display: block;
  margin: 20px 0 7px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.waitlist-form input[type='email'] {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 11px;
}

.waitlist-form input[type='email']::placeholder {
  color: rgba(22, 19, 16, 0.42);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 16px 0 20px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
}

.checkbox-row input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.form-status {
  min-height: 1.5em;
  margin-top: 16px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.6;
}

.founder-presale {
  background:
    linear-gradient(rgba(47, 55, 201, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 55, 201, 0.07) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

.founder-truth-strip {
  max-width: 1120px;
  margin-bottom: 24px;
  padding: 13px 16px;
  color: var(--paper);
  background: var(--blue);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
}

.founder-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--ink);
  background: rgba(233, 230, 223, 0.96);
  box-shadow: 7px 7px 0 var(--ink);
}

.founder-card > span {
  color: var(--blue);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.founder-card h3 {
  margin: 17px 0 10px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 25px;
}

.founder-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.02em;
}

.founder-card p,
.founder-action p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.founder-action {
  display: flex;
  max-width: 1120px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.founder-action p {
  max-width: 650px;
  margin: 0;
}

.phase-two {
  background-image:
    linear-gradient(rgba(47, 55, 201, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 55, 201, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.phase2-card {
  max-width: 820px;
  border-style: dashed;
}

.phase2-card h3 {
  font-size: clamp(28px, 4vw, 44px);
}

.legal-section {
  padding-top: 85px;
  padding-bottom: 85px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1000px;
}

.legal-grid article {
  padding: 23px;
  border-top: 4px solid var(--blue);
  background: rgba(233, 230, 223, 0.94);
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 110px;
  padding: 30px clamp(24px, 5vw, 78px);
  color: var(--paper);
  background: var(--ink);
}

.site-footer > p {
  color: rgba(233, 230, 223, 0.6);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.site-footer nav {
  display: flex;
  gap: 15px;
  margin-left: auto;
}

.site-footer nav a:hover {
  color: var(--blue);
}

.copy-status {
  position: fixed;
  right: calc(var(--grid-width) + 18px);
  bottom: 20px;
  z-index: 150;
  max-width: min(430px, calc(100vw - 40px));
  padding: 10px 15px;
  border: 1px solid var(--blue);
  color: var(--paper);
  background: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.copy-status.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-action {
  margin-top: 24px;
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(rgba(47, 55, 201, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 55, 201, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.legal-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 62px;
  padding: 12px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.legal-topbar .wordmark {
  color: var(--paper);
  text-decoration: none;
}

.legal-topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: auto;
}

.legal-topbar nav a {
  color: rgba(233, 230, 223, 0.76);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.legal-topbar nav a:hover,
.legal-topbar nav a[aria-current='page'] {
  color: var(--paper);
}

.legal-document {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 110px) 0;
}

.legal-page .legal-document {
  margin-right: auto;
}

.legal-kicker,
.legal-meta {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-document > h1 {
  max-width: 820px;
  margin: 18px 0 20px;
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(54px, 10vw, 112px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.legal-document > section {
  padding: 34px 0;
  border-top: 1px solid rgba(22, 19, 16, 0.24);
}

.legal-document > section:first-of-type {
  margin-top: 52px;
}

.legal-document h2 {
  margin: 0 0 16px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  letter-spacing: 0.035em;
}

.legal-document h3 {
  margin: 24px 0 8px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-document p,
.legal-document li {
  max-width: 84ch;
  color: #3f3a35;
  font-size: 13px;
  line-height: 1.85;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-document a {
  color: var(--blue);
}

.legal-document code {
  padding: 2px 5px;
  border: 1px solid rgba(47, 55, 201, 0.24);
  background: rgba(47, 55, 201, 0.06);
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: var(--paper);
  background: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.legal-footer a {
  color: var(--paper);
}

/* Progressive reveal: content remains visible without JavaScript. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.9, 0.3, 1);
}

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

@media (max-width: 1120px) {
  :root { --grid-width: 96px; }

  .site-nav {
    padding-right: calc(var(--grid-width) + 14px);
  }

  .iteration {
    width: 82px;
    padding: 12px;
  }

  .iteration strong { font-size: 29px; }
  .iteration span { font-size: 6px; }

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

  .install-card {
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  :root {
    --grid-width: 0px;
    --nav-height: 58px;
  }

  .gridcol,
  .iteration,
  .crosshair-right,
  .mark.tr,
  .mark.br {
    display: none;
  }

  main,
  .site-footer {
    margin-right: 0;
  }

  .site-nav {
    gap: 12px;
    padding: 0 14px;
  }

  .nav-links {
    overflow-x: auto;
  }

  .nav-links a {
    padding: 7px 6px;
    font-size: 8px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 70px;
  }

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

  .section-heading .section-number {
    grid-column: auto;
  }

  .section-heading > p:last-child {
    margin-top: 7px;
  }

  .feature-grid,
  .command-grid,
  .trust-grid,
  .founder-grid,
  .legal-grid,
  .inspect-layout,
  .waitlist-layout {
    grid-template-columns: 1fr;
  }

  .founder-action {
    display: grid;
  }

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

  .cockpit-rail {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .copy-status {
    right: 20px;
  }
}

@media (max-width: 590px) {
  .phase-banner {
    justify-content: center;
    min-height: 42px;
    text-align: center;
  }

  .phase-banner span {
    display: none;
  }

  :root {
    --banner-height: 42px;
  }

  .wordmark { font-size: 20px; }

  .nav-links a:nth-child(1),
  .nav-links a:nth-child(4),
  .nav-links a:nth-child(5) {
    display: none;
  }

  .display {
    font-size: clamp(48px, 17vw, 82px);
  }

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

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .section-heading h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .steps > li {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .steps > li > span {
    font-size: 23px;
  }

  .command-row {
    align-items: stretch;
    flex-direction: column;
  }

  .command-row .copy-command {
    margin: 0 6px 6px;
  }

  .manual-card dl > div,
  .provenance dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cockpit-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    margin-left: 0;
  }

  .legal-topbar,
  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-topbar nav {
    margin-left: 0;
  }

  .legal-document {
    width: min(100% - 32px, 920px);
    padding-top: 48px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .grain,
  .ticker-track {
    animation: none !important;
  }

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