/* MDabroad Global Styles */

/* ── Base reset & CSS variables ── */
:root {
  --bg: #f8fafc;
  --surface: #fff;
  --soft: #f1f5f9;
  --text: #0f172a;
  --muted: #475569;
  --line: #d9e2ec;
  --blue: #1d4ed8;
  --blue-dark: #1e3a8a;
  --accent: #0ea5e9;
  --radius: 14px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(15,23,42,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav nav a {
  text-decoration: none;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav nav a:hover,
.nav nav a.active {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  text-decoration: none;
  background: var(--blue);
  color: #fff !important;
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-small {
  font-size: 0.82rem;
  padding: 6px 12px;
}

/* ── Kicker / Eyebrow ── */
.kicker {
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* ── Mobile Responsive ── */
@media (max-width: 900px) {
  .nav nav {
    display: none;
  }
  
  .nav-actions .btn {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}
