/* ==========================================================================
   dilan-bk / design tokens
   Unica fonte di verità per colori, tipografia, spazi e motion.
   Per un brand nuovo: duplica questo file e cambia solo i valori qui sotto.
   ========================================================================== */

:root {
  /* --- Colore: scala di grigi ------------------------------------------- */
  --black: #111111;
  --dark: #333333;
  --mid: #666666;
  --gray: #999999;
  --light: #cccccc;
  --border: #e5e5e5;
  --bg-card: #f4f4f4;
  --bg-muted: #f5f5f5;
  --white: #ffffff;
  --footer-bg: #0e0e0e;
  --faint: #aaaaaa;

  /* --- Colore: accento --------------------------------------------------
     Il verde fluo. Era hardcoded 22 volte nelle pagine esistenti.
     Cambiare questa riga ricolora tutto il sistema.                       */
  --accent: #c8ff00;
  --accent-ink: var(--black); /* testo leggibile sopra --accent */

  /* --- Colore: superfici trasparenti ------------------------------------ */
  --overlay: rgba(0, 0, 0, 0.55);
  --rule-soft: rgba(0, 0, 0, 0.08);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.08);

  /* --- Tipografia -------------------------------------------------------- */
  --font-display: 'Satoshi', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Scala tipografica, dai valori realmente usati nelle pagine */
  --text-2xs: 0.68rem;
  --text-xs: 0.75rem;
  --text-sm: 0.85rem;
  --text-base: 0.95rem;
  --text-md: 1.05rem;
  --text-lg: 1.35rem;
  --text-xl: 1.6rem;
  --text-2xl: 2rem;

  /* Titoli fluidi */
  --text-display: clamp(2.5rem, 5vw, 3.5rem);
  --text-headline: clamp(1.8rem, 4vw, 2.8rem);
  --text-moment: clamp(1.6rem, 3.5vw, 2.4rem);

  --leading-tight: 1.15;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.7;
  --leading-loose: 1.8;

  --tracking-tighter: -0.03em;
  --tracking-tight: -0.02em;
  --tracking-wide: 0.06em;
  --tracking-wider: 0.08em;

  /* --- Layout ------------------------------------------------------------ */
  --max-width: 860px;
  --max-width-wide: 1200px;
  --max-width-prose: 600px;
  --max-width-block: 820px;
  --padding-x: 24px;
  --section-y: 80px;

  /* --- Spazi -------------------------------------------------------------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-15: 60px;
  --space-18: 72px;
  --space-20: 80px;
  --space-25: 100px;

  /* --- Raggi -------------------------------------------------------------- */
  --radius-xs: 4px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* --- Motion ------------------------------------------------------------- */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.2s;
  --duration-mid: 0.25s;
  --duration-slow: 0.6s;
}

@media (max-width: 768px) {
  :root {
    --padding-x: 20px;
    --section-y: 60px;
  }
}
