/* ========================================
   CSS Variables – kiwebsites.com
   Dual-State Design System
   ======================================== */

:root {
  /* ---- TYPOGRAPHY (System Font Stack) ---- */
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.5rem;
  --fs-5xl: 4.5rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  --lh-tight: 1.1;
  --lh-snug: 1.3;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  /* ---- SPACING ---- */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* ---- BORDER RADIUS ---- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* ---- TRANSITIONS ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-reveal: 1500ms;

  /* ---- MAX WIDTHS ---- */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;

  /* ========================================
     GENERIC STATE (Pre-Reveal)
     Intentionally boring, standard, forgettable
     ======================================== */
  --gen-bg: #ffffff;
  --gen-bg-alt: #f5f5f5;
  --gen-text: #333333;
  --gen-text-muted: #666666;
  --gen-heading: #222222;
  --gen-accent: #df2232;
  --gen-accent-hover: #b81c2a;
  --gen-border: #e0e0e0;
  --gen-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --gen-card-bg: #ffffff;
  --gen-section-padding: var(--space-4xl) var(--space-xl);

  /* ========================================
     PREMIUM STATE (Post-Reveal)
     Luxurious, unique, impressive
     ======================================== */
  --pre-bg: #0a0a0a;
  --pre-bg-alt: #111111;
  --pre-bg-card: rgba(255, 255, 255, 0.03);
  --pre-text: #d4d4d4;
  --pre-text-muted: #737373;
  --pre-heading: #ffffff;
  --pre-accent-1: #df2232;
  --pre-accent-2: #ffffff;
  --pre-accent-3: #f04555;
  --pre-gradient-primary: linear-gradient(135deg, #df2232 0%, #ffffff 50%, #f04555 100%);
  --pre-gradient-accent: linear-gradient(135deg, #df2232 0%, #f04555 100%);
  --pre-gradient-warm: linear-gradient(135deg, #f04555 0%, #f87171 100%);
  --pre-border: rgba(255, 255, 255, 0.08);
  --pre-border-glow: rgba(223, 34, 50, 0.3);
  --pre-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --pre-shadow-glow: 0 0 40px rgba(223, 34, 50, 0.15);
  --pre-glass-bg: rgba(255, 255, 255, 0.04);
  --pre-glass-border: rgba(255, 255, 255, 0.08);
  --pre-glass-blur: 20px;
}
