:root {
  color-scheme: light;
  --ink: #13171f;
  --muted: #5b6474;
  --line: #d8dde7;
  --surface: #f7f9fc;
  --surface-strong: #ffffff;
  --blue: #2458e6;
  --green: #19764d;
  --gold: #a46412;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(247, 249, 252, 0.88);
  border-bottom: 1px solid rgba(216, 221, 231, 0.76);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(19, 23, 31, 0.24) 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(19, 23, 31, 0.24) 46% 54%, transparent 54%),
    var(--surface-strong);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 96px clamp(20px, 6vw, 72px) 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.workspace-scene {
  position: absolute;
  inset: 64px clamp(14px, 3vw, 36px) 30px;
  opacity: 0.72;
}

.scene-bar,
.scene-sidebar,
.scene-editor,
.scene-tools,
.scene-activity {
  position: absolute;
  border: 1px solid rgba(98, 111, 134, 0.22);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(32, 40, 54, 0.12);
}

.scene-bar {
  top: 0;
  left: 0;
  right: 0;
  height: 54px;
  border-radius: 10px 10px 0 0;
}

.scene-sidebar {
  top: 66px;
  bottom: 0;
  left: 0;
  width: min(220px, 26vw);
  padding: 24px;
  border-radius: 0 0 0 10px;
}

.scene-sidebar span,
.scene-line,
.tool-row,
.scene-eyebrow,
.scene-activity span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #c6ceda;
}

.scene-sidebar span {
  width: 100%;
  margin-bottom: 18px;
}

.scene-sidebar span:nth-child(2) {
  width: 74%;
  background: rgba(36, 88, 230, 0.32);
}

.scene-sidebar span:nth-child(3) {
  width: 88%;
}

.scene-sidebar span:nth-child(4) {
  width: 62%;
  background: rgba(25, 118, 77, 0.28);
}

.scene-editor {
  top: 66px;
  bottom: 0;
  left: min(244px, 30vw);
  right: min(282px, 30vw);
  padding: clamp(28px, 5vw, 72px);
}

.scene-eyebrow {
  width: 140px;
  margin-bottom: 26px;
  background: rgba(164, 100, 18, 0.32);
}

.scene-line {
  width: min(560px, 74%);
  height: 18px;
  margin-bottom: 16px;
}

.scene-line.wide {
  width: min(680px, 88%);
  height: 32px;
  background: #657084;
}

.scene-line.short {
  width: min(420px, 58%);
}

.scene-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(56px, 1fr));
  gap: 8px;
  width: min(640px, 100%);
  margin-top: 42px;
}

.scene-table span {
  height: 42px;
  border: 1px solid rgba(98, 111, 134, 0.24);
  background: rgba(247, 249, 252, 0.9);
  border-radius: 6px;
}

.scene-tools {
  top: 66px;
  right: 0;
  width: min(258px, 28vw);
  padding: 22px;
  border-radius: 0 0 10px 0;
}

.tool-row {
  width: 100%;
  margin-bottom: 16px;
}

.tool-row.strong {
  height: 22px;
  background: rgba(36, 88, 230, 0.52);
}

.scene-activity {
  right: min(36px, 4vw);
  bottom: 30px;
  width: min(320px, 42vw);
  padding: 20px;
  border-radius: 10px;
}

.scene-activity span {
  width: 100%;
  margin-bottom: 12px;
  background: rgba(25, 118, 77, 0.28);
}

.scene-activity span:last-child {
  margin-bottom: 0;
  width: 64%;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(720px, 100%);
  padding-top: 24px;
}

.status-pill,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(52px, 10vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  width: min(640px, 100%);
  margin-top: 24px;
  color: #303948;
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--ink);
  color: #ffffff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.74);
}

.content-band,
.mcp-band {
  padding: clamp(56px, 8vw, 112px) clamp(20px, 6vw, 72px);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
}

.content-grid p,
.mcp-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.mcp-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.62fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  background: #eef2f7;
  border-top: 1px solid var(--line);
}

.endpoint-box {
  min-width: 0;
  padding: 22px;
  border: 1px solid #aeb8c8;
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: 0 18px 48px rgba(32, 40, 54, 0.1);
}

code {
  color: #1e3f9a;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.95em;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .topbar {
    height: 58px;
  }

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .nav-links a:first-child {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 88px;
  }

  .workspace-scene {
    inset: 58px 8px 24px;
  }

  .scene-sidebar,
  .scene-tools {
    display: none;
  }

  .scene-editor {
    left: 0;
    right: 0;
    padding: 28px;
  }

  .scene-activity {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .content-grid,
  .mcp-band {
    grid-template-columns: 1fr;
  }
}
