:root {
  --ink: #0b0d12;
  --panel: #121620;
  --paper: #f4f1e8;
  --paper-deep: #e8e3d7;
  --white: #fffdf7;
  --muted: #7c8493;
  --line-dark: rgba(244, 241, 232, 0.13);
  --line-light: rgba(11, 13, 18, 0.15);
  --alex: #7687ff;
  --maya: #ff8f6b;
  --signal: #72d9ac;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1320px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.035;
  content: "";
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--alex); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 5;
  width: var(--page);
  height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.brand em {
  padding: 4px 7px;
  color: #b9c0ca;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font: 400 9px/1 var(--mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand-mark {
  position: relative;
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
}
.brand-mark::after {
  width: 5px;
  height: 5px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}
.brand-mark i {
  position: absolute;
  width: 11px;
  height: 19px;
  border-style: solid;
  border-width: 2px;
}
.brand-mark i:first-child { left: 0; border-color: var(--alex) transparent var(--alex) var(--alex); }
.brand-mark i:last-child { right: 0; border-color: var(--maya) var(--maya) var(--maya) transparent; }
.site-header nav { display: flex; gap: 32px; color: #aeb5c1; font-size: 13px; font-weight: 600; }
.site-header nav a, footer a { transition: color 160ms ease; }
.site-header nav a:hover, footer a:hover { color: var(--white); }
.github-link {
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  padding: 0 15px;
  align-items: center;
  gap: 9px;
  color: var(--paper);
  border: 1px solid rgba(244, 241, 232, 0.3);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease;
}
.github-link:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(244, 241, 232, 0.55); }
.github-link svg { width: 17px; height: 17px; fill: currentColor; }
.star-count { padding-left: 8px; color: #aeb5c1; border-left: 1px solid var(--line-dark); font-family: var(--mono); }

.hero {
  position: relative;
  margin-top: -88px;
  padding: 204px max(32px, calc((100vw - 1320px) / 2)) 74px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 64% 17%, rgba(118, 135, 255, 0.13), transparent 31%),
    radial-gradient(circle at 88% 46%, rgba(255, 143, 107, 0.09), transparent 28%),
    var(--ink);
}
.hero::before {
  position: absolute;
  top: 88px;
  left: calc(50% + 435px);
  width: 1px;
  height: 580px;
  content: "";
  background: linear-gradient(var(--alex), transparent);
  box-shadow: -870px 0 0 rgba(255, 143, 107, 0.45);
}
.hero::after {
  position: absolute;
  top: 88px;
  right: max(32px, calc((100vw - 1320px) / 2));
  width: 174px;
  height: 174px;
  opacity: 0.2;
  content: "";
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 29px 29px;
}
.hero-copy, .terminal-stage, .hero-caption {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
}
.launch-banner {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 9px 12px;
  align-items: center;
  gap: 18px;
  color: #aeb5c1;
  background: rgba(255, 97, 84, 0.08);
  border: 1px solid rgba(255, 97, 84, 0.3);
  border-radius: 999px;
  font: 500 9px/1.3 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.launch-banner:hover {
  background: rgba(255, 97, 84, 0.14);
  border-color: rgba(255, 97, 84, 0.58);
  transform: translateY(-1px);
}
.launch-banner b { color: var(--paper); font-weight: 500; }
.eyebrow, .section-kicker {
  margin: 0 0 30px;
  color: #9ea6b3;
  font: 500 10px/1.4 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span {
  width: 6px;
  height: 6px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(114, 217, 172, 0.09);
}
.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(58px, 7.5vw, 108px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.072em;
}
.hero h1 em, .manifesto h2 em, .architecture h2 em, .alpha-section h2 em, .oss-cta h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(244, 241, 232, 0.72);
}
.hero-deck {
  max-width: 720px;
  margin: 34px 0 0;
  color: #b5bcc7;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}
.hero-actions { display: flex; margin-top: 38px; align-items: center; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 54px;
  min-width: 190px;
  padding: 0 19px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button b { font: 500 18px/1 var(--mono); }
.button-primary { color: var(--ink); background: var(--paper); }
.button-primary:hover { background: var(--white); }
.button-quiet { color: var(--paper); border-color: var(--line-dark); background: rgba(255, 255, 255, 0.025); }
.button-quiet:hover { border-color: rgba(244, 241, 232, 0.35); }
.hero-aside {
  position: absolute;
  z-index: 1;
  top: 352px;
  right: max(32px, calc((100vw - 1320px) / 2));
  width: 225px;
}
.hero-aside div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  border-top: 1px solid var(--line-dark);
}
.hero-aside div:last-child { border-bottom: 1px solid var(--line-dark); }
.hero-aside span { color: #667080; font: 400 9px var(--mono); }
.hero-aside p { margin: 14px 0; color: #c4cad2; font-size: 12px; font-weight: 600; }

.terminal-stage {
  margin-top: 88px;
  overflow: hidden;
  color: #d5d9e1;
  background: #10131a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
}
.terminal-chrome {
  min-height: 52px;
  padding: 0 17px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  background: #161a23;
  font: 400 10px var(--mono);
}
.window-dots { display: flex; gap: 7px; }
.window-dots i { width: 8px; height: 8px; background: #3b414d; border-radius: 50%; }
.terminal-title { display: flex; gap: 9px; }
.terminal-title span { color: #6f7785; }
.terminal-title b { color: #dfe3e9; font-weight: 500; }
.connection { justify-self: end; display: flex; align-items: center; gap: 7px; color: #7f8998; }
.connection i, .live-pill i { width: 6px; height: 6px; background: var(--signal); border-radius: 50%; box-shadow: 0 0 10px rgba(114, 217, 172, 0.7); }
.terminal-body { min-height: 620px; display: grid; grid-template-columns: 290px 1fr; }
.session-rail { padding: 25px 14px 18px; background: #0d1016; border-right: 1px solid var(--line-dark); }
.rail-heading {
  padding: 0 9px 17px;
  display: flex;
  justify-content: space-between;
  color: #737d8b;
  font: 400 9px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
kbd { font: inherit; }
.rail-heading kbd { padding: 4px 6px; border: 1px solid var(--line-dark); border-radius: 5px; }
.session {
  width: 100%;
  min-height: 67px;
  padding: 0 11px;
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 11px;
  color: #8992a0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.session:hover { color: #cdd2db; background: #131720; }
.session.active {
  color: var(--white);
  background: #171b25;
  border-color: rgba(118, 135, 255, 0.24);
  box-shadow: 2px 0 0 var(--alex) inset;
}
.session span { min-width: 0; }
.session strong, .session small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.session strong { font-size: 11px; font-weight: 600; }
.session small { margin-top: 5px; color: #68717f; font: 400 8px var(--mono); }
.session > b {
  display: flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--alex);
  border-radius: 50%;
  font: 500 8px var(--mono);
}
.provider { display: inline-block; width: 8px; height: 8px; border-radius: 2px; transform: rotate(45deg); }
.provider.codex { background: var(--alex); }
.provider.claude { background: var(--maya); border-radius: 50%; }
.rail-presence { margin: 200px 8px 0; padding-top: 17px; display: flex; align-items: center; border-top: 1px solid var(--line-dark); }
.avatar {
  display: inline-flex;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font: 600 9px var(--mono);
  font-style: normal;
}
.avatar + .avatar { margin-left: -7px; box-shadow: 0 0 0 2px #0d1016; }
.avatar-maya { color: #642713; background: var(--maya); }
.avatar-alex { color: #1d275f; background: var(--alex); }
.rail-presence p { margin: 0 0 0 10px; color: #727b89; font: 400 8px/1.5 var(--mono); }
.rail-presence b { color: #b8bec8; font-weight: 500; }
.transcript-wrap { min-width: 0; display: grid; grid-template-rows: auto 1fr auto; }
.transcript-header {
  min-height: 75px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
}
.transcript-header > div { display: flex; align-items: center; gap: 13px; }
.transcript-header span.demo-provider {
  padding: 6px 8px;
  color: #aab3ff;
  background: rgba(118, 135, 255, 0.11);
  border: 1px solid rgba(118, 135, 255, 0.2);
  border-radius: 5px;
  font: 500 8px var(--mono);
}
.transcript-header h2 { margin: 0; color: #e5e7eb; font-size: 14px; font-weight: 600; }
.live-pill { display: flex; align-items: center; gap: 7px; color: #7f8998; font: 400 8px var(--mono); letter-spacing: 0.1em; }
.transcript { padding: 28px min(5vw, 65px) 20px; transition: opacity 130ms ease, transform 130ms ease; }
.transcript.changing { opacity: 0; transform: translateY(4px); }
.turn { position: relative; max-width: 750px; margin: 0 0 25px; padding-left: 39px; }
.turn::before {
  position: absolute;
  top: 31px;
  bottom: -24px;
  left: 13px;
  width: 1px;
  content: "";
  background: var(--line-dark);
}
.turn header { min-height: 26px; display: flex; align-items: center; gap: 8px; }
.turn header .avatar, .agent-glyph { position: absolute; top: 0; left: 0; }
.turn header strong { color: #cbd0d8; font: 500 10px var(--mono); }
.turn time { margin-left: auto; color: #515a68; font: 400 8px var(--mono); }
.turn p { margin: 9px 0 0; color: #aeb5c0; font: 400 12px/1.7 var(--mono); }
.turn p code { color: #cad0ff; }
.turn pre {
  margin: 12px 0 0;
  padding: 11px 13px;
  overflow: auto;
  color: #b9c0cb;
  background: #0c0f14;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  font: 400 10px/1.8 var(--mono);
}
.turn pre span { color: var(--signal); }
.agent-glyph {
  display: flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  color: var(--alex);
  background: rgba(118, 135, 255, 0.1);
  border: 1px solid rgba(118, 135, 255, 0.2);
  border-radius: 7px;
  font-size: 12px;
}
.claude-glyph { color: var(--maya); background: rgba(255, 143, 107, 0.1); border-color: rgba(255, 143, 107, 0.2); }
.from-peer { padding: 3px 6px; color: #9ba6ff; background: rgba(118, 135, 255, 0.1); border-radius: 4px; font: 400 7px var(--mono); }
.remote-turn {
  padding-top: 13px;
  padding-right: 14px;
  padding-bottom: 15px;
  background: linear-gradient(90deg, rgba(118, 135, 255, 0.11), transparent 90%);
  border-left: 2px solid var(--alex);
  border-radius: 0 9px 9px 0;
}
.remote-turn header .avatar { top: 13px; left: -1px; transform: translateX(-50%); }
.remote-turn::before { display: none; }
.system-turn { margin: -7px 0 0 39px; display: flex; align-items: center; gap: 8px; color: #667080; font: 400 8px var(--mono); }
.system-turn i { width: 5px; height: 5px; background: var(--signal); border-radius: 50%; }
.terminal-composer {
  margin: 0 28px 25px;
  padding: 11px 13px 13px;
  background: #171b24;
  border: 1px solid rgba(118, 135, 255, 0.25);
  border-radius: 11px;
}
.send-as { display: flex; align-items: center; gap: 8px; color: #697382; font: 400 8px var(--mono); }
.send-as .avatar { width: 18px; height: 18px; font-size: 7px; }
.send-as b { color: #aeb6ff; font-weight: 500; }
.fake-input { margin-top: 9px; display: flex; align-items: center; justify-content: space-between; color: #77818f; font: 400 10px var(--mono); }
.fake-input kbd { padding: 5px 7px; color: #8b94a0; background: #0f1218; border: 1px solid var(--line-dark); border-radius: 5px; font-size: 8px; }
.hero-caption { margin-top: 17px; color: #7f8794; font: 400 10px/1.6 var(--mono); }
.hero-caption span { margin-right: 8px; color: #aeb6c0; text-transform: uppercase; }

.proof-section {
  padding: 112px max(32px, calc((100vw - 1320px) / 2));
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line-light);
}
.proof-shell { width: 100%; max-width: 1320px; margin: 0 auto; }
.proof-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}
.proof-heading .section-kicker { margin: 0 0 8px; }
.proof-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.065em;
}
.proof-heading h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(11, 13, 18, 0.56);
}
.proof-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  color: #3f4248;
  font: 500 9px/1.4 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.proof-route i { height: 1px; background: linear-gradient(90deg, var(--alex), var(--maya)); }
.proof-route small { grid-column: 1 / -1; margin-top: 9px; color: #85857f; font: inherit; text-align: right; }
.proof-media {
  position: relative;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid rgba(11, 13, 18, 0.28);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(28, 25, 18, 0.18);
}
.proof-media::before {
  position: absolute;
  top: 0;
  left: 58px;
  z-index: 2;
  width: 1px;
  height: 18px;
  content: "";
  background: var(--alex);
  box-shadow: 12px 0 0 var(--maya);
}
.proof-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5.2;
  object-fit: contain;
  background: #0b0d12;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
}
.proof-media figcaption {
  min-height: 72px;
  padding: 18px 4px 0;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 24px;
  align-items: start;
  color: #838c99;
  font: 400 9px/1.6 var(--mono);
}
.proof-media figcaption > span { display: flex; align-items: center; gap: 8px; color: #abb2bd; text-transform: uppercase; }
.proof-media figcaption > span i { width: 6px; height: 6px; background: var(--signal); border-radius: 50%; box-shadow: 0 0 0 5px rgba(114, 217, 172, 0.08); }
.proof-media figcaption p { max-width: 590px; margin: 0; }
.proof-media figcaption b { color: #aeb7ff; font-weight: 500; letter-spacing: 0.08em; }

.section { width: var(--page); max-width: 1320px; margin: 0 auto; padding: 128px 0; }
.quickstart {
  display: grid;
  grid-template-columns: 140px 0.8fr 1.45fr;
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid var(--line-light);
}
.section-kicker { color: #7a786f; }
.quickstart h2, .manifesto h2, .architecture h2, .alpha-section h2, .oss-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.065em;
}
.quickstart-copy p { max-width: 390px; margin: 25px 0 0; color: #6f706d; font-size: 14px; line-height: 1.75; }
.command-stack { overflow: hidden; background: var(--ink); border-radius: 14px; box-shadow: 0 18px 50px rgba(26, 24, 18, 0.12); }
.command-row {
  min-height: 70px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-dark);
}
.command-row:last-child { border: 0; }
.command-row > span {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: #68717e;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font: 400 8px var(--mono);
}
.command-row code { overflow: hidden; color: #d7dbe2; font: 400 11px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.command-row.alternative { min-height: 52px; background: rgba(255, 255, 255, 0.018); }
.command-row.alternative > span { border-style: dashed; font-size: 7px; text-transform: uppercase; }
.command-row.alternative code { color: #8e96a2; font-size: 9px; }
.command-row.accent code { color: #aeb7ff; }
.command-row button {
  padding: 6px 8px;
  color: #747e8b;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  cursor: pointer;
  font: 400 8px var(--mono);
  text-transform: uppercase;
}
.command-row button:hover { color: var(--paper); border-color: rgba(244, 241, 232, 0.3); }
.requirements { grid-column: 3; margin: -22px 0 0; color: #8b8981; font: 400 9px var(--mono); }

.manifesto { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.manifesto h2 em, .architecture h2 em, .alpha-section h2 em { -webkit-text-stroke-color: rgba(11, 13, 18, 0.55); }
.manifesto-body { padding-top: 45px; }
.manifesto-body p { max-width: 590px; color: #70716d; font-size: 14px; line-height: 1.8; }
.manifesto-body .large-copy {
  margin-top: 0;
  color: #282a2f;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.55;
  letter-spacing: -0.035em;
}
.stat-row { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.stat-row > * { min-height: 172px; padding: 28px 34px 24px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line-light); }
.stat-row > *:last-child { border-right: 0; }
.stat-row a { transition: background 160ms ease; }
.stat-row a:hover { background: rgba(255, 255, 255, 0.45); }
.stat-row strong { font-size: clamp(44px, 4.5vw, 66px); font-weight: 500; letter-spacing: -0.07em; }
.stat-row span { max-width: 260px; color: #73736f; font-size: 11px; line-height: 1.55; }
.stat-row b { display: block; margin-top: 5px; color: #929087; font: 400 8px var(--mono); text-transform: uppercase; }

.steps { padding-top: 40px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.steps-grid article { padding: 24px 30px 38px; border-right: 1px solid var(--line-light); }
.steps-grid article:last-child { border-right: 0; }
.step-number { color: #85837b; font: 400 9px var(--mono); }
.step-visual { position: relative; height: 220px; margin: 20px -5px 30px; overflow: hidden; background: var(--paper-deep); border-radius: 10px; }
.steps-grid h3, .guardrails h3 { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -0.035em; }
.steps-grid p, .guardrails p { margin: 12px 0 0; color: #72736f; font-size: 12px; line-height: 1.7; }
.mini-terminal {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 210px;
  height: 84px;
  padding: 18px;
  color: #bfc4cf;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  transform: translate(-50%, -50%);
  box-shadow: 0 15px 35px rgba(11, 13, 18, 0.2);
}
.mini-terminal b { display: block; margin-bottom: 13px; color: #767f8c; font: 400 8px var(--mono); }
.mini-terminal code { font: 400 11px var(--mono); }
.mini-terminal i { display: inline-block; width: 6px; height: 12px; margin-left: 3px; vertical-align: -2px; background: var(--maya); animation: blink 1.1s steps(1) infinite; }
.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 143, 107, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 30px rgba(255, 143, 107, 0.04), 0 0 0 60px rgba(255, 143, 107, 0.025);
}
.join-visual { padding-top: 61px; text-align: center; }
.join-visual > code { color: #2e3035; font: 500 13px var(--mono); }
.join-visual > code span { color: var(--alex); animation: blink 1.1s steps(1) infinite; }
.identity-line { width: 190px; margin: 48px auto 0; display: flex; align-items: center; justify-content: space-between; }
.identity-line b { position: relative; width: 110px; height: 1px; background: linear-gradient(90deg, var(--maya), var(--alex)); }
.identity-line b::after { position: absolute; top: -3px; left: 50%; width: 7px; height: 7px; content: ""; background: var(--paper-deep); border: 1px solid #9b9b96; border-radius: 50%; }
.prompt-visual { padding: 46px 31px; }
.name-tag { display: inline-block; padding: 5px 7px; border-radius: 5px; font: 500 8px var(--mono); text-transform: uppercase; }
.alex-tag { color: #26326c; background: #dfe3ff; }
.prompt-visual p { margin-top: 14px; color: #37393d; font: 400 12px/1.6 var(--mono); }
.receipt { position: absolute; right: 22px; bottom: 23px; color: #31865f; font: 400 8px var(--mono); }

.architecture {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 138px max(32px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  color: var(--paper);
  background: var(--ink);
}
.architecture .section-kicker { color: #7c8593; }
.architecture-copy > p:not(.section-kicker) { max-width: 510px; margin: 30px 0 0; color: #969eaa; font-size: 14px; line-height: 1.8; }
.text-link {
  display: inline-flex;
  margin-top: 30px;
  padding-bottom: 8px;
  align-items: center;
  gap: 25px;
  color: #d5d9df;
  border-bottom: 1px solid #4c5360;
  font-size: 12px;
  font-weight: 600;
}
.text-link span { color: var(--alex); }
.architecture-map {
  position: relative;
  min-height: 440px;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 44px 44px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
}
.map-person, .map-core {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #171b24;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}
.map-person { top: 164px; width: 120px; height: 112px; }
.person-alex { left: 5%; }
.person-maya { right: 5%; }
.map-person strong, .map-core strong { margin-top: 9px; font-size: 10px; font-weight: 600; }
.map-person small, .map-core small { margin-top: 4px; color: #6f7886; font: 400 7px var(--mono); }
.map-core {
  top: 136px;
  left: 50%;
  width: 142px;
  height: 166px;
  transform: translateX(-50%);
  border-color: rgba(118, 135, 255, 0.34);
}
.map-core .brand-mark { width: 32px; height: 32px; }
.map-core .brand-mark i { width: 14px; height: 25px; }
.map-line {
  position: absolute;
  top: 219px;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--alex), var(--maya));
}
.map-line span {
  position: absolute;
  top: -23px;
  left: 50%;
  color: #737d8a;
  font: 400 7px var(--mono);
  white-space: nowrap;
  transform: translateX(-50%);
}
.line-one { left: calc(5% + 120px); width: calc(45% - 191px); }
.line-two { right: calc(5% + 120px); width: calc(45% - 191px); }
.map-agents { position: absolute; right: 6%; bottom: 28px; display: flex; gap: 10px; }
.map-agents div {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8f98a4;
  background: #11151c;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  font: 400 7px var(--mono);
}
.map-note { position: absolute; color: #737c89; font: 400 7px var(--mono); }
.note-one { bottom: 32px; left: 6%; }
.note-two { top: 30px; right: 6%; }
.guardrails {
  grid-column: 1 / -1;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.guardrails article { padding: 30px 30px 36px 0; border-right: 1px solid var(--line-dark); }
.guardrails article:not(:first-child) { padding-left: 30px; }
.guardrails article:last-child { border-right: 0; }
.guardrails article > span { display: block; margin-bottom: 45px; color: var(--alex); font: 400 20px var(--mono); }
.guardrails p { color: #848d9a; }

.alpha-section { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 90px; }
.alpha-columns { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.alpha-list { padding: 25px 30px 25px 0; }
.alpha-list + .alpha-list { padding-left: 30px; border-left: 1px solid var(--line-light); }
.alpha-list h3 { margin: 0 0 26px; font: 500 11px var(--mono); text-transform: uppercase; }
.alpha-list h3 span { margin-right: 7px; color: var(--signal); }
.alpha-list.limits h3 span { color: var(--maya); }
.alpha-list ul { margin: 0; padding: 0; list-style: none; }
.alpha-list li {
  position: relative;
  padding: 10px 0 10px 16px;
  color: #666863;
  border-top: 1px solid rgba(11, 13, 18, 0.08);
  font-size: 11px;
  line-height: 1.5;
}
.alpha-list li::before { position: absolute; top: 16px; left: 1px; width: 4px; height: 4px; content: ""; background: var(--signal); border-radius: 50%; }
.alpha-list.limits li::before { background: var(--maya); }
.alpha-roadmap {
  grid-column: 2;
  min-height: 65px;
  margin-top: -55px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #393b3f;
  background: var(--paper-deep);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 600;
  transition: background 160ms ease;
}
.alpha-roadmap:hover { background: #ded8c9; }
.alpha-roadmap b { color: #787871; font: 400 8px var(--mono); }

.oss-cta {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 145px 32px;
  overflow: hidden;
  color: var(--paper);
  background: #252c74;
  text-align: center;
}
.oss-cta .section-kicker { color: #aeb6ff; }
.oss-cta h2 { position: relative; z-index: 1; font-size: clamp(72px, 11vw, 152px); line-height: 0.82; }
.oss-cta h2 em { -webkit-text-stroke-color: rgba(244, 241, 232, 0.7); }
.oss-cta > p:not(.section-kicker) { position: relative; z-index: 1; max-width: 600px; margin: 43px auto 0; color: #c5caf7; font-size: 15px; line-height: 1.75; }
.centered { position: relative; z-index: 1; justify-content: center; }
.button-primary.light { background: var(--white); }
.button-outline { color: var(--paper); border-color: rgba(244, 241, 232, 0.32); }
.button-outline:hover { border-color: rgba(244, 241, 232, 0.7); }
.final-command {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 30px;
  padding: 9px 12px;
  color: #aeb7ff;
  background: rgba(11, 13, 18, 0.26);
  border: 1px solid rgba(244, 241, 232, 0.12);
  border-radius: 7px;
  font: 400 9px var(--mono);
}
.product-hunt-badge {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin: 24px auto 0;
  border-radius: 7px;
  transition: opacity 160ms ease, transform 160ms ease;
}
.product-hunt-badge:hover { opacity: 0.9; transform: translateY(-2px); }
.product-hunt-badge img { display: block; max-width: 100%; height: auto; }
.oss-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.018), 0 0 0 200px rgba(255, 255, 255, 0.012);
}
.oss-orbit i { position: absolute; width: 11px; height: 11px; border-radius: 50%; }
.oss-orbit i:nth-child(1) { top: 12%; left: 24%; background: var(--maya); }
.oss-orbit i:nth-child(2) { top: 42%; right: -5px; background: var(--alex); }
.oss-orbit i:nth-child(3) { right: 18%; bottom: 14%; background: var(--signal); }
.oss-orbit i:nth-child(4) { bottom: 33%; left: -5px; background: var(--paper); }

footer {
  min-height: 160px;
  padding: 0 max(32px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  color: #a5adb9;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}
.footer-brand { color: var(--paper); }
footer p { margin: 0; font-size: 10px; }
footer > div { justify-self: end; display: flex; gap: 22px; font-size: 10px; }
.copy-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  padding: 11px 14px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  font: 400 9px var(--mono);
}
.copy-toast.visible { opacity: 1; transform: translateY(0); }

@keyframes blink { 0%, 48% { opacity: 1; } 49%, 100% { opacity: 0; } }

@media (max-width: 1050px) {
  :root { --page: calc(100vw - 40px); }
  .hero { padding-right: 20px; padding-left: 20px; }
  .site-header nav { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .hero-aside { display: none; }
  .terminal-body { grid-template-columns: 245px 1fr; }
  .proof-heading { grid-template-columns: 100px 1fr; }
  .proof-route { grid-column: 2; }
  .proof-media figcaption { grid-template-columns: 180px 1fr; }
  .proof-media figcaption b { grid-column: 2; }
  .quickstart { grid-template-columns: 100px 1fr; }
  .command-stack, .requirements { grid-column: 2; }
  .manifesto, .architecture, .alpha-section { grid-template-columns: 1fr; }
  .architecture-map { min-height: 400px; }
  .guardrails, .alpha-roadmap { grid-column: 1; }
  .alpha-roadmap { margin-top: -55px; }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 28px); }
  .site-header { height: 74px; }
  .brand em, .github-label { display: none; }
  .hero { margin-top: -74px; padding: 150px 14px 55px; }
  .launch-banner { width: 100%; justify-content: space-between; gap: 10px; }
  .hero h1 { font-size: clamp(49px, 15vw, 76px); }
  .hero-deck { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .terminal-stage { margin-top: 58px; border-radius: 13px; }
  .terminal-chrome { grid-template-columns: 1fr auto; }
  .terminal-title { display: none; }
  .terminal-body { min-height: 0; display: block; }
  .session-rail {
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(155px, 1fr));
    gap: 6px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .rail-heading, .rail-presence { display: none; }
  .session { min-height: 60px; }
  .transcript-header { min-height: 66px; padding: 0 17px; }
  .transcript { min-height: 425px; padding: 22px 18px 18px; }
  .turn { padding-left: 37px; }
  .turn p { font-size: 10px; }
  .terminal-composer { margin: 0 14px 14px; }
  .hero-caption { font-size: 8px; }
  .proof-section { padding: 76px 14px; }
  .proof-heading { display: block; }
  .proof-heading h2 { margin-top: 28px; }
  .proof-route { margin-top: 34px; }
  .proof-media { margin-top: 30px; padding: 9px; border-radius: 12px; }
  .proof-media video { aspect-ratio: 16 / 8.5; }
  .proof-media figcaption { padding: 14px 3px 3px; display: block; }
  .proof-media figcaption p, .proof-media figcaption b { display: block; margin-top: 12px; }
  .section { padding: 88px 0; }
  .quickstart, .manifesto, .alpha-section { display: block; }
  .quickstart-copy, .command-stack { margin-top: 36px; }
  .command-row { padding: 0 10px; grid-template-columns: 28px minmax(0, 1fr) auto; }
  .command-row code { font-size: 8px; }
  .requirements { margin: 14px 0 0; line-height: 1.6; }
  .manifesto-body { padding-top: 40px; }
  .stat-row, .steps-grid, .guardrails, .alpha-columns { grid-template-columns: 1fr; }
  .stat-row > *, .steps-grid article, .guardrails article { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .stat-row > *:last-child, .steps-grid article:last-child, .guardrails article:last-child { border-bottom: 0; }
  .architecture { padding: 92px 14px; gap: 55px; }
  .architecture-map { min-height: 520px; }
  .map-person { top: auto; width: 112px; height: 100px; }
  .person-alex { top: 33px; left: 50%; transform: translateX(-50%); }
  .map-core { top: 188px; }
  .person-maya { right: auto; bottom: 34px; left: 50%; transform: translateX(-50%); }
  .map-line { left: 50%; width: 1px; height: 55px; background: linear-gradient(var(--alex), var(--maya)); }
  .line-one { top: 133px; }
  .line-two { top: 354px; right: auto; }
  .map-line span { top: 22px; left: 12px; transform: none; }
  .map-agents, .map-note { display: none; }
  .guardrails { margin-top: 0; }
  .guardrails article, .guardrails article:not(:first-child) { padding: 28px 0; border-color: var(--line-dark); }
  .guardrails article > span { margin-bottom: 25px; }
  .alpha-columns { margin-top: 42px; }
  .alpha-list, .alpha-list + .alpha-list { padding: 25px 0; border-left: 0; }
  .alpha-list + .alpha-list { border-top: 1px solid var(--line-light); }
  .alpha-roadmap { margin-top: 22px; }
  .oss-cta { padding: 100px 14px; }
  .oss-cta h2 { font-size: clamp(64px, 21vw, 100px); }
  .oss-orbit { width: 470px; height: 470px; }
  .final-command { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
  footer { padding: 45px 20px; display: flex; align-items: flex-start; flex-direction: column; }
  footer > div { flex-wrap: wrap; }
}

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