@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/dm-sans-latin.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/space-grotesk-latin.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
:root {
  color-scheme: dark;
  --bg: #080b12;
  --surface: #0d121d;
  --line: #ffffff12;
  --muted: #919cad;
  --text: #eff3fc;
  --blue: #4a85ff;
  --cyan: #8bbaff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    16px/1.6 "DM Sans",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #8bbaff;
  outline-offset: 5px;
}
.wrap {
  width: min(1160px, calc(100% - 64px));
  margin-inline: auto;
}
.header {
  height: 88px;
  border-bottom: 1px solid var(--line);
  background: #080b12e8;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -1px;
}
.brand img {
  margin-right: 10px;
}
.brand > span {
  color: #7c9bd0;
}
.nav nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: #b2bbca;
}
.nav a:hover,
.text-link:hover {
  color: white;
}
.nav-cta {
  border: 1px solid #ffffff25;
  padding: 9px 15px;
  border-radius: 7px;
  font-size: 14px;
}
.nav-cta span {
  margin-left: 14px;
}
.menu {
  display: none;
}
.hero {
  padding-top: 84px;
  text-align: center;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 -20px -400px;
  background: radial-gradient(ellipse at 50% 75%, #1a4dc926, transparent 65%);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2.6px;
  font-weight: 600;
  color: #aab7cf;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mini-mark {
  color: #74a1ff;
  font-size: 20px;
}
.hero h1 {
  font:
    500 clamp(70px, 8.8vw, 116px) / 0.99 "Space Grotesk",
    sans-serif;
  letter-spacing: -7px;
  margin: 27px 0;
}
.gradient-text {
  color: #76a5ff;
  background: linear-gradient(110deg, #dce9ff 8%, #6b9ffb 58%, #4273e7 95%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-copy {
  font-size: 23px;
  line-height: 1.45;
  letter-spacing: -0.4px;
  margin: 27px 0 12px;
}
.hero-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 27px;
  align-items: center;
  margin: 28px 0;
}
.button {
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  gap: 27px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: #3478f6;
  color: white;
  box-shadow:
    0 0 28px #3478f624,
    inset 0 1px #ffffff32;
}
.primary:hover {
  background: #4c8aff;
}
.text-link {
  font-size: 14px;
  color: #b3bdce;
  display: inline-flex;
  gap: 20px;
}
.hero-notes {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #7f8ba0;
  font-size: 12px;
  margin-top: 32px;
}
.hero-notes span:before {
  content: "✓";
  color: #7899d8;
  margin-right: 8px;
}
.workspace-section {
  margin-top: 52px;
}
.workspace {
  border: 1px solid #33405c;
  border-radius: 12px;
  background: #0c111a;
  box-shadow:
    0 -10px 100px #2a65ff13,
    0 40px 100px #0004;
  overflow: hidden;
}
.window-top {
  height: 42px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: #131925;
  font-size: 12px;
  color: #8190a8;
}
.window-dots {
  display: flex;
  gap: 6px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #424c5e;
}
.demo-label {
  letter-spacing: 1.5px;
  font-size: 10px;
}
.workspace-body {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 420px;
}
.app-sidebar {
  background: #0f1520;
  border-right: 1px solid var(--line);
  padding: 22px 13px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #8794aa;
  font-size: 12px;
}
.workspace-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d4dcec;
  margin-bottom: 22px;
  white-space: nowrap;
}
.workspace-name > span:last-child {
  margin-left: auto;
}
.team-icon {
  padding: 2px 7px;
  border: 1px solid #ffffff22;
  border-radius: 4px;
}
.side-heading {
  font-size: 10px;
  letter-spacing: 1.2px;
  margin: 0 9px 7px;
}
.app-sidebar > span {
  padding: 7px 10px;
}
.side-active {
  background: #3478f61a;
  color: #99b6f7;
  border-radius: 4px;
}
.sidebar-bottom {
  margin-top: auto;
  padding: 30px 10px 0;
}
.sidebar-bottom .avatar {
  margin-top: 24px;
  display: inline-flex;
}
.sidebar-bottom small {
  font-size: 10px;
  margin-left: 7px;
}
.app-main {
  padding: 25px 28px 20px;
  min-width: 0;
}
.app-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7e8ba1;
  font-size: 12px;
}
.app-breadcrumb strong {
  font-weight: 500;
  color: #ced7e7;
}
.private-badge {
  padding: 1px 7px;
  border: 1px solid #ffffff20;
  border-radius: 4px;
  font-size: 10px;
  margin-left: auto;
}
.repo-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 19px;
}
.repo-heading h2 {
  font:
    500 24px "Space Grotesk",
    sans-serif;
  margin: 0;
}
.repo-heading p {
  font-size: 12px;
  color: #8592a7;
  margin: 5px 0 0;
}
.branch-label {
  border: 1px solid #ffffff1c;
  border-radius: 4px;
  font: 12px monospace;
  padding: 4px 12px;
}
.demo-tabs {
  display: flex;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  margin-top: 17px;
  overflow: auto;
}
.demo-tabs button {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 10px 0;
  color: #8c99ae;
  font-size: 12px;
  white-space: nowrap;
}
.demo-tabs button[aria-selected="true"] {
  color: #c2d6ff;
  border-bottom-color: #568bff;
}
.commit-row {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #141d2b;
  border: 1px solid #ffffff0d;
  padding: 9px 12px;
  font-size: 11px;
  margin-top: 17px;
  border-radius: 5px;
  color: #8898b1;
}
.commit-row strong {
  color: #c7d3e8;
  font-weight: 500;
}
.commit-row code {
  margin-left: auto;
}
.avatar {
  background: #1f3b61;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #b9d2fd;
}
.small {
  display: flex;
  width: 21px;
  height: 21px;
}
.file-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  padding: 9px 13px;
  font-size: 12px;
  border-bottom: 1px solid #ffffff08;
  color: #b7c5db;
}
.file-row span:last-child {
  color: #76859d;
}
.insight {
  display: flex;
  gap: 12px;
  border: 1px solid #3461a83b;
  border-radius: 6px;
  background: linear-gradient(110deg, #12213d, #101827);
  padding: 14px;
  margin-top: 15px;
}
.insight > span {
  color: #82aaff;
  font-size: 21px;
}
.insight strong {
  font-size: 12px;
  font-weight: 500;
  color: #c0d5ff;
}
.insight p {
  font-size: 11px;
  margin: 2px 0;
  color: #8d9eb8;
}
.preview-caption {
  text-align: center;
  color: #68758b;
  font-size: 12px;
  margin-top: 15px;
}
.footer {
  border-top: 1px solid var(--line);
  padding-block: 32px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 90px;
  font-size: 13px;
  color: var(--muted);
}
.footer > a:nth-of-type(2) {
  margin-left: auto;
}
.footer small {
  font-size: 12px;
}
.skip {
  position: fixed;
  left: 15px;
  top: -100px;
  background: #3478f6;
  padding: 10px;
  z-index: 20;
}
.skip:focus {
  top: 10px;
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .nav nav {
    gap: 15px;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    padding-top: 60px;
  }
  .hero h1 {
    letter-spacing: -4px;
  }
  .workspace-body {
    grid-template-columns: 1fr;
  }
  .app-sidebar {
    display: none;
  }
  .app-main {
    padding: 20px;
  }
  .hero-notes {
    gap: 15px;
    flex-wrap: wrap;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer > a:nth-of-type(2) {
    margin-left: 0;
  }
}
@media (max-width: 520px) {
  .header {
    height: 70px;
  }
  .brand {
    font-size: 22px;
  }
  .menu {
    display: block;
    border: 1px solid #ffffff20;
    border-radius: 5px;
    background: none;
    color: white;
    padding: 2px 9px;
  }
  .nav nav {
    display: none;
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    padding: 24px;
    background: #0f1520;
    flex-direction: column;
  }
  .nav nav.open {
    display: flex;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.4px;
  }
  .hero h1 {
    font-size: 68px;
    letter-spacing: -4px;
  }
  .hero-copy {
    font-size: 21px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-actions {
    gap: 19px;
    flex-wrap: wrap;
  }
  .hero-notes {
    font-size: 11px;
    gap: 9px 17px;
  }
  .desktop {
    display: none;
  }
  .demo-tabs {
    gap: 19px;
  }
  .demo-label {
    display: none;
  }
  .app-main {
    padding: 17px 13px;
  }
  .app-breadcrumb {
    gap: 7px;
  }
  .repo-heading h2 {
    font-size: 22px;
  }
  .commit-row > span:not(.avatar) {
    max-width: 130px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .commit-row code {
    font-size: 10px;
  }
  .file-row {
    grid-template-columns: 1fr 1.4fr;
    gap: 8px;
    font-size: 11px;
  }
  .footer {
    gap: 15px;
  }
  .footer > span {
    margin-left: auto;
  }
  .footer small {
    margin-left: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
.section {
  padding-block: 110px;
}
.kicker {
  font-size: 12px;
  letter-spacing: 2px;
  color: #759ce0;
  font-weight: 500;
  margin-bottom: 19px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 44px;
}
h2 {
  font:
    500 46px/1.13 "Space Grotesk",
    sans-serif;
  letter-spacing: -2px;
  margin: 0;
}
.section-heading > p {
  max-width: 315px;
  color: var(--muted);
  margin: 0 0 4px;
  font-size: 16px;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 27px 23px 21px;
  background: linear-gradient(145deg, #111824, #0b1019);
  border: 1px solid #ffffff12;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: #3d5c91;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 29px;
}
.icon-square {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff1c;
  background: #ffffff03;
  border-radius: 8px;
  color: #8fb4ff;
  font-size: 24px;
}
.card-number {
  font: 12px monospace;
  color: #596b87;
}
.feature-card h3 {
  font:
    500 21px/1.3 "Space Grotesk",
    sans-serif;
  letter-spacing: -0.6px;
  margin: 0 0 12px;
}
.feature-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 25px;
  min-height: 103px;
}
.terminal {
  background: #080d15;
  border: 1px solid #ffffff0f;
  border-radius: 6px;
  margin-top: auto;
  height: 165px;
  overflow: hidden;
}
.terminal > div {
  display: flex;
  justify-content: space-between;
  padding: 9px 13px;
  border-bottom: 1px solid var(--line);
  font: 11px monospace;
  color: #75829a;
}
.terminal > code {
  display: block;
  padding: 15px 12px;
  font: 11px/1.9 monospace;
  white-space: nowrap;
}
.terminal-prompt {
  color: #6c9efd;
}
.terminal-muted {
  color: #687893;
}
.terminal-blue {
  color: #99b5e8;
}
.card-tags {
  display: flex;
  gap: 7px;
  margin-top: 25px;
  flex-wrap: wrap;
}
.card-tags span {
  font-size: 11px;
  color: #8fa1bd;
  padding: 4px 8px;
  border: 1px solid #ffffff10;
  border-radius: 4px;
}
.pr-mini {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 15px 11px;
  background: #0a1019;
  height: 165px;
  margin-top: auto;
  font-size: 10px;
}
.pr-mini > div:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pr-icon {
  color: #a78beb;
  font-size: 19px;
}
.pr-mini strong {
  font-size: 11px;
  font-weight: 500;
}
.pill {
  font-size: 8px;
  letter-spacing: 0.5px;
  background: #8263be21;
  color: #c3a5f7;
  border: 1px solid #aa80f236;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: auto;
}
.pr-mini > p {
  margin: 8px 0 17px;
  color: #8294b0;
}
.pr-mini code {
  font-size: 10px;
  background: #ffffff06;
  border: 1px solid #ffffff0d;
  padding: 2px 4px;
  border-radius: 3px;
}
.review-line {
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid var(--line);
  padding-top: 11px;
  color: #a6b5cc;
}
.review-line .avatar {
  display: flex;
  width: 19px;
  height: 19px;
  font-size: 8px;
}
.approved {
  color: #87bea3;
  margin-left: auto;
  font-size: 9px;
}
.merge-line {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  color: #657691;
  font-size: 10px;
}
.merge-line span:first-child {
  color: #a1bbe7;
}
.access-mini {
  height: 165px;
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0a1019;
  padding: 0 10px;
}
.access-mini > div {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
}
.access-mini > div:last-child {
  border: 0;
}
.access-mini .avatar {
  display: flex;
}
.access-mini strong {
  font-size: 11px;
  font-weight: 500;
  display: block;
}
.access-mini small {
  font-size: 9px;
  color: #6d809e;
  display: block;
}
.access-level {
  font-size: 9px;
  margin-left: auto;
  color: #9ab4db;
  background: #152139;
  border: 1px solid #30415c;
  border-radius: 3px;
  padding: 1px 5px;
}
.violet {
  background: #332544;
  color: #ceaff5;
}
.teal {
  background: #193b3f;
  color: #b1dbd7;
}
.intelligence-band {
  background: linear-gradient(105deg, #0c1423, #0b101b 70%);
  border-block: 1px solid #ffffff0c;
}
.intelligence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.section-copy > p {
  color: var(--muted);
  font-size: 16px;
  max-width: 430px;
  margin-top: 25px;
}
.subtle-text {
  color: #8596b3;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 31px;
  color: #aab8ce;
  font-size: 14px;
}
.check-list li {
  margin-block: 10px;
  display: flex;
  gap: 11px;
}
.check-list li:before {
  content: "✓";
  color: #74a2fc;
}
.provider-note {
  border-top: 1px solid var(--line);
  margin-top: 35px;
  padding-top: 18px;
  color: #8b9ab4;
  font-size: 12px;
}
.provider-note span {
  font-size: 12px;
  color: #6e809c;
}
.answer-card {
  background: #101929;
  border: 1px solid #31415f;
  border-radius: 10px;
  box-shadow: 0 20px 65px #0004;
  transform: rotate(-1deg);
  overflow: hidden;
}
.answer-top {
  background: #182337;
  border-bottom: 1px solid #ffffff12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 14px;
  color: #b8c9e7;
}
.question-bubble {
  background: #1b2d49;
  border: 1px solid #344f76;
  color: #cadbf5;
  border-radius: 9px 9px 2px 9px;
  margin: 27px 23px 10px 46px;
  padding: 13px 15px;
  font-size: 14px;
}
.answer-body {
  padding: 15px 23px 22px;
}
.answer-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
}
.ai-spark {
  font-size: 23px;
  color: #8aaffc;
}
.answer-body > p {
  font-size: 14px;
  color: #9eafc9;
  line-height: 1.85;
  margin: 14px 0 24px;
}
.source-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #ffffff10;
  background: #0b1423;
  padding: 11px 12px;
  border-radius: 5px;
  margin: 8px 0;
}
.source-preview > span {
  font: 10px monospace;
  color: #728bac;
}
.source-preview > span:last-child {
  margin-left: auto;
}
.source-preview strong {
  display: block;
  font: 12px monospace;
  color: #b8cbea;
}
.source-preview small {
  font-size: 10px;
  color: #7689a6;
}
.answer-foot {
  font-size: 9px;
  letter-spacing: 1.3px;
  color: #5f779b;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  margin-top: 23px;
}
.agents .section-heading > p {
  max-width: 340px;
}
.agents h2 {
  font-size: 42px;
}
.agent-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  margin-top: 55px;
  align-items: center;
}
.connection-map {
  padding: 30px 45px 25px;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  background:
    radial-gradient(ellipse at center, #17305255, transparent 70%),
    radial-gradient(#33415b77 1px, transparent 1px);
  background-size:
    auto,
    20px 20px;
  text-align: center;
}
.map-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: #7588a6;
  margin-bottom: 29px;
}
.map-client {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #111b2a;
  border: 1px solid #36455e;
  border-radius: 6px;
  padding: 12px 18px;
  color: #bac8dd;
  font-size: 14px;
}
.map-client > span {
  font-size: 21px;
}
.map-line {
  width: 1px;
  height: 37px;
  margin: auto;
  background: linear-gradient(#34476b, #7b9fde);
}
.map-gateway {
  background: #122341;
  border: 1px solid #416fa8;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  box-shadow: 0 0 35px #3b7cfa12;
}
.map-gateway strong {
  font-family: "Space Grotesk";
  font-weight: 500;
  font-size: 20px;
  display: block;
}
.map-gateway small {
  font-size: 11px;
  color: #829dca;
  display: block;
}
.map-gateway > span {
  margin-left: 15px;
  color: #85aaf1;
  font-size: 24px;
}
.map-fork {
  display: flex;
  height: 48px;
  width: 78%;
  margin: auto;
}
.map-fork span {
  width: 33.33%;
  height: 24px;
  margin-top: 24px;
  border-top: 1px solid #476488;
}
.map-fork span:first-child {
  border-left: 1px solid #476488;
  border-radius: 5px 0 0 0;
}
.map-fork span:nth-child(2) {
  position: relative;
}
.map-fork span:nth-child(2):before {
  content: "";
  position: absolute;
  width: 1px;
  height: 48px;
  background: #476488;
  top: -24px;
  left: 50%;
}
.map-fork span:last-child {
  border-right: 1px solid #476488;
  border-radius: 0 5px 0 0;
}
.map-repos {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.map-repos > div {
  background: #101b2b;
  border: 1px solid #344762;
  border-radius: 6px;
  flex: 1;
  color: #88b0f7;
  padding: 10px 0;
  font-size: 20px;
}
.map-repos span {
  display: block;
  font: 11px monospace;
  color: #afc1dd;
  margin-top: 5px;
}
.map-caption {
  font-size: 11px;
  color: #7184a3;
  margin-top: 27px;
}
.agent-copy h3 {
  font: 500 25px "Space Grotesk";
  letter-spacing: -0.6px;
  margin: 0 0 15px;
}
.agent-copy > p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 22px;
}
.scope-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.scope-row > span {
  font: 11px monospace;
  color: #aac9ff;
  min-width: 63px;
}
.scope-row > p {
  font-size: 14px;
  color: #8f9eb5;
  margin: 0;
}
.agent-copy > .text-link {
  margin-top: 21px;
}
.security {
  padding: 35px 40px;
  border: 1px solid #ffffff15;
  border-radius: 10px;
  background: #0d131e;
}
.security-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.security-heading .kicker {
  font-size: 10px;
  margin-bottom: 7px;
}
.security-heading h2 {
  font-size: 28px;
  letter-spacing: -0.8px;
}
.security-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.security-items article + article {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.security-items h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 7px;
}
.security-items p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.feature-list {
  border-top: 1px solid #ffffff20;
}
.feature-list details {
  border-bottom: 1px solid #ffffff15;
}
.feature-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 25px 0;
  cursor: pointer;
}
.feature-list summary::-webkit-details-marker {
  display: none;
}
.feature-list summary:hover h3 {
  color: #8bb4ff;
}
.feature-index-number {
  color: #6f83a4;
  font: 12px monospace;
}
.feature-list h3 {
  font: 500 20px "Space Grotesk";
  letter-spacing: -0.4px;
  margin: 0;
}
.feature-summary {
  color: #657894;
  font-size: 13px;
  margin-left: auto;
}
.expand {
  font-size: 24px;
  font-weight: 400;
  color: #9cacc6;
  margin-left: 20px;
  line-height: 1;
  transition: transform 0.2s;
}
.feature-list details[open] .expand {
  transform: rotate(45deg);
  color: #79a7ff;
}
.feature-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  padding: 2px 35px 30px 42px;
}
.feature-detail h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 7px;
  color: #bcd0ef;
}
.feature-detail p {
  font-size: 14px;
  color: #8b9ab3;
  line-height: 1.8;
  margin: 0;
}
.feature-note {
  font-size: 12px;
  color: #7486a3;
  margin-top: 21px;
}
.closing {
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #243a5b;
  border-radius: 12px;
  padding: 60px 20px 65px;
  background:
    radial-gradient(ellipse at 50% 120%, #1c4da260, transparent 72%), #0c1320;
}
.closing-mark {
  margin-bottom: 20px;
}
.closing .kicker {
  font-size: 10px;
  letter-spacing: 2px;
}
.closing h2 {
  font-size: 52px;
  position: relative;
  z-index: 1;
}
.closing p {
  color: #8b9bb6;
  margin: 21px 0 27px;
}
.closing .button {
  position: relative;
  z-index: 1;
}
.closing-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(#4d6d9c0d 1px, transparent 1px),
    linear-gradient(90deg, #4d6d9c0d 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(transparent, #000);
}
/* Interactive workspace */
#demo-panel {
  min-height: 277px;
}
.demo-example {
  font-size: 11px;
  color: #8192ac;
  margin: 15px 0 8px;
}
.question-options {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.question-options button {
  border: 1px solid #354668;
  background: #101a2b;
  padding: 6px 10px;
  border-radius: 5px;
  color: #a5bddf;
  font-size: 12px;
}
.question-options button[aria-pressed="true"] {
  background: #1e3459;
  border-color: #5c86c8;
  color: #d7e7ff;
}
.search-answer {
  background: #101a2b;
  border: 1px solid #2c4164;
  border-radius: 6px;
  padding: 15px;
  font-size: 13px;
  color: #a8bad4;
  line-height: 1.7;
}
.search-answer strong {
  color: #d6e5ff;
  font-weight: 500;
}
.search-answer p {
  margin: 8px 0 13px;
}
.search-answer code {
  color: #8aafe9;
  font-size: 11px;
  background: #0b1423;
  border-radius: 4px;
  padding: 5px 8px;
  display: inline-block;
}
.review-heading {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 17px;
}
.review-heading strong {
  font-size: 14px;
  font-weight: 500;
}
.review-heading .pill {
  margin-left: 0;
  font-size: 9px;
}
.diff {
  margin-top: 13px;
  background: #080e18;
  border: 1px solid #26334a;
  border-radius: 5px;
  overflow: auto;
  font: 11px/1.85 monospace;
}
.diff-file {
  padding: 7px 12px;
  background: #151f2e;
  color: #90a4c3;
}
.diff-code {
  min-width: 365px;
  padding: 9px 0;
  color: #8597b3;
}
.diff-code > div {
  padding: 0 12px;
  white-space: pre;
}
.diff-code .removed {
  color: #d997a3;
  background: #c8566b12;
}
.diff-code .added {
  color: #9bccb6;
  background: #49a38314;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  color: #93a9c8;
  margin-top: 12px;
}
.review-meta button {
  font-size: 11px;
  margin-left: auto;
  border: 1px solid #344760;
  border-radius: 4px;
  color: #a5c2ee;
  background: #142239;
  padding: 5px 9px;
}
.checks-panel {
  padding: 9px 12px;
  margin-top: 8px;
  border: 1px solid #294236;
  border-radius: 5px;
  background: #10211a;
  font-size: 11px;
  color: #9cc9ad;
}
.mcp-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.mcp-toolbar span {
  font-size: 12px;
  color: #8ca6d0;
}
.copy-button {
  background: #182943;
  border: 1px solid #334c72;
  border-radius: 4px;
  color: #b7cdf0;
  font-size: 11px;
  padding: 5px 9px;
}
.mcp-code {
  padding: 15px;
  margin: 10px 0;
  background: #090f1a;
  border: 1px solid #2d3d55;
  border-radius: 6px;
  font: 12px/1.75 monospace;
  overflow: auto;
  color: #bad0ef;
}
.mcp-note {
  font-size: 11px;
  color: #8296b5;
  line-height: 1.7;
}
.copy-status {
  font-size: 11px;
  color: #9fc3ff;
  min-height: 18px;
}
.feature-list summary:focus-visible {
  outline: 2px solid #8bbaff;
  outline-offset: 4px;
}
@media (min-width: 1450px) {
  .hero {
    padding-top: 100px;
  }
  .workspace-section {
    margin-top: 65px;
  }
}
@media (max-width: 1000px) {
  .platform-grid {
    gap: 12px;
  }
  .feature-card {
    padding: 22px 16px;
  }
  .feature-card h3 {
    font-size: 19px;
  }
  .feature-card > p {
    min-height: 127px;
  }
  .terminal > code {
    font-size: 10px;
  }
  .pr-mini strong {
    font-size: 10px;
  }
  .review-line {
    font-size: 9px;
  }
  .approved {
    font-size: 8px;
  }
  .intelligence-grid,
  .agent-grid {
    gap: 45px;
  }
  .connection-map {
    padding-inline: 25px;
  }
  .section-heading {
    gap: 35px;
  }
  h2 {
    font-size: 41px;
  }
  .agents h2 {
    font-size: 38px;
  }
}
@media (max-width: 800px) {
  .section {
    padding-block: 75px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .section-heading > p,
  .agents .section-heading > p {
    max-width: 500px;
  }
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 25px;
  }
  .feature-card h3 {
    font-size: 24px;
  }
  .feature-card > p {
    min-height: 0;
    max-width: 550px;
    font-size: 16px;
  }
  .card-top {
    margin-bottom: 18px;
  }
  .terminal,
  .pr-mini,
  .access-mini {
    height: 165px;
  }
  .terminal > code {
    font-size: 12px;
  }
  .pr-mini strong {
    font-size: 14px;
  }
  .pr-mini {
    font-size: 13px;
    padding: 14px;
  }
  .pr-mini code {
    font-size: 12px;
  }
  .review-line {
    font-size: 12px;
  }
  .approved {
    font-size: 11px;
  }
  .access-mini strong {
    font-size: 13px;
  }
  .access-mini small {
    font-size: 11px;
  }
  .access-level {
    font-size: 11px;
  }
  .card-tags span {
    font-size: 12px;
  }
  .intelligence-grid,
  .agent-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .answer-card {
    max-width: 550px;
    width: 100%;
    margin: auto;
    transform: none;
  }
  .connection-map {
    padding-inline: 50px;
    max-width: 550px;
    width: 100%;
    margin: auto;
  }
  .security {
    padding: 28px;
  }
  .security-items {
    gap: 25px;
    grid-template-columns: 1fr;
  }
  .security-items article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0 0;
  }
  .feature-summary {
    display: none;
  }
  .expand {
    margin-left: auto;
  }
  .feature-detail {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-inline: 40px 0;
  }
  .feature-detail p {
    font-size: 15px;
  }
  .feature-list h3 {
    font-size: 19px;
  }
  .closing h2 {
    font-size: 43px;
  }
  .closing {
    padding-block: 45px;
  }
  .footer {
    margin-top: 65px;
  }
}
@media (max-width: 520px) {
  h2,
  .agents h2 {
    font-size: 35px;
    letter-spacing: -1.4px;
  }
  .section {
    padding-block: 60px;
  }
  .section-heading {
    gap: 17px;
  }
  .feature-list summary {
    gap: 13px;
    padding: 23px 0;
  }
  .feature-list h3 {
    font-size: 17px;
  }
  .feature-detail {
    padding-left: 27px;
  }
  .feature-index-number {
    font-size: 11px;
  }
  .connection-map {
    padding: 27px 23px 23px;
  }
  .map-repos {
    gap: 12px;
  }
  .map-repos span {
    font-size: 10px;
  }
  .map-gateway strong {
    font-size: 18px;
  }
  .map-gateway > span {
    margin-left: 0;
  }
  .security {
    padding: 25px 20px;
  }
  .security-heading h2 {
    font-size: 24px;
  }
  .security-heading {
    gap: 14px;
  }
  .closing h2 {
    font-size: 35px;
  }
  .closing p {
    font-size: 15px;
  }
  .closing .kicker {
    font-size: 9px;
  }
  .question-bubble {
    margin-left: 25px;
    font-size: 13px;
  }
  .answer-body > p {
    font-size: 14px;
  }
  .source-preview {
    padding: 10px;
  }
  .source-preview strong {
    font-size: 11px;
  }
  .source-preview small {
    font-size: 10px;
  }
  .review-heading strong {
    font-size: 12px;
  }
  .diff-code {
    font-size: 10px;
  }
  .mcp-code {
    font-size: 11px;
  }
  .mcp-toolbar {
    gap: 7px;
  }
  .mcp-toolbar span {
    font-size: 11px;
  }
}
.search-answer code {
  max-width: 100%;
  overflow-wrap: anywhere;
}
@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(52px, 17vw, 68px);
  }
}
