:root{
  --mma-blue: #0a3d62;
  --mma-blue-2: #0f5b8c;
  --mma-green: #2ea44f;
  --mma-slate: #334155;
  --mma-mist: #f3f6f9;
  --mma-border: rgba(15, 23, 42, 0.12);
}

/* HERO - gradient-only (no background image) */
.bg-mma-hero{
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(46,164,79,.18), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(15,91,140,.20), transparent 60%),
    radial-gradient(800px 800px at 50% 100%, rgba(255,255,255,.06), transparent 70%),
    linear-gradient(180deg, #071a2a 0%, var(--mma-blue) 55%, #0b2f4a 100%);
}

/* Navbar */
.mma-nav{
  border-bottom: 1px solid var(--mma-border);
  backdrop-filter: saturate(160%) blur(10px);
  background-color: rgba(255,255,255,0.92);
}
.mma-brand-logo{
  width: 42px;
  height: 32px;
  object-fit: cover;
  display: inline-block;
}

/* Hero card */
.mma-hero-card{
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.mma-badge{
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  color: #fff;
}
.mma-divider{
  height: 1px; background: rgba(255,255,255,.25);
  margin: 1.25rem 0;
}

.mma-section{ padding: 4.5rem 0; }
.mma-kpi{
  border: 1px solid var(--mma-border);
  background: #fff;
  border-radius: 1rem;
}
.mma-footer{
  border-top: 1px solid rgba(255,255,255,.12);
  background: #0b1520;
  color: rgba(255,255,255,.85);
}
.mma-link-muted{ color: rgba(255,255,255,.75); text-decoration:none; }
.mma-link-muted:hover{ color:#fff; text-decoration:underline; }

.btn-mma-primary{
  --bs-btn-bg: var(--mma-green);
  --bs-btn-border-color: var(--mma-green);
  --bs-btn-hover-bg: #278a41;
  --bs-btn-hover-border-color: #278a41;
  --bs-btn-active-bg: #21763a;
  --bs-btn-active-border-color: #21763a;
}
.btn-mma-outline{
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255,255,255,.35);
  --bs-btn-hover-bg: rgba(255,255,255,.12);
  --bs-btn-hover-border-color: rgba(255,255,255,.55);
  --bs-btn-active-bg: rgba(255,255,255,.18);
}

/* Readability */
.bg-mma-hero h1, .bg-mma-hero p{
  text-shadow: 0 1px 2px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.25);
}

.deadline-note {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(10, 61, 98, 0.06);   /* derived from #0A3D62 */
  border: 1px solid rgba(10, 61, 98, 0.18);
  color: #0A3D62;
}

.deadline-note strong {
  font-weight: 600;
}

.deadline-extended {
  border-color: rgba(10, 61, 98, 0.35);
  color: #0A3D62;
}

/* People lists: clean vertical rhythm */
.mma-people li {
  padding: .35rem 0;
  border-bottom: 1px solid rgba(10, 61, 98, 0.08);
}

.mma-people li:last-child {
  border-bottom: 0;
}

/* Optional: on large screens split long lists into 2 columns, but still vertical */
@media (min-width: 992px) {
  .mma-people-columns {
    column-count: 2;
    column-gap: 2rem;
  }
  .mma-people-columns li {
    break-inside: avoid;
  }
}
