/* ============================================================
   MAX FM | SIGNAL TV — DESIGN TOKENS
   ============================================================ */

:root {
  /* ── Brand Colors ───────────────────────────────────────── */
  --gold-primary:    hsl(43, 96%, 52%);       /* MAX FM gold */
  --gold-light:      hsl(48, 100%, 72%);      /* Gold highlight */
  --gold-dark:       hsl(38, 90%, 38%);       /* Deep gold */
  --gold-pale:       hsl(46, 100%, 90%);      /* Pale gold */

  --blue-primary:    hsl(221, 90%, 48%);      /* Signal blue */
  --blue-light:      hsl(210, 100%, 65%);     /* Blue highlight */
  --blue-deep:       hsl(225, 85%, 28%);      /* Deep broadcast blue */
  --blue-pale:       hsl(210, 80%, 88%);      /* Pale blue */

  /* ── Dark Canvas ────────────────────────────────────────── */
  --void:            hsl(220, 35%, 4%);       /* Near-black bg */
  --void-mid:        hsl(222, 30%, 8%);       /* Card bg */
  --void-raised:     hsl(222, 28%, 11%);      /* Elevated card */
  --void-border:     hsl(222, 25%, 16%);      /* Subtle borders */

  /* ── Semantic ───────────────────────────────────────────── */
  --text-primary:    hsl(0, 0%, 97%);
  --text-secondary:  hsl(220, 15%, 68%);
  --text-muted:      hsl(220, 12%, 45%);
  --text-accent:     var(--gold-primary);

  /* ── Glass / Frost ──────────────────────────────────────── */
  --glass-bg:        rgba(255, 255, 255, 0.04);
  --glass-border:    rgba(255, 255, 255, 0.08);
  --glass-hover:     rgba(255, 255, 255, 0.07);

  /* ── Glow / Bloom ───────────────────────────────────────── */
  --glow-gold:       rgba(255, 190, 30,  0.30);
  --glow-gold-soft:  rgba(255, 190, 30,  0.12);
  --glow-blue:       rgba(30,  100, 255, 0.25);
  --glow-blue-soft:  rgba(30,  100, 255, 0.10);
  --glow-white:      rgba(255, 255, 255, 0.08);

  /* ── Gradients ──────────────────────────────────────────── */
  --grad-gold:       linear-gradient(135deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
  --grad-blue:       linear-gradient(135deg, var(--blue-deep), var(--blue-primary), var(--blue-light));
  --grad-dark:       linear-gradient(180deg, var(--void) 0%, var(--void-mid) 100%);
  --grad-hero:       radial-gradient(ellipse at 30% 50%, hsla(221,90%,35%,0.4) 0%, transparent 60%),
                     radial-gradient(ellipse at 70% 50%, hsla(43,96%,30%,0.2) 0%, transparent 60%);
  --grad-radio:      linear-gradient(135deg, hsla(221,85%,15%,0.9) 0%, hsla(220,35%,4%,1) 100%);
  --grad-tv:         linear-gradient(135deg, hsla(43,90%,15%,0.7) 0%, hsla(220,35%,4%,1) 100%);

  /* ── Typography ─────────────────────────────────────────── */
  --font-display:    'Outfit', 'Inter', sans-serif;
  --font-body:       'Inter', sans-serif;

  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px */
  --text-md:    1.125rem;   /* 18px */
  --text-lg:    1.25rem;    /* 20px */
  --text-xl:    1.5rem;     /* 24px */
  --text-2xl:   1.875rem;   /* 30px */
  --text-3xl:   2.25rem;    /* 36px */
  --text-4xl:   3rem;       /* 48px */
  --text-5xl:   3.75rem;    /* 60px */
  --text-6xl:   4.5rem;     /* 72px */
  --text-7xl:   6rem;       /* 96px */

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

  /* ── Spacing ────────────────────────────────────────────── */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;
  --space-40:  10rem;

  /* ── Radius ─────────────────────────────────────────────── */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* ── Shadows ─────────────────────────────────────────────── */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.25);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.35);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.5);
  --shadow-xl:   0 16px 60px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 30px var(--glow-gold), 0 0 60px var(--glow-gold-soft);
  --shadow-blue: 0 0 30px var(--glow-blue), 0 0 60px var(--glow-blue-soft);

  /* ── Transitions ─────────────────────────────────────────── */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);

  --duration-fast:  150ms;
  --duration-base:  300ms;
  --duration-slow:  600ms;
  --duration-xslow: 1200ms;

  /* ── Z-Index ─────────────────────────────────────────────── */
  --z-bg:       -1;
  --z-base:      1;
  --z-raised:   10;
  --z-sticky:   100;
  --z-overlay:  200;
  --z-modal:    300;
  --z-cursor:   9999;
  --z-loading: 10000;

  /* ── Layout ─────────────────────────────────────────────── */
  --container-max: 1440px;
  --container-pad: clamp(1.5rem, 5vw, 6rem);
  --nav-height: 72px;
}

/* Dark color scheme */
@media (prefers-color-scheme: light) {
  :root {
    /* Keep dark regardless - this is a premium dark experience */
    color-scheme: dark;
  }
}
