/* Shared design tokens. Both catalogue and benchmark consume this file. */
:root {
  color-scheme: dark;
  --paper: #101112;
  --paper-top: #101112;
  --surface: #1b1c1d;
  --ink: #f1f1ee;
  --muted: #b5b7b2;
  --line: #383a3b;
  --wash: #282a2b;
  --accent: #d5d8d3;
  --support: #84b99c;
  --error: #ffb4b8;
  --backdrop: rgba(0, 0, 0, .72);
  --launcher-rail: #151819;
  --launcher-hero: #090b0c;
  --launcher-hero-ink: #ffffff;
  --launcher-hero-muted: #d9dede;
  --launcher-shade-soft: rgba(5, 7, 8, .08);
  --launcher-shade-mid: rgba(5, 7, 8, .76);
  --launcher-shade-strong: rgba(5, 7, 8, .96);
  --select-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='m3 4.5 3 3 3-3' stroke='%23b5b7b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --control-radius: 8px;
  --image-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: linear-gradient(180deg, var(--paper-top) 0, var(--paper) 34rem) no-repeat, var(--paper);
  color: var(--ink);
}
a { color: inherit; text-underline-offset: 4px; }
button, input, select, textarea { font: inherit; color: inherit; }
button, .btn {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
button:hover, .btn:hover { border-color: var(--accent); }
button:disabled { opacity: .5; cursor: not-allowed; }
input:not([type="checkbox"]), select, textarea {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: var(--surface);
  max-width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 1; }
input[type="checkbox"] { accent-color: var(--accent); width: 18px; height: 18px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
[hidden], .is-filtered-out, .image-failed { display: none !important; }
.brand { font-size: 24px; font-weight: 650; letter-spacing: -.055em; text-decoration: none; white-space: nowrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.btn-green, button.primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

.brand-on { font-weight: 400; }
.brand-dot { color: var(--accent); font-weight: 800; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
select { width: 100%; padding: 8px 12px; }
