/* ==========================================================================
   Design Tokens — Analysis Digital
   ========================================================================== */

:root {
  /* Colors */
  --dark-blue: #0d1f2d;
  --dark-blue-2: #53626d;
  --orange: #ff5327;
  --blue: #1461f0;
  --green: #6ed115;
  --gray: #9c9c9c;
  --white: #ffffff;
  --white-transparency-text: rgba(255, 255, 255, 0.8);
  --light-bg: #f7f9fc;

  /* Typography */
  --font-family: 'Satoshi Variable', sans-serif;
  --fw-medium: 500;
  --fw-bold: 700;

  /* Font sizes */
  --fs-display: 110px;
  --lh-display: 120px;
  --ls-display: -5px;

  --fs-h2: 40px;
  --lh-h2: 48px;

  --fs-h3: 28px;
  --lh-h3: 34px;

  --fs-body: 20px;
  --lh-body: 27px;

  --fs-nav: 18px;
  --lh-nav: 20px;

  /* Spacing */
  --content-max-width: 1520px;
  --content-padding: 200px;
  --section-padding-y: 120px;
  --card-gap: 20px;
  --card-padding: 32px;

  /* Radii */
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --radius-pill: 500px;
  --radius-badge: 12px;
}
