/* ═══════════════════════════════════════════════════
   VoiceAI design tokens — shared by every VoiceAI page
   Fonts: Bricolage Grotesque (headings) + Figtree (body)
   Palette: Navy #0A1628 | Blue #3358E8 | Teal #00C896

   Loaded FIRST, before the page's own stylesheet:
     index.html      -> tokens.css + style.css
     detailing/      -> tokens.css + lp.css
     confidentialitate/, cookies/ -> tokens.css + lp.css

   Font URLs are relative to THIS file (css/), so pages in
   subdirectories link it without any path juggling.
═══════════════════════════════════════════════════ */

/* ── SELF-HOSTED FONTS (no cross-origin render block) ──
   Files + provenance: assets/fonts/fonts.meta.json
   latin-ext carries the Romanian ă â î ș ț.
─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../assets/fonts/bricolage-grotesque-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../assets/fonts/bricolage-grotesque-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(../assets/fonts/figtree-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(../assets/fonts/figtree-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../assets/fonts/figtree-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(../assets/fonts/figtree-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── CUSTOM PROPERTIES ────────────────────────────── */
:root {
  --dark:       #0A1628;
  --dark-2:     #0f1f3c;
  --dark-3:     #162035;
  --accent:     #3358E8;
  --accent-h:   #2849D5;
  --accent-light: #8AA4FF;   /* accessible blue on dark surfaces */
  --green:      #00C896;
  --green-h:    #00b085;
  --bg:         #F6F7F9;
  --bg-2:       #EEEEF1;
  --text:       #1A1A2E;
  --muted:      #5E6478;
  --border:     rgba(10,22,40,0.08);
  --white:      #ffffff;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Figtree', sans-serif;

  --nav-h:      72px;
  --container:  1160px;
  --radius:     14px;
  --radius-lg:  24px;

  --shadow:     0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg:  0 16px 56px rgba(10,22,40,0.18);
}
