/* ═══════════════════════════════════════════════════════════════════════════
   T13E LABS — DESIGN TOKENS
   ═════════════════════════════════════════════════════════════════════════ */

/* ─── ADOBE FONTS EMBED ────────────────────────────────────────────────────
   Paste the Adobe Fonts kit <link> below, replacing the placeholder.
   Kit URL: https://use.typekit.net/jwy4zop.css
   Location: Inside the <head> of every HTML file, along with preconnect.
   ─────────────────────────────────────────────────────────────────────── */

:root {
  /* ─── COLOR PALETTE ──────────────────────────────────────────────────── */
  --yellow: #f8d106;
  --cyan: #04b2d9;
  --pink: #D91480;
  --black: #0a0a0a;
  --white: #f0f0f0;

  /* ─── SECONDARY BACKGROUNDS ────────────────────────────────────────────── */
  --shred-black: #131313;
  --grey-575: #575757;
  --retro-nights: #240940;

  /* ─── COMPONENT TOKENS ─────────────────────────────────────────────────── */
  --border: rgba(248, 209, 6, 0.1);
  --card: rgba(255, 255, 255, 0.025);

  /* ─── GRADIENTS ──────────────────────────────────────────────────────── */
  --gradient-cyan-magenta: linear-gradient(135deg, var(--cyan), var(--pink));
  --gradient-yellow-magenta: linear-gradient(135deg, var(--yellow), var(--pink));
}
