:root {
  --mv-bg: #06111d;
  --mv-bg-2: #0a1a2c;
  --mv-card: rgba(9, 27, 45, 0.78);
  --mv-card-2: rgba(255, 255, 255, 0.06);
  --mv-text: #f8fbff;
  --mv-muted: #b8c7d9;
  --mv-blue: #0aa8ff;
  --mv-blue-2: #4ac8ff;
  --mv-line: rgba(255, 255, 255, 0.14);
  --mv-white: #ffffff;
  --mv-dark: #02070c;
  --mv-max: 1180px;
  --mv-radius: 22px;
  --mv-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--mv-text);
  background: var(--mv-bg);
  line-height: 1.6;
}
body.admin-bar .mv-site-header { top: 32px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }
::selection { background: var(--mv-blue); color: #fff; }

.mv-skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 9999;
  background: var(--mv-blue);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
}
.mv-skip-link:focus { left: 8px; }

.mv-container {
  width: min(100% - 40px, var(--mv-max));
  margin-inline: auto;
}

.mv-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}
.mv-site-header.is-scrolled {
  background: rgba(2, 7, 12, 0.76);
  backdrop-filter: blur(18px);
  border-color: rgba(255, 255, 255, 0.08);
}
.mv-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mv-brand { display: inline-flex; align-items: center; gap: 12px; }
.mv-brand img { width: 160px; height: auto; }
.mv-menu-toggle { display: none; }
.mv-primary-nav { display: flex; align-items: center; justify-content: flex-end; }
.mv-menu,
.mv-primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}
.mv-menu a,
.mv-primary-nav a {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f5f8fc;
  position: relative;
}
.mv-menu a::after,
.mv-primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--mv-blue);
  transition: width 0.22s ease;
}
.mv-menu a:hover::after,
.mv-primary-nav a:hover::after,
.mv-primary-nav .current-menu-item > a::after { width: 100%; }

.mv-hero {
  min-height: 900px;
  padding: 126px 0 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 7, 12, 0.96) 0%, rgba(2, 7, 12, 0.86) 42%, rgba(2, 7, 12, 0.48) 100%),
    var(--hero-bg) center/cover no-repeat;
}
.mv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(10,168,255,0.22), transparent 22%),
    radial-gradient(circle at 80% 15%, rgba(10,168,255,0.16), transparent 22%),
    linear-gradient(180deg, transparent 74%, var(--mv-bg) 100%);
  pointer-events: none;
}
.mv-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 650px;
  gap: 30px;
}
.mv-eyebrow {
  color: var(--mv-blue-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}
.mv-hero-title {
  font-family: Montserrat, Inter, sans-serif;
  margin: 0 0 18px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-size: clamp(3.8rem, 7.5vw, 7.6rem);
}
.mv-hero-title span {
  display: block;
  color: var(--mv-blue);
}
.mv-hero-role {
  display: inline-block;
  border-left: 3px solid var(--mv-blue);
  padding-left: 14px;
  margin: 0 0 22px;
  font-weight: 700;
  color: #eef7ff;
}
.mv-hero-lead {
  max-width: 640px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
  color: #ffffff;
  margin: 0 0 18px;
}
.mv-hero-copy {
  max-width: 620px;
  color: var(--mv-muted);
  margin: 0 0 32px;
  font-size: 1rem;
}
.mv-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.mv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  padding: 14px 22px;
  min-height: 50px;
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.mv-btn:hover { transform: translateY(-2px); border-color: var(--mv-blue); }
.mv-btn-primary { background: linear-gradient(135deg, var(--mv-blue), #0076ca); border-color: transparent; box-shadow: 0 16px 38px rgba(10,168,255,0.24); }
.mv-portrait-wrap {
  align-self: end;
  justify-self: center;
  position: relative;
  width: min(100%, 500px);
}
.mv-portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 10% -8% 0 6%;
  background: radial-gradient(circle, rgba(10,168,255,0.24), transparent 60%);
  filter: blur(12px);
}
.mv-portrait { position: relative; max-height: 720px; object-fit: contain; margin-left: auto; }
.mv-social-rail {
  position: absolute;
  top: 44%;
  right: 40px;
  display: grid;
  gap: 20px;
  z-index: 3;
}
.mv-social-rail a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--mv-blue-2);
  border: 1px solid rgba(74, 200, 255, 0.2);
  background: rgba(2, 7, 12, 0.42);
  font-weight: 900;
}
.mv-social-rail a:hover { background: var(--mv-blue); color: #fff; }
.mv-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2rem;
  opacity: .75;
}

.mv-specialties {
  position: relative;
  background: linear-gradient(180deg, #071827, #06111d);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 42px 0 34px;
}
.mv-specialty-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.mv-specialty-card {
  min-height: 210px;
  padding: 26px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}
.mv-specialty-card:first-child { border-left: 1px solid rgba(255, 255, 255, 0.09); }
.mv-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  color: var(--mv-blue-2);
  border-radius: 18px;
  border: 1px solid rgba(10,168,255,0.36);
  background: rgba(10,168,255,0.08);
  font-size: 1.9rem;
}
.mv-specialty-card h3 { margin: 0 0 10px; font-size: 1.05rem; line-height: 1.28; }
.mv-specialty-card p { margin: 0; color: var(--mv-muted); font-size: 0.88rem; line-height: 1.55; }

.mv-section { padding: 76px 0; }
.mv-section-dark { background: linear-gradient(180deg, #06111d 0%, #02070c 100%); }
.mv-section-light { color: #172033; background: linear-gradient(180deg, #f7fbff, #fff); }
.mv-section-title {
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.035em;
}
.mv-section-kicker {
  color: var(--mv-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .76rem;
  margin-bottom: 10px;
}
.mv-section-title::after,
.mv-title-line::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: var(--mv-blue);
  margin-top: 14px;
}
.mv-section-intro { color: var(--mv-muted); max-width: 720px; margin: 0 0 34px; }
.mv-section-light .mv-section-intro { color: #506070; }

.mv-split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.mv-blog-feature,
.mv-video-card,
.mv-post-card,
.mv-contact-card,
.mv-content-card {
  background: var(--mv-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--mv-radius);
  box-shadow: var(--mv-shadow);
  overflow: hidden;
}
.mv-blog-feature img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.mv-blog-feature-content { padding: 28px; }
.mv-blog-feature-content p { color: var(--mv-muted); }
.mv-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mv-video-card { border-radius: 16px; transition: transform .18s ease, border-color .18s ease; }
.mv-video-card:hover { transform: translateY(-4px); border-color: rgba(10,168,255,.4); }
.mv-video-thumb { position: relative; overflow: hidden; background: #08111a; }
.mv-video-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: .72; transition: transform .24s ease, opacity .24s ease; }
.mv-video-card:hover .mv-video-thumb img { transform: scale(1.04); opacity: .9; }
.mv-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.mv-play span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10, 168, 255, .92);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(10,168,255,.18);
  font-weight: 900;
}
.mv-video-body { padding: 18px; }
.mv-video-topic { color: var(--mv-blue-2); font-weight: 800; font-size: .78rem; margin-bottom: 8px; }
.mv-video-body h3 { margin: 0 0 9px; font-size: 1rem; line-height: 1.25; }
.mv-video-body p { color: var(--mv-muted); margin: 0; font-size: .86rem; }

.mv-cert-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.mv-cert {
  text-align: center;
  padding: 16px 10px;
  border-radius: 18px;
  background: rgba(0, 105, 180, 0.05);
  border: 1px solid rgba(3, 48, 86, 0.09);
}
.mv-cert strong { display: block; font-size: .82rem; color: #172033; line-height: 1.25; }
.mv-cert-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--mv-blue);
  background: rgba(10,168,255,.09);
  border: 1px solid rgba(10,168,255,.18);
  font-size: 1.8rem;
  font-weight: 900;
}

.mv-contact-cta {
  background:
    linear-gradient(90deg, rgba(2, 7, 12, 0.92), rgba(2, 7, 12, 0.78)),
    var(--logo-bg) left center/auto 100% no-repeat,
    #02070c;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mv-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  min-height: 270px;
}
.mv-contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.mv-contact-list a { color: #dbe8f6; }
.mv-contact-list a:hover { color: var(--mv-blue-2); }
.mv-contact-list span { color: var(--mv-blue-2); display: inline-block; width: 28px; }

.mv-site-footer { background: #02070c; color: #9fb0c2; padding: 24px 0; font-size: .9rem; }
.mv-footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.mv-footer-links { display: flex; gap: 28px; }
.mv-footer-links a:hover { color: var(--mv-blue-2); }

.mv-page-hero {
  padding: 150px 0 80px;
  background:
    linear-gradient(90deg, rgba(2, 7, 12, .94), rgba(2, 7, 12, .75)),
    var(--hero-bg) center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mv-page-title {
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  margin: 0 0 16px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.mv-page-title span { color: var(--mv-blue); }
.mv-page-lead { max-width: 760px; margin: 0; color: var(--mv-muted); font-size: 1.12rem; }

.mv-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mv-post-card { border-radius: 18px; }
.mv-post-card-content { padding: 24px; }
.mv-post-card h2, .mv-post-card h3 { margin: 0 0 12px; line-height: 1.2; }
.mv-post-card time { color: var(--mv-blue-2); font-weight: 800; font-size: .78rem; text-transform: uppercase; }
.mv-post-card p { color: var(--mv-muted); }
.mv-readmore { color: var(--mv-blue-2); font-weight: 800; }
.mv-pagination { margin-top: 42px; }

.mv-single { padding: 140px 0 90px; }
.mv-single article,
.mv-content-card { padding: clamp(28px, 5vw, 58px); }
.mv-single h1 { font-family: Montserrat, Inter, sans-serif; font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1.05; margin: 0 0 20px; }
.mv-single-meta { color: var(--mv-blue-2); font-weight: 800; margin-bottom: 34px; }
.mv-entry-content { color: #dfebf6; }
.mv-entry-content a { color: var(--mv-blue-2); text-decoration: underline; }
.mv-entry-content h2, .mv-entry-content h3 { color: #fff; margin-top: 1.7em; }
.mv-video-embed { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 20px; margin: 30px 0; background: #000; }
.mv-video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.mv-timeline { position: relative; display: grid; gap: 18px; }
.mv-timeline-item { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 24px; border-radius: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.mv-timeline-date { color: var(--mv-blue-2); font-weight: 900; }
.mv-timeline h3 { margin: 0 0 8px; }
.mv-timeline p { margin: 0; color: var(--mv-muted); }

.mv-contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: stretch; }
.mv-contact-card { padding: 34px; }
.mv-contact-card h2 { margin-top: 0; }
.mv-contact-card p, .mv-contact-card li { color: var(--mv-muted); }

@media (max-width: 1100px) {
  .mv-specialty-grid { grid-template-columns: repeat(3, 1fr); }
  .mv-specialty-card { border: 1px solid rgba(255, 255, 255, 0.09); }
  .mv-cert-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 900px) {
  body.admin-bar .mv-site-header { top: 46px; }
  .mv-header-inner { min-height: 74px; }
  .mv-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 12px;
  }
  .mv-primary-nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    background: rgba(2, 7, 12, 0.96);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    padding: 18px;
    display: none;
    box-shadow: var(--mv-shadow);
  }
  .mv-primary-nav.is-open { display: block; }
  .mv-menu, .mv-primary-nav ul { display: grid; gap: 14px; }
  .mv-hero { min-height: auto; padding-top: 110px; }
  .mv-hero-grid { grid-template-columns: 1fr; min-height: 0; padding-bottom: 40px; }
  .mv-portrait-wrap { max-width: 380px; }
  .mv-social-rail { display: none; }
  .mv-split-grid, .mv-contact-grid, .mv-contact-page-grid { grid-template-columns: 1fr; }
  .mv-video-grid, .mv-post-grid { grid-template-columns: 1fr; }
  .mv-footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .mv-container { width: min(100% - 28px, var(--mv-max)); }
  .mv-brand img { width: 132px; }
  .mv-hero-title { font-size: clamp(3.2rem, 16vw, 4.6rem); }
  .mv-actions { display: grid; }
  .mv-btn { width: 100%; }
  .mv-specialty-grid { grid-template-columns: 1fr; }
  .mv-cert-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-section { padding: 56px 0; }
  .mv-timeline-item { grid-template-columns: 1fr; }
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
