:root {
  color-scheme: light;
  --blue: #0a35ff;
  --blue-dark: #0828c9;
  --ink: #071126;
  --paper: #f2f4f0;
  --white: #fff;
  --line: rgba(7, 17, 38, .16);
  --muted: #596278;
  --mono: "SFMono-Regular", "Cascadia Code", "Roboto Mono", Consolas, monospace;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button { font: inherit; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-200%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }
.page-shell { min-height: 100vh; overflow: hidden; }
.site-header {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
}
.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .18em;
}
.brand-mark {
  width: 27px;
  height: 27px;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--blue);
  border-radius: 50%;
}
.brand-mark i {
  position: absolute;
  width: 3px;
  height: 11px;
  background: var(--white);
  border-radius: 3px;
  transform-origin: 50% 10px;
}
.brand-mark i:nth-child(1) { transform: rotate(0deg) translateY(-4px); }
.brand-mark i:nth-child(2) { transform: rotate(120deg) translateY(-4px); }
.brand-mark i:nth-child(3) { transform: rotate(240deg) translateY(-4px); }
nav { display: flex; align-items: center; gap: 34px; }
nav a, footer a {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
}
nav a:hover, footer a:hover { color: var(--blue); }
.status {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.status i, .prompt-footer i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1dcf79;
  box-shadow: 0 0 0 4px rgba(29, 207, 121, .13);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  min-height: 680px;
  max-width: 1440px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px 7vw 78px 42px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 32px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow span {
  padding-right: 13px;
  border-right: 1px solid currentColor;
  color: var(--ink);
}
h1, .section-heading h2, .workflow h2 {
  margin: 0;
  font-size: clamp(56px, 6.4vw, 102px);
  font-weight: 760;
  letter-spacing: -.067em;
  line-height: .88;
}
h1 em, .section-heading h2 em, .workflow h2 em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.hero-lede {
  max-width: 570px;
  margin: 34px 0 0;
  color: #414b61;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  letter-spacing: -.015em;
}
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
}
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: var(--blue); border-color: var(--blue); }
.button-secondary:hover { background: var(--white); }
.quick-command {
  width: min(100%, 570px);
  min-height: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
  padding: 0 9px 0 17px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.42);
}
.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(10,53,255,.1);
}
.quick-command code {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
}
.icon-button {
  height: 34px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  cursor: pointer;
}
.icon-button:hover { background: var(--white); color: var(--blue); }
.runtime-visual {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  isolation: isolate;
}
.visual-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 17%, #000 83%, transparent);
}
.runtime-visual::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.runtime-visual::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 1px;
  top: 50%;
  left: 50%;
  z-index: -1;
  background: rgba(255,255,255,.38);
  box-shadow: 0 0 30px rgba(255,255,255,.4);
  transform: translate(-50%, -50%) rotate(-26deg);
}
.diagram-label {
  position: absolute;
  left: 30px;
  margin: 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .15em;
  opacity: .72;
}
.diagram-label-top { top: 27px; }
.diagram-label-bottom { bottom: 27px; }
.agent-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}
.core-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}
.core-orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 18px;
  left: 34px;
  border: 4px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
}
.core-orbit-two {
  inset: 25px;
  animation-direction: reverse;
  animation-duration: 12s;
}
.core-orbit-two::after { top: auto; left: auto; right: 5px; bottom: 35px; }
.core-card {
  width: 94px;
  height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--white);
  color: var(--blue);
  border-radius: 50%;
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}
.core-card strong { font-size: 13px; letter-spacing: .08em; }
.core-card small { margin-top: 4px; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }
.core-pulse {
  position: absolute;
  top: 19px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1dcf79;
}
.runtime-node {
  width: 132px;
  min-height: 78px;
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-content: center;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(8,40,201,.68);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.runtime-node span { grid-row: 1 / 3; font-family: var(--mono); font-size: 9px; opacity: .65; }
.runtime-node strong { font-size: 11px; letter-spacing: .08em; }
.runtime-node small { font-family: var(--mono); font-size: 8px; opacity: .72; }
.node-local { top: 20%; left: 9%; }
.node-state { top: 22%; right: 7%; }
.node-edge { right: 14%; bottom: 15%; }
@keyframes rotate { to { transform: rotate(360deg); } }
.capability-rail {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.capability-rail article {
  min-height: 170px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 38px 42px;
}
.capability-rail article + article { border-left: 1px solid var(--line); }
.capability-rail article > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
}
.capability-rail h2 { margin: 0 0 10px; font-size: 16px; letter-spacing: -.02em; }
.capability-rail p { max-width: 270px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.getting-started {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .74fr) minmax(0, 1.26fr);
  gap: 8vw;
  padding: 124px 42px;
  border-bottom: 1px solid var(--line);
}
.section-heading h2, .workflow h2 {
  font-size: clamp(48px, 5vw, 76px);
  line-height: .94;
}
.section-heading > p:last-child {
  max-width: 470px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.prompt-panel {
  align-self: center;
  min-width: 0;
  border: 1px solid var(--ink);
  background: #071126;
  color: #dbe3ff;
  box-shadow: 16px 16px 0 rgba(10,53,255,.12);
}
.prompt-toolbar {
  min-height: 61px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.tabs { display: flex; }
.tabs button {
  min-width: 115px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.15);
  background: transparent;
  color: #79849e;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  cursor: pointer;
}
.tabs button[aria-selected="true"] { background: var(--blue); color: var(--white); }
.copy-prompt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #aeb7cb;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  cursor: pointer;
}
.copy-prompt:hover { color: var(--white); }
.copy-icon {
  width: 12px;
  height: 12px;
  position: relative;
  border: 1px solid currentColor;
}
.copy-icon::after {
  content: "";
  position: absolute;
  inset: -4px 3px 3px -4px;
  border: 1px solid currentColor;
}
.prompt-body {
  min-height: 434px;
  position: relative;
  overflow: auto;
  padding: 31px 34px 31px 64px;
}
.line-number {
  position: absolute;
  top: 34px;
  left: 24px;
  color: #47516a;
  font-family: var(--mono);
  font-size: 10px;
}
pre { margin: 0; white-space: pre-wrap; }
pre code {
  color: #dbe3ff;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.72;
}
.prompt-footer {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #73809d;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.prompt-footer span:first-child { display: flex; align-items: center; gap: 9px; }
.prompt-footer strong { color: #aeb7cb; }
.workflow {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 8vw;
  padding: 110px 42px 126px;
}
.workflow ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.workflow li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}
.workflow li > span { color: var(--blue); font-family: var(--mono); font-size: 10px; }
.workflow h3 { margin: -4px 0 12px; font-size: 21px; letter-spacing: -.03em; }
.workflow code {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 9px;
  background: rgba(10,53,255,.08);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
}
.workflow li p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
footer {
  min-height: 112px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 42px;
  border-top: 1px solid var(--line);
}
footer p { margin: 0; color: var(--muted); font-size: 11px; }
footer p a { color: var(--ink); }
footer > div { justify-self: end; display: flex; gap: 25px; }
:focus-visible { outline: 3px solid #ffb700; outline-offset: 3px; }
[hidden] { display: none !important; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 24px; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 650px; padding: 84px 24px 70px; }
  .runtime-visual { min-height: 580px; }
  .capability-rail { grid-template-columns: 1fr; }
  .capability-rail article { min-height: 130px; padding: 30px 24px; }
  .capability-rail article + article { border-left: 0; border-top: 1px solid var(--line); }
  .getting-started, .workflow { grid-template-columns: 1fr; gap: 64px; padding: 90px 24px; }
  .workflow { padding-bottom: 100px; }
}

@media (max-width: 620px) {
  .site-header { min-height: 68px; }
  .status { font-size: 0; }
  .hero-copy { min-height: 620px; }
  h1 { font-size: clamp(49px, 16vw, 70px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .quick-command code { font-size: 10px; }
  .runtime-visual { min-height: 520px; }
  .runtime-visual::before { width: 390px; height: 390px; }
  .agent-core { width: 180px; height: 180px; }
  .runtime-node { width: 118px; }
  .node-local { top: 18%; left: 5%; }
  .node-state { top: 21%; right: 4%; }
  .node-edge { right: 7%; bottom: 13%; }
  .getting-started { padding-top: 82px; padding-bottom: 82px; }
  .prompt-toolbar { min-height: 56px; }
  .tabs button { min-width: auto; padding: 0 13px; font-size: 9px; }
  .copy-prompt { padding: 0 13px; }
  .prompt-body { min-height: 500px; padding: 26px 22px 26px 48px; }
  .line-number { top: 29px; left: 16px; }
  pre code { font-size: 10.5px; }
  .prompt-footer span:last-child { display: none; }
  .workflow { padding-top: 82px; }
  footer {
    grid-template-columns: 1fr auto;
    padding: 28px 24px;
  }
  footer p { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .core-orbit { animation: none; }
}