/* ============================================================================
   MAHG Enterprise Design Tokens — Certified Professional Platform
   Source: my-brands-guidelines/14_sites/mahg.es/brand_guideline.html
   ============================================================================ */

:root {
  /* Backgrounds */
  --mahg-deep-navy:      #070b16;
  --mahg-midnight-blue:  #0b1020;
  --mahg-surface-navy:   #111a2e;
  --mahg-strong-surface: #17213a;

  /* Text */
  --mahg-primary-text:   #edf2ff;
  --mahg-muted-text:     #a9b4cc;
  --mahg-strong-muted:   #cad5ec;
  --mahg-soft-blue:      #9eb8ff;

  /* Accents */
  --mahg-primary-blue:   #4c86ff;
  --mahg-secondary-blue: #264ba8;
  --mahg-gradient:       linear-gradient(135deg, #2f6bff, #4c86ff);

  /* Borders */
  --mahg-border:         rgba(169, 180, 204, 0.12);

  /* Typography */
  --mahg-font:           'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mahg-font-mono:      'Geist Mono', 'Courier New', monospace;
  --mahg-heading-weight: 700;
  --mahg-body-weight:    300;

  /* Status */
  --mahg-status-active:    #4ade80;
  --mahg-status-expired:   #facc15;
  --mahg-status-revoked:   #f87171;
  --mahg-status-superseded:#fbbf24;
}

/* Font import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: var(--mahg-font);
  font-weight: var(--mahg-body-weight);
  background: var(--mahg-midnight-blue);
  color: var(--mahg-primary-text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--mahg-primary-blue); }
a:hover { color: var(--mahg-soft-blue); }
