:root {
  --msg-bg: #06111f;
  --msg-bg-2: #0b1728;
  --msg-surface: #0f2038;
  --msg-surface-2: #122945;
  --msg-text: #eef6ff;
  --msg-muted: #a9bad1;
  --msg-soft: #d9e7f7;
  --msg-line: rgba(255,255,255,.12);
  --msg-blue: #4fb3ff;
  --msg-cyan: #37f0ff;
  --msg-violet: #8d75ff;
  --msg-green: #48e6a2;
  --msg-paper: #f6f9fc;
  --msg-ink: #102033;
  --msg-paper-muted: #5d6c7f;
  --msg-radius-lg: 28px;
  --msg-radius-md: 20px;
  --msg-radius-sm: 14px;
  --msg-shadow: 0 28px 80px rgba(0,0,0,.28);
  --msg-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--msg-bg);
  color: var(--msg-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.admin-bar .msg-header { top: 32px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
p { margin: 0 0 1.1rem; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 1rem; line-height: 1.05; letter-spacing: -0.04em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.15rem, 4vw, 4.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
ul { margin: 0; padding: 0; }
.screen-reader-text, .msg-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.msg-skip-link:focus {
  z-index: 9999;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  background: #fff;
  color: #111;
  border-radius: 999px;
}
.msg-container {
  width: min(calc(100% - 40px), var(--msg-max));
  margin: 0 auto;
}
.msg-section { position: relative; padding: 110px 0; }
.msg-section-compact { padding: 34px 0; }
.msg-main { overflow: hidden; }
.msg-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(6,17,31,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s ease, box-shadow .25s ease;
}
.msg-header.is-scrolled {
  background: rgba(6,17,31,.92);
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.msg-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height .25s ease;
}
.msg-header.is-scrolled .msg-header-inner { min-height: 68px; }
.msg-brand, .msg-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
}
.msg-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--msg-cyan), var(--msg-blue) 45%, var(--msg-violet));
  color: #06111f;
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(79,179,255,.28);
}
.msg-logo-img img { max-height: 50px; width: auto; display: block; }
.msg-logo-text { font-size: 1.03rem; }
.msg-primary-nav { display: flex; align-items: center; gap: 22px; }
.msg-menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.msg-menu a {
  display: inline-flex;
  padding: 10px 12px;
  color: var(--msg-muted);
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}
.msg-menu a:hover, .msg-menu .current-menu-item > a { color: #fff; background: rgba(255,255,255,.08); }
.msg-nav-cta, .msg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.msg-nav-cta {
  padding: 12px 18px;
  background: rgba(79,179,255,.13);
  border: 1px solid rgba(79,179,255,.34);
  color: #fff;
}
.msg-nav-cta:hover, .msg-button:hover { transform: translateY(-2px); }
.msg-menu-toggle { display: none; }
.msg-button { min-height: 52px; padding: 14px 22px; border: 1px solid transparent; }
.msg-button-primary {
  background: linear-gradient(135deg, var(--msg-cyan), var(--msg-blue) 60%, var(--msg-violet));
  color: #06111f;
  box-shadow: 0 22px 60px rgba(79,179,255,.28);
}
.msg-button-secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}
.msg-button-light { background: #fff; color: #0b1728; }
.msg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(79,179,255,.28);
  background: rgba(79,179,255,.1);
  color: #cceeff;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.msg-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--msg-green);
  box-shadow: 0 0 0 6px rgba(72,230,162,.12);
}
.msg-hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 5%, rgba(55,240,255,.22), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(141,117,255,.18), transparent 32%),
    linear-gradient(180deg, #06111f 0%, #08182a 100%);
}
.msg-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 54px; align-items: center; }
.msg-hero-copy p { max-width: 760px; color: var(--msg-soft); font-size: clamp(1.05rem, 1.45vw, 1.28rem); }
.msg-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 24px; }
.msg-hero-trust { display: flex; flex-wrap: wrap; gap: 10px; color: var(--msg-muted); font-size: .9rem; }
.msg-hero-trust span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; background: rgba(255,255,255,.04); }
.msg-hero-visual { position: relative; min-height: 520px; }
.msg-dashboard-card, .msg-float-card, .msg-stat-card, .msg-service-card, .msg-industry-card, .msg-large-card, .msg-contact-panel, .msg-contact-form, .msg-post-card {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: var(--msg-shadow);
}
.msg-dashboard-card-main {
  position: absolute;
  inset: 62px 20px auto auto;
  width: min(100%, 430px);
  min-height: 405px;
  padding: 28px;
  border-radius: 34px;
  transform: rotate(2deg);
}
.msg-dashboard-card h2 { font-size: 1.7rem; margin-bottom: 38px; }
.msg-card-topline { display: flex; gap: 8px; margin-bottom: 24px; }
.msg-card-topline span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.25); }
.msg-card-topline span:first-child { background: var(--msg-cyan); }
.msg-progress-row { display: flex; justify-content: space-between; color: var(--msg-soft); font-weight: 750; margin: 18px 0 8px; }
.msg-progress { height: 10px; border-radius: 99px; background: rgba(255,255,255,.1); overflow: hidden; }
.msg-progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--msg-cyan), var(--msg-violet)); border-radius: inherit; }
.msg-float-card {
  position: absolute;
  padding: 15px 18px;
  border-radius: 18px;
  color: #fff;
  font-weight: 850;
  backdrop-filter: blur(16px);
}
.msg-float-card-one { top: 30px; left: 28px; }
.msg-float-card-two { bottom: 120px; left: 0; }
.msg-float-card-three { right: 0; bottom: 38px; }
.msg-bg-orb { position: absolute; border-radius: 50%; filter: blur(26px); opacity: .7; pointer-events: none; }
.msg-bg-orb-one { width: 160px; height: 160px; background: rgba(55,240,255,.18); top: 18%; left: 8%; }
.msg-bg-orb-two { width: 220px; height: 220px; background: rgba(141,117,255,.16); right: 8%; bottom: 10%; }
.msg-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.msg-stat-card { padding: 26px; border-radius: 24px; }
.msg-stat-card strong { display: block; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.05em; }
.msg-stat-card span { color: var(--msg-muted); font-weight: 700; }
.msg-problem-section, .msg-services-section, .msg-proof-section, .msg-final-cta, .msg-page-hero + .msg-section, body.blog .msg-section { background: var(--msg-paper); color: var(--msg-ink); }
.msg-problem-section .msg-badge, .msg-services-section .msg-badge, .msg-proof-section .msg-badge, .msg-page-hero .msg-badge { color: #075985; background: rgba(79,179,255,.14); border-color: rgba(79,179,255,.28); }
.msg-problem-section p, .msg-services-section p, .msg-proof-section p, .msg-final-cta p, .msg-page-hero p, .msg-large-card p, .msg-contact-panel p { color: var(--msg-paper-muted); }
.msg-two-col { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 64px; }
.msg-two-col-center { align-items: center; }
.msg-section-head { max-width: 790px; margin-bottom: 34px; }
.msg-section-head p { color: var(--msg-paper-muted); font-size: 1.1rem; }
.msg-card-grid { display: grid; gap: 20px; }
.msg-card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.msg-card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.msg-card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.msg-service-card, .msg-industry-card, .msg-large-card, .msg-post-card {
  border-color: rgba(16,32,51,.1);
  background: #fff;
  color: var(--msg-ink);
  border-radius: var(--msg-radius-lg);
  padding: 28px;
  box-shadow: 0 18px 60px rgba(16,32,51,.08);
}
.msg-service-card { min-height: 260px; display: flex; flex-direction: column; }
.msg-service-card span { color: #2563eb; font-weight: 850; font-size: .83rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.msg-service-card p, .msg-industry-card p { color: var(--msg-paper-muted); }
.msg-service-card em { margin-top: auto; font-style: normal; font-weight: 850; color: #1455d9; }
.msg-service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 80px rgba(16,32,51,.13); }
.msg-dark-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(55,240,255,.17), transparent 28%),
    linear-gradient(180deg, #08182a, #06111f);
  color: #fff;
}
.msg-dark-section p { color: var(--msg-soft); }
.msg-flow-card { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.msg-flow-step {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.msg-flow-step strong { color: var(--msg-cyan); display: block; font-size: .85rem; margin-bottom: 8px; }
.msg-flow-step span { font-weight: 800; }
.msg-industry-card { min-height: 220px; }
.msg-proof-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 40px; align-items: center; }
.msg-proof-list { display: grid; gap: 12px; }
.msg-proof-list div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(16,32,51,.1);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(16,32,51,.06);
}
.msg-proof-list strong { color: #1455d9; font-size: 1.2rem; }
.msg-proof-list span { font-weight: 850; }
.msg-final-cta-inner {
  text-align: center;
  padding: 74px 40px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 25% 15%, rgba(55,240,255,.22), transparent 28%),
    linear-gradient(135deg, #06111f, #0d2544);
  color: #fff;
  box-shadow: var(--msg-shadow);
}
.msg-final-cta-inner p { max-width: 760px; margin: 0 auto 28px; color: var(--msg-soft); }
.msg-page-hero {
  padding: 110px 0 86px;
  background:
    radial-gradient(circle at 20% 5%, rgba(55,240,255,.2), transparent 30%),
    radial-gradient(circle at 78% 20%, rgba(141,117,255,.16), transparent 30%),
    linear-gradient(180deg, #06111f 0%, #0a1b30 100%);
}
.msg-page-hero .msg-container { max-width: 980px; }
.msg-page-hero p { max-width: 820px; color: var(--msg-soft); font-size: 1.18rem; }
.msg-service-detail-list { display: grid; gap: 22px; }
.msg-service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 40px;
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(16,32,51,.1);
  box-shadow: 0 18px 60px rgba(16,32,51,.08);
  scroll-margin-top: 96px;
}
.msg-service-detail p { color: var(--msg-paper-muted); }
.msg-service-detail ul, .msg-large-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.msg-service-detail li, .msg-large-card li {
  position: relative;
  padding-left: 28px;
  color: var(--msg-paper-muted);
  font-weight: 650;
}
.msg-service-detail li::before, .msg-large-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--msg-cyan), var(--msg-violet));
}
.msg-timeline { display: grid; gap: 18px; }
.msg-timeline-item {
  display: grid;
  grid-template-columns: 90px minmax(0, .7fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.msg-timeline-item strong { color: var(--msg-cyan); font-size: 1.35rem; }
.msg-timeline-item h2 { font-size: 1.55rem; }
.msg-check-list { display: grid; gap: 16px; }
.msg-check-list p { padding: 20px; border: 1px solid rgba(16,32,51,.1); border-radius: 20px; background: #fff; color: var(--msg-paper-muted); }
.msg-contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.msg-contact-panel, .msg-contact-form { border-color: rgba(16,32,51,.1); background: #fff; color: var(--msg-ink); border-radius: 30px; padding: 30px; box-shadow: 0 18px 60px rgba(16,32,51,.08); }
.msg-contact-meta { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(16,32,51,.1); }
.msg-contact-meta a { color: #1455d9; font-weight: 800; }
.msg-contact-form { display: grid; gap: 18px; }
.msg-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.msg-contact-form label { display: grid; gap: 8px; font-weight: 800; color: var(--msg-ink); }
.msg-contact-form span { font-size: .9rem; }
.msg-contact-form input, .msg-contact-form textarea, .msg-contact-form select {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(16,32,51,.16);
  background: #f8fafc;
  color: var(--msg-ink);
  font: inherit;
}
.msg-contact-form textarea { resize: vertical; }
.msg-honeypot { display: none !important; }
.msg-form-notice { padding: 14px 16px; border-radius: 14px; margin-bottom: 16px; font-weight: 800; }
.msg-form-success { background: #dcfce7; color: #14532d; }
.msg-form-error { background: #fee2e2; color: #7f1d1d; }
.msg-content-area {
  max-width: 860px;
  color: var(--msg-ink);
  font-size: 1.05rem;
}
.msg-content-area a { color: #1455d9; font-weight: 800; }
.msg-content-area h2, .msg-content-area h3 { margin-top: 2rem; }
.msg-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.msg-post-card { padding: 0; overflow: hidden; }
.msg-post-card img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.msg-post-card > div { padding: 26px; }
.msg-post-card time, .msg-post-hero time { color: #2563eb; font-weight: 850; font-size: .86rem; }
.msg-post-card h2 { font-size: 1.4rem; }
.msg-post-card p { color: var(--msg-paper-muted); }
.msg-read-more { color: #1455d9; font-weight: 850; }
.msg-single-content { background: #fff; padding: 42px; border-radius: 28px; box-shadow: 0 18px 60px rgba(16,32,51,.08); }
.msg-featured-image { margin-bottom: 28px; }
.msg-featured-image img { border-radius: 20px; }
.msg-pagination { grid-column: 1/-1; }
.msg-footer {
  padding: 76px 0 30px;
  background: #030913;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
}
.msg-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; }
.msg-footer p, .msg-footer a, .msg-footer li { color: var(--msg-muted); }
.msg-footer h3 { font-size: 1rem; color: #fff; letter-spacing: 0; }
.msg-footer ul { list-style: none; display: grid; gap: 9px; }
.msg-footer a:hover { color: #fff; }
.msg-footer-bottom { margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 20px; color: var(--msg-muted); font-size: .92rem; }

@media (max-width: 1080px) {
  .msg-card-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .msg-card-grid-3, .msg-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .msg-hero-grid, .msg-two-col, .msg-proof-grid, .msg-contact-grid { grid-template-columns: 1fr; }
  .msg-hero-visual { min-height: 430px; }
  .msg-dashboard-card-main { left: 50%; right: auto; transform: translateX(-50%) rotate(1deg); }
  .msg-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  body.admin-bar .msg-header { top: 0; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .msg-container { width: min(calc(100% - 28px), var(--msg-max)); }
  .msg-section { padding: 78px 0; }
  .msg-header-inner { min-height: 72px; }
  .msg-menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    padding: 12px;
  }
  .msg-menu-toggle span:not(.screen-reader-text) { display: block; height: 2px; background: #fff; border-radius: 2px; }
  .msg-primary-nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: rgba(6,17,31,.96);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--msg-shadow);
  }
  .msg-primary-nav.is-open { display: flex; }
  .msg-menu { flex-direction: column; align-items: stretch; }
  .msg-menu a { width: 100%; padding: 13px 14px; }
  .msg-nav-cta { width: 100%; }
  .msg-hero { min-height: auto; padding-top: 90px; }
  .msg-hero-grid { gap: 28px; }
  .msg-hero-actions .msg-button { width: 100%; }
  .msg-hero-visual { min-height: 360px; }
  .msg-dashboard-card-main { width: 92%; padding: 22px; min-height: 340px; }
  .msg-float-card { font-size: .86rem; }
  .msg-float-card-one { left: 0; }
  .msg-float-card-two { bottom: 78px; }
  .msg-float-card-three { bottom: 10px; }
  .msg-stats-grid, .msg-card-grid-3, .msg-card-grid-4, .msg-card-grid-2, .msg-post-grid { grid-template-columns: 1fr; }
  .msg-service-detail, .msg-timeline-item { grid-template-columns: 1fr; gap: 16px; }
  .msg-flow-card, .msg-form-grid { grid-template-columns: 1fr; }
  .msg-final-cta-inner { padding: 50px 20px; border-radius: 28px; }
  .msg-footer-grid { grid-template-columns: 1fr; }
  .msg-footer-bottom { flex-direction: column; }
  .msg-logo-text { font-size: .95rem; }
  .msg-logo-mark { width: 40px; height: 40px; }
}


/* v1.0.1 — AdCellerant-inspired professional refresh
   Direction: bold B2B ad-tech/service platform energy without copying layout or assets. */
:root {
  --msg-bg: #07152f;
  --msg-bg-2: #0b1f46;
  --msg-surface: #102b5c;
  --msg-surface-2: #123a78;
  --msg-text: #f7fbff;
  --msg-muted: #bfd0e8;
  --msg-soft: #e6f0ff;
  --msg-blue: #145cff;
  --msg-cyan: #21c8ff;
  --msg-violet: #6c63ff;
  --msg-green: #25d0a7;
  --msg-orange: #ff8a1f;
  --msg-yellow: #ffc247;
  --msg-paper: #f7fbff;
  --msg-ink: #07152f;
  --msg-paper-muted: #52647d;
}
body { background: #f7fbff; }
.msg-header { background: rgba(247,251,255,.86); border-bottom: 1px solid rgba(7,21,47,.08); }
.msg-header.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 12px 36px rgba(7,21,47,.10); }
.msg-brand, .msg-footer-brand { color: var(--msg-ink); }
.msg-logo-mark { background: linear-gradient(135deg, var(--msg-orange), var(--msg-yellow)); color: var(--msg-ink); box-shadow: 0 14px 34px rgba(255,138,31,.28); }
.msg-menu a { color: #40536e; }
.msg-menu a:hover, .msg-menu .current-menu-item > a { color: var(--msg-blue); background: rgba(20,92,255,.08); }
.msg-nav-cta { background: var(--msg-orange); border-color: var(--msg-orange); color: #07152f; box-shadow: 0 12px 32px rgba(255,138,31,.25); }
.msg-button-primary { background: linear-gradient(135deg, var(--msg-orange), var(--msg-yellow)); color: #07152f; box-shadow: 0 22px 52px rgba(255,138,31,.28); }
.msg-button-secondary { background: #fff; border-color: rgba(20,92,255,.18); color: var(--msg-blue); box-shadow: 0 12px 36px rgba(7,21,47,.08); }
.msg-badge { border-color: rgba(20,92,255,.16); background: #eaf2ff; color: #145cff; }
.msg-badge::before { background: var(--msg-orange); box-shadow: 0 0 0 6px rgba(255,138,31,.14); }
.msg-hero { min-height: auto; padding: 120px 0 95px; background:
  radial-gradient(circle at 84% 10%, rgba(33,200,255,.18), transparent 28%),
  radial-gradient(circle at 20% 8%, rgba(255,138,31,.16), transparent 24%),
  linear-gradient(135deg, #f7fbff 0%, #eef6ff 47%, #dff0ff 100%);
  color: var(--msg-ink);
}
.msg-hero::after { content: ''; position: absolute; inset: auto -8vw -11vw auto; width: 46vw; height: 46vw; background: #145cff; opacity: .08; border-radius: 48% 52% 42% 58%; transform: rotate(-15deg); pointer-events: none; }
.msg-hero-copy p { color: #3c4e68; font-size: clamp(1.08rem,1.5vw,1.36rem); }
.msg-hero h1 { letter-spacing: -.065em; color: #061533; }
.msg-hero-trust span { background: #fff; border-color: rgba(20,92,255,.12); color: #40536e; box-shadow: 0 8px 24px rgba(7,21,47,.06); }
.msg-dashboard-card, .msg-float-card, .msg-stat-card, .msg-service-card, .msg-industry-card, .msg-large-card, .msg-contact-panel, .msg-contact-form, .msg-post-card { background: #fff; border: 1px solid rgba(7,21,47,.08); box-shadow: 0 24px 70px rgba(7,21,47,.12); }
.msg-dashboard-card-main { color: var(--msg-ink); transform: rotate(-1.5deg); border-radius: 36px; background:
  linear-gradient(180deg, #fff, #f4f9ff); }
.msg-card-topline span { background: rgba(7,21,47,.14); }
.msg-card-topline span:first-child { background: var(--msg-orange); }
.msg-progress-row { color: #31425d; }
.msg-progress { background: #e4edf8; }
.msg-progress i { background: linear-gradient(90deg, var(--msg-blue), var(--msg-cyan)); }
.msg-float-card { color: #061533; background: #fff; border: 1px solid rgba(20,92,255,.10); box-shadow: 0 18px 46px rgba(7,21,47,.14); }
.msg-float-card-one::before, .msg-float-card-two::before, .msg-float-card-three::before { content: ''; display: inline-block; width: 9px; height: 9px; margin-right: 9px; border-radius: 50%; background: var(--msg-orange); }
.msg-section-compact { background: #07152f; padding: 38px 0; }
.msg-stat-card { background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06)); color: #fff; border-color: rgba(255,255,255,.12); box-shadow: none; }
.msg-stat-card strong { color: #fff; }
.msg-stat-card span { color: #c7d7ee; }
.msg-services-section .msg-service-card { position: relative; overflow: hidden; border-radius: 26px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.msg-services-section .msg-service-card::after { content: ''; position: absolute; right: -54px; top: -54px; width: 126px; height: 126px; border-radius: 50%; background: rgba(20,92,255,.08); transition: transform .22s ease; }
.msg-services-section .msg-service-card:hover { transform: translateY(-6px); border-color: rgba(20,92,255,.22); box-shadow: 0 34px 80px rgba(7,21,47,.16); }
.msg-services-section .msg-service-card:hover::after { transform: scale(1.25); }
.msg-service-card span { color: var(--msg-blue); background: #eaf2ff; border-radius: 999px; padding: 7px 10px; display: inline-flex; width: fit-content; font-weight: 850; font-size: .78rem; margin-bottom: 18px; }
.msg-service-card em { color: var(--msg-orange); font-style: normal; font-weight: 900; }
.msg-dark-section { background:
  radial-gradient(circle at 15% 30%, rgba(33,200,255,.14), transparent 25%),
  linear-gradient(135deg, #07152f 0%, #0c2a63 100%); color: #fff; }
.msg-dark-section .msg-badge { background: rgba(255,255,255,.10); color: #dff1ff; border-color: rgba(255,255,255,.16); }
.msg-dark-section p { color: #cfdbef; }
.msg-flow-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); box-shadow: 0 28px 80px rgba(0,0,0,.22); }
.msg-flow-step strong { color: var(--msg-yellow); }
.msg-industry-card { border-radius: 26px; background: linear-gradient(180deg, #fff, #f6faff); }
.msg-proof-section { background: #eef6ff; }
.msg-proof-list div { background: #fff; border-left: 5px solid var(--msg-orange); box-shadow: 0 14px 34px rgba(7,21,47,.08); }
.msg-final-cta { background: linear-gradient(135deg, #145cff, #07152f); color: #fff; }
.msg-final-cta p { color: #d8e7ff; }
.msg-final-cta .msg-button-primary { background: linear-gradient(135deg, var(--msg-orange), var(--msg-yellow)); }
.msg-page-hero { background: linear-gradient(135deg, #f7fbff, #eaf4ff); color: var(--msg-ink); }
.msg-page-hero h1 { color: var(--msg-ink); }
.msg-site-footer { background: #06111f; }
@media (max-width: 900px) {
  .msg-header { background: rgba(255,255,255,.96); }
  .msg-primary-nav { background: #fff; border-color: rgba(7,21,47,.10); }
  .msg-menu a { color: #07152f; }
  .msg-menu-toggle span { background: #07152f; }
  .msg-hero { padding: 82px 0 70px; }
  .msg-hero-visual { min-height: 410px; }
  .msg-dashboard-card-main { inset: 38px 0 auto auto; }
}


/* v1.0.2 — MSG logo-led identity
   Palette derived from the supplied Media Services Global logo: deep navy wordmark + vivid royal blue symbol. */
:root {
  --msg-bg: #061236;
  --msg-bg-2: #071a52;
  --msg-surface: #0b2368;
  --msg-surface-2: #123a94;
  --msg-text: #f7fbff;
  --msg-muted: #bed0ee;
  --msg-soft: #eaf2ff;
  --msg-blue: #0067ff;
  --msg-cyan: #18a8ff;
  --msg-violet: #172574;
  --msg-green: #23c6a8;
  --msg-orange: #2f7cff;
  --msg-yellow: #76c7ff;
  --msg-paper: #f8fbff;
  --msg-ink: #07154a;
  --msg-paper-muted: #52627b;
}
.msg-header { background: rgba(248,251,255,.92); border-bottom: 1px solid rgba(7,21,74,.09); }
.msg-header.is-scrolled { background: rgba(255,255,255,.98); box-shadow: 0 14px 38px rgba(7,21,74,.10); }
.msg-brand { gap: 0; }
.msg-logo-img img, .custom-logo { max-height: 62px; width: auto; display: block; }
.msg-header.is-scrolled .msg-logo-img img, .msg-header.is-scrolled .custom-logo { max-height: 54px; }
.msg-logo-img-default img { width: auto; max-width: 300px; }
.msg-logo-text-fallback { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.msg-logo-mark { background: linear-gradient(135deg, #0067ff, #18a8ff); color: #fff; box-shadow: 0 14px 34px rgba(0,103,255,.26); }
.msg-nav-cta { background: linear-gradient(135deg, #0067ff, #18a8ff); border-color: transparent; color: #fff; box-shadow: 0 13px 32px rgba(0,103,255,.24); }
.msg-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 16px 38px rgba(0,103,255,.30); }
.msg-button-primary { background: linear-gradient(135deg, #0067ff, #18a8ff); color: #fff; box-shadow: 0 22px 52px rgba(0,103,255,.24); }
.msg-button-primary:hover { box-shadow: 0 28px 60px rgba(0,103,255,.30); }
.msg-button-secondary { background: #fff; border-color: rgba(0,103,255,.18); color: #07154a; }
.msg-badge { background: #eaf3ff; color: #0067ff; border-color: rgba(0,103,255,.16); }
.msg-badge::before { background: #0067ff; box-shadow: 0 0 0 6px rgba(0,103,255,.14); }
.msg-hero { background:
  radial-gradient(circle at 84% 10%, rgba(0,103,255,.17), transparent 30%),
  radial-gradient(circle at 18% 12%, rgba(24,168,255,.16), transparent 24%),
  linear-gradient(135deg, #ffffff 0%, #f2f7ff 48%, #e4f0ff 100%);
}
.msg-hero::after { background: #0067ff; opacity: .09; }
.msg-hero h1 { color: #07154a; }
.msg-hero-copy p { color: #40516e; }
.msg-progress i { background: linear-gradient(90deg, #0067ff, #18a8ff); }
.msg-float-card-one::before, .msg-float-card-two::before, .msg-float-card-three::before { background: #0067ff; }
.msg-section-compact { background: #07154a; }
.msg-service-card span { color: #0067ff; background: #eaf3ff; }
.msg-service-card em { color: #0067ff; }
.msg-services-section .msg-service-card::after { background: rgba(0,103,255,.08); }
.msg-services-section .msg-service-card:hover { border-color: rgba(0,103,255,.22); }
.msg-dark-section { background:
  radial-gradient(circle at 15% 30%, rgba(24,168,255,.14), transparent 25%),
  linear-gradient(135deg, #07154a 0%, #073a9a 100%); }
.msg-flow-step strong { color: #76c7ff; }
.msg-proof-list div { border-left-color: #0067ff; }
.msg-final-cta { background: linear-gradient(135deg, #0067ff, #07154a); }
.msg-final-cta .msg-button-primary { background: #fff; color: #07154a; box-shadow: 0 22px 52px rgba(255,255,255,.18); }
.msg-site-footer { background: #050d2f; }
@media (max-width: 900px) {
  .msg-logo-img img, .custom-logo { max-height: 52px; max-width: 230px; }
  .msg-header.is-scrolled .msg-logo-img img, .msg-header.is-scrolled .custom-logo { max-height: 46px; }
}
@media (max-width: 480px) {
  .msg-logo-img img, .custom-logo { max-height: 46px; max-width: 205px; }
}

/* v1.0.3 — premium refinement pass: larger brand presence, stronger hero visual, richer cards, improved rhythm */
:root {
  --msg-max: 1240px;
  --msg-logo-blue: #0067ff;
  --msg-logo-blue-2: #18a8ff;
  --msg-logo-navy: #07154a;
}
.msg-header-inner { min-height: 96px; }
.msg-header.is-scrolled .msg-header-inner { min-height: 78px; }
.msg-logo-img img, .custom-logo { max-height: 76px; }
.msg-header.is-scrolled .msg-logo-img img, .msg-header.is-scrolled .custom-logo { max-height: 64px; }
.msg-logo-img-default img { max-width: 360px; }
.msg-nav-cta { padding: 13px 22px; }
.msg-hero { padding: 132px 0 112px; }
.msg-hero-grid { grid-template-columns: minmax(0, .96fr) minmax(440px, 1.04fr); gap: 72px; }
.msg-hero h1 { font-size: clamp(3.65rem, 6.25vw, 6.9rem); line-height: .94; max-width: 760px; }
.msg-hero-copy p { max-width: 690px; line-height: 1.62; }
.msg-hero-visual { min-height: 610px; }
.msg-orbit-ring {
  position: absolute;
  inset: 18px 0 auto auto;
  width: 570px;
  height: 570px;
  border-radius: 48% 52% 45% 55%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.75), rgba(255,255,255,.38) 34%, transparent 35%),
    linear-gradient(135deg, rgba(0,103,255,.13), rgba(24,168,255,.10));
  border: 1px solid rgba(0,103,255,.10);
  box-shadow: inset 0 0 90px rgba(0,103,255,.09), 0 40px 120px rgba(7,21,74,.10);
  transform: rotate(-12deg);
}
.msg-dashboard-card-main {
  inset: 74px 38px auto auto;
  width: min(100%, 500px);
  min-height: 455px;
  padding: 34px;
  box-shadow: 0 34px 94px rgba(7,21,74,.18);
}
.msg-dashboard-card h2 { font-size: 2rem; }
.msg-float-card { font-weight: 850; }
.msg-float-card-one { top: 50px; left: 8px; }
.msg-float-card-two { bottom: 130px; left: 10px; }
.msg-float-card-three { right: 18px; bottom: 48px; }
.msg-mini-metric {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 17px 19px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,103,255,.12);
  box-shadow: 0 18px 50px rgba(7,21,74,.13);
  color: var(--msg-ink);
}
.msg-mini-metric strong { font-size: 1.08rem; color: var(--msg-logo-blue); }
.msg-mini-metric span { font-size: .8rem; color: #52627b; font-weight: 800; }
.msg-mini-metric-one { top: 240px; left: -8px; }
.msg-mini-metric-two { right: 2px; top: 12px; }
.msg-section { padding: 128px 0; }
.msg-section-compact { padding: 42px 0; }
.msg-stats-grid { transform: translateY(-4px); }
.msg-stat-card { border-radius: 22px; padding: 28px 32px; }
.msg-stat-card strong { font-size: clamp(2.05rem, 3vw, 3.15rem); line-height: 1; }
.msg-problem-section { background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%); }
.msg-two-col { gap: 86px; }
.msg-two-col p { font-size: 1.06rem; line-height: 1.76; }
.msg-services-section { background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%); }
.msg-section-head { max-width: 820px; }
.msg-section-head p { font-size: 1.07rem; line-height: 1.7; }
.msg-services-section .msg-service-card {
  min-height: 315px;
  padding: 31px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.msg-service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf3ff, #dff0ff);
  color: var(--msg-logo-blue);
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(0,103,255,.10);
}
.msg-service-card h3 { position: relative; z-index: 1; margin-bottom: 14px; }
.msg-service-card p { position: relative; z-index: 1; line-height: 1.68; }
.msg-service-card em { position: relative; z-index: 1; margin-top: 22px; }
.msg-dark-section { padding: 124px 0; overflow: hidden; }
.msg-dark-section::before {
  content: '';
  position: absolute;
  inset: -20% auto auto -8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(24,168,255,.16);
  filter: blur(20px);
}
.msg-flow-card {
  border-radius: 34px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.msg-flow-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 8px 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.085);
  border: 1px solid rgba(255,255,255,.11);
}
.msg-flow-step strong { grid-row: span 2; font-size: 1rem; }
.msg-flow-step span { font-weight: 900; }
.msg-flow-step small { color: #b8cae8; font-weight: 700; }
.msg-audience-section { background: #ffffff; color: var(--msg-ink); }
.msg-audience-section p { color: var(--msg-paper-muted); }
.msg-audience-section .msg-badge { color: #0067ff; background: #eaf3ff; border-color: rgba(0,103,255,.16); }
.msg-industry-card {
  min-height: 270px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,103,255,.10);
  box-shadow: 0 24px 70px rgba(7,21,74,.10);
}
.msg-industry-card::after {
  content: '';
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(0,103,255,.075);
}
.msg-industry-index {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--msg-logo-blue);
  font-weight: 950;
  letter-spacing: -.03em;
}
.msg-proof-section {
  background:
    radial-gradient(circle at 84% 22%, rgba(0,103,255,.08), transparent 26%),
    linear-gradient(180deg, #eef6ff 0%, #f8fbff 100%);
}
.msg-proof-list div { border-left-width: 6px; border-radius: 18px; padding: 21px 24px; }
.msg-final-cta { padding: 112px 0; }
.msg-final-cta-inner {
  max-width: 980px;
  border-radius: 34px;
  padding: 74px 46px;
  background:
    radial-gradient(circle at 12% 20%, rgba(24,168,255,.24), transparent 24%),
    linear-gradient(135deg, rgba(5,13,47,.94), rgba(7,58,154,.92));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 100px rgba(0,0,0,.24);
}
.msg-site-footer { padding-top: 70px; }
@media (max-width: 1080px) {
  .msg-hero-grid { grid-template-columns: 1fr; }
  .msg-hero h1 { max-width: 900px; }
  .msg-hero-visual { max-width: 680px; width: 100%; margin: 0 auto; }
}
@media (max-width: 900px) {
  .msg-header-inner { min-height: 78px; }
  .msg-logo-img img, .custom-logo { max-height: 60px; max-width: 260px; }
  .msg-hero { padding: 72px 0 76px; }
  .msg-hero-visual { min-height: 480px; }
  .msg-orbit-ring { width: 430px; height: 430px; right: -40px; }
  .msg-dashboard-card-main { width: 88%; min-height: 388px; right: 0; }
  .msg-mini-metric-one { left: 0; top: 206px; }
  .msg-mini-metric-two { right: 0; top: 10px; }
  .msg-section { padding: 88px 0; }
  .msg-two-col { gap: 36px; }
  .msg-services-section .msg-service-card, .msg-industry-card { min-height: auto; }
}
@media (max-width: 480px) {
  .msg-logo-img img, .custom-logo { max-height: 52px; max-width: 230px; }
  .msg-hero h1 { font-size: clamp(3.05rem, 15vw, 4.25rem); }
  .msg-hero-actions .msg-button { width: 100%; }
  .msg-hero-visual { min-height: 430px; }
  .msg-dashboard-card-main { width: 92%; padding: 24px; }
  .msg-float-card, .msg-mini-metric { display: none; }
  .msg-final-cta-inner { padding: 52px 22px; }
}


/* v1.0.4 — slimmer professional header
   Keeps the logo visible but reduces vertical weight so the homepage hero starts faster. */
.msg-header-inner {
  min-height: 74px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.msg-header.is-scrolled .msg-header-inner {
  min-height: 62px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.msg-logo-img img,
.custom-logo {
  max-height: 54px;
  max-width: 300px;
}
.msg-header.is-scrolled .msg-logo-img img,
.msg-header.is-scrolled .custom-logo {
  max-height: 46px;
}
.msg-logo-img-default img {
  max-width: 300px;
}
.msg-menu a {
  padding: 8px 0;
}
.msg-nav-cta {
  padding: 10px 18px;
  font-size: .82rem;
}
.msg-primary-nav {
  gap: 18px;
}

@media (max-width: 782px) {
  .msg-header-inner {
    min-height: 66px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .msg-logo-img img,
  .custom-logo {
    max-height: 46px;
    max-width: 220px;
  }
  .msg-header.is-scrolled .msg-logo-img img,
  .msg-header.is-scrolled .custom-logo {
    max-height: 40px;
  }
  .msg-menu-toggle {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .msg-header-inner {
    min-height: 62px;
  }
  .msg-logo-img img,
  .custom-logo {
    max-height: 40px;
    max-width: 190px;
  }
}


/* v1.0.5 — critical ATF/header correction
   Goal: compact SaaS-style header and visible hero CTA on initial desktop/laptop load. */
.msg-header {
  min-height: 0 !important;
}
body.admin-bar .msg-header {
  top: 32px;
}
.msg-header-inner {
  min-height: 54px !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  gap: 18px !important;
}
.msg-header.is-scrolled .msg-header-inner {
  min-height: 48px !important;
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}
.msg-brand {
  line-height: 1 !important;
}
.msg-logo-img,
.msg-logo-img a,
.custom-logo-link {
  display: flex !important;
  align-items: center !important;
  line-height: 0 !important;
}
.msg-logo-img img,
.custom-logo {
  max-height: 38px !important;
  max-width: 210px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}
.msg-header.is-scrolled .msg-logo-img img,
.msg-header.is-scrolled .custom-logo {
  max-height: 34px !important;
}
.msg-logo-text-fallback {
  display: none !important;
}
.msg-primary-nav {
  gap: 14px !important;
}
.msg-menu {
  gap: 2px !important;
}
.msg-menu a {
  padding: 5px 6px !important;
  font-size: .82rem !important;
  line-height: 1.1 !important;
}
.msg-nav-cta {
  padding: 8px 14px !important;
  font-size: .76rem !important;
  line-height: 1 !important;
  border-radius: 999px !important;
}
.msg-hero {
  padding: 70px 0 72px !important;
}
.msg-hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr) !important;
  gap: 54px !important;
  align-items: center !important;
}
.msg-hero h1 {
  font-size: clamp(3.45rem, 5.15vw, 5.6rem) !important;
  line-height: .96 !important;
  letter-spacing: -.06em !important;
  max-width: 670px !important;
  margin-bottom: 18px !important;
}
.msg-hero-copy p {
  font-size: clamp(.98rem, 1.08vw, 1.12rem) !important;
  line-height: 1.52 !important;
  max-width: 610px !important;
  margin-bottom: 0 !important;
}
.msg-hero-actions {
  margin: 20px 0 16px !important;
  gap: 10px !important;
}
.msg-hero .msg-button {
  padding: 11px 16px !important;
  font-size: .82rem !important;
}
.msg-hero-trust span {
  padding: 6px 9px !important;
  font-size: .78rem !important;
}
.msg-hero-visual {
  min-height: 430px !important;
}
.msg-dashboard-card-main {
  width: min(88%, 470px) !important;
  padding: 30px !important;
}
.msg-stat-strip .msg-section,
.msg-section {
}
.msg-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

@media (max-width: 1180px) {
  .msg-header-inner { min-height: 52px !important; }
  .msg-menu a { font-size: .78rem !important; padding-left: 4px !important; padding-right: 4px !important; }
  .msg-nav-cta { padding: 7px 12px !important; font-size: .72rem !important; }
  .msg-logo-img img, .custom-logo { max-height: 34px !important; max-width: 190px !important; }
  .msg-hero { padding-top: 58px !important; }
  .msg-hero h1 { font-size: clamp(3rem, 5.2vw, 4.75rem) !important; max-width: 620px !important; }
  .msg-hero-visual { min-height: 390px !important; }
}

@media (max-width: 980px) {
  .msg-header-inner { min-height: 56px !important; }
  .msg-logo-img img, .custom-logo { max-height: 36px !important; }
  .msg-hero { padding: 58px 0 64px !important; }
  .msg-hero-grid { grid-template-columns: 1fr !important; gap: 26px !important; }
  .msg-hero h1 { font-size: clamp(3rem, 10vw, 4.6rem) !important; max-width: 780px !important; }
  .msg-hero-copy p { max-width: 720px !important; }
  .msg-hero-visual { min-height: 340px !important; }
}

@media (max-width: 782px) {
  body.admin-bar .msg-header { top: 0; }
  .msg-header-inner {
    min-height: 52px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .msg-logo-img img,
  .custom-logo {
    max-height: 34px !important;
    max-width: 175px !important;
  }
  .msg-menu-toggle {
    width: 36px !important;
    height: 36px !important;
  }
  .msg-primary-nav {
    top: calc(100% + 8px) !important;
  }
  .msg-hero {
    padding-top: 44px !important;
  }
}

@media (max-width: 480px) {
  .msg-container { width: min(calc(100% - 28px), var(--msg-max)); }
  .msg-header-inner { min-height: 50px !important; }
  .msg-logo-img img, .custom-logo { max-height: 31px !important; max-width: 155px !important; }
  .msg-hero { padding: 38px 0 52px !important; }
  .msg-hero h1 { font-size: clamp(2.55rem, 12.5vw, 3.45rem) !important; line-height: .98 !important; }
  .msg-hero-copy p { font-size: .98rem !important; line-height: 1.5 !important; }
  .msg-hero-actions { margin-top: 18px !important; }
  .msg-hero-visual { min-height: 280px !important; }
  .msg-dashboard-card-main { width: 96% !important; padding: 22px !important; }
}

/* v1.0.6 — compact header + animated transparent SVG hero assets */
.msg-header-inner {
  min-height: 56px !important;
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}
.msg-header.is-scrolled .msg-header-inner {
  min-height: 50px !important;
}
.msg-logo-img img,
.custom-logo {
  max-height: 44px !important;
  max-width: 235px !important;
}
.msg-header.is-scrolled .msg-logo-img img,
.msg-header.is-scrolled .custom-logo {
  max-height: 39px !important;
}
.msg-menu a {
  font-size: .8rem !important;
  padding: 5px 6px !important;
}
.msg-nav-cta {
  padding: 8px 13px !important;
  font-size: .74rem !important;
}
.msg-hero {
  padding: 48px 0 58px !important;
}
.msg-hero-grid {
  grid-template-columns: minmax(0, .88fr) minmax(410px, 1.12fr) !important;
  gap: 46px !important;
}
.msg-hero h1 {
  font-size: clamp(2.95rem, 4.25vw, 4.75rem) !important;
  line-height: 1 !important;
  max-width: 640px !important;
  margin-bottom: 14px !important;
}
.msg-hero-copy p {
  font-size: clamp(.96rem, 1vw, 1.08rem) !important;
  line-height: 1.5 !important;
  max-width: 600px !important;
}
.msg-hero-actions {
  margin: 18px 0 12px !important;
}
.msg-hero .msg-button {
  min-height: 42px !important;
  padding: 10px 15px !important;
}
.msg-hero-trust {
  gap: 8px !important;
}
.msg-hero-trust span {
  padding: 5px 8px !important;
  font-size: .74rem !important;
}
.msg-hero-visual-animated {
  position: relative;
  min-height: 405px !important;
  isolation: isolate;
}
.msg-hero-glow {
  position: absolute;
  inset: 7% -4% 3% 4%;
  border-radius: 48% 52% 44% 56%;
  background:
    radial-gradient(circle at 68% 35%, rgba(0,103,255,.16), transparent 34%),
    radial-gradient(circle at 28% 60%, rgba(24,168,255,.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(234,243,255,.48));
  border: 1px solid rgba(0,103,255,.08);
  box-shadow: inset 0 0 90px rgba(0,103,255,.06), 0 32px 90px rgba(7,21,74,.08);
  z-index: 0;
  animation: msgGlowFloat 8s ease-in-out infinite;
}
.msg-hero-cutout {
  position: absolute;
  display: block;
  width: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 24px 34px rgba(7,21,74,.18));
}
.msg-hero-person {
  right: 0;
  bottom: -8px;
  height: min(92%, 415px);
  z-index: 3;
  animation: msgPersonIn .9s cubic-bezier(.2,.8,.2,1) both, msgGentleFloat 7s ease-in-out 1.1s infinite;
}
.msg-hero-laptop {
  left: 4%;
  bottom: 8px;
  width: min(74%, 500px);
  z-index: 4;
  animation: msgLaptopIn 1s cubic-bezier(.2,.8,.2,1) .18s both, msgLaptopFloat 6.5s ease-in-out 1.25s infinite;
}
.msg-hero-card,
.msg-hero-micro-chart {
  position: absolute;
  z-index: 5;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,103,255,.12);
  box-shadow: 0 18px 46px rgba(7,21,74,.13);
  backdrop-filter: blur(12px);
  color: var(--msg-ink);
}
.msg-hero-card {
  display: grid;
  gap: 2px;
  padding: 12px 15px 12px 36px;
  min-width: 178px;
  animation: msgCardIn .75s cubic-bezier(.2,.8,.2,1) both, msgCardFloat 5.8s ease-in-out 1.2s infinite;
}
.msg-hero-card::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0067ff, #18a8ff);
  box-shadow: 0 0 0 6px rgba(0,103,255,.09);
}
.msg-hero-card strong {
  font-size: .83rem;
  line-height: 1.1;
  font-weight: 900;
}
.msg-hero-card span {
  font-size: .67rem;
  line-height: 1.2;
  color: #52627b;
  font-weight: 750;
}
.msg-hero-card-setup { left: 8%; top: 18%; animation-delay: .48s, 1.35s; }
.msg-hero-card-report { left: 0; top: 42%; animation-delay: .62s, 1.55s; }
.msg-hero-card-yield { right: 8%; top: 14%; animation-delay: .78s, 1.7s; }
.msg-hero-card-pacing { right: 22%; bottom: 5%; animation-delay: .92s, 1.85s; }
.msg-hero-micro-chart {
  left: 15%;
  bottom: 26%;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 70px;
  width: 118px;
  padding: 15px;
  animation: msgCardIn .75s cubic-bezier(.2,.8,.2,1) .72s both, msgCardFloat 6.1s ease-in-out 1.7s infinite;
}
.msg-hero-micro-chart span {
  width: 17px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #18a8ff, #0067ff);
}
.msg-hero-micro-chart span:nth-child(1) { height: 24px; opacity: .55; }
.msg-hero-micro-chart span:nth-child(2) { height: 38px; opacity: .72; }
.msg-hero-micro-chart span:nth-child(3) { height: 30px; opacity: .66; }
.msg-hero-micro-chart span:nth-child(4) { height: 50px; }
.msg-dashboard-card-main,
.msg-float-card,
.msg-mini-metric,
.msg-orbit-ring {
  display: none !important;
}
@keyframes msgPersonIn {
  from { opacity: 0; transform: translateX(42px) scale(.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes msgLaptopIn {
  from { opacity: 0; transform: translateY(36px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes msgCardIn {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes msgGentleFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes msgLaptopFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(0deg); }
}
@keyframes msgCardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes msgGlowFloat {
  0%,100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(-2deg) scale(1.025); }
}
@media (prefers-reduced-motion: reduce) {
  .msg-hero-person,
  .msg-hero-laptop,
  .msg-hero-card,
  .msg-hero-micro-chart,
  .msg-hero-glow {
    animation: none !important;
  }
}
@media (max-width: 1180px) {
  .msg-logo-img img,
  .custom-logo {
    max-height: 40px !important;
    max-width: 220px !important;
  }
  .msg-hero h1 {
    font-size: clamp(2.75rem, 4.7vw, 4.15rem) !important;
  }
  .msg-hero-visual-animated {
    min-height: 380px !important;
  }
  .msg-hero-person { height: min(88%, 390px); }
  .msg-hero-laptop { width: min(74%, 460px); }
}
@media (max-width: 980px) {
  .msg-hero-grid {
    grid-template-columns: 1fr !important;
  }
  .msg-hero-visual-animated {
    min-height: 360px !important;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }
  .msg-hero-person { height: 350px; right: 2%; }
  .msg-hero-laptop { width: 470px; max-width: 76%; left: 5%; }
}
@media (max-width: 782px) {
  .msg-logo-img img,
  .custom-logo {
    max-height: 36px !important;
    max-width: 205px !important;
  }
  .msg-hero-visual-animated {
    min-height: 330px !important;
  }
  .msg-hero-person { height: 315px; }
  .msg-hero-laptop { width: 420px; }
  .msg-hero-card { padding: 10px 12px 10px 31px; min-width: 150px; }
  .msg-hero-card strong { font-size: .74rem; }
  .msg-hero-card span { display: none; }
  .msg-hero-card-report { left: 1%; }
  .msg-hero-card-yield { right: 2%; }
  .msg-hero-micro-chart { display: none; }
}
@media (max-width: 480px) {
  .msg-logo-img img,
  .custom-logo {
    max-height: 33px !important;
    max-width: 180px !important;
  }
  .msg-menu-toggle {
    width: 35px !important;
    height: 35px !important;
  }
  .msg-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem) !important;
  }
  .msg-hero-visual-animated {
    min-height: 285px !important;
  }
  .msg-hero-person { height: 268px; right: -2%; }
  .msg-hero-laptop { width: 340px; max-width: 78%; left: -1%; bottom: 12px; }
  .msg-hero-card { display: none; }
}


/* v1.0.7 — real hero asset bake-in + tighter ATF
   Uses separate visual layers: person image, laptop image, CSS pills and CSS animation. */
.msg-header-inner {
  min-height: 54px !important;
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}
.msg-header.is-scrolled .msg-header-inner { min-height: 48px !important; }
.msg-logo-img img,
.custom-logo {
  max-height: 42px !important;
  max-width: 250px !important;
}
.msg-header.is-scrolled .msg-logo-img img,
.msg-header.is-scrolled .custom-logo { max-height: 37px !important; }
.msg-menu a { font-size: .79rem !important; padding: 5px 6px !important; }
.msg-nav-cta { padding: 8px 13px !important; font-size: .73rem !important; }
.msg-hero { padding: 42px 0 54px !important; }
.msg-hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr) !important;
  gap: 42px !important;
  align-items: center !important;
}
.msg-hero h1 {
  font-size: clamp(2.65rem, 3.65vw, 4.05rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -.06em !important;
  max-width: 560px !important;
  margin-bottom: 12px !important;
}
.msg-hero-copy p {
  font-size: clamp(.93rem, .92vw, 1.02rem) !important;
  line-height: 1.48 !important;
  max-width: 570px !important;
}
.msg-hero-actions { margin: 16px 0 10px !important; }
.msg-hero .msg-button { min-height: 40px !important; padding: 9px 14px !important; font-size: .8rem !important; }
.msg-hero-trust span { font-size: .72rem !important; padding: 5px 8px !important; }
.msg-hero-visual-animated {
  min-height: 376px !important;
  max-width: 610px;
  margin-left: auto;
}
.msg-hero-glow {
  inset: 4% -2% 6% 1%;
  background:
    radial-gradient(circle at 69% 33%, rgba(0,103,255,.15), transparent 34%),
    radial-gradient(circle at 34% 64%, rgba(24,168,255,.12), transparent 31%),
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(232,243,255,.60));
  border-radius: 46% 54% 43% 57%;
}
.msg-hero-person {
  right: -2px !important;
  bottom: 0 !important;
  height: min(88%, 356px) !important;
  z-index: 3 !important;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(7,21,74,.16));
}
.msg-hero-laptop {
  left: 3% !important;
  bottom: 24px !important;
  width: min(69%, 415px) !important;
  z-index: 4 !important;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(7,21,74,.18));
}
.msg-hero-card {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  min-width: auto !important;
  width: max-content !important;
  max-width: 280px !important;
  padding: 10px 13px 10px 10px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(0,103,255,.14) !important;
  box-shadow: 0 15px 38px rgba(7,21,74,.13) !important;
  backdrop-filter: blur(14px) !important;
}
.msg-hero-card::before { display: none !important; }
.msg-hero-card i {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #0067ff, #18a8ff);
  color: #fff;
  font-size: .82rem;
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(0,103,255,.22);
}
.msg-hero-card strong {
  font-size: .78rem !important;
  line-height: 1.1 !important;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.msg-hero-card span { display: none !important; }
.msg-hero-card-setup { left: 5% !important; top: 16% !important; }
.msg-hero-card-report { left: 0 !important; top: 39% !important; }
.msg-hero-card-yield { right: 3% !important; top: 12% !important; }
.msg-hero-card-pacing { right: 0 !important; bottom: 7% !important; max-width: 320px !important; }
.msg-hero-micro-chart {
  left: 16% !important;
  bottom: 32% !important;
  width: 96px !important;
  height: 58px !important;
  padding: 12px !important;
  border-radius: 16px !important;
}
.msg-hero-micro-chart span { width: 13px !important; }
@media (max-width: 1180px) {
  .msg-logo-img img, .custom-logo { max-height: 39px !important; max-width: 230px !important; }
  .msg-hero { padding-top: 38px !important; }
  .msg-hero h1 { font-size: clamp(2.45rem, 4.2vw, 3.7rem) !important; max-width: 540px !important; }
  .msg-hero-visual-animated { min-height: 354px !important; }
  .msg-hero-person { height: min(86%, 330px) !important; }
  .msg-hero-laptop { width: min(68%, 390px) !important; }
  .msg-hero-card-pacing { max-width: 260px !important; }
}
@media (max-width: 980px) {
  .msg-hero-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .msg-hero h1 { font-size: clamp(2.55rem, 7.6vw, 3.9rem) !important; max-width: 760px !important; }
  .msg-hero-visual-animated { min-height: 340px !important; max-width: 620px; margin: 0 auto; }
}
@media (max-width: 782px) {
  .msg-header-inner { min-height: 52px !important; }
  .msg-logo-img img, .custom-logo { max-height: 36px !important; max-width: 210px !important; }
  .msg-hero { padding-top: 36px !important; }
  .msg-hero-visual-animated { min-height: 310px !important; }
  .msg-hero-person { height: 292px !important; right: 0 !important; }
  .msg-hero-laptop { width: 365px !important; max-width: 73% !important; left: 0 !important; }
  .msg-hero-card strong { font-size: .68rem !important; }
  .msg-hero-card i { width: 24px; height: 24px; flex-basis: 24px; font-size: .7rem; }
  .msg-hero-card-yield { right: 0 !important; }
  .msg-hero-card-pacing { display: none !important; }
}
@media (max-width: 480px) {
  .msg-logo-img img, .custom-logo { max-height: 34px !important; max-width: 185px !important; }
  .msg-hero h1 { font-size: clamp(2.25rem, 10.3vw, 3rem) !important; }
  .msg-hero-visual-animated { min-height: 260px !important; }
  .msg-hero-person { height: 242px !important; right: -4% !important; }
  .msg-hero-laptop { width: 310px !important; max-width: 78% !important; bottom: 10px !important; }
  .msg-hero-card { display: none !important; }
}

/* v1.0.8 — hero asset visibility + refined operations snapshot strip */
.msg-logo-img img,
.custom-logo {
  max-height: 46px !important;
  max-width: 260px !important;
}
.msg-header-inner {
  min-height: 56px !important;
}
.msg-header.is-scrolled .msg-logo-img img,
.msg-header.is-scrolled .custom-logo {
  max-height: 40px !important;
}
.msg-hero {
  padding: 42px 0 44px !important;
}
.msg-hero-grid {
  grid-template-columns: minmax(0,.92fr) minmax(460px,1.08fr) !important;
  gap: 42px !important;
}
.msg-hero h1 {
  font-size: clamp(2.75rem, 3.65vw, 4.15rem) !important;
  line-height: 1.02 !important;
  max-width: 700px !important;
  letter-spacing: -.055em !important;
}
.msg-hero-copy p {
  max-width: 640px !important;
}
.msg-hero-visual-animated {
  min-height: 390px !important;
  overflow: visible !important;
}
.msg-hero-glow {
  inset: 0 -2% 1% 5% !important;
  opacity: .78 !important;
  z-index: 0 !important;
}
.msg-hero-cutout {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  mix-blend-mode: normal !important;
  object-fit: contain !important;
  filter: drop-shadow(0 18px 28px rgba(7,21,74,.20)) !important;
}
.msg-hero-person {
  right: -2% !important;
  bottom: -2px !important;
  height: 365px !important;
  z-index: 4 !important;
}
.msg-hero-laptop {
  left: 2% !important;
  bottom: 10px !important;
  width: min(74%, 520px) !important;
  z-index: 5 !important;
}
.msg-hero-card {
  z-index: 8 !important;
  min-width: 172px !important;
  padding: 10px 14px 10px 36px !important;
  box-shadow: 0 16px 38px rgba(7,21,74,.14) !important;
}
.msg-hero-card-yield { left: 8% !important; top: 13% !important; right: auto !important; }
.msg-hero-card-setup { right: 4% !important; top: 18% !important; left: auto !important; }
.msg-hero-card-report { right: 15% !important; top: 38% !important; left: auto !important; }
.msg-hero-card-pacing { left: 7% !important; bottom: 11% !important; right: auto !important; }
.msg-hero-micro-chart {
  right: 23% !important;
  left: auto !important;
  bottom: 30% !important;
  z-index: 7 !important;
}
.msg-ops-strip-section {
  background: #07164d !important;
  color: #fff !important;
  padding: 34px 0 !important;
}
.msg-ops-strip {
  display: grid;
  grid-template-columns: minmax(250px,.7fr) minmax(0,1.3fr);
  gap: 22px;
  align-items: stretch;
}
.msg-ops-strip-intro,
.msg-ops-strip-card {
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 38px rgba(0,0,0,.13);
  border-radius: 22px;
}
.msg-ops-strip-intro {
  padding: 22px 24px;
  display: grid;
  align-content: center;
  gap: 8px;
}
.msg-ops-strip-intro span {
  color: #8fc8ff;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.msg-ops-strip-intro strong {
  max-width: 360px;
  font-size: clamp(1.25rem, 1.8vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.msg-ops-strip-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.msg-ops-strip-card {
  padding: 19px 18px;
  min-height: 145px;
  display: grid;
  align-content: start;
  gap: 8px;
}
.msg-ops-strip-card i {
  font-style: normal;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(0,103,255,.24);
  color: #9fd3ff;
  font-weight: 950;
  font-size: .78rem;
}
.msg-ops-strip-card strong {
  font-size: 1.02rem;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.msg-ops-strip-card span {
  color: rgba(232,241,255,.78);
  font-size: .86rem;
  line-height: 1.35;
}
@media (max-width: 1180px) {
  .msg-hero-grid { grid-template-columns: minmax(0,1fr) minmax(390px,.95fr) !important; }
  .msg-hero-person { height: 330px !important; }
  .msg-hero-laptop { width: min(72%, 455px) !important; }
}
@media (max-width: 980px) {
  .msg-hero-grid { grid-template-columns: 1fr !important; }
  .msg-hero-visual-animated { min-height: 360px !important; }
  .msg-hero-person { height: 330px !important; right: 1% !important; }
  .msg-hero-laptop { width: min(74%, 470px) !important; left: 4% !important; }
  .msg-ops-strip { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .msg-logo-img img, .custom-logo { max-height: 38px !important; max-width: 210px !important; }
  .msg-hero { padding: 32px 0 42px !important; }
  .msg-hero h1 { font-size: clamp(2.35rem, 10.6vw, 3.15rem) !important; }
  .msg-hero-visual-animated { min-height: 305px !important; }
  .msg-hero-person { height: 280px !important; right: -8% !important; }
  .msg-hero-laptop { width: 360px !important; max-width: 78% !important; left: 0 !important; }
  .msg-hero-card { min-width: 145px !important; }
  .msg-hero-card-pacing { display: none !important; }
  .msg-ops-strip-items { grid-template-columns: 1fr; }
  .msg-ops-strip-card { min-height: auto; }
}
@media (max-width: 480px) {
  .msg-hero-visual-animated { min-height: 260px !important; }
  .msg-hero-person { height: 230px !important; }
  .msg-hero-laptop { width: 310px !important; }
  .msg-hero-card-report { display: none !important; }
}
