:root {
  color-scheme: light;
  --navy: #071a47;
  --navy-soft: #10285e;
  --blue: #0b6cff;
  --blue-dark: #0755ce;
  --teal: #09bfc3;
  --orange: #ff4b17;
  --ink: #111a2d;
  --muted: #5c667a;
  --line: #dce2eb;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --surface-blue: #edf4ff;
  --success: #008c63;
  --shadow-small: 0 8px 24px rgba(7, 26, 71, 0.08);
  --shadow-large: 0 28px 80px rgba(7, 26, 71, 0.2);
  --content-width: 1180px;
  --header-height: 72px;
  font-family:
    Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(11, 108, 255, 0.35);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 750;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 4px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(calc(100% - 48px), var(--content-width));
  margin-inline: auto;
}

.section-band {
  background: var(--surface-soft);
}

.section-kicker,
.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker-light {
  color: #77c7ff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 480px;
  color: var(--muted);
  font-size: 18px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(7, 26, 71, 0.1);
  box-shadow: 0 6px 18px rgba(7, 26, 71, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), 1320px);
  height: var(--header-height);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-self: start;
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 26, 71, 0.12);
  border-radius: 7px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.desktop-nav a {
  position: relative;
  color: #334057;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-self: end;
}

.language-switch,
.install-tabs {
  display: inline-flex;
  padding: 3px;
  background: #edf0f5;
  border: 1px solid #d8dee8;
  border-radius: 6px;
}

.language-option,
.install-tabs button {
  min-width: 38px;
  padding: 5px 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.language-option.is-active,
.install-tabs button.is-active {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 1px 4px rgba(7, 26, 71, 0.12);
}

.github-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 6px;
}

.github-link:hover {
  background: var(--navy-soft);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  content: "";
  background: var(--navy);
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(4px);
}

.site-header.is-menu-open .menu-lines {
  background: transparent;
}

.site-header.is-menu-open .menu-lines::before {
  transform: translateY(0) rotate(45deg);
}

.site-header.is-menu-open .menu-lines::after {
  transform: translateY(-2px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: #f9fbfd;
  border-bottom: 1px solid rgba(7, 26, 71, 0.1);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url("assets/agent-bot-hero.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(calc(100% - 48px), var(--content-width));
  min-height: 730px;
  margin-inline: auto;
  padding: 112px 0 80px;
}

.hero-inner > * {
  max-width: 570px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(11, 108, 255, 0.2);
  border-radius: 4px;
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 82px;
  font-weight: 820;
}

.hero-lead {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 680;
  line-height: 1.32;
}

.hero-copy {
  margin-bottom: 30px;
  color: #4f5d72;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 750;
  border: 1px solid transparent;
  border-radius: 6px;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 28px rgba(11, 108, 255, 0.25);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-color: #cbd4e1;
}

.hero-command {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  width: min(100%, 480px);
  min-height: 48px;
  padding: 8px 8px 8px 14px;
  color: #dce9ff;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  box-shadow: var(--shadow-small);
}

.hero-command code {
  overflow: hidden;
  color: #fff;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.terminal-prompt {
  color: var(--teal);
  font-family: "Cascadia Code", Consolas, monospace;
}

.copy-button,
.terminal-copy {
  width: 34px;
  height: 32px;
  color: #dce9ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  cursor: pointer;
}

.copy-button:hover,
.terminal-copy:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.hero-compatibility {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 24px;
  color: #5d6879;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(7, 26, 71, 0.08);
  backdrop-filter: blur(12px);
}

.hero-compatibility strong {
  color: var(--navy);
  font-size: 14px;
}

.hero-compatibility i {
  width: 3px;
  height: 3px;
  background: var(--teal);
}

.statement {
  padding-block: 116px;
  text-align: center;
}

.statement h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: 56px;
}

.statement > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
}

.workflow {
  padding-block: 112px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #cfd7e3;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  min-height: 228px;
  padding: 34px 34px 28px 0;
  border-right: 1px solid #cfd7e3;
}

.workflow-steps li + li {
  padding-left: 34px;
}

.workflow-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.step-number {
  color: var(--blue);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 13px;
  font-weight: 750;
}

.workflow-steps h3 {
  margin-top: 1px;
}

.workflow-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  color: #dce7ff;
  background: var(--navy);
}

.product-section::before {
  position: absolute;
  top: 0;
  right: max(24px, calc((100% - var(--content-width)) / 2));
  width: 120px;
  height: 6px;
  content: "";
  background: var(--teal);
}

.product-heading {
  text-align: center;
}

.product-heading h2 {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
}

.product-heading > p:last-child {
  max-width: 660px;
  margin: 0 auto 58px;
  color: #aebbd5;
  font-size: 18px;
}

.product-stage {
  width: min(calc(100% - 48px), 1040px);
  margin-inline: auto;
  padding: 24px;
  background: #10285e;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow-large);
}

.conversation-window {
  overflow: hidden;
  color: var(--ink);
  background: #f2f5f9;
  border: 1px solid #2c4376;
  border-radius: 6px;
}

.conversation-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 18px;
  background: #fff;
  border-bottom: 1px solid #dce2eb;
}

.conversation-identity {
  display: flex;
  gap: 12px;
  align-items: center;
}

.conversation-identity img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid #d6deea;
  border-radius: 6px;
}

.conversation-identity div {
  display: grid;
}

.conversation-identity span {
  color: var(--muted);
  font-size: 12px;
}

.online-badge {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 4px 9px;
  color: #087450;
  font-size: 12px;
  font-weight: 700;
  background: #e9f8f2;
  border: 1px solid #bfe7d7;
  border-radius: 999px;
}

.online-badge i {
  width: 7px;
  height: 7px;
  background: #09a875;
  border-radius: 50%;
}

.conversation-body {
  display: grid;
  gap: 18px;
  max-width: 820px;
  padding: 32px 34px 38px;
  margin-inline: auto;
}

.user-message {
  justify-self: end;
  max-width: 560px;
  padding: 15px 16px 10px;
  background: #dceaff;
  border: 1px solid #bfd5f8;
  border-radius: 8px 8px 2px 8px;
}

.user-message p {
  margin-bottom: 8px;
  color: #17233b;
  font-weight: 650;
}

.message-reaction {
  color: #66738a;
  font-size: 11px;
}

.thinking-card,
.result-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #cfd8e7;
  border-radius: 8px;
  box-shadow: var(--shadow-small);
}

.thinking-card > header,
.result-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 13px 16px;
}

.thinking-card > header {
  background: #eaf2ff;
  border-bottom: 1px solid #ceddf5;
}

.thinking-card > header > div,
.result-card > header {
  display: grid;
}

.thinking-card header strong {
  color: #145ec5;
}

.thinking-card header span,
.result-card header span {
  color: #66738a;
  font-size: 12px;
}

.stop-control {
  padding: 5px 9px;
  color: #b32929;
  background: #fff;
  border: 1px solid #e6bcbc;
  border-radius: 4px;
}

.thinking-content {
  padding: 12px 16px 16px;
}

.activity-line {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
}

.activity-line + .activity-line {
  border-top: 1px solid #edf0f4;
}

.activity-line > span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  margin-top: 1px;
  color: #fff;
  font-size: 11px;
  background: var(--success);
  border-radius: 50%;
}

.activity-line.is-running > span {
  color: var(--blue);
  background: #dceaff;
}

.activity-line p {
  display: grid;
  margin-bottom: 0;
}

.activity-line strong {
  font-size: 14px;
}

.activity-line small {
  color: #78849a;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 11px;
}

.result-card > header {
  color: #087450;
  background: #e7f7ef;
  border-bottom: 1px solid #bfe5d5;
}

.result-card > p {
  padding: 18px 16px 4px;
  margin-bottom: 0;
}

.result-actions {
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
}

.result-actions span {
  display: inline-block;
  padding: 6px 10px;
  color: #275589;
  background: #fff;
  border: 1px solid #bed0e6;
  border-radius: 4px;
}

.capabilities {
  padding-block: 120px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-card {
  position: relative;
  min-height: 280px;
  padding: 40px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-card:hover {
  z-index: 1;
  box-shadow: 0 16px 40px rgba(7, 26, 71, 0.1);
}

.capability-featured {
  grid-row: span 2;
  min-height: 560px;
  color: #d8e5ff;
  background: var(--navy);
}

.capability-card h3 {
  max-width: 460px;
  margin-top: 70px;
  font-size: 29px;
}

.capability-card p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.capability-featured h3 {
  color: #fff;
  font-size: 36px;
}

.capability-featured p {
  color: #b8c6df;
}

.capability-index {
  color: var(--blue);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 13px;
  font-weight: 750;
}

.task-rail {
  display: grid;
  gap: 8px;
  margin-top: 48px;
}

.task-rail span {
  padding: 10px 12px;
  color: #aebbd5;
  font-size: 13px;
  border: 1px solid #294578;
  border-radius: 4px;
}

.task-rail span::before {
  margin-right: 9px;
  color: #6f84aa;
  content: "●";
}

.task-rail .is-selected {
  color: #fff;
  background: #123975;
  border-color: #3e7edc;
}

.task-rail .is-selected::before {
  color: var(--teal);
}

.agents-band {
  padding-block: 84px;
  background: #edf4ff;
  border-top: 1px solid #d5e4fa;
  border-bottom: 1px solid #d5e4fa;
}

.agents-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
  align-items: center;
}

.agents-layout h2 {
  margin-bottom: 0;
}

.agent-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #c6d8ef;
  border-radius: 8px;
  background: #fff;
}

.agent-wordmark {
  display: flex;
  gap: 13px;
  align-items: center;
  min-height: 94px;
  padding: 18px;
}

.agent-wordmark + .agent-wordmark {
  border-left: 1px solid #d8e4f3;
}

.agent-wordmark > div {
  display: grid;
}

.agent-wordmark strong {
  color: var(--navy);
  font-size: 18px;
}

.agent-wordmark small {
  color: var(--muted);
  font-size: 11px;
}

.agent-symbol {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 14px;
  font-weight: 800;
  background: #f2f6fb;
  border: 1px solid #d6e0ec;
  border-radius: 6px;
}

.agent-symbol-blue {
  color: var(--blue);
}

.agent-symbol-orange {
  color: var(--orange);
}

.agent-symbol-teal {
  color: #008c91;
}

.reliability {
  padding-block: 120px;
}

.reliability-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.reliability-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.reliability-intro p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.reliability-list {
  border-top: 1px solid #cfd7e3;
}

.reliability-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #cfd7e3;
}

.reliability-list article > span {
  color: var(--blue);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 13px;
  font-weight: 750;
}

.reliability-list h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.reliability-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.install-section {
  padding-block: 116px;
  color: #dce7ff;
  background: #081737;
}

.install-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
  align-items: center;
}

.install-copy h2 {
  color: #fff;
}

.install-copy > p:last-of-type {
  color: #aebbd5;
  font-size: 18px;
}

.install-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.install-links a {
  color: #7ec9ff;
  font-weight: 700;
}

.install-links a:hover {
  color: #fff;
}

.install-terminal {
  min-width: 0;
}

.install-tabs {
  margin-bottom: 12px;
  background: #122751;
  border-color: #2a4171;
}

.install-tabs button {
  min-width: 76px;
  color: #9fb0d0;
}

.install-tabs button.is-active {
  color: #fff;
  background: #24477f;
  box-shadow: none;
}

.terminal-window {
  position: relative;
  overflow: hidden;
  color: #e6eeff;
  background: #050d20;
  border: 1px solid #30446d;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.terminal-toolbar {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: #8fa0c0;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 11px;
  background: #0c1934;
  border-bottom: 1px solid #25375c;
}

.terminal-toolbar i {
  width: 8px;
  height: 8px;
  background: #566687;
  border-radius: 50%;
}

.terminal-toolbar i:nth-child(1) {
  background: var(--orange);
}

.terminal-toolbar i:nth-child(2) {
  background: #f2bd2c;
}

.terminal-toolbar i:nth-child(3) {
  margin-right: 7px;
  background: var(--teal);
}

.terminal-lines {
  display: grid;
  gap: 18px;
  min-height: 152px;
  padding: 34px 62px 34px 26px;
}

.terminal-lines div {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 4px;
  align-items: start;
}

.terminal-lines span {
  color: var(--teal);
  font-family: "Cascadia Code", Consolas, monospace;
}

.terminal-lines code {
  overflow-wrap: anywhere;
  color: #fff;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 14px;
}

.terminal-copy {
  position: absolute;
  top: 58px;
  right: 14px;
}

.install-note {
  margin: 14px 0 0;
  color: #8fa0c0;
  font-size: 12px;
}

.install-note > span:first-child {
  margin-right: 5px;
  color: var(--teal);
}

.site-footer {
  padding-block: 42px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: var(--navy);
}

.footer-brand span,
.footer-meta {
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: #334057;
  font-size: 13px;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 20px;
  margin: 0;
  border-top: 1px solid var(--line);
}

.copy-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: var(--navy);
  border: 1px solid #2b457d;
  border-radius: 5px;
  box-shadow: var(--shadow-small);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-backdrop {
    background-position: 56% center;
  }

  .hero-inner > * {
    max-width: 500px;
  }

  .agents-layout,
  .reliability-layout,
  .install-layout {
    gap: 56px;
  }

  .agent-list {
    grid-template-columns: 1fr;
  }

  .agent-wordmark + .agent-wordmark {
    border-top: 1px solid #d8e4f3;
    border-left: 0;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 64px;
  }

  h2 {
    font-size: 39px;
  }

  .desktop-nav,
  .github-link {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-actions {
    grid-column: 2;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 220ms ease;
  }

  .site-header.is-menu-open .mobile-nav {
    max-height: 320px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav a {
    padding: 13px 24px;
    color: #273550;
    font-weight: 650;
    border-bottom: 1px solid #edf0f4;
  }

  .hero {
    min-height: 900px;
  }

  .hero-backdrop {
    bottom: auto;
    height: 480px;
    background-position: 63% center;
    background-size: cover;
  }

  .hero-inner {
    justify-content: flex-start;
    min-height: 850px;
    padding-top: 490px;
  }

  .hero-inner > * {
    max-width: 650px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-lead {
    font-size: 23px;
  }

  .statement h2 {
    font-size: 46px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps li,
  .workflow-steps li + li {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid #cfd7e3;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-featured {
    grid-row: auto;
    min-height: 500px;
  }

  .agents-layout,
  .reliability-layout,
  .install-layout {
    grid-template-columns: 1fr;
  }

  .reliability-intro {
    position: static;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section-shell,
  .nav-shell,
  .hero-inner,
  .product-stage {
    width: min(calc(100% - 32px), var(--content-width));
  }

  h2 {
    font-size: 34px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 800px;
  }

  .hero-backdrop {
    height: 280px;
    background-position: 61% 24px;
    background-size: 520px auto;
  }

  .hero-inner {
    min-height: 750px;
    padding-top: 292px;
    padding-bottom: 60px;
  }

  .hero .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: 46px;
  }

  .hero-lead {
    margin-bottom: 10px;
    font-size: 19px;
  }

  .hero-copy {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;
    margin-bottom: 16px;
  }

  .button {
    flex: 1;
    padding-inline: 12px;
  }

  .hero-command code {
    font-size: 11px;
  }

  .hero-compatibility {
    gap: 12px;
    padding-inline: 12px;
  }

  .hero-compatibility > span {
    display: none;
  }

  .statement,
  .workflow,
  .capabilities,
  .reliability,
  .install-section {
    padding-block: 82px;
  }

  .statement h2 {
    font-size: 38px;
  }

  .statement > p:last-child,
  .section-heading > p,
  .product-heading > p:last-child,
  .install-copy > p:last-of-type {
    font-size: 16px;
  }

  .product-section {
    padding: 82px 0;
  }

  .product-stage {
    padding: 8px;
  }

  .conversation-topbar {
    min-height: 62px;
    padding: 10px 12px;
  }

  .conversation-identity img {
    width: 36px;
    height: 36px;
  }

  .online-badge {
    padding-inline: 7px;
  }

  .online-badge span:last-child {
    display: none;
  }

  .conversation-body {
    gap: 12px;
    padding: 20px 12px 24px;
  }

  .thinking-card > header,
  .result-card > header {
    align-items: flex-start;
    padding: 12px;
  }

  .thinking-card header strong,
  .result-card header strong {
    font-size: 13px;
  }

  .stop-control {
    font-size: 11px;
  }

  .capability-card {
    min-height: 240px;
    padding: 30px 24px;
  }

  .capability-featured {
    min-height: 470px;
  }

  .capability-card h3 {
    margin-top: 48px;
    font-size: 25px;
  }

  .capability-featured h3 {
    font-size: 30px;
  }

  .agents-band {
    padding-block: 68px;
  }

  .reliability-list article {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .terminal-lines {
    padding: 28px 48px 28px 18px;
  }

  .terminal-lines code {
    font-size: 12px;
  }

  .install-links,
  .footer-links {
    gap: 14px 20px;
  }

  .copy-toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
