/* MyCSS — Acuity's intrinsic-first design system (CUBE CSS)
   https://github.com/mycssdev/MyCSS

   PLACEHOLDER: Replace this file with the compiled MyCSS build.
   The MyCSS repo is an SCSS monorepo with no published dist yet —
   compile packages/ and drop the output here as mycss.css.

   Minimal baseline below so the starter page renders sensibly
   until the real build is vendored. */

:root {
  --color-text: #1a1a1a;
  --color-bg: #ffffff;
  --color-accent: #0055d4;
  --font-base: system-ui, -apple-system, "Segoe UI", sans-serif;
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-3: clamp(1.8rem, 1.5rem + 1.5vw, 2.75rem);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

h1 { font-size: var(--step-3); line-height: 1.15; margin: 0; }
