/* ================================================================
   Design System — Портал альянса акселераторов
   CSS Custom Properties: colors · radii · typography
   ================================================================ */

:root {
  /* ---- Radius system (controlled via JS tweaks) ---- */
  --radius-scale: 0.9;
  --r-xs: calc(2px  * var(--radius-scale));
  --r-sm: calc(4px  * var(--radius-scale));
  --r-md: calc(8px  * var(--radius-scale));
  --r-lg: calc(14px * var(--radius-scale));
  --r-xl: calc(22px * var(--radius-scale));

  /* ---- Light theme ---- */
  --bg:          #fafaf8;
  --bg-elev:     #ffffff;
  --bg-sunken:   #f2f2ee;
  --ink:         #101014;
  --ink-2:       #38383d;
  --ink-3:       #6b6b72;
  --ink-4:       #a4a4aa;
  --line:        #e3e3de;
  --line-strong: #c7c7c0;

  /* ---- Accent — Swiss red ---- */
  --accent:      #e8331c;
  --accent-ink:  #ffffff;
  --accent-soft: #fdecea;

  /* ---- Semantic tokens ---- */
  --signal:      #e8331c;
  --signal-ink:  #ffffff;
  --warn:        #d4a54a;
  --danger:      #d43b1c;

  /* ---- Typography stacks ---- */
  --font-display: 'Unbounded', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Manrope', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, Menlo, monospace;
  --font-swiss:   'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ---- Dark theme ---- */
[data-theme="dark"] {
  --bg:          #0e0e10;
  --bg-elev:     #18181b;
  --bg-sunken:   #0a0a0c;
  --ink:         #f5f5f3;
  --ink-2:       #c8c8c4;
  --ink-3:       #8a8a8f;
  --ink-4:       #54545a;
  --line:        #2a2a2f;
  --line-strong: #3c3c42;
  --accent:      #ff5236;
  --accent-ink:  #0e0e10;
  --accent-soft: #3d1a14;
}

/* ---- Awards strip dark override ---- */
[data-theme="dark"] .awards-strip {
  background: var(--bg-elev);
}
