/**
 * Minimal shared styles for legacy meta-refresh pages (/toolkit, /ai-at-mk).
 * Values align with src/styles/tokens.css (MK AI Toolkit).
 */
:root {
  --legacy-cream: #faf8f3;
  --legacy-ink: #1e1e1e;
  --legacy-blue: #0033a0;
  --legacy-blue-hover: #002680;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  box-sizing: border-box;
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  padding: 2rem max(1.25rem, 5vw);
  background: var(--legacy-cream);
  color: var(--legacy-ink);
}

p {
  margin: 0;
  max-width: 36rem;
}

a {
  color: var(--legacy-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--legacy-blue-hover);
}

a:focus-visible {
  outline: 2px solid var(--legacy-blue);
  outline-offset: 3px;
}
