/* ============================================================
   Pick-tagon Theme Bridge  (legacy variable compatibility layer)
   Phase 1: keeps existing index.html CSS intact while --pt-* tokens
   are available. Migrate each alias to var(--pt-*) in Phase 3+.
   ============================================================ */

:root {
  /* --red: migrated to --pt-red-500 in Phase 3 (#e8000d → #E10600, visually identical). */
  --red:          var(--pt-red-500);
  --red-dim:      rgba(225,6,0,0.15);
  --red-glow:     0 0 40px rgba(225,6,0,0.4);

  /* Glass / surface aliases */
  --glass:        rgba(255,255,255,0.03);   /* ≈ --pt-bg-2 at low opacity */
  --glass-border: rgba(255,255,255,0.08);   /* ≈ --pt-line-1/2 midpoint */

  /* Background */
  --dark:         #0c0c0c;                  /* ≈ --pt-bg-0/#07080A; Phase 3: unify */

  /* ---------- Font policy (Phase 1) ----------
     - Body:    Pretendard (Korean UX priority) → fallback Inter
     - Display: Barlow Condensed (already loaded) ✓
     - Eyebrow: Oswald (already loaded) → Phase 3: Bebas Neue
     See DESIGN_REFACTOR_PLAN.md Phase 1 font decision. */
  --app-font-body:    'Pretendard', 'Inter', system-ui, sans-serif;
  --app-font-display: var(--pt-font-display);
  --app-font-eyebrow: 'Oswald', var(--pt-font-eyebrow);
  --app-font-mono:    var(--pt-font-mono);
}
