:root {
  --mm-navy: #061427;
  --mm-navy-2: #0a1f3d;
  --mm-orange: #ff6a00;
  --mm-orange-dark: #d95700;
  --mm-ink: #0b172a;
  --mm-muted: #657186;
  --mm-soft: #f4f7fb;
  --mm-border: rgba(11, 23, 42, .12);
  --mm-shadow: 0 18px 45px rgba(8, 20, 40, .12);
}

html { scroll-behavior: smooth; }

body {
  color: var(--mm-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--mm-orange);
  border-radius: .75rem;
}

.site-header {
  position: relative;
  z-index: 1000;
  background: rgba(6, 20, 39, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header .navbar { min-height: 76px; }

.site-header .nav-link {
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  font-size: .94rem;
  position: relative;
}

.site-header .nav-link:hover,
.site-header .nav-link.active { color: #fff; }

.site-header .nav-link.active::after {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: .15rem;
  height: 2px;
  background: var(--mm-orange);
  border-radius: 99px;
}

.fw-black { font-weight: 900; }
.text-orange { color: var(--mm-orange); }
.text-white-75 { color: rgba(255, 255, 255, .76); }

.btn {
  --bs-btn-border-radius: .45rem;
  --bs-btn-font-weight: 800;
  letter-spacing: .015em;
  text-transform: uppercase;
  font-size: .88rem;
  padding: .85rem 1.25rem;
}

.btn-lg { padding: 1rem 1.55rem; font-size: .9rem; }

.btn-orange {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--mm-orange);
  --bs-btn-border-color: var(--mm-orange);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--mm-orange-dark);
  --bs-btn-hover-border-color: var(--mm-orange-dark);
}

.btn-outline-orange {
  --bs-btn-color: var(--mm-orange);
  --bs-btn-border-color: var(--mm-orange);
  --bs-btn-hover-bg: var(--mm-orange);
  --bs-btn-hover-border-color: var(--mm-orange);
  --bs-btn-hover-color: #fff;
}

/*
  HERO LAYER ORDER
  0 = tilted background brand cards
  1 = dark overlay
  2 = real content: title, buttons, metric panel
*/
.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 106, 0, .22), transparent 26rem),
    radial-gradient(circle at 82% 30%, rgba(48, 169, 221, .22), transparent 22rem),
    linear-gradient(135deg, #061427 0%, #0a1f3d 55%, #040b17 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 20, 39, .90) 0%, rgba(6, 20, 39, .72) 45%, rgba(6, 20, 39, .86) 100%);
  pointer-events: none;
}

.hero-visual-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 1rem;
  transform: rotate(-8deg) scale(1.1);
  opacity: .36;
  filter: saturate(.95);
  pointer-events: none;
}

.hero-section > .container,
.hero-section > .container-sm,
.hero-section > .container-md,
.hero-section > .container-lg,
.hero-section > .container-xl,
.hero-section > .container-xxl,
.hero-section .hero-content,
.hero-section .hero-copy,
.hero-section .hero-metrics {
  position: relative;
  z-index: 2;
}

.hero-visual-grid span {
  min-height: 170px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.1rem, 2vw, 2rem);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .01)),
    linear-gradient(135deg, color-mix(in srgb, var(--brand-accent) 60%, #061427), #061427 70%);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.min-vh-hero { min-height: 670px; }

.hero-title {
  max-width: 760px;
  line-height: .98;
  letter-spacing: -.055em;
}

.hero-title::first-letter { letter-spacing: -.04em; }
.hero-lead { max-width: 670px; }

.metric-panel {
  max-width: 360px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.metric-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: center;
  color: #fff;
  padding: 1rem 0;
}

.metric-row + .metric-row { border-top: 1px solid rgba(255, 255, 255, .12); }

.metric-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.55rem;
}

.metric-value {
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
}

.metric-label { color: rgba(255, 255, 255, .72); font-size: .95rem; }

.section-pad { padding: 5rem 0; }

.section-soft {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 106, 0, .08), transparent 20rem),
    radial-gradient(circle at 80% 80%, rgba(48, 169, 221, .10), transparent 23rem),
    var(--mm-soft);
}

.section-heading { max-width: 780px; margin-bottom: 2rem; }

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -.04em;
}

.section-heading p:not(.section-eyebrow) { color: var(--mm-muted); }

.section-eyebrow {
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}

.brand-card,
.case-card,
.content-card,
.content-panel {
  border: 1px solid var(--mm-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8, 20, 40, .07);
  overflow: hidden;
}

.brand-card { transition: transform .2s ease, box-shadow .2s ease; }
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--mm-shadow); }
.brand-image-link { display: block; background: var(--mm-navy); }

.brand-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.brand-card-body { padding: 1.1rem; }
.brand-card h3 { font-weight: 900; }
.brand-card p { color: var(--mm-muted); font-size: .92rem; min-height: 68px; }

.brand-link,
.footer-link {
  color: var(--mm-orange);
  font-weight: 800;
  text-decoration: none;
}

.brand-link:hover,
.footer-link:hover { color: var(--mm-orange-dark); }

.publish-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  padding: 2rem;
  border-right: 1px solid var(--mm-border);
}

.publish-card h3 { font-weight: 900; }
.publish-card p { color: var(--mm-muted); margin-bottom: 0; }

.publish-icon,
.content-card-icon,
.case-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--mm-orange);
  background: rgba(255, 106, 0, .08);
  font-size: 1.6rem;
}

.section-advertise { padding: 0 0 2.5rem; }

.advertise-band {
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 88% 25%, rgba(255, 106, 0, .20), transparent 16rem),
    linear-gradient(135deg, #061427 0%, #0b2447 100%);
  box-shadow: var(--mm-shadow);
}

.advertise-band h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 900;
  letter-spacing: -.04em;
}

.advertise-band p { color: rgba(255, 255, 255, .74); }

.advertise-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1rem 0;
}

.advertise-feature + .advertise-feature { border-top: 1px solid rgba(255, 255, 255, .12); }

.advertise-feature span {
  color: var(--mm-orange);
  font-size: 1.4rem;
}

.advertise-feature h3 { margin-bottom: .2rem; font-weight: 900; }
.advertise-feature p { margin-bottom: 0; font-size: .95rem; }

.case-card { padding: 2rem; }

.case-brand {
  color: var(--mm-orange);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 1rem;
  margin-bottom: .35rem;
}

.case-card h3 { font-weight: 900; }
.case-card p { color: var(--mm-muted); }

.case-metric {
  display: inline-flex;
  padding: .45rem .75rem;
  border-radius: 99px;
  background: var(--mm-soft);
  color: var(--mm-ink);
  font-size: .82rem;
  font-weight: 800;
}

.page-hero {
  padding: 10rem 0 5rem;
  color: #fff;
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 106, 0, .22), transparent 23rem),
    linear-gradient(135deg, #061427, #0b2549);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.6rem, 6vw, 4.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.055em;
}

.page-hero p:not(.section-eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.2rem;
}

.line-grow { flex: 1; height: 1px; background: var(--mm-border); }

.content-panel,
.content-card { padding: 2rem; }

.content-panel h2,
.content-card h2 { font-weight: 900; }

.content-panel p,
.content-card p { color: var(--mm-muted); }

.panel-dark {
  color: #fff;
  background: linear-gradient(135deg, #061427, #0b2549);
}

.panel-dark p { color: rgba(255, 255, 255, .72); }
.panel-dark code { color: #fff; }
.contact-email a { color: #fff; font-weight: 900; font-size: 1.1rem; }

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .9rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.icon-list .bi { color: var(--mm-orange); }
.icon-list.large li { font-size: 1.05rem; font-weight: 800; }

.split-callout {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 1rem;
  background: var(--mm-soft);
  border: 1px solid var(--mm-border);
}

.split-callout h2 { font-weight: 900; letter-spacing: -.035em; }

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 106, 0, .14), transparent 20rem),
    linear-gradient(135deg, #061427, #031022 82%);
}

.footer-action-card { padding: 1rem 0; }

.footer-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-action-card h2 { font-weight: 900; }
.footer-action-card p { color: rgba(255, 255, 255, .66); font-size: .92rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255, 255, 255, .66); text-decoration: none; }
.footer-nav a:hover { color: #fff; }

@media (max-width: 991.98px) {
  .site-header .nav-link.active::after { display: none; }
  .min-vh-hero { min-height: auto; padding: 8rem 0 4rem; }
  .metric-panel { max-width: none; }
  .hero-visual-grid { grid-template-columns: repeat(3, minmax(180px, 1fr)); }
  .publish-card { border-right: 0; border-bottom: 1px solid var(--mm-border); }
}

@media (max-width: 575.98px) {
  .section-pad { padding: 3.25rem 0; }
  .hero-title { font-size: 3rem; }
  .publish-card { grid-template-columns: 1fr; }
  .brand-card p { min-height: auto; }
}
