@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

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

:root {
  --bg: #ffffff;
  --surface: #f8f8f8;
  --surface-2: #f0f0f0;
  --border: #000000;
  --border-light: #aaaaaa;
  --text: #000000;
  --text-dim: #555555;
  --accent: #008000;
  --accent-dim: #006600;
  --danger: #cc0000;
  --warn: #996600;
  --mono: "IBM Plex Mono", "Fixedsys", "Terminal", "Lucida Console", "Courier New", monospace;
  --sans: var(--mono);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--mono);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 14px;
}

/* ═══════════════════════════════════════════
   AGENT BAR — like a DOS status line
   ═══════════════════════════════════════════ */
.agent-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--text);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 40px;
  text-align: center;
  letter-spacing: 0;
}
.agent-bar a {
  color: #44ff44;
  text-decoration: none;
}
.agent-bar a:hover { text-decoration: underline; }
.agent-bar .sep { opacity: 0.3; margin: 0 6px; }

/* ═══════════════════════════════════════════
   NAV — plain, docked, no blur/glass
   ═══════════════════════════════════════════ */
nav {
  position: fixed; top: 24px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 40px;
  background: var(--bg);
  border-bottom: 2px solid var(--border);
}
nav .logo {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0;
  text-transform: uppercase;
}
nav .logo::before { content: "C:\\"; color: var(--text-dim); }
nav .logo::after { content: ">_"; color: var(--accent); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
nav .nav-links { display: flex; gap: 24px; }
nav .nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
nav .nav-links a:hover { color: var(--text); text-decoration: underline; }

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
section { padding: 80px 40px; max-width: 960px; margin: 0 auto; }
section:first-of-type { padding-top: 160px; }

h2 {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
  display: inline-block;
}
.section-sub {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 40px;
  margin-top: 12px;
  max-width: 600px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PERSONA SWITCHER — DOS function key style
   ═══════════════════════════════════════════ */
.persona-switcher {
  display: inline-flex;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 0;
  margin-bottom: 32px;
  gap: 0;
}
.persona-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: none;
  border-right: 2px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  transition: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.persona-btn:last-child { border-right: none; }
.persona-btn:hover {
  color: var(--bg);
  background: var(--text-dim);
}
.persona-btn.active {
  color: var(--bg);
  background: var(--text);
  border-color: var(--border);
}
.persona-emoji {
  font-size: 14px;
  line-height: 1;
}
.hero-persona[hidden] { display: none; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  text-align: left;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}
.hero h1 {
  font-family: var(--mono);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  max-width: 700px;
}
.hero h1 span { color: var(--accent); }
.hero .tagline {
  font-size: 15px;
  color: var(--text-dim);
  font-weight: 400;
  margin-top: 20px;
  max-width: 600px;
  line-height: 1.7;
}
.hero .tagline strong { color: var(--text); font-weight: 700; }
/* Copy snippet — the one thing a human needs */
.copy-snippet {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--surface);
  border: 2px solid var(--border);
  max-width: 600px;
  cursor: text;
  user-select: all;
}
.copy-snippet code {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  word-break: break-word;
  display: block;
}
.copy-snippet-btn {
  display: block;
  margin-top: 10px;
  padding: 6px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}
.copy-snippet-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

.hero .cta-row { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   BUTTONS — raw rectangles
   ═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--mono);
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--surface); }

/* ═══════════════════════════════════════════
   STATS BAR — plain text readout
   ═══════════════════════════════════════════ */
.stats-bar {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 24px 40px;
  max-width: 960px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border-light);
}
.stat-item { text-align: left; }
.stat-value {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.stat-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   TRUST CARDS — bordered boxes, no radius
   ═══════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
}
.trust-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: -0.5px;
}
.trust-card .trust-icon {
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.trust-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.trust-card p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PRICING TABLE — clean ruled lines
   ═══════════════════════════════════════════ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0;
}
.comparison-table th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
}
.comparison-table th:nth-child(2) { color: var(--accent); }
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}
.comparison-table td:nth-child(2) {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  white-space: nowrap;
}
.comparison-table td:nth-child(3) {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}
.comparison-table .time-cost {
  color: var(--warn);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}
.table-wrap {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  overflow-x: auto;
}
.table-footer {
  padding: 14px 16px;
  background: var(--surface);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  border-top: 1px solid var(--border-light);
}
.table-footer strong {
  color: var(--accent);
  font-size: 16px;
}

/* ═══════════════════════════════════════════
   BOT CARDS — plain bordered rectangles
   ═══════════════════════════════════════════ */
.bots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
}
.bot-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 20px;
  transition: none;
  display: flex;
  flex-direction: column;
  margin: -0.5px;
}
.bot-card:hover { background: var(--surface); }
.bot-card .bot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  gap: 8px;
}
.bot-card h3 {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--mono);
  line-height: 1.3;
}
.bot-card .badge {
  font-size: 9px;
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bg);
  background: var(--accent);
  padding: 2px 8px;
  border-radius: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.bot-card .pitch {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 12px;
  line-height: 1.6;
  flex-grow: 1;
}
.bot-card .bot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}
.bot-card .price-tag {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.bot-card .price-tag .per {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
}
.bot-card .method-count {
  font-size: 11px;
  font-family: var(--mono);
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 2px 8px;
  border-radius: 0;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   QUICKSTART — code terminal style
   ═══════════════════════════════════════════ */
.quickstart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.qs-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.qs-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.qs-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--bg);
  font-weight: 700;
  background: var(--text);
  padding: 2px 8px;
  border-radius: 0;
  flex-shrink: 0;
  margin-top: 2px;
}
.qs-step h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.qs-step p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.qs-step code {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  background: var(--surface);
  padding: 1px 4px;
  border-radius: 0;
  border: 1px solid var(--border-light);
}

/* Code block — the ONE place that goes dark (actual terminal) */
.code-block {
  background: #0c0c0c;
  border: 2px solid var(--border);
  border-radius: 0;
  overflow: hidden;
}
.code-block .code-header {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-bottom: 1px solid #333333;
  background: #1a1a1a;
}
.code-block pre {
  padding: 16px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.8;
  color: #cccccc;
}
.code-block pre .comment { color: #666666; }
.code-block pre .str { color: #44ff44; }
.code-block pre .key { color: #5555ff; }

.human-tip {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 24px;
  margin-top: 32px;
}
.human-tip h4 {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.human-tip p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.human-tip code {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  background: var(--bg);
  padding: 1px 4px;
  border-radius: 0;
  border: 1px solid var(--border-light);
}

/* ═══════════════════════════════════════════
   TRANSPARENCY CARDS
   ═══════════════════════════════════════════ */
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
}
.transparency-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 24px;
  margin: -0.5px;
}
.transparency-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.transparency-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.transparency-card code {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  background: var(--surface);
  padding: 1px 4px;
  border-radius: 0;
  border: 1px solid var(--border-light);
}

/* ═══════════════════════════════════════════
   BUILDERS
   ═══════════════════════════════════════════ */
.builders-intro {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 32px;
  margin-bottom: 32px;
  max-width: 640px;
}
.builders-intro h3 {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  text-transform: uppercase;
}
.builders-intro p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 8px;
}
.builders-intro p:last-child { margin-bottom: 0; }
.builders-intro strong { color: var(--text); }

.demand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
}
.demand-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: -0.5px;
}
.demand-card .query {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
}
.demand-card .meta {
  font-size: 11px;
  color: var(--text-dim);
}
.demand-card .count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   GET STARTED FORM
   ═══════════════════════════════════════════ */
.get-started-box {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 32px;
  max-width: 500px;
}
.get-started-box .form-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.get-started-box input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--mono);
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 0;
  color: var(--text);
  outline: none;
}
.get-started-box input[type="email"]:focus { border-color: var(--accent); }
.get-started-box input[type="email"]::placeholder { color: var(--border-light); }
.form-result {
  margin-top: 12px;
  font-size: 12px;
  font-family: var(--mono);
  line-height: 1.6;
  word-break: break-all;
}
.form-result.error { color: var(--danger); }
.form-result.success { color: var(--accent); }
.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  border-top: 2px solid var(--border);
  padding: 32px 40px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--mono);
}
footer a {
  color: var(--accent);
  text-decoration: none;
}
footer a:hover { text-decoration: underline; }
footer .footer-links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ═══════════════════════════════════════════
   BOTS TABLE
   ═══════════════════════════════════════════ */
.bots-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.bots-toolbar .persona-switcher { margin-bottom: 0; }
.category-filter {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.category-filter button {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  background: var(--bg);
  color: var(--text-dim);
  border: 1px solid var(--border-light);
  margin: -0.5px;
  cursor: pointer;
}
.category-filter button:hover { background: var(--surface); color: var(--text); }
.category-filter button.active { background: var(--text); color: var(--bg); border-color: var(--border); }
.bots-table {
  width: 100%;
  border-collapse: collapse;
}
.bots-table th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--border);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.bots-table th:hover { color: var(--text); }
.bots-table th.sorted-asc::after { content: " ▲"; font-size: 9px; }
.bots-table th.sorted-desc::after { content: " ▼"; font-size: 9px; }
.bots-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
  vertical-align: middle;
}
.bots-table tr:last-child td { border-bottom: none; }
.bots-table tr:hover { background: var(--surface); }
.bot-name-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.bot-name-link:hover { text-decoration: underline; }
.bots-table .price-cell {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.bots-table .dim-cell { color: var(--text-dim); font-size: 12px; }
.bots-table--mini { margin-top: 0; }
.bots-table--mini th { font-size: 10px; padding: 8px 12px; cursor: default; }
.bots-table--mini td { padding: 8px 12px; font-size: 12px; }
.view-all-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.view-all-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   MATRIX THEME — body[data-view="bot"]
   ═══════════════════════════════════════════ */
body[data-view="bot"] {
  background: #0a0a0a;
  color: #00ff41;
}
body[data-view="bot"]::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,255,65,0.03) 0px,
    rgba(0,255,65,0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 9999;
}
body[data-view="bot"] .agent-bar { background: #00ff41; color: #0a0a0a; }
body[data-view="bot"] .agent-bar a { color: #0a0a0a; }
body[data-view="bot"] nav { background: #0a0a0a; border-bottom-color: #00ff41; }
body[data-view="bot"] nav .logo { color: #00ff41; }
body[data-view="bot"] nav .logo::before { color: #009922; }
body[data-view="bot"] nav .logo::after { color: #00ff41; }
body[data-view="bot"] nav .nav-links a { color: #009922; }
body[data-view="bot"] nav .nav-links a:hover { color: #00ff41; }
body[data-view="bot"] h2 { color: #00ff41; border-bottom-color: #00ff41; }
body[data-view="bot"] .section-sub { color: #009922; }
body[data-view="bot"] .persona-switcher { border-color: #00ff41; }
body[data-view="bot"] .persona-btn { background: #0a0a0a; color: #009922; border-right-color: #005511; }
body[data-view="bot"] .persona-btn:hover { background: #002200; color: #00ff41; }
body[data-view="bot"] .persona-btn.active { background: #00ff41; color: #0a0a0a; border-color: #00ff41; }
body[data-view="bot"] .category-filter button { background: #0a0a0a; color: #009922; border-color: #005511; }
body[data-view="bot"] .category-filter button:hover { background: #001a00; color: #00ff41; }
body[data-view="bot"] .category-filter button.active { background: #00ff41; color: #0a0a0a; border-color: #00ff41; }
body[data-view="bot"] .table-wrap { border-color: #00ff41; background: #0a0a0a; }
body[data-view="bot"] .bots-table th { color: #009922; border-bottom-color: #00ff41; }
body[data-view="bot"] .bots-table th:hover { color: #00ff41; }
body[data-view="bot"] .bots-table td { border-bottom-color: #002200; color: #00cc33; }
body[data-view="bot"] .bots-table tr:hover { background: rgba(0,255,65,0.04); box-shadow: 0 0 8px rgba(0,255,65,0.1); }
body[data-view="bot"] .bot-name-link { color: #00ff41; }
body[data-view="bot"] .bots-table .price-cell { color: #00ff41; }
body[data-view="bot"] .bots-table .dim-cell { color: #006622; }
body[data-view="bot"] footer { border-top-color: #00ff41; color: #009922; }
body[data-view="bot"] footer a { color: #00ff41; }
body[data-view="bot"] .loading { color: #009922; }

/* ═══════════════════════════════════════════
   LOADING
   ═══════════════════════════════════════════ */
.loading {
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 12px;
  padding: 16px 0;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .agent-bar { padding: 4px 16px; font-size: 9px; }
  nav { padding: 10px 16px; top: 22px; }
  nav .nav-links { gap: 12px; }
  nav .nav-links a { font-size: 11px; }
  section { padding: 60px 16px; }
  section:first-of-type { padding-top: 140px; }
  .stats-bar { gap: 20px; padding: 20px 16px; }
  .stat-value { font-size: 22px; }
  .quickstart-grid { grid-template-columns: 1fr; }
  .bots-grid { grid-template-columns: 1fr; }
  .bots-toolbar { flex-direction: column; }
  .bots-table .hide-mobile { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .transparency-grid { grid-template-columns: 1fr; }
  .demand-grid { grid-template-columns: 1fr; }
  .get-started-box { padding: 20px; }
  .get-started-box .form-row { flex-direction: column; }
  .builders-intro { padding: 20px; }
  .comparison-table td:nth-child(2) { font-size: 18px; }
  footer .footer-links { flex-direction: column; gap: 6px; }
  .persona-switcher { display: flex; }
  .hero h1 { font-size: clamp(24px, 5vw, 40px); }
  h2 { font-size: 18px; }
}
