/* K-Shaped Economics — design-system tokens. Generated mechanically from the
   onboarding brand form (no AI involved): every value below traces to a
   form input or a documented default. This file is the source of truth
   for the system's look — retune it here and see readme.md. */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #141826;
  --color-surface: #2c282a;
  --color-text: #eab68e;
  --color-accent: #476987;
  --color-accent-2: #925270;
  --color-divider: color-mix(in srgb, #eab68e 16%, transparent);

  /* Tonal ramps — generated in OKLCH on one shared lightness scale, so the
     same step of any role matches the others in visual value. */
  --color-neutral-100: #f2f5fd;
  --color-neutral-200: #e3e7f5;
  --color-neutral-300: #ced4e4;
  --color-neutral-400: #b1b7c9;
  --color-neutral-500: #9298aa;
  --color-neutral-600: #747a8b;
  --color-neutral-700: #595d6b;
  --color-neutral-800: #3f424c;
  --color-neutral-900: #292b31;

  --color-accent-100: #edf6ff;
  --color-accent-200: #d5ebff;
  --color-accent-300: #b8d9f6;
  --color-accent-400: #98bcdc;
  --color-accent-500: #799dbd;
  --color-accent-600: #5d7e9c;
  --color-accent-700: #44617b;
  --color-accent-800: #2e4559;
  --color-accent-900: #1d2d3b;

  --color-accent-2-100: #fff1f6;
  --color-accent-2-200: #ffddeb;
  --color-accent-2-300: #febfda;
  --color-accent-2-400: #e4a0be;
  --color-accent-2-500: #c5809f;
  --color-accent-2-600: #a36481;
  --color-accent-2-700: #7f4a63;
  --color-accent-2-800: #5c3446;
  --color-accent-2-900: #3c222e;

  /* Additional brand colors from the form, beyond the five theme roles. */
  --color-brand-1: #026c94;
  --color-brand-2: #cd936f;
  --color-brand-3: #ac7451;

  --font-heading: "Archivo", system-ui, sans-serif;
  --font-heading-weight: 800;
  --font-body: "Inter", system-ui, sans-serif;

  --space-1: 4.0px;
  --space-2: 8.0px;
  --space-3: 12.0px;
  --space-4: 16.0px;
  --space-6: 24.0px;
  --space-8: 32.0px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* Elevation — derived from the ground: soft ink-tinted shadows on a
     light theme, a hairline edge + ambient darkness on a dark one. */
  --shadow-sm: 0 0 0 1px #3f424c;
  --shadow-md: 0 0 0 1px #595d6b, 0 6px 18px rgba(0,0,0,0.55);
  --shadow-lg: 0 0 0 1px #9298aa, 0 16px 40px rgba(0,0,0,0.65);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); }
