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

:root {
  --black:      #0D0D0D;
  --dark:       #111827;
  --dark-mid:   #1F2937;
  --dark-light: #374151;
  --blue:       #1D4ED8;
  --blue-light: #2563EB;
  --silver:     #9CA3AF;
  --border:     #E5E7EB;
  --bg:         #F9FAFB;
  --white:      #FFFFFF;
  --text:       #111827;
  --text-mid:   #374151;
  --text-muted: #6B7280;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; color: var(--dark); }

/* ── NAV ── */
.site-nav { background: var(--dark); height: 64px; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 999; border-bottom: 1px solid var(--dark-mid); }
.nav-brand { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: 2px; text-transform: uppercase; }
.nav-brand span { color: var(--blue-light); }
.site-nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
.site-nav ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: color 0.2s; }
.site-nav ul a:hover, .site-nav ul a.active { color: var(--white); }
.site-nav .nav-cta a { background: var(--blue); color: var(--white) !important; padding: 9px 20px; border-radius: 2px; }
.site-nav .nav-cta a:hover { background: var(--blue-light); }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 13px 30px; border-radius: 2px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s; }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-light); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-mid); color: var(--white); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 10px; }

/* ── UTILS ── */
.blue-bar { width: 40px; height: 3px; background: var(--blue); margin: 10px 0 18px; }
.eyebrow { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue-light); margin-bottom: 6px; }
.tag { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; }
.tag-blue { background: #DBEAFE; color: var(--blue); }
.tag-dark { background: var(--dark); color: var(--white); }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.45); padding: 48px; text-align: center; font-size: 12px; margin-top: 80px; border-top: 1px solid var(--dark-mid); }
.footer-name { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 900; color: var(--white); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.footer-title { color: var(--blue-light); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-info { line-height: 2; margin-bottom: 20px; }
.footer-info a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-info a:hover { color: var(--blue-light); }
.footer-social { display: flex; justify-content: center; gap: 12px; margin-bottom: 28px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 14px; text-decoration: none; transition: all 0.2s; }
.footer-social a:hover { border-color: var(--blue-light); color: var(--blue-light); }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 10.5px; color: rgba(255,255,255,0.25); }
