:root {
  --agents-bg: #080a12;
  --agents-bg-soft: #0d101a;
  --agents-panel: #111521;
  --agents-panel-2: #151a28;
  --agents-line: rgba(255, 255, 255, .09);
  --agents-line-strong: rgba(255, 255, 255, .16);
  --agents-text: #f6f8fb;
  --agents-muted: #949aa8;
  --agents-muted-2: #697080;
  --agents-cyan: #42c9f5;
  --agents-cyan-bright: #75dcff;
  --agents-blue: #2f87ff;
  --agents-green: #54d58b;
  --agents-purple: #9b87ff;
  --agents-orange: #f39a72;
  --agents-radius: 22px;
  --agents-shadow: 0 28px 90px rgba(0, 0, 0, .34);
  --agents-ease: cubic-bezier(.2, .75, .25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--agents-bg);
  color: var(--agents-text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

img,
svg {
  display: block;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[hidden] {
  display: none !important;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #080a12;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.agents-container {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
}

.agents-section {
  position: relative;
  padding: 118px 0;
}

.agents-section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.agents-section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.agents-section-heading h2,
.agents-mcp-copy h2,
.agents-final-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(38px, 4.25vw, 62px);
  line-height: 1.06;
  letter-spacing: -.05em;
}

.agents-section-heading > p:last-child,
.agents-hero-subtitle,
.agents-mcp-copy > p,
.agents-final-card > p {
  color: var(--agents-muted);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.65;
}

.agents-section-heading > p:last-child {
  max-width: 680px;
  margin: 20px auto 0;
}

.agents-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 19px;
  color: #b7c0ce;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.agents-eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--agents-green);
  box-shadow: 0 0 0 5px rgba(84, 213, 139, .1), 0 0 24px rgba(84, 213, 139, .5);
}

.agents-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .24s var(--agents-ease), border-color .24s ease, background-color .24s ease, color .24s ease, box-shadow .24s ease;
}

.agents-button svg {
  width: 18px;
  height: 18px;
  transition: transform .24s var(--agents-ease);
}

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

.agents-button:hover svg {
  transform: translateX(3px);
}

.agents-button-cyan {
  border-color: var(--agents-cyan);
  background: var(--agents-cyan);
  color: #03151d;
  box-shadow: 0 16px 42px rgba(66, 201, 245, .2);
}

.agents-button-cyan:hover {
  background: var(--agents-cyan-bright);
  box-shadow: 0 20px 52px rgba(66, 201, 245, .3);
}

.agents-button-light {
  border-color: rgba(255, 255, 255, .8);
  background: #f8f9fb;
  color: #0b0d13;
}

.agents-button-light:hover {
  background: #fff;
  box-shadow: 0 17px 40px rgba(0, 0, 0, .24);
}

.agents-button-ghost {
  border-color: var(--agents-line-strong);
  background: rgba(255, 255, 255, .035);
  color: var(--agents-text);
}

.agents-button-ghost:hover {
  border-color: rgba(117, 220, 255, .45);
  background: rgba(66, 201, 245, .08);
}

.agents-button-small {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 13px;
}

/* Header */
.agents-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(8, 10, 18, .76);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.agents-header.is-scrolled {
  border-bottom-color: var(--agents-line);
  background: rgba(8, 10, 18, .92);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .18);
}

.agents-nav-shell {
  width: min(calc(100% - 40px), 1180px);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.agents-brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.agents-brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(117, 220, 255, .14);
  border-radius: 12px;
  background: #101826;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 9px 26px rgba(0, 0, 0, .18);
}

.agents-brand-mark img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.agents-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 31px);
}

.agents-desktop-nav a,
.agents-login {
  position: relative;
  color: #a1a7b4;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
}

.agents-desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--agents-cyan);
  transform: scaleX(0);
  transition: transform .22s ease;
}

.agents-desktop-nav a:hover,
.agents-login:hover {
  color: #fff;
}

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

.agents-nav-actions {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
}

.agents-menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--agents-line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  color: #fff;
  cursor: pointer;
}

.agents-menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .22s ease;
}

.agents-menu-toggle span:first-child {
  transform: translate(-50%, -4px);
}

.agents-menu-toggle span:last-child {
  transform: translate(-50%, 4px);
}

.agents-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.agents-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.agents-mobile-menu {
  width: min(calc(100% - 32px), 540px);
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid var(--agents-line);
  border-radius: 18px;
  background: rgba(17, 21, 33, .98);
  box-shadow: var(--agents-shadow);
}

.agents-mobile-menu > a:not(.agents-button) {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
  color: #c8cdd7;
  font-size: 15px;
  font-weight: 600;
}

.agents-mobile-menu .agents-button {
  width: 100%;
  margin-top: 10px;
}

/* Hero */
.agents-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    var(--agents-bg);
  background-size: 64px 64px;
}

.agents-hero::before,
.agents-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.agents-hero::before {
  inset: 0;
  background: linear-gradient(to bottom, var(--agents-bg) 0, transparent 22%, transparent 72%, var(--agents-bg) 100%);
}

.agents-hero::after {
  top: 70px;
  left: 50%;
  width: 850px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 135, 255, .13), rgba(66, 201, 245, .04) 43%, transparent 72%);
  transform: translateX(-50%);
  filter: blur(4px);
}

.agents-hero-glow {
  position: absolute;
  top: 50px;
  left: calc(50% - 470px);
  width: 940px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66, 201, 245, .3), transparent);
  box-shadow: 0 0 90px 34px rgba(47, 135, 255, .08);
}

.agents-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  text-align: center;
}

.agents-hero-copy h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(54px, 6.2vw, 88px);
  font-weight: 600;
  line-height: .99;
  letter-spacing: -.065em;
}

.agents-rotating-word {
  display: inline-block;
  min-width: 5.2ch;
  background: linear-gradient(100deg, var(--agents-cyan-bright), #539eff 62%, #a19aff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity .18s ease, transform .18s ease;
}

.agents-rotating-word.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.agents-hero-subtitle {
  max-width: 720px;
  margin: 28px auto 0;
}

.agents-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.agents-console-wrap {
  position: relative;
  z-index: 3;
  margin-top: 58px;
}

.agents-console {
  max-width: 790px;
  min-height: 250px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 17px;
  background: rgba(12, 15, 22, .95);
  box-shadow: 0 38px 100px rgba(0, 0, 0, .46), 0 0 0 1px rgba(66, 201, 245, .025), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.console-topbar {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid var(--agents-line);
  background: rgba(255, 255, 255, .018);
}

.console-dots {
  display: flex;
  gap: 7px;
}

.console-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3e4350;
}

.console-tabs {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 25px;
}

.console-tabs button {
  position: relative;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #686f7d;
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.console-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--agents-cyan);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.console-tabs button[aria-selected="true"] {
  color: #e9ecf2;
}

.console-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.console-status {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #79808d;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.console-status i,
.agent-online.live i,
.runtime-pill i,
.runtime-screen-top em i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--agents-green);
  box-shadow: 0 0 0 4px rgba(84, 213, 139, .1), 0 0 16px rgba(84, 213, 139, .6);
  animation: agents-pulse 2s ease-in-out infinite;
}

.console-panel {
  min-height: 201px;
  padding: 30px 34px;
  opacity: 0;
  transform: translateY(6px);
}

.console-panel.is-active {
  opacity: 1;
  transform: none;
  transition: opacity .28s ease, transform .28s var(--agents-ease);
}

.console-command {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--agents-line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
}

.console-command > span {
  color: var(--agents-cyan);
}

.console-command strong {
  color: #e9edf4;
  font-weight: 500;
}

.console-command em {
  margin-left: auto;
  padding: 5px 9px;
  border: 1px solid var(--agents-line);
  border-radius: 7px;
  color: var(--agents-muted);
  font-size: 10px;
  font-style: normal;
}

.console-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin-top: 26px;
}

.console-progress > span {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #777e8b;
  font-size: 10px;
  font-weight: 600;
}

.console-progress > span::after {
  content: "";
  position: absolute;
  top: 9px;
  right: calc(50% + 14px);
  left: calc(-50% + 14px);
  height: 1px;
  background: rgba(84, 213, 139, .32);
}

.console-progress > span:first-child::after {
  display: none;
}

.console-progress i {
  position: relative;
  z-index: 1;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 213, 139, .35);
  border-radius: 50%;
  background: #101a18;
  color: var(--agents-green);
}

.console-progress i svg {
  width: 11px;
  height: 11px;
  stroke-width: 2.4;
}

.console-progress .live {
  color: #d9dde5;
}

.console-progress .live i::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--agents-green);
  box-shadow: 0 0 12px var(--agents-green);
  animation: agents-pulse 1.8s ease-in-out infinite;
}

.prompt-line {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: start;
  gap: 12px;
  margin-bottom: 18px;
}

.prompt-line > span {
  padding-top: 10px;
  color: #787f8d;
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.prompt-line p {
  margin: 0;
  padding: 11px 14px;
  border: 1px solid var(--agents-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
  color: #dce1e9;
  font-size: 12px;
  line-height: 1.55;
}

.prompt-line.response p {
  border-color: rgba(66, 201, 245, .16);
  background: rgba(66, 201, 245, .05);
}

.prompt-result {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 100px;
  color: var(--agents-green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.prompt-result i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--agents-green);
}

.agents-tool-marquee {
  position: relative;
  z-index: 3;
  max-width: 100%;
  margin-top: 60px;
  overflow: hidden;
  border-top: 1px solid var(--agents-line);
  border-bottom: 1px solid var(--agents-line);
  background: rgba(255, 255, 255, .012);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.agents-tool-track {
  width: max-content;
  display: flex;
  padding: 20px 0;
  animation: agents-marquee 34s linear infinite;
}

.agents-tool-marquee:hover .agents-tool-track {
  animation-play-state: paused;
}

.agents-tool-set {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-right: 11px;
}

.agents-tool-set > span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px 7px 8px;
  border: 1px solid var(--agents-line);
  border-radius: 11px;
  background: rgba(18, 22, 33, .8);
  color: #b6bdc8;
  font-size: 12px;
  font-weight: 650;
}

.agents-tool-set i,
.agent-avatar {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  background: #171c29;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.agents-tool-set i svg,
.agent-avatar svg {
  width: 18px;
  height: 18px;
}

.tool-github,
.avatar-github { background: #08090d !important; }
.avatar-codex,
.avatar-claude,
.avatar-lovable,
.avatar-cursor,
.avatar-chatgpt { background: #fff !important; }
.tool-codex,
.tool-claude,
.tool-lovable,
.tool-cursor,
.tool-chatgpt,
.tool-hermes,
.tool-openclaw {
  padding: 3px;
  background: #fff !important;
}
.tool-codex img,
.tool-claude img,
.tool-lovable img,
.tool-cursor img,
.tool-chatgpt img,
.tool-hermes img,
.tool-openclaw img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Directory */
.agents-directory {
  background:
    radial-gradient(circle at 15% 8%, rgba(47, 135, 255, .08), transparent 24%),
    var(--agents-bg);
}

.agents-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: -6px auto 34px;
}

.agents-filters button {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--agents-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  color: #8f96a4;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.agents-filters button:hover {
  border-color: var(--agents-line-strong);
  color: #dce0e7;
  transform: translateY(-1px);
}

.agents-filters button[aria-selected="true"] {
  border-color: rgba(66, 201, 245, .35);
  background: rgba(66, 201, 245, .1);
  color: var(--agents-cyan-bright);
}

.agent-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  transition: opacity .16s ease, transform .16s ease;
}

.agent-card-grid.is-filtering {
  opacity: .18;
  transform: translateY(5px);
}

.agent-card {
  min-width: 0;
  min-height: 405px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--agents-line);
  border-radius: 17px;
  background: linear-gradient(155deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  transition: transform .28s var(--agents-ease), border-color .28s ease, background-color .28s ease, box-shadow .28s ease;
}

.agent-card:hover {
  z-index: 2;
  border-color: rgba(117, 220, 255, .24);
  background: linear-gradient(155deg, rgba(66, 201, 245, .065), rgba(255, 255, 255, .02));
  box-shadow: 0 25px 58px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .04);
  transform: translateY(-7px);
}

.runtime-card:hover {
  border-color: rgba(84, 213, 139, .27);
  background: linear-gradient(155deg, rgba(84, 213, 139, .065), rgba(255, 255, 255, .02));
}

.agent-card-head {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
}

.agent-avatar {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  font-size: 13px;
}

.image-avatar {
  background: #fff;
}

.image-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-avatar.openclaw img {
  object-position: center 30%;
}

.svg-avatar {
  padding: 8px;
}

.svg-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.svg-avatar.avatar-lovable {
  padding: 4px;
}

.agent-card-head h3 {
  margin: 0;
  overflow: hidden;
  color: #f5f7fa;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  letter-spacing: -.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-card-head p {
  margin: 4px 0 0;
  overflow: hidden;
  color: #676f7d;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-online {
  max-width: 70px;
  padding: 5px 7px;
  overflow: hidden;
  border: 1px solid var(--agents-line);
  border-radius: 7px;
  color: #868e9b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .03em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.agent-online.live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-color: rgba(84, 213, 139, .16);
  color: var(--agents-green);
}

.agent-card > p {
  min-height: 72px;
  margin: 22px 0 18px;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.55;
}

.agent-card ul,
.agents-plan ul,
.runtime-feature ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agent-card li,
.agents-plan li,
.runtime-feature li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b7bdc7;
  font-size: 11px;
  line-height: 1.35;
}

.agent-card li svg,
.agents-plan li svg,
.runtime-feature li svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--agents-green);
  stroke-width: 2.4;
}

.agent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .055);
}

.agent-tags span {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, .065);
  border-radius: 6px;
  background: rgba(255, 255, 255, .022);
  color: #747b88;
  font-size: 9px;
  font-weight: 600;
}

.agent-card > a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: #aeb5c0;
  font-size: 11px;
  font-weight: 700;
  transition: color .2s ease;
}

.agent-card > a svg {
  width: 15px;
  height: 15px;
  transition: transform .2s ease;
}

.agent-card:hover > a {
  color: var(--agents-cyan-bright);
}

.agent-card:hover > a svg {
  transform: translateX(4px);
}

/* MCP */
.agents-mcp-section {
  overflow: hidden;
  border-top: 1px solid var(--agents-line);
  border-bottom: 1px solid var(--agents-line);
  background:
    radial-gradient(circle at 82% 48%, rgba(66, 201, 245, .13), transparent 30%),
    linear-gradient(180deg, #0c0f18, #0a0c14);
}

.agents-mcp-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(55px, 7vw, 100px);
}

.agents-mcp-copy > p {
  max-width: 570px;
  margin: 24px 0 0;
}

.mcp-points {
  display: grid;
  gap: 1px;
  margin: 34px 0;
  overflow: hidden;
  border: 1px solid var(--agents-line);
  border-radius: 15px;
  background: var(--agents-line);
}

.mcp-points > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 8px;
  padding: 15px 17px;
  background: #10141e;
}

.mcp-points > div > span {
  color: var(--agents-cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
}

.mcp-points p {
  margin: 0;
  color: #8d94a0;
  font-size: 12px;
  line-height: 1.5;
}

.mcp-points strong {
  display: block;
  margin-bottom: 3px;
  color: #e0e4eb;
  font-size: 12px;
}

.mcp-visual {
  position: relative;
  min-height: 610px;
}

.mcp-visual::before {
  content: "";
  position: absolute;
  inset: 8% 5%;
  border: 1px solid rgba(66, 201, 245, .09);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(66, 201, 245, .1);
}

.mcp-config-card,
.mcp-chat-card {
  position: absolute;
  border: 1px solid var(--agents-line-strong);
  border-radius: 17px;
  background: rgba(16, 20, 30, .94);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .035);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.mcp-config-card {
  top: 40px;
  left: 0;
  width: min(440px, 82%);
  padding: 19px;
  transform: rotate(-2.5deg);
}

.mcp-card-head,
.runtime-screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--agents-line);
}

.mcp-card-head > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d7dce5;
  font-size: 12px;
  font-weight: 700;
}

.mcp-card-head svg {
  width: 17px;
  height: 17px;
  color: var(--agents-cyan);
}

.mcp-card-head em {
  padding: 5px 8px;
  border: 1px solid rgba(84, 213, 139, .16);
  border-radius: 7px;
  background: rgba(84, 213, 139, .05);
  color: var(--agents-green);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.mcp-code {
  display: grid;
  gap: 8px;
  margin-top: 17px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  background: #090c12;
  color: #7f8795;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  line-height: 1.5;
}

.mcp-code span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mcp-code b {
  color: #c58fff;
  font-weight: 500;
}

.mcp-code i {
  color: #82d1b6;
  font-style: normal;
}

.mcp-config-card > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 2px 0;
  color: #6f7785;
  font-size: 10px;
}

.mcp-config-card > p svg {
  width: 14px;
  height: 14px;
  color: var(--agents-green);
}

.mcp-chat-card {
  right: 0;
  bottom: 38px;
  width: min(420px, 79%);
  padding: 19px;
  transform: rotate(2deg);
}

.mcp-chat-title {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--agents-line);
}

.mcp-chat-title .agent-avatar {
  width: 40px;
  height: 40px;
}

.mcp-chat-title strong,
.mcp-chat-title small {
  display: block;
}

.mcp-chat-title strong {
  font-size: 12px;
}

.mcp-chat-title small {
  margin-top: 4px;
  color: #6f7785;
  font-size: 9px;
}

.mcp-chat-title > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--agents-green);
  box-shadow: 0 0 14px rgba(84, 213, 139, .55);
}

.chat-bubble {
  width: fit-content;
  max-width: 90%;
  margin-top: 17px;
  padding: 10px 13px;
  border: 1px solid var(--agents-line);
  border-radius: 12px 12px 4px 12px;
  background: rgba(255, 255, 255, .035);
  color: #d6dbe4;
  font-size: 11px;
  line-height: 1.5;
}

.chat-bubble.user {
  margin-left: auto;
}

.chat-bubble.agent {
  border-radius: 12px 12px 12px 4px;
  border-color: rgba(66, 201, 245, .15);
  background: rgba(66, 201, 245, .045);
}

.chat-bubble.agent span {
  color: var(--agents-cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.chat-bubble.agent p {
  margin: 6px 0 0;
}

.tool-result {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: #737b88;
  font-size: 9px;
}

.tool-result svg {
  width: 14px;
  height: 14px;
  color: var(--agents-green);
  stroke-width: 2.4;
}

/* Flow */
.agents-flow {
  background: var(--agents-bg);
}

.agents-flow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.agents-flow-line article {
  position: relative;
  z-index: 2;
  min-height: 242px;
  padding: 24px;
  border: 1px solid var(--agents-line);
  border-radius: 17px;
  background: linear-gradient(155deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  transition: transform .25s var(--agents-ease), border-color .25s ease;
}

.agents-flow-line article:hover {
  border-color: rgba(66, 201, 245, .22);
  transform: translateY(-5px);
}

.flow-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(66, 201, 245, .18);
  border-radius: 13px;
  background: rgba(66, 201, 245, .07);
  color: var(--agents-cyan);
}

.flow-icon svg {
  width: 22px;
  height: 22px;
}

.agents-flow-line article > span {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #515866;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
}

.agents-flow-line h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  letter-spacing: -.025em;
}

.agents-flow-line p {
  margin: 12px 0 0;
  color: #858d9a;
  font-size: 12px;
  line-height: 1.55;
}

.flow-track {
  position: absolute;
  top: 47px;
  right: 12%;
  left: 12%;
  z-index: 1;
  height: 1px;
  overflow: visible;
  background: rgba(66, 201, 245, .15);
}

.flow-track span {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--agents-cyan-bright);
  box-shadow: 0 0 18px 5px rgba(66, 201, 245, .42);
  animation: agents-flow-dot 5.5s linear infinite;
}

/* Comparison */
.agents-compare-section {
  padding-top: 26px;
}

.agents-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--agents-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .018);
}

.agents-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.agents-compare-table th,
.agents-compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--agents-line);
  color: #8f96a2;
  font-size: 12px;
}

.agents-compare-table thead th {
  color: #626a79;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.agents-compare-table tbody th {
  color: #e3e6ec;
  font-family: "Sora", sans-serif;
  font-size: 12px;
}

.agents-compare-table tbody tr:last-child th,
.agents-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.agents-compare-table tbody tr {
  transition: background-color .2s ease;
}

.agents-compare-table tbody tr:hover {
  background: rgba(66, 201, 245, .035);
}

.agents-compare-table .yes {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid rgba(84, 213, 139, .16);
  border-radius: 7px;
  background: rgba(84, 213, 139, .055);
  color: var(--agents-green);
  font-size: 9px;
  font-weight: 700;
}

/* Infra */
.agents-infra {
  border-top: 1px solid var(--agents-line);
  background:
    radial-gradient(circle at 50% 15%, rgba(47, 135, 255, .09), transparent 27%),
    #0a0c14;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.infra-grid article {
  min-height: 215px;
  padding: 26px;
  border: 1px solid var(--agents-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .022);
  transition: border-color .25s ease, transform .25s var(--agents-ease), background-color .25s ease;
}

.infra-grid article:hover {
  border-color: rgba(117, 220, 255, .2);
  background: rgba(66, 201, 245, .04);
  transform: translateY(-5px);
}

.infra-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--agents-line);
  border-radius: 12px;
  background: #111620;
  color: var(--agents-cyan);
}

.infra-grid i svg {
  width: 20px;
  height: 20px;
}

.infra-grid h3 {
  margin: 25px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  letter-spacing: -.025em;
}

.infra-grid p {
  margin: 11px 0 0;
  color: #868e9a;
  font-size: 12px;
  line-height: 1.6;
}

/* Runtime apps */
.agents-runtime {
  padding-top: 86px;
}

.runtime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.runtime-feature {
  position: relative;
  min-width: 0;
  min-height: 590px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 34px;
  overflow: hidden;
  padding: 34px 34px 0;
  border: 1px solid var(--agents-line);
  border-radius: 23px;
  background: linear-gradient(160deg, rgba(47, 135, 255, .12), rgba(255, 255, 255, .018) 48%);
}

.runtime-feature.openclaw {
  background: linear-gradient(160deg, rgba(205, 91, 67, .12), rgba(255, 255, 255, .018) 48%);
}

.runtime-feature::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(66, 201, 245, .08);
  filter: blur(2px);
}

.runtime-feature.openclaw::before {
  background: rgba(205, 91, 67, .08);
}

.runtime-feature-copy {
  position: relative;
  z-index: 2;
}

.runtime-pill {
  position: absolute;
  top: 1px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border: 1px solid rgba(84, 213, 139, .15);
  border-radius: 8px;
  color: var(--agents-green);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.runtime-feature-copy > img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid var(--agents-line);
  border-radius: 14px;
  background: #fff;
}

.runtime-feature.openclaw .runtime-feature-copy > img {
  object-position: center 28%;
}

.runtime-feature-copy > p {
  margin: 23px 0 5px;
  color: var(--agents-cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.runtime-feature.openclaw .runtime-feature-copy > p {
  color: #ee977f;
}

.runtime-feature h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 34px;
  letter-spacing: -.045em;
}

.runtime-feature ul {
  margin-top: 18px;
}

.runtime-feature .agents-button {
  margin-top: 24px;
}

.runtime-screen {
  position: relative;
  min-height: 265px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: rgba(8, 10, 15, .83);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .24);
  transform: translateY(13px);
  transition: transform .35s var(--agents-ease);
}

.runtime-feature:hover .runtime-screen {
  transform: translateY(2px);
}

.runtime-screen-top span {
  font-size: 11px;
  font-weight: 700;
}

.runtime-screen-top em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--agents-green);
  font-size: 9px;
  font-style: normal;
}

.runtime-stat {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 9px;
  background: rgba(255, 255, 255, .02);
}

.runtime-stat small {
  color: #5e6674;
  font-size: 8px;
  text-transform: uppercase;
}

.runtime-stat strong {
  overflow: hidden;
  color: #c9ced7;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.runtime-stat span {
  color: var(--agents-green);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.runtime-log {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--agents-line);
  color: #65707d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.runtime-log p {
  margin: 0;
  color: #79808c;
}

/* Plans */
.agents-pricing {
  border-top: 1px solid var(--agents-line);
  background: #0a0d15;
}

.agents-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.agents-plan {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--agents-line);
  border-radius: 19px;
  background: rgba(255, 255, 255, .022);
  transition: transform .26s var(--agents-ease), border-color .26s ease, box-shadow .26s ease;
}

.agents-plan:hover {
  border-color: rgba(117, 220, 255, .2);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .22);
  transform: translateY(-6px);
}

.agents-plan.featured {
  border-color: rgba(66, 201, 245, .35);
  background: linear-gradient(160deg, rgba(66, 201, 245, .11), rgba(255, 255, 255, .025) 52%);
  box-shadow: 0 28px 75px rgba(0, 0, 0, .25), 0 0 55px rgba(66, 201, 245, .05);
}

.agents-plan-badge {
  position: absolute;
  top: -12px;
  right: 23px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--agents-cyan);
  color: #03151d;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.agents-plan > div:first-of-type {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 12px;
}

.agents-plan > div:first-of-type p {
  grid-column: 1 / -1;
  margin: 0;
  color: #687080;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.agents-plan h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  letter-spacing: -.04em;
}

.agents-plan > div:first-of-type span {
  color: #8e96a3;
  font-size: 9px;
  font-weight: 650;
  text-transform: uppercase;
}

.agents-plan > p {
  min-height: 48px;
  margin: 20px 0 0;
  color: #858d9b;
  font-size: 12px;
  line-height: 1.55;
}

.agents-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 20px 0 24px;
}

.agents-price span {
  color: #9aa1ad;
  font-size: 13px;
}

.agents-price strong {
  font-family: "Sora", sans-serif;
  font-size: 46px;
  letter-spacing: -.06em;
}

.agents-price small {
  color: #6c7481;
  font-size: 11px;
}

.agents-plan ul {
  margin-bottom: 26px;
}

.agents-plan .agents-button {
  width: 100%;
  margin-top: auto;
}

/* Final */
.agents-final-cta {
  padding: 120px 0;
  background: var(--agents-bg);
}

.agents-final-card {
  position: relative;
  overflow: hidden;
  padding: clamp(55px, 8vw, 94px) 30px;
  border: 1px solid rgba(117, 220, 255, .17);
  border-radius: 27px;
  background:
    radial-gradient(circle at 50% 30%, rgba(47, 135, 255, .17), transparent 42%),
    #0e121c;
  text-align: center;
  box-shadow: 0 32px 100px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.final-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle, #000, transparent 72%);
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.agents-final-card > *:not(.final-grid) {
  position: relative;
  z-index: 2;
}

.agents-final-card h2 {
  max-width: 850px;
  margin-inline: auto;
}

.agents-final-card > p:not(.agents-eyebrow) {
  max-width: 710px;
  margin: 24px auto 0;
}

/* Footer */
.agents-footer {
  padding: 66px 0 24px;
  border-top: 1px solid var(--agents-line);
  background: #070910;
}

.agents-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .7fr .7fr 1fr;
  gap: 48px;
}

.agents-footer-grid > div:first-child > p {
  max-width: 240px;
  margin: 18px 0 0;
  color: #686f7c;
  font-size: 12px;
  line-height: 1.6;
}

.agents-footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.agents-footer nav a {
  color: #777f8d;
  font-size: 12px;
  transition: color .2s ease;
}

.agents-footer nav a:hover {
  color: #fff;
}

.agents-footer-contact p {
  margin: 0 0 14px;
  color: #aab1bc;
  font-size: 12px;
  font-weight: 650;
}

.agents-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--agents-cyan);
  font-size: 12px;
  font-weight: 700;
}

.agents-footer-contact svg {
  width: 15px;
  height: 15px;
}

.agents-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 21px;
  border-top: 1px solid var(--agents-line);
  color: #4d5461;
  font-size: 10px;
}

/* Reveal and motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s var(--agents-ease), transform .7s var(--agents-ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.agent-card-grid [data-reveal]:nth-child(2),
.infra-grid [data-reveal]:nth-child(2),
.agents-plan-grid [data-reveal]:nth-child(2) { transition-delay: 70ms; }
.agent-card-grid [data-reveal]:nth-child(3),
.infra-grid [data-reveal]:nth-child(3),
.agents-plan-grid [data-reveal]:nth-child(3) { transition-delay: 140ms; }
.agent-card-grid [data-reveal]:nth-child(4),
.infra-grid [data-reveal]:nth-child(4) { transition-delay: 210ms; }

@keyframes agents-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .48; transform: scale(.82); }
}

@keyframes agents-marquee {
  to { transform: translateX(-50%); }
}

@keyframes agents-flow-dot {
  from { left: 0; }
  to { left: calc(100% - 7px); }
}

@media (max-width: 1100px) {
  .agents-desktop-nav {
    display: none;
  }

  .agents-menu-toggle {
    display: block;
  }

  .agent-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agents-mcp-grid {
    grid-template-columns: 1fr;
  }

  .agents-mcp-copy {
    max-width: 720px;
  }

  .mcp-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .agents-flow-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-track {
    display: none;
  }
}

@media (max-width: 860px) {
  .agents-section {
    padding: 90px 0;
  }

  .agents-hero {
    padding-top: 58px;
  }

  .agents-hero-copy h1 {
    font-size: clamp(48px, 11vw, 70px);
  }

  .console-progress {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }

  .console-progress > span:nth-child(3)::after {
    display: none;
  }

  .infra-grid,
  .agents-plan-grid {
    grid-template-columns: 1fr;
  }

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

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

  .agents-footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .agents-container,
  .agents-nav-shell {
    width: min(calc(100% - 28px), 1180px);
  }

  .agents-nav-shell {
    min-height: 68px;
  }

  .agents-nav-actions .agents-login,
  .agents-nav-actions .agents-button {
    display: none;
  }

  .agents-brand {
    font-size: 14px;
  }

  .agents-brand-mark {
    width: 36px;
    height: 36px;
  }

  .agents-section {
    padding: 76px 0;
  }

  .agents-section-heading {
    margin-bottom: 38px;
  }

  .agents-section-heading h2,
  .agents-mcp-copy h2,
  .agents-final-card h2 {
    font-size: clamp(34px, 9.4vw, 45px);
  }

  .agents-eyebrow {
    font-size: 10px;
    letter-spacing: .1em;
  }

  .agents-hero {
    padding-top: 42px;
    background-size: 42px 42px;
  }

  .agents-hero-copy h1 {
    font-size: clamp(43px, 12.6vw, 60px);
    line-height: 1.01;
  }

  .agents-rotating-word {
    min-width: 0;
  }

  .agents-hero-subtitle {
    margin-top: 23px;
    font-size: 15px;
    line-height: 1.58;
  }

  .agents-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 25px;
  }

  .agents-hero-actions .agents-button {
    width: 100%;
  }

  .agents-console-wrap {
    margin-top: 42px;
  }

  .agents-console {
    min-height: 306px;
    border-radius: 14px;
  }

  .console-topbar {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding-inline: 13px;
  }

  .console-tabs {
    justify-content: flex-end;
    gap: 18px;
  }

  .console-status {
    display: none;
  }

  .console-panel {
    min-height: 257px;
    padding: 23px 19px;
  }

  .console-command {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    font-size: 11px;
  }

  .console-command em {
    grid-column: 2;
    justify-self: start;
    margin-left: 0;
  }

  .console-progress {
    gap: 18px 9px;
  }

  .console-progress > span {
    font-size: 9px;
  }

  .prompt-line {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .prompt-line > span {
    padding-top: 0;
  }

  .prompt-result {
    margin-left: 0;
    overflow-wrap: anywhere;
  }

  .agents-tool-marquee {
    margin-top: 44px;
  }

  .agents-tool-track {
    animation-duration: 27s;
  }

  .agents-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .agents-filters::-webkit-scrollbar {
    display: none;
  }

  .agents-filters button {
    flex: 0 0 auto;
  }

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

  .agent-card {
    min-height: 385px;
  }

  .agents-mcp-grid {
    gap: 52px;
  }

  .mcp-visual {
    min-height: 580px;
  }

  .mcp-config-card,
  .mcp-chat-card {
    width: 92%;
  }

  .mcp-config-card {
    left: 2%;
  }

  .mcp-chat-card {
    right: 2%;
  }

  .mcp-code {
    font-size: 8.5px;
  }

  .agents-flow-line {
    grid-template-columns: 1fr;
  }

  .agents-flow-line article {
    min-height: 210px;
  }

  .agents-compare-section {
    padding-top: 18px;
  }

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

  .runtime-feature {
    min-height: 590px;
    padding: 26px 20px 0;
  }

  .runtime-pill {
    position: static;
    width: fit-content;
    margin-bottom: 18px;
  }

  .runtime-feature-copy > img {
    width: 54px;
    height: 54px;
  }

  .runtime-feature h2 {
    font-size: 31px;
  }

  .runtime-stat {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .runtime-stat span {
    grid-column: 2;
  }

  .agents-plan {
    padding: 24px;
  }

  .agents-final-cta {
    padding: 76px 0;
  }

  .agents-final-card {
    width: min(calc(100% - 20px), 1180px);
    padding: 56px 20px;
    border-radius: 22px;
  }

  .agents-footer {
    padding-top: 52px;
  }

  .agents-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .agents-footer-grid > div:first-child,
  .agents-footer-contact {
    grid-column: 1 / -1;
  }

  .agents-footer-bottom {
    flex-direction: column;
    margin-top: 40px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
