﻿/* Design tokens copied from frontend/design-system/tokens.css - used by server-rendered templates */
:root{
  /* Colors */
  --bg-900: #07070a;
  --bg-800: #0f1720;
  --bg-700: #0f1726;
  --surface-900: #0b0d11;
  --muted-600: #a3a9b8;
  --text-100: #f5f7fb;
  --accent-500: #6b46ff; /* primary */
  --accent-400: #7c5cff;
  --success-500: #00d084;
  --danger-500: #ff6b6b;

  /* Typography */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --type-xxs: 0.625rem; /* 10px */
  --type-xs: 0.75rem; /* 12px */
  --type-sm: 0.875rem; /* 14px */
  --type-md: 1rem; /* 16px */
  --type-lg: 1.125rem; /* 18px */
  --type-xl: 1.25rem; /* 20px */
  --type-2xl: 1.5rem; /* 24px */

  /* Spacing */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(2,6,23,0.6);
  --shadow-md: 0 6px 20px rgba(2,6,23,0.6);
  --shadow-lg: 0 12px 40px rgba(3,9,30,0.7);

  /* Motion */
  --motion-fast: 150ms;
  --motion-medium: 300ms;
  --motion-spring: cubic-bezier(.2,.9,.2,1);
}

body{
  background: linear-gradient(180deg,var(--bg-900),var(--bg-800));
  color: var(--text-100);
  font-family: var(--font-sans);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.container{max-width:1200px;margin:0 auto;padding:0 var(--space-lg);}