/* Terminal Dark — SelfHostVPS
 * Vibe: VoltAgent / Supabase hybrid. Void-black + Emerald.
 * Audience: developers & homelabbers who live in terminals.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Brand colors */
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-rgb: 16, 185, 129;
  --color-accent: #06b6d4;
  --color-accent-hover: #0891b2;
  --color-accent-rgb: 6, 182, 212;

  /* Background layers — void black palette */
  --color-bg: #09090b;
  --color-bg-alt: #0f0f11;
  --color-bg-card: #141416;
  --color-bg-card-hover: #1a1a1d;
  --color-bg-elevated: #1f1f23;

  /* Text */
  --color-text: #f4f4f5;
  --color-text-muted: #a1a1aa;
  --color-text-subtle: #71717a;
  --color-text-inverse: #09090b;

  /* Borders */
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.15);
  --color-border-accent: rgba(16, 185, 129, 0.3);

  /* Status */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  /* Typography */
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Cascadia Code', ui-monospace, monospace;
  --font-size-base: 16px;
  --line-height-base: 1.7;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Shadows (dark-mode: glow instead of drop shadow) */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --glow-primary: 0 0 24px rgba(16, 185, 129, 0.15);
  --glow-primary-strong: 0 0 40px rgba(16, 185, 129, 0.25);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { color: var(--color-primary); }
a:hover { color: var(--color-primary-hover); }

/* Monospace utility */
.mono { font-family: var(--font-mono); }
