/* Colonizer. The whole design system: tokens, then layout, then the scenes.
   Ported from the Claude Design canvas "Colonizer Landing.dc.html", where every
   value below was an inline style. */

:root {
  --bg: #0a0c11;
  --panel: #0d1016;
  --panel-2: #11141b;
  --well: #080a0e;
  --chip: #12151d;
  --hull: #0f1218;
  --ink: #e7e9ef;
  --muted: #aab1c0;
  --dim: #6f778a;
  --accent: #ff7b2c;
  --accent-hi: #ffa066;
  --blue: #8fb7ff;
  --green: #a6e3a1;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .1);
  --line-3: rgba(255, 255, 255, .14);
  --sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
/* An author `display` rule beats the UA's [hidden]; this keeps `hidden` honest. */
[hidden] { display: none !important; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
html { scroll-behavior: smooth; }
section[id], div[id="waitlist"] { scroll-margin-top: 24px; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hi); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, p, ul, ol, dl, dd { margin: 0; }
code, kbd { font-family: var(--mono); }
svg { max-width: 100%; }
button { font: inherit; }

.skip {
  position: absolute; left: -9999px; top: 10px; z-index: 10;
  background: var(--accent); color: var(--bg); padding: 8px 12px; border-radius: 6px;
  font-family: var(--mono); font-size: 13px;
}
.skip:focus { left: 16px; color: var(--bg); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------ page frame */

.page { position: relative; overflow: hidden; min-height: 100vh; }

.sky {
  position: absolute; left: 0; right: 0; top: 0; height: 1500px; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .09) 1px, transparent 1.2px);
  background-size: 6px 6px;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 22%, #000 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 55% at 50% 22%, #000 0%, transparent 100%);
  animation: dither 3s steps(6) infinite;
}
.glow {
  position: absolute; top: -300px; left: 20%; width: 60%; height: 1100px; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 123, 44, .16), transparent 60%);
  filter: blur(40px);
  animation: drift 22s ease-in-out infinite;
}
.stars { position: absolute; inset: 0; pointer-events: none; }
.stars i {
  position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #fff;
  animation: twinkle 4s ease-in-out infinite;
}

/* ---------------------------------------------------------------- header */

.top {
  position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 600; letter-spacing: -.01em; }
.brand:hover { color: var(--ink); }
.nav { display: flex; gap: 26px; font-family: var(--mono); font-size: 13px; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--ink); }

@media (max-width: 760px) {
  .top { flex-wrap: wrap; row-gap: 14px; }
  .nav { order: 3; width: 100%; gap: 8px 20px; flex-wrap: wrap; }
}

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--mono); font-size: 14px; font-weight: 500; line-height: 1.2;
  padding: 11px 18px; border-radius: 6px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; transition: background .2s, border-color .2s, color .2s;
}
.btn--primary { color: var(--bg); background: var(--accent); border-color: var(--accent); }
.btn--primary:hover { color: var(--bg); background: var(--accent-hi); border-color: var(--accent-hi); }
.btn--primary:disabled { opacity: .6; cursor: progress; }
.btn--ghost { color: var(--ink); border-color: var(--line-3); background: transparent; }
.btn--ghost:hover { color: var(--ink); border-color: rgba(255, 255, 255, .4); }
.btn--sm { font-size: 13px; padding: 9px 16px; }

.chip {
  display: inline-flex; align-items: center; font-family: var(--mono); font-size: 11px; line-height: 1;
  padding: 4px 8px; border-radius: 999px; border: 1px solid currentColor; white-space: nowrap;
}
.chip--ship { color: var(--green); }
.chip--planned { color: var(--accent-hi); }
.chip--demo { color: var(--dim); }

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; padding: 56px 24px 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 48px; align-items: center;
}
.kicker {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; color: var(--muted); margin-bottom: 26px;
}
.kicker b { color: var(--accent); font-weight: 400; }
.h-hero {
  font-size: clamp(44px, 6.4vw, 84px); line-height: .95; letter-spacing: -.04em;
  font-weight: 600; margin-bottom: 22px; text-wrap: balance;
}
.lede { font-size: 18px; line-height: 1.55; color: var(--muted); margin-bottom: 32px; max-width: 540px; text-wrap: pretty; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.actions .btn { padding: 12px 16px; border-radius: 8px; }
.oss .actions .btn { padding: 11px 18px; border-radius: 6px; }
.install {
  display: flex; align-items: center; gap: 12px; max-width: 100%;
  font-family: var(--mono); font-size: 14px;
  background: var(--panel-2); border: 1px solid var(--line-2); padding: 12px 16px; border-radius: 8px;
}
.install code { min-width: 0; overflow-x: auto; white-space: nowrap; }
.install__p { color: var(--accent); }
.copy {
  border: 0; background: rgba(255, 255, 255, .08); color: var(--ink);
  font-family: var(--mono); font-size: 12px; padding: 5px 9px; border-radius: 5px; cursor: pointer;
}
.copy:hover { background: rgba(255, 255, 255, .16); }
.fine { margin-top: 18px; font-family: var(--mono); font-size: 12px; color: var(--dim); }

.graph { position: relative; aspect-ratio: 1; max-width: 540px; width: 100%; margin: 0 auto; }
.graph__dots {
  position: absolute; inset: 8%; border-radius: 50%; opacity: .5;
  background-image: radial-gradient(rgba(255, 123, 44, .35) 1px, transparent 1.3px);
  background-size: 7px 7px;
  -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle, #000 0%, transparent 70%);
}
.graph svg { position: relative; display: block; width: 100%; height: 100%; overflow: visible; }

/* ---------------------------------------------------------------- scenes */

.spoke {
  stroke: rgba(255, 123, 44, .4); stroke-width: 1.5;
  stroke-dasharray: 160; stroke-dashoffset: 160;
  animation: draw 1.2s ease-out forwards;
}
.courier { fill: var(--blue); animation: travel 2.6s linear infinite backwards; }
.ant { offset-rotate: auto; animation: march 5s linear infinite; }
.ant--trail { animation-duration: 28s; }
.ant__body { animation: scurry .25s steps(2) infinite; }
.leg { stroke-width: .8; animation: legs .25s ease-in-out infinite; }
.leg--r { animation-direction: reverse; }
.outpost { animation: spawn .8s cubic-bezier(.2, .9, .3, 1.3) both; }
.outpost__pulse { fill: none; stroke: rgba(255, 123, 44, .5); animation: pulse 3s ease-out infinite; }
.outpost__hex { fill: var(--chip); stroke: var(--accent); stroke-width: 1.5; }
.float { animation: floaty 6s ease-in-out infinite; }
.float--fast { animation-duration: 5s; }

.trail {
  position: relative; z-index: 1; overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .06); border-bottom: 1px solid rgba(255, 255, 255, .06);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.trail svg { display: block; width: 100%; height: 48px; }

.route__line { fill: none; stroke: rgba(255, 255, 255, .12); stroke-width: 1.5; }
.route__dot { animation: travel 3s ease-in-out infinite backwards; }
.route__box { fill: var(--chip); stroke: rgba(255, 255, 255, .12); }

/* -------------------------------------------------------------- sections */

.section { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; padding: 110px 24px 40px; }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 48px; align-items: center; }
.split--top { align-items: start; }
.section__head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 40px; }
.intro { max-width: 620px; }
.intro--gap { margin-bottom: 36px; }
.eyebrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; color: var(--accent); margin-bottom: 14px;
}
.h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.035em; line-height: 1.02; margin-bottom: 16px; font-weight: 600; text-wrap: balance; }
.h2--sm { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 14px; }
.lead { font-size: 17px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
.lead + .lead { margin-top: 14px; }
.lead--note { font-size: 15px; color: var(--dim); }
.lead--sm { font-size: 16px; margin-bottom: 24px; }
.meta { font-family: var(--mono); font-size: 12px; color: var(--dim); }
.inline {
  font-family: var(--mono); font-size: .88em; color: var(--ink);
  background: rgba(255, 255, 255, .08); padding: 2px 6px; border-radius: 4px; overflow-wrap: anywhere;
}

.t-ok { color: var(--green); }
.t-dim { color: var(--dim); }
.t-hot { color: var(--accent); }
.t-ink { color: var(--ink); }
.t-key { color: var(--blue); }
.t-str { color: var(--green); }
.t-num { color: var(--accent-hi); }

.ticks, .dashes, .steps, .providers, .foot__links { list-style: none; padding: 0; }
.ticks { display: grid; gap: 10px; font-size: 15px; margin-top: 24px; }
/* The marker is positioned rather than a flex item, so inline code inside an
   item flows with its sentence instead of becoming a column of its own. */
.ticks li { position: relative; padding-left: 24px; }
.ticks li::before { content: "\25B8"; position: absolute; left: 0; top: .2em; color: var(--accent); font-family: var(--mono); font-size: 12px; }
.dashes { display: grid; gap: 8px; font-size: 13px; color: var(--muted); }
.dashes li { position: relative; padding-left: 24px; }
.dashes li::before { content: "\2014"; position: absolute; left: 0; color: var(--accent); }

/* ---------------------------------------------------------- 01 the colony */

.window { border: 1px solid var(--line-2); border-radius: 12px; background: var(--panel); overflow: hidden; box-shadow: 0 40px 100px rgba(0, 0, 0, .5); }
.window--well { background: var(--well); box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.window__bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 12px; color: var(--dim);
}
.window__bar i { flex: none; width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.window__bar i:nth-child(2) { background: #febc2e; }
.window__bar i:nth-child(3) { background: #28c840; }
.window__title { margin-left: 12px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.window__bar .chip { margin-left: auto; }

.colony { display: grid; grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) minmax(200px, 300px); min-height: 440px; }
.colony__list { border-right: 1px solid var(--line); padding: 16px 12px; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.colony__label { font-family: var(--mono); font-size: 11px; color: var(--dim); padding: 0 8px 8px; }
.colony-item { display: flex; align-items: center; gap: 10px; padding: 10px 8px; border-radius: 6px; font-size: 13px; }
.colony-item.is-active { background: rgba(255, 123, 44, .1); }
.colony-item > div { min-width: 0; }
.colony-item__t { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.colony-item__s { font-family: var(--mono); font-size: 10.5px; color: var(--dim); }
.beacon { position: relative; flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--c, var(--accent)); }
.beacon::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: inherit; animation: pulse 2s ease-out infinite; }

.colony__chat { padding: 20px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.msg { max-width: 88%; animation: msgin .6s ease-out both; }
.msg--you { align-self: flex-end; }
.msg--agent { align-self: flex-start; }
.msg__who { font-family: var(--mono); font-size: 11px; color: var(--dim); margin-bottom: 4px; }
.msg__text { font-size: 14px; line-height: 1.5; padding: 10px 14px; border-radius: 10px; background: var(--hull); border: 1px solid var(--line); overflow-wrap: anywhere; }
.msg--you .msg__text { background: #161a23; }
.ask {
  animation: msgin .6s ease-out 2.2s both;
  border: 1px solid rgba(255, 123, 44, .4); border-radius: 10px; padding: 14px; background: rgba(255, 123, 44, .05);
}
.ask__q { font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.ask__choices { display: grid; gap: 8px; }
.choice {
  display: flex; justify-content: space-between; gap: 8px; text-align: left;
  font-family: var(--sans); font-size: 13px; color: var(--ink);
  padding: 9px 12px; border-radius: 6px; border: 1px solid rgba(255, 255, 255, .12); background: var(--chip);
  cursor: pointer; transition: border-color .2s, background .2s;
}
.choice:hover { border-color: var(--accent); }
.choice:disabled { cursor: default; }
.choice:disabled:hover { border-color: rgba(255, 255, 255, .12); }
.choice[aria-pressed="true"] { border-color: var(--accent); background: rgba(255, 123, 44, .15); }
.choice kbd { color: var(--dim); font-size: 11px; }

.colony__term {
  position: relative; overflow: hidden; min-width: 0;
  border-left: 1px solid var(--line); background: var(--well); padding: 16px;
  font-family: var(--mono); font-size: 12px; line-height: 1.7; color: var(--muted);
}
.scanline {
  position: absolute; left: 0; right: 0; top: 0; height: 25%; pointer-events: none;
  background: linear-gradient(rgba(255, 123, 44, 0), rgba(255, 123, 44, .06), rgba(255, 123, 44, 0));
  animation: scan 6s linear infinite;
}
.term__label { color: var(--dim); margin-bottom: 8px; }
.term__line { white-space: pre-wrap; overflow-wrap: anywhere; animation: msgin .4s ease-out both; }
.cursor { display: inline-block; width: 7px; height: 13px; background: var(--accent); vertical-align: middle; animation: blink 1s step-end infinite; }
.cursor--ink { width: 8px; height: 15px; background: var(--ink); vertical-align: text-bottom; }

@media (max-width: 900px) {
  .colony { grid-template-columns: minmax(0, 1fr); }
  .colony__list { border-right: 0; border-bottom: 1px solid var(--line); }
  .colony__term { border-left: 0; border-top: 1px solid var(--line); }
}

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 16px; margin-top: 40px; }
.card { padding: 22px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); transition: border-color .3s; }
.card:hover { border-color: rgba(255, 123, 44, .5); }
.card__k { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-bottom: 10px; }
.card__t { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.card__d { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ---------------------------------------------------------- 02 the router */

.panel { position: relative; overflow: hidden; border: 1px solid var(--line-2); border-radius: 12px; background: var(--panel); padding: 24px; }
.panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1.2px); background-size: 6px 6px;
}
.panel__chip { position: relative; margin-bottom: 14px; }
.panel svg { position: relative; display: block; width: 100%; height: auto; overflow: visible; }

/* ------------------------------------------------------------ 03 settlers */

.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.tab {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--mono); font-size: 13px; color: var(--muted);
  padding: 10px 16px; border-radius: 6px; border: 1px solid rgba(255, 255, 255, .12); background: var(--panel);
  transition: border-color .25s, background .25s, color .25s;
}
.tab:hover { border-color: var(--accent); }
.tab[aria-selected="true"] { border-color: var(--accent); background: rgba(255, 123, 44, .12); color: var(--ink); }
.tab__tag { font-size: 10px; padding: 2px 6px; border-radius: 4px; background: rgba(255, 255, 255, .08); color: var(--muted); }

.duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 16px; }
.code {
  min-width: 0; overflow: auto; border: 1px solid var(--line-2); border-radius: 10px; background: var(--well);
  padding: 20px; font-family: var(--mono); font-size: 13px; line-height: 1.7; color: var(--muted);
}
.code__file { color: var(--dim); margin-bottom: 8px; }
.code__ln { white-space: pre; }
.code__ln--hl { background: rgba(255, 123, 44, .1); margin: 0 -20px; padding: 0 20px; }
.code__note { margin-top: 12px; font-size: 12px; line-height: 1.5; color: var(--dim); white-space: normal; }

.settler { display: flex; flex-direction: column; gap: 12px; border: 1px solid var(--line-2); border-radius: 10px; background: var(--panel); padding: 24px; }
.settler__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.settler__name { font-size: 20px; font-weight: 600; letter-spacing: -.02em; }
.settler__desc { font-size: 15px; line-height: 1.55; color: var(--muted); }
.settler .dashes { margin-top: auto; }
.settler__others { font-size: 13px; color: var(--dim); }

/* ------------------------------------------------------------ 04 your keys */

.providers { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.provider {
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel);
}
.provider:hover { border-color: rgba(255, 123, 44, .5); }
.provider__top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.provider__n { font-weight: 600; }
.dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--c); }
.provider__h { font-family: var(--mono); font-size: 11px; color: var(--dim); overflow-wrap: anywhere; }
.provider .chip { align-self: flex-start; margin-top: auto; }

/* ----------------------------------------------------------- 05 quickstart */

.term { padding: 20px; font-family: var(--mono); font-size: 13px; line-height: 1.75; min-height: 380px; overflow-wrap: anywhere; }
.t-muted { color: var(--muted); }
.term .term__line { animation: none; }
#term-typed { white-space: pre-wrap; }
.steps { display: grid; gap: 14px; margin-top: 24px; }
.steps li { display: flex; gap: 14px; align-items: baseline; }
.steps__n {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(255, 123, 44, .4);
  font-family: var(--mono); font-size: 12px; color: var(--accent);
}
.steps li > div { min-width: 0; }
.steps__t { font-weight: 600; }
.steps__d { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ------------------------------------------------------- 06 open by default */

.oss {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 36px; align-items: center;
  border: 1px solid var(--line-2); border-radius: 14px; padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}
.oss::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 123, 44, .25) 1px, transparent 1.3px); background-size: 7px 7px;
  -webkit-mask-image: radial-gradient(ellipse 50% 100% at 100% 50%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse 50% 100% at 100% 50%, #000, transparent 70%);
  animation: dither 4s steps(7) infinite;
}
.oss > * { position: relative; }
/* Two explicit columns: an auto-fit grid would keep a third, empty track once
   the limits row spans the full width, and squeeze the heading into it. */
@media (max-width: 820px) { .oss { grid-template-columns: minmax(0, 1fr); } }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; }
.stat { display: flex; flex-direction: column; padding: 18px; border: 1px solid var(--line-2); border-radius: 10px; background: rgba(10, 12, 17, .6); }
.stat dd { order: -1; font-family: var(--mono); font-size: 26px; letter-spacing: -.02em; color: var(--ink); }
.stat dt { font-family: var(--mono); font-size: 11px; color: var(--dim); margin-top: 6px; }
/* The harness README's "what this does not do", kept next to the open-source
   claim so the claim is never read without it. */
.oss__limits { grid-column: 1 / -1; border-top: 1px solid var(--line-2); padding-top: 28px; }
.oss__h { font-family: var(--mono); font-size: 12px; font-weight: 400; color: var(--accent); margin-bottom: 14px; }
.oss__limits .dashes { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 10px 32px; font-size: 13.5px; line-height: 1.5; }

/* ------------------------------------------------------------- 07 pricing */

.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 16px; }
.tier { display: flex; flex-direction: column; gap: 14px; padding: 28px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--panel); }
.tier--featured { border-color: rgba(255, 123, 44, .5); }
.tier__k { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--accent); }
.tier__n { font-size: 24px; font-weight: 600; letter-spacing: -.02em; }
.tier__p { font-family: var(--mono); font-size: 30px; letter-spacing: -.02em; }
.tier__d { font-size: 14px; line-height: 1.55; color: var(--muted); }
.tier .dashes { margin-top: auto; }
.tier .btn { font-size: 13px; padding: 11px; white-space: normal; text-align: center; }

.waitlist {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 20px 32px; align-items: center;
  margin-top: 16px; padding: 24px 28px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--panel);
}
.waitlist__t { font-size: 18px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 6px; }
.waitlist__d { font-size: 14px; line-height: 1.55; color: var(--muted); }
.field { display: flex; flex-wrap: wrap; gap: 10px; }
.field input {
  flex: 1 1 220px; min-width: 0; font-family: var(--mono); font-size: 14px; color: var(--ink);
  background: var(--well); border: 1px solid var(--line-3); border-radius: 6px; padding: 11px 14px;
}
.field input::placeholder { color: var(--dim); }
.field input:focus { outline: none; border-color: var(--accent); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__foot, .waitlist__nojs { margin-top: 10px; font-family: var(--mono); font-size: 11.5px; line-height: 1.5; color: var(--dim); }
.form__status { font-size: 14px; line-height: 1.55; color: var(--muted); }
.form__status:not(:empty) { margin-top: 10px; }
.form__status strong { color: var(--ink); font-weight: 600; }

/* ---------------------------------------------------------------- footer */

.foot { position: relative; z-index: 1; border-top: 1px solid var(--line); margin-top: 80px; }
.foot__grid {
  max-width: 1160px; margin: 0 auto; padding: 56px 24px 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 36px;
}
.foot__brand { grid-column: span 2; min-width: 200px; }
.foot__mark { display: flex; align-items: center; gap: 10px; font-weight: 600; margin-bottom: 12px; }
.foot__p { font-size: 14px; color: var(--muted); max-width: 320px; line-height: 1.55; margin-bottom: 16px; }
.foot__row { display: flex; flex-wrap: wrap; gap: 8px 16px; font-family: var(--mono); font-size: 12px; }
.foot__row a { color: var(--dim); }
.foot__row a:hover, .foot__links a:hover, .foot__bottom a:hover { color: var(--ink); }
.foot__h { font-family: var(--mono); font-size: 12px; color: var(--ink); margin-bottom: 14px; }
.foot__links { display: grid; gap: 9px; font-size: 14px; }
.foot__links a { color: var(--muted); }
.foot__bottom {
  max-width: 1160px; margin: 0 auto; padding: 0 24px 32px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-family: var(--mono); font-size: 12px; color: var(--dim);
}
.foot__bottom a { color: inherit; }

/* Factory Zero credit: the ring is the FZ mark, rotating slowly. Same markup
   as the other Factory Zero venture sites. */
.fz-credit { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; }
.fz-credit a { display: inline-flex; align-items: center; gap: 7px; color: inherit; }
.fz-credit a:hover { color: #ff5a36; }
.fz-ring { flex: none; transform-origin: 50% 50%; animation: fzRing 12s linear infinite; }
@keyframes fzRing { to { transform: rotate(360deg); } }

@media (max-width: 520px) {
  .foot__brand { grid-column: auto; }
}

/* ---------------------------------------------------------------- reveal */

/* html.reveal is added by colonizer.js itself, never by the head, so with the
   script blocked every section stays visible. */
html.reveal [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease), border-color .3s; }
html.reveal [data-reveal].is-in { opacity: 1; transform: none; }
html.reveal .provider[data-reveal] { transition: opacity .9s var(--ease), transform .3s var(--ease), border-color .3s; }
html.reveal .provider[data-reveal].is-in:hover { transform: translateY(-4px); }

/* --------------------------------------------------------------- keyframes */

@keyframes spawn { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.15); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes travel { 0% { offset-distance: 0%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
@keyframes march { to { offset-distance: 100%; } }
@keyframes scurry { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-.6px); } }
@keyframes legs { 0%, 100% { transform: rotate(-18deg); } 50% { transform: rotate(18deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .55; } 50% { transform: scale(1.6); opacity: 0; } }
@keyframes twinkle { 0%, 100% { opacity: .15; } 50% { opacity: .8; } }
@keyframes drift { 0% { transform: translate(-8%, -6%); } 50% { transform: translate(6%, 8%); } 100% { transform: translate(-8%, -6%); } }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes msgin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes scan { 0% { transform: translateY(-100%); } 100% { transform: translateY(400%); } }
@keyframes dither { 0% { background-position: 0 0; } 100% { background-position: 6px 6px; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .ant, .courier, .route__dot, .scanline, .cursor { display: none; }
  html.reveal [data-reveal] { opacity: 1; transform: none; }
}
