/* ==========================================================================
   Mission99 — Shared Design Tokens
   Owner: Account A (Landing Page + Design System)
   Accounts B and C: READ ONLY. Import this file, do not redefine values.
   Palette rationale: cool ink-navy for trust/academic credibility, a single
   brass/gold accent standing in for "top percentile" achievement. Light
   theme only, generous whitespace, minimal ornament.
   ========================================================================== */

:root {
  /* ---- Core palette (Mission 99 Powered by Dragon Media Dark System) ---- */
  --color-bg:             #0A0A0F; /* Near-black charcoal */
  --color-bg-card:        #14141C; /* Deep slate surface */
  --color-bg-alt:         #14141C; /* Secondary surface */
  --color-bg-elevated:    #1E1E2A; /* Elevated surface (modals/hover) */
  
  --color-primary:        #FF6B35; /* Electric orange (CTA, highlights) */
  --color-primary-dark:   #E05523; /* Primary hover */
  --color-secondary:      #7C5CFF; /* Violet-blue glow */
  --color-secondary-dark: #6343E0;
  --color-accent:         #FF6B35; /* Primary accent */
  --color-accent-dark:    #E05523;

  --gradient-pair:        linear-gradient(135deg, #FF6B35 0%, #7C5CFF 100%);
  --gradient-glow:        radial-gradient(circle, rgba(124,92,255,0.18) 0%, rgba(255,107,53,0.05) 50%, transparent 100%);

  --color-text:           #EDEDF2; /* Off-white body text */
  --color-text-muted:     #9494A6; /* Cool gray muted text */
  --color-border:         #2A2A38; /* Borders / dividers */

  --color-success:        #3DDC97; /* Signal green */
  --color-warning:        #F59E0B; /* Pending status */
  --color-danger:         #EF4444; /* Rejected status, form errors */

  /* ---- Typography ---- */
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --fs-h1: clamp(2.25rem, 4vw + 1rem, 3.75rem);
  --fs-h2: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
  --fs-h3: clamp(1.25rem, 1.2vw + 1rem, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* ---- Spacing scale ---- */
  --space-2xs: 4px;
  --space-xs:  8px;
  --space-sm:  12px;
  --space-md:  20px;
  --space-lg:  32px;
  --space-xl:  56px;
  --space-2xl: 96px;

  /* ---- Radius / elevation ---- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-card:       0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 12px 40px rgba(124, 92, 255, 0.2);
  --shadow-float:      0 8px 28px rgba(0, 0, 0, 0.6);

  /* ---- Layout ---- */
  --max-width: 1200px;
  --breakpoint-mobile: 375px;

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;

  /* ---- Status background tints ---- */
  --color-success-bg:  rgba(61, 220, 151, 0.15);
  --color-warning-bg:  rgba(245, 158, 11, 0.15);
  --color-danger-bg:   rgba(239, 68, 68, 0.15);

  /* ---- Accent alias ---- */
  --color-accent-gold: #FF6B35;
}
