/* Kept in a file rather than a <style> block on purpose: the console's CSP
   (infra/env/console.tf) is style-src 'self', with no 'unsafe-inline'. Starting
   strict is easier than tightening later. */

:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --fg: #17161a;
  --muted: #6c6a75;
  --rule: #e6e4ea;
  --accent: #6c47ff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101014;
    --fg: #f2f1f5;
    --muted: #9b98a6;
    --rule: #2a2933;
    --accent: #9d86ff;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 34rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0.25rem 0 0;
  font-size: clamp(2.5rem, 8vw, 3.75rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-top: 1.25rem;
  border-radius: 2px;
  background: var(--accent);
}

.lede {
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
}

.note {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-size: 0.9375rem;
  color: var(--muted);
}

code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 0.875em;
}
