/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=JetBrains+Mono:wght@400;500&display=swap');

/* Reset tipográfico */
*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Escala de headings — sempre Syne */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ivory);
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); font-weight: 700; }

/* Body — DM Sans */
body, p, li, td, input, select, textarea, button {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ivory-60);
}

/* Labels e dados — JetBrains Mono */
.label, .mono, code, pre,
[class*="badge"], [class*="tag"],
[class*="metric"], [class*="stat"] {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Utilitários */
.text-hero    { font-size: var(--text-hero);  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.04em; }
.text-display { font-size: var(--text-h1);    font-family: var(--font-display); font-weight: 800; }
.text-strong  { color: var(--ivory); font-weight: 500; }
.text-muted   { color: var(--ivory-25); }
.text-blue    { color: var(--kairos-blue); }
