/* Agents Lab brand tokens. Loaded by every marketing page; the React apps import the same values. */
@font-face {
  font-family: "Geist Pixel Square";
  src: url("/fonts/GeistPixel-Square.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --ink: #111111;
  --ink-2: #333333;
  --muted: #6b6b6b;
  --muted-2: #9a9a9a;
  --line: #e6e6e6;
  --line-2: #f0f0f0;
  --surface: #fafafa;
  --accent: #ff5a00;
  --accent-hover: #e64f00;
  --accent-tint: #fff1ea;
  --accent-ink: #b33f00;
  --ok: #158a4b;
  --danger: #c81e1e;

  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  --font-display: "Geist Pixel Square", "JetBrains Mono", monospace;

  --radius-s: 8px;
  --radius: 14px;
  --radius-l: 22px;
  --radius-xl: 28px;
  --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 10px 30px rgba(17, 17, 17, 0.06);
  --gutter: clamp(16px, 4vw, 40px);
  --content-max: 1180px;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: geometricPrecision; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-sans); font-size: 16px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--muted); }
.mono.accent { color: var(--accent); }
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
.bracket { color: var(--accent); }
.bracket::before { content: "[ "; }
.bracket::after { content: " ]"; }
.cursor::after { content: ""; display: inline-block; width: 0.55em; height: 1em; margin-left: 0.12em; background: var(--accent); vertical-align: -0.12em; animation: blink 1.05s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 46px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 600; font-size: 14.5px; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(255, 90, 0, 0.28); }
.btn.primary:hover { background: var(--accent-hover); box-shadow: 0 10px 26px rgba(255, 90, 0, 0.34); }
.btn.ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { border-color: var(--ink); }
.btn.dark { background: var(--ink); color: #fff; }
.btn.block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.stars { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); font-size: 13.5px; }
.stars .s { display: inline-flex; gap: 2px; color: var(--accent); font-size: 15px; letter-spacing: 1px; }
.stars b { font-weight: 600; }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.hairline-grid { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.hairline-grid > * { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px; background: #fff; }

.wrap { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section-index { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.section-index::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.dotgrid { background-image: radial-gradient(circle, #d9d9d9 1px, transparent 1.2px); background-size: 14px 14px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
