:root {
  --mv-navy: #06111f;
  --mv-blue: #155bff;
  --mv-light: #f2f4f7;
  --mv-charcoal: #111827;
  --mv-muted: #6b7280;
  --mv-white: #ffffff;
  --mv-border: rgba(242, 244, 247, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--mv-navy);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--mv-white);
}

body.mv-menu-open {
  overflow: hidden;
}

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

.mv-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding-top: 84px;
  background:
    radial-gradient(circle at 78% 26%, rgba(21, 91, 255, 0.17), transparent 31%),
    linear-gradient(135deg, #06111f 0%, #071321 58%, #06111f 100%),
    var(--mv-navy);
  isolation: isolate;
}

.mv-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(242, 244, 247, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 247, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(110deg, transparent 0%, #000 28%, #000 70%, transparent 100%);
}

.mv-hero::after {
  position: absolute;
  right: -16%;
  bottom: -36%;
  z-index: -1;
  width: 760px;
  height: 760px;
  content: "";
  border: 1px solid rgba(242, 244, 247, 0.07);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 244, 247, 0.06), transparent 64%);
}

.mv-hero__header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  min-height: 84px;
  border-bottom: 1px solid rgba(242, 244, 247, 0.09);
  background: rgba(6, 17, 31, 0.76);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mv-hero__header.is-scrolled {
  border-bottom-color: rgba(242, 244, 247, 0.14);
  background: rgba(6, 17, 31, 0.88);
  box-shadow: 0 14px 34px rgba(6, 17, 31, 0.16);
}

.mv-hero__header-inner,
.mv-hero__content {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.mv-hero__header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 34px;
}

.mv-hero__logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 156px;
}

.mv-hero__logo-placeholder {
  display: inline-flex;
  width: 132px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(242, 244, 247, 0.42);
  border-radius: 8px;
  background: rgba(242, 244, 247, 0.07);
  color: rgba(242, 244, 247, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.mv-hero__custom-logo {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 46px;
  object-fit: contain;
}

.mv-hero__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  margin-left: auto;
  color: rgba(242, 244, 247, 0.76);
  font-size: 0.96rem;
  font-weight: 500;
}

.mv-hero__nav a {
  position: relative;
  transition: color 180ms ease;
}

.mv-hero__nav a:hover,
.mv-hero__nav a:focus-visible {
  color: var(--mv-white);
}

.mv-hero__nav a.is-active {
  color: var(--mv-blue);
}

.mv-hero__nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--mv-blue);
  opacity: 0;
  transform: scaleX(0.64);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mv-hero__nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mv-hero__nav-cta,
.mv-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.mv-hero__nav-cta {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(242, 244, 247, 0.18);
  background: var(--mv-white);
  color: var(--mv-charcoal);
  font-size: 0.92rem;
}

.mv-hero__nav-cta:hover,
.mv-hero__cta:hover {
  transform: translateY(-2px);
}

.mv-hero__nav a:focus-visible,
.mv-hero__nav-cta:focus-visible,
.mv-hero__cta:focus-visible,
.mv-hero__menu-button:focus-visible {
  outline: 3px solid rgba(21, 91, 255, 0.45);
  outline-offset: 4px;
}

.mv-hero__menu-toggle,
.mv-hero__menu-button {
  display: none;
}

.mv-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  min-height: calc(760px - 84px);
  padding: 82px 0 86px;
}

.mv-hero__copy {
  max-width: 660px;
  animation: mv-fade-up 680ms ease both;
}

.mv-hero__eyebrow {
  margin: 0 0 22px;
  color: var(--mv-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mv-hero__title {
  max-width: 760px;
  margin: 0;
  color: var(--mv-white);
  font-size: clamp(3rem, 5.2vw, 5.65rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.mv-hero__subtitle {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(242, 244, 247, 0.74);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  font-weight: 400;
  line-height: 1.72;
}

.mv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.mv-hero__cta {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.98rem;
}

.mv-hero__cta--primary {
  background: var(--mv-blue);
  color: var(--mv-white);
  box-shadow: 0 18px 42px rgba(21, 91, 255, 0.28);
}

.mv-hero__cta--secondary {
  border-color: rgba(242, 244, 247, 0.22);
  background: rgba(242, 244, 247, 0.05);
  color: var(--mv-white);
}

.mv-hero__trust {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
  row-gap: 6px;
  align-items: center;
  margin: 30px 0 0;
  color: rgba(242, 244, 247, 0.64);
  font-size: 0.92rem;
  line-height: 1.7;
}

.mv-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.mv-hero__trust-item + .mv-hero__trust-item::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  content: "";
  border-radius: 50%;
  background: var(--mv-blue);
}

.mv-hero__visual {
  position: relative;
  min-height: 640px;
  animation: mv-fade-up 780ms 100ms ease both;
}

.mv-hero__dot-pattern {
  position: absolute;
  width: 184px;
  height: 184px;
  opacity: 0.32;
  background-image: radial-gradient(rgba(242, 244, 247, 0.72) 1px, transparent 1px);
  background-size: 18px 18px;
}

.mv-hero__dot-pattern--one {
  top: 12px;
  right: 14px;
}

.mv-hero__dot-pattern--two {
  bottom: 84px;
  left: 10px;
}

.mv-hero__orb {
  position: absolute;
  inset: 54px 34px 72px 70px;
  border: 1px solid rgba(242, 244, 247, 0.08);
  border-radius: 999px;
  background:
    radial-gradient(circle at 70% 26%, rgba(21, 91, 255, 0.18), transparent 22%),
    linear-gradient(145deg, rgba(242, 244, 247, 0.08), rgba(242, 244, 247, 0.025));
}

.mv-hero__grid {
  position: absolute;
  inset: 76px 12px 42px 20px;
  border-radius: 24px;
  background-image:
    linear-gradient(rgba(242, 244, 247, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 247, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 58% 50%, #000 0%, transparent 72%);
}

.mv-hero__research-card,
.mv-hero__chart-card {
  position: absolute;
  border: 1px solid rgba(242, 244, 247, 0.74);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--mv-charcoal);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.mv-hero__card-title,
.mv-hero__research-card p {
  display: block;
  margin: 0;
}

.mv-hero__card-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.mv-hero__research-card p {
  color: var(--mv-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.mv-hero__card-kicker {
  margin-bottom: 12px;
  color: var(--mv-blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mv-hero__research-card--protocol {
  top: 38px;
  left: 6px;
  width: 256px;
  padding: 24px;
}

.mv-hero__research-card--protocol span {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 11px;
  border-radius: 7px;
  background: var(--mv-light);
  color: var(--mv-charcoal);
  font-size: 0.76rem;
  font-weight: 800;
}

.mv-hero__research-card--data {
  top: 46px;
  right: 0;
  width: 236px;
  padding: 22px;
}

.mv-hero__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.mv-hero__card-top > strong:not(.mv-hero__card-title) {
  color: var(--mv-blue);
  font-size: 2.25rem;
  line-height: 0.95;
}

.mv-hero__card-top .mv-hero__card-title {
  max-width: 112px;
  color: var(--mv-charcoal);
  font-size: 0.98rem;
  line-height: 1.12;
}

.mv-hero__meter {
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--mv-light);
}

.mv-hero__meter span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--mv-blue);
}

.mv-hero__research-card--insight {
  right: 28px;
  bottom: 24px;
  width: 232px;
  padding: 22px;
}

.mv-hero__nodes {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.mv-hero__nodes i {
  width: 12px;
  height: 12px;
  border: 3px solid var(--mv-blue);
  border-radius: 50%;
}

.mv-hero__nodes i:nth-child(2) {
  position: relative;
  width: 18px;
  height: 18px;
  background: rgba(21, 91, 255, 0.12);
}

.mv-hero__nodes i:nth-child(2)::before,
.mv-hero__nodes i:nth-child(2)::after {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 1px;
  content: "";
  background: rgba(21, 91, 255, 0.42);
}

.mv-hero__nodes i:nth-child(2)::before {
  right: 16px;
}

.mv-hero__nodes i:nth-child(2)::after {
  left: 16px;
}

.mv-hero__chart-card {
  left: 56px;
  bottom: 175px;
  width: min(410px, calc(100% - 150px));
  padding: 22px 22px 16px;
}

.mv-hero__chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--mv-charcoal);
  font-weight: 800;
}

.mv-hero__chart-header small {
  color: var(--mv-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.mv-hero__chart-card svg {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes mv-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mv-hero__research-card--protocol {
    animation: mv-float 8s ease-in-out infinite;
  }

  .mv-hero__research-card--data {
    animation: mv-float 9s 600ms ease-in-out infinite;
  }

  .mv-hero__research-card--insight {
    animation: mv-float 8.5s 300ms ease-in-out infinite;
  }
}

@keyframes mv-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1060px) {
  .mv-hero__header-inner {
    gap: 20px;
  }

  .mv-hero__logo {
    min-width: 136px;
  }

  .mv-hero__nav {
    gap: 18px;
    font-size: 0.9rem;
  }

  .mv-hero__content {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .mv-hero__copy {
    max-width: 780px;
  }

  .mv-hero__visual {
    min-height: 640px;
  }
}

@media (max-width: 760px) {
  .mv-hero {
    min-height: auto;
    padding-top: 72px;
  }

  .mv-hero__header-inner,
  .mv-hero__content {
    width: min(100% - 32px, 1220px);
  }

  .mv-hero__header,
  .mv-hero__header-inner {
    min-height: 72px;
  }

  .mv-hero__logo {
    min-width: 0;
  }

  .mv-hero__logo-placeholder {
    width: 104px;
    height: 36px;
  }

  .mv-hero__menu-button {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(242, 244, 247, 0.16);
    border-radius: 8px;
    background: rgba(242, 244, 247, 0.05);
    cursor: pointer;
  }

  .mv-hero__menu-button[aria-expanded="true"] {
    border-color: rgba(21, 91, 255, 0.72);
    background: rgba(21, 91, 255, 0.16);
  }

  .mv-hero__menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--mv-white);
  }

  .mv-hero__nav,
  .mv-hero__nav-cta {
    position: absolute;
    right: 16px;
    left: 16px;
    display: none;
    border: 1px solid rgba(242, 244, 247, 0.12);
    background: rgba(6, 17, 31, 0.98);
  }

  .mv-hero__nav {
    top: 82px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 12px 12px 0 0;
  }

  .mv-hero__nav a {
    border-radius: 8px;
    padding: 13px 14px;
  }

  .mv-hero__nav a::after {
    right: 14px;
    bottom: 8px;
    left: 14px;
  }

  .mv-hero__nav-cta {
    top: 359px;
    min-height: 50px;
    border-top: 0;
    border-radius: 0 0 12px 12px;
    color: var(--mv-white);
  }

  .mv-hero__menu-toggle:checked ~ .mv-hero__nav,
  .mv-hero__menu-toggle:checked ~ .mv-hero__nav-cta {
    display: flex;
  }

  .mv-hero__content {
    gap: 42px;
    min-height: 0;
    padding: 54px 0 66px;
  }

  .mv-hero__title {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
    line-height: 1.02;
  }

  .mv-hero__subtitle {
    margin-top: 24px;
  }

  .mv-hero__actions {
    margin-top: 32px;
  }

  .mv-hero__cta {
    width: 100%;
  }

  .mv-hero__trust {
    align-items: flex-start;
  }

  .mv-hero__visual {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .mv-hero__research-card,
  .mv-hero__chart-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 12px;
    animation: none;
  }

  .mv-hero__research-card--protocol {
    padding: 22px;
  }

  .mv-hero__research-card--data {
    padding: 22px;
  }

  .mv-hero__research-card--insight {
    padding: 22px;
  }

  .mv-hero__chart-card {
    order: 3;
  }

  .mv-hero__research-card--insight {
    order: 4;
  }

  .mv-hero__orb,
  .mv-hero__grid,
  .mv-hero__dot-pattern {
    display: none;
  }
}

@media (max-width: 430px) {
  .mv-hero__content {
    padding-top: 44px;
  }

  .mv-hero__chart-card {
    padding-bottom: 12px;
  }

  .mv-hero__orb,
  .mv-hero__grid,
  .mv-hero__dot-pattern--two {
    display: none;
  }
}

.mv-research-overview {
  position: relative;
  overflow: hidden;
  padding: 108px 0 116px;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f2f4f7 58%, #ffffff 100%);
  color: var(--mv-charcoal);
  isolation: isolate;
}

.mv-research-overview__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.mv-research-overview__header {
  max-width: 720px;
}

.mv-research-overview__eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--mv-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mv-research-overview__eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mv-blue);
  box-shadow: 0 0 0 6px rgba(21, 91, 255, 0.09);
}

.mv-research-overview__title {
  max-width: 760px;
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(2.65rem, 4.2vw, 4.35rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.07;
}

.mv-research-overview__intro {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--mv-muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.68;
}

.mv-research-overview__decor {
  position: absolute;
  pointer-events: none;
}

.mv-research-overview__decor--dots {
  top: 32px;
  right: max(28px, calc((100vw - 1220px) / 2));
  width: min(440px, 36vw);
  height: 250px;
  opacity: 0.48;
  background-image: radial-gradient(rgba(21, 91, 255, 0.62) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: linear-gradient(110deg, transparent 0%, #000 22%, #000 80%, transparent 100%);
}

.mv-research-overview__decor--waves {
  right: -160px;
  bottom: -120px;
  width: 620px;
  height: 420px;
  opacity: 0.34;
  background:
    repeating-radial-gradient(
      circle at 20% 90%,
      transparent 0,
      transparent 20px,
      rgba(6, 17, 31, 0.1) 21px,
      transparent 22px
    );
}

.mv-research-overview__focus-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 24, 39, 0.07);
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 60px rgba(6, 17, 31, 0.05);
}

.mv-research-overview__focus-item {
  position: relative;
  display: flex;
  min-height: 144px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 18px 26px;
  color: rgba(6, 17, 31, 0.72);
  text-align: center;
}

.mv-research-overview__focus-item + .mv-research-overview__focus-item {
  border-left: 1px solid rgba(17, 24, 39, 0.1);
}

.mv-research-overview__focus-item--active {
  color: var(--mv-blue);
}

.mv-research-overview__focus-item--active::after {
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 20px;
  height: 3px;
  content: "";
  border-radius: 999px 999px 0 0;
  background: var(--mv-blue);
}

.mv-research-overview__focus-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--mv-navy);
}

.mv-research-overview__focus-item--active .mv-research-overview__focus-icon {
  background: rgba(21, 91, 255, 0.08);
  color: var(--mv-blue);
}

.mv-research-overview__focus-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.mv-research-overview__focus-label {
  color: currentColor;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.mv-research-overview__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.mv-research-overview__card {
  position: relative;
  min-height: 352px;
  padding: 28px 24px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 20px;
  background: var(--mv-white);
  box-shadow: 0 24px 70px rgba(6, 17, 31, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mv-research-overview__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(6, 17, 31, 0.1);
}

.mv-research-overview__card--featured {
  border-color: rgba(21, 91, 255, 0.52);
  box-shadow:
    0 26px 80px rgba(6, 17, 31, 0.08),
    0 0 0 1px rgba(21, 91, 255, 0.12);
}

.mv-research-overview__focus-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 8px 11px;
  border-radius: 7px;
  background: var(--mv-blue);
  color: var(--mv-white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.mv-research-overview__card-icon {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mv-light);
  color: var(--mv-navy);
}

.mv-research-overview__card--featured .mv-research-overview__card-icon {
  color: var(--mv-blue);
}

.mv-research-overview__card-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.mv-research-overview__card-title {
  margin: 26px 0 0;
  color: var(--mv-navy);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
  white-space: nowrap;
}

.mv-research-overview__card-rule {
  display: block;
  width: 44px;
  height: 3px;
  margin: 20px 0 24px;
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-research-overview__card-text {
  margin: 0;
  color: rgba(17, 24, 39, 0.74);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 1060px) {
  .mv-research-overview {
    padding: 82px 0 90px;
  }

  .mv-research-overview__decor--dots {
    width: 360px;
    opacity: 0.32;
  }

  .mv-research-overview__focus-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mv-research-overview__focus-item:nth-child(4) {
    border-left: 0;
  }

  .mv-research-overview__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .mv-research-overview__card {
    padding: 30px;
  }

  .mv-research-overview__card-title {
    font-size: clamp(1.18rem, 2vw, 1.36rem);
  }
}

@media (max-width: 760px) {
  .mv-research-overview {
    padding: 72px 0 80px;
  }

  .mv-research-overview__inner {
    width: min(100% - 32px, 1220px);
  }

  .mv-research-overview__title {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .mv-research-overview__intro {
    margin-top: 22px;
  }

  .mv-research-overview__decor--dots {
    top: 18px;
    right: -90px;
    width: 300px;
    height: 190px;
    opacity: 0.22;
  }

  .mv-research-overview__decor--waves {
    display: none;
  }

  .mv-research-overview__focus-row {
    display: flex;
    gap: 0;
    width: calc(100% + 32px);
    margin: 44px -16px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .mv-research-overview__focus-item {
    min-width: 158px;
    min-height: 128px;
    flex: 0 0 158px;
    padding: 22px 16px 24px;
    scroll-snap-align: start;
  }

  .mv-research-overview__focus-item:nth-child(4) {
    border-left: 1px solid rgba(17, 24, 39, 0.1);
  }

  .mv-research-overview__focus-icon {
    width: 52px;
    height: 52px;
  }

  .mv-research-overview__focus-icon svg {
    width: 43px;
    height: 43px;
  }

  .mv-research-overview__cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 44px;
  }

  .mv-research-overview__card {
    min-height: auto;
    padding: 24px;
    border-radius: 18px;
  }

  .mv-research-overview__focus-badge {
    top: 24px;
    right: 24px;
  }

  .mv-research-overview__card-title {
    margin-top: 24px;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-research-overview__card {
    transition: none;
  }

  .mv-research-overview__card:hover {
    transform: none;
  }
}

.mv-team {
  position: relative;
  overflow: hidden;
  padding: 108px 0 116px;
  background:
    radial-gradient(circle at 50% 0%, #ffffff 0%, transparent 42%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 46%, #f2f4f7 100%);
  color: var(--mv-charcoal);
  isolation: isolate;
}

.mv-team__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.mv-team__header {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.mv-team__eyebrow {
  margin: 0 0 18px;
  color: var(--mv-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mv-team__eyebrow::after {
  display: block;
  width: 42px;
  height: 2px;
  margin: 14px auto 0;
  content: "";
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-team__title {
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(2.6rem, 4.3vw, 4.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.mv-team__intro {
  max-width: 860px;
  margin: 26px auto 0;
  color: rgba(17, 24, 39, 0.74);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}

.mv-team__decor {
  position: absolute;
  pointer-events: none;
}

.mv-team__decor--dots-top {
  top: 72px;
  right: max(36px, calc((100vw - 1220px) / 2));
  width: min(300px, 26vw);
  height: 220px;
  opacity: 0.32;
  background-image: radial-gradient(rgba(21, 91, 255, 0.56) 1.3px, transparent 1.3px);
  background-size: 22px 22px;
  mask-image: linear-gradient(120deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
}

.mv-team__decor--dots-side {
  bottom: 150px;
  left: max(20px, calc((100vw - 1320px) / 2));
  width: 210px;
  height: 210px;
  opacity: 0.22;
  background-image: radial-gradient(rgba(21, 91, 255, 0.56) 1px, transparent 1px);
  background-size: 18px 18px;
}

.mv-team__decor--waves {
  top: -160px;
  left: -220px;
  width: 520px;
  height: 520px;
  opacity: 0.2;
  background:
    repeating-radial-gradient(
      circle at 70% 30%,
      transparent 0,
      transparent 28px,
      rgba(6, 17, 31, 0.1) 29px,
      transparent 30px
    );
}

.mv-team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  margin-top: 68px;
}

.mv-team__card {
  position: relative;
  display: flex;
  min-height: 660px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 22px;
  background: var(--mv-white);
  box-shadow: 0 28px 90px rgba(6, 17, 31, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mv-team__card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 91, 255, 0.18);
  box-shadow: 0 34px 100px rgba(6, 17, 31, 0.11);
}

.mv-team__image-wrap {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--mv-light);
}

.mv-team__image {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 360px;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9) 0 96px, transparent 97px),
    linear-gradient(135deg, rgba(21, 91, 255, 0.13), rgba(242, 244, 247, 0.94) 58%),
    var(--mv-light);
  color: rgba(6, 17, 31, 0.48);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mv-team__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.mv-team__image::before {
  position: absolute;
  top: 88px;
  left: 50%;
  width: 176px;
  height: 132px;
  content: "";
  border: 1px dashed rgba(6, 17, 31, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.38);
  transform: translateX(-50%);
}

.mv-team__image::after {
  position: absolute;
  right: 12%;
  bottom: -28px;
  left: 12%;
  height: 180px;
  content: "";
  border-radius: 999px 999px 0 0;
  background: rgba(6, 17, 31, 0.1);
}

.mv-team__image span,
.mv-team__picture-placeholder {
  position: relative;
  z-index: 1;
}

.mv-team__picture-placeholder {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  color: rgba(6, 17, 31, 0.48);
}

.mv-team__picture-placeholder svg {
  width: 120px;
  height: 92px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.mv-team__picture-placeholder span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mv-team__image--nikolaos {
  background:
    radial-gradient(circle at 54% 32%, rgba(255, 255, 255, 0.95) 0 58px, transparent 59px),
    linear-gradient(135deg, rgba(6, 17, 31, 0.08), rgba(21, 91, 255, 0.11) 62%),
    var(--mv-light);
}

.mv-team__badge {
  position: absolute;
  top: 318px;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--mv-white);
  border-radius: 50%;
  background: var(--mv-navy);
  color: var(--mv-white);
  box-shadow: 0 18px 38px rgba(6, 17, 31, 0.18);
  transform: translateX(-50%);
}

.mv-team__badge svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mv-team__badge svg path:nth-child(2),
.mv-team__badge svg circle:nth-child(2) {
  stroke: var(--mv-blue);
}

.mv-team__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 58px 42px 42px;
  text-align: center;
}

.mv-team__name {
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(1.7rem, 2.6vw, 2.05rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.14;
}

.mv-team__role {
  margin: 12px 0 0;
  color: var(--mv-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mv-team__divider {
  display: block;
  width: 58px;
  height: 3px;
  margin: 22px auto 24px;
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-team__bio {
  max-width: 520px;
  margin: 0;
  color: rgba(17, 24, 39, 0.74);
  font-size: 1rem;
  line-height: 1.68;
}

@media (max-width: 1060px) {
  .mv-team {
    padding: 82px 0 90px;
  }

  .mv-team__grid {
    gap: 24px;
  }

  .mv-team__card {
    min-height: 620px;
  }

  .mv-team__image-wrap,
  .mv-team__image,
  .mv-team__photo {
    min-height: 320px;
  }

  .mv-team__badge {
    top: 278px;
  }

  .mv-team__content {
    padding: 56px 28px 34px;
  }
}

@media (max-width: 820px) {
  .mv-team__grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .mv-team {
    padding: 72px 0 80px;
  }

  .mv-team__inner {
    width: min(100% - 32px, 1220px);
  }

  .mv-team__title {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .mv-team__intro {
    margin-top: 22px;
  }

  .mv-team__grid {
    gap: 22px;
    margin-top: 52px;
  }

  .mv-team__card {
    min-height: auto;
    border-radius: 18px;
  }

  .mv-team__image-wrap,
  .mv-team__image,
  .mv-team__photo {
    min-height: 300px;
  }

  .mv-team__badge {
    top: 260px;
    width: 68px;
    height: 68px;
  }

  .mv-team__badge svg {
    width: 35px;
    height: 35px;
  }

  .mv-team__content {
    padding: 52px 24px 30px;
  }

  .mv-team__decor--dots-top {
    top: 40px;
    right: -86px;
    width: 260px;
    opacity: 0.2;
  }

  .mv-team__decor--dots-side,
  .mv-team__decor--waves {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-team__card {
    transition: none;
  }

  .mv-team__card:hover {
    transform: none;
  }
}

.mv-timeline {
  position: relative;
  overflow: hidden;
  padding: 112px 0 124px;
  background:
    radial-gradient(circle at 50% 0%, #ffffff 0%, transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f2f4f7 54%, #ffffff 100%);
  color: var(--mv-charcoal);
  isolation: isolate;
}

.mv-timeline__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.mv-timeline__header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.mv-timeline__eyebrow {
  margin: 0 0 18px;
  color: var(--mv-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mv-timeline__eyebrow::after {
  display: block;
  width: 42px;
  height: 2px;
  margin: 14px auto 0;
  content: "";
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-timeline__title {
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(2.55rem, 4.1vw, 4.05rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.mv-timeline__intro {
  max-width: 820px;
  margin: 26px auto 0;
  color: rgba(17, 24, 39, 0.68);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.72;
}

.mv-timeline__decor {
  position: absolute;
  pointer-events: none;
}

.mv-timeline__decor--dots-top {
  top: 22px;
  right: max(24px, calc((100vw - 1260px) / 2));
  width: min(320px, 26vw);
  height: 300px;
  opacity: 0.32;
  background-image: radial-gradient(rgba(21, 91, 255, 0.58) 1.25px, transparent 1.25px);
  background-size: 20px 20px;
  mask-image: linear-gradient(115deg, transparent 0%, #000 22%, #000 76%, transparent 100%);
}

.mv-timeline__decor--dots-bottom {
  bottom: 34px;
  left: max(16px, calc((100vw - 1320px) / 2));
  width: 260px;
  height: 260px;
  opacity: 0.24;
  background-image: radial-gradient(rgba(21, 91, 255, 0.52) 1px, transparent 1px);
  background-size: 18px 18px;
}

.mv-timeline__decor--waves {
  right: -220px;
  bottom: -210px;
  width: 620px;
  height: 520px;
  opacity: 0.22;
  background:
    repeating-radial-gradient(
      circle at 18% 86%,
      transparent 0,
      transparent 28px,
      rgba(6, 17, 31, 0.11) 29px,
      transparent 30px
    );
}

.mv-timeline__list {
  position: relative;
  display: grid;
  gap: 92px;
  margin: 82px 0 0;
  padding: 0;
  list-style: none;
}

.mv-timeline__list::before {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(6, 17, 31, 0.16);
  transform: translateX(-50%);
}

.mv-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
  align-items: center;
  min-height: 170px;
}

.mv-timeline__node {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(6, 17, 31, 0.14);
  border-radius: 50%;
  background: var(--mv-white);
  box-shadow: 0 12px 32px rgba(6, 17, 31, 0.08);
  transform: translate(-50%, -50%);
}

.mv-timeline__node::after {
  position: absolute;
  inset: 13px;
  content: "";
  border-radius: 50%;
  background: var(--mv-blue);
  box-shadow: 0 0 0 6px rgba(21, 91, 255, 0.1);
}

.mv-timeline__item--featured .mv-timeline__node {
  border-color: rgba(21, 91, 255, 0.38);
  box-shadow:
    0 14px 34px rgba(6, 17, 31, 0.1),
    0 0 0 6px rgba(21, 91, 255, 0.06);
}

.mv-timeline__meta {
  display: grid;
  gap: 5px;
  align-self: center;
}

.mv-timeline__year {
  color: var(--mv-blue);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.mv-timeline__location {
  max-width: 150px;
  color: rgba(17, 24, 39, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.mv-timeline__card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 158px;
  padding: 28px 30px;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(6, 17, 31, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mv-timeline__card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 91, 255, 0.18);
  box-shadow: 0 28px 84px rgba(6, 17, 31, 0.11);
}

.mv-timeline__card--featured {
  border-left: 4px solid var(--mv-blue);
  box-shadow:
    0 24px 78px rgba(6, 17, 31, 0.09),
    0 0 0 1px rgba(21, 91, 255, 0.08);
}

.mv-timeline__icon {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mv-light);
  color: var(--mv-blue);
}

.mv-timeline__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.mv-timeline__icon--monogram {
  border: 1px dashed rgba(21, 91, 255, 0.45);
  background: rgba(21, 91, 255, 0.08);
  color: var(--mv-blue);
}

.mv-timeline__icon--monogram .mv-timeline__svg-placeholder {
  width: 42px;
  height: 42px;
  stroke-width: 2;
}

.mv-timeline__card-title {
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(1.28rem, 1.8vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
}

.mv-timeline__card-rule {
  display: block;
  width: 42px;
  height: 3px;
  margin: 14px 0 16px;
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-timeline__card-text {
  margin: 0;
  color: rgba(17, 24, 39, 0.7);
  font-size: 0.94rem;
  line-height: 1.58;
}

.mv-timeline__item--left .mv-timeline__card {
  grid-column: 1;
}

.mv-timeline__item--left .mv-timeline__meta {
  grid-column: 3;
  justify-self: start;
  padding-left: 22px;
}

.mv-timeline__item--right .mv-timeline__card {
  grid-column: 3;
}

.mv-timeline__item--right .mv-timeline__meta {
  grid-column: 1;
  justify-self: end;
  padding-right: 22px;
  text-align: right;
}

.mv-timeline__item--right .mv-timeline__location {
  margin-left: auto;
}

@media (max-width: 1060px) {
  .mv-timeline {
    padding: 88px 0 96px;
  }

  .mv-timeline__list {
    gap: 70px;
  }

  .mv-timeline__item {
    grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  }

  .mv-timeline__card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .mv-timeline__list {
    gap: 34px;
    margin-top: 64px;
    padding-left: 64px;
  }

  .mv-timeline__list::before {
    left: 22px;
  }

  .mv-timeline__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }

  .mv-timeline__node {
    top: 4px;
    left: -42px;
    width: 34px;
    height: 34px;
    transform: translate(-50%, 0);
  }

  .mv-timeline__node::after {
    inset: 11px;
  }

  .mv-timeline__item--left .mv-timeline__card,
  .mv-timeline__item--right .mv-timeline__card,
  .mv-timeline__item--left .mv-timeline__meta,
  .mv-timeline__item--right .mv-timeline__meta {
    grid-column: auto;
    justify-self: stretch;
    padding: 0;
    text-align: left;
  }

  .mv-timeline__item--right .mv-timeline__location {
    margin-left: 0;
  }

  .mv-timeline__meta {
    padding-top: 2px;
  }

  .mv-timeline__location {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .mv-timeline {
    padding: 76px 0 84px;
  }

  .mv-timeline__inner {
    width: min(100% - 32px, 1220px);
  }

  .mv-timeline__title {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .mv-timeline__intro {
    margin-top: 22px;
  }

  .mv-timeline__decor--dots-top {
    right: -90px;
    width: 260px;
    opacity: 0.22;
  }

  .mv-timeline__decor--dots-bottom,
  .mv-timeline__decor--waves {
    display: none;
  }

  .mv-timeline__card {
    min-height: 0;
    padding: 30px 28px;
    border-radius: 16px;
  }

  .mv-timeline__card > div {
    padding-inline: 10px;
  }

  .mv-timeline__card-title {
    margin-top: 6px;
  }
}

@media (max-width: 430px) {
  .mv-timeline__list {
    padding-left: 58px;
  }

  .mv-timeline__list::before {
    left: 20px;
  }

  .mv-timeline__node {
    left: -38px;
  }

  .mv-timeline__card {
    grid-template-columns: 1fr;
    padding: 32px 26px;
  }

  .mv-timeline__card > div {
    padding-inline: 12px;
  }

  .mv-timeline__card-title {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-timeline__card {
    transition: none;
  }

  .mv-timeline__card:hover {
    transform: none;
  }
}

.mv-innovation {
  position: relative;
  overflow: hidden;
  padding: 122px 0 124px;
  background: var(--mv-white);
  color: var(--mv-charcoal);
  isolation: isolate;
}

.mv-innovation__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(56px, 7vw, 94px);
  align-items: center;
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.mv-innovation__content {
  max-width: 570px;
}

.mv-innovation__eyebrow {
  margin: 0 0 16px;
  color: var(--mv-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mv-innovation__title {
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(2.75rem, 4.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.06;
}

.mv-innovation__intro {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(17, 24, 39, 0.7);
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.7;
}

.mv-innovation__features {
  position: relative;
  display: grid;
  gap: 34px;
  margin-top: 46px;
}

.mv-innovation__connector {
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 36px;
  width: 1px;
  background: rgba(17, 24, 39, 0.12);
}

.mv-innovation__connector::before,
.mv-innovation__connector::after {
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--mv-blue);
  transform: translateX(-50%);
}

.mv-innovation__connector::before {
  top: 36%;
}

.mv-innovation__connector::after {
  top: 72%;
}

.mv-innovation__feature {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.mv-innovation__feature-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 50%;
  background: var(--mv-white);
  color: var(--mv-blue);
  box-shadow: 0 18px 44px rgba(6, 17, 31, 0.08);
}

.mv-innovation__feature-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.mv-innovation__feature-title {
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(1.28rem, 1.8vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.22;
}

.mv-innovation__feature-text {
  margin: 10px 0 0;
  color: rgba(17, 24, 39, 0.7);
  font-size: 0.98rem;
  line-height: 1.66;
}

.mv-innovation__actions {
  margin-top: 46px;
}

.mv-innovation__button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 9px;
  background: var(--mv-blue);
  color: var(--mv-white);
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(21, 91, 255, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.mv-innovation__button:hover,
.mv-innovation__button:focus-visible {
  background: #0f4ee8;
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(21, 91, 255, 0.3);
}

.mv-innovation__button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mv-innovation__visual {
  position: relative;
  min-height: 610px;
}

.mv-innovation__image-wrap {
  position: absolute;
  inset: 84px 0 78px 34px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.94), transparent 36%),
    linear-gradient(135deg, #f2f4f7 0%, #ffffff 58%, #f2f4f7 100%);
  box-shadow: 0 30px 90px rgba(6, 17, 31, 0.09);
}

.mv-innovation__image {
  position: relative;
  height: 100%;
  min-height: 448px;
}

.mv-innovation__dashed-frame {
  position: absolute;
  inset: 42px 38px 36px 0;
  border: 3px dashed rgba(6, 17, 31, 0.88);
  border-radius: 36px;
  transform: rotate(8deg);
}

.mv-innovation__visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 54% 48%, #000 0%, transparent 72%);
}

.mv-innovation__visual-card {
  position: absolute;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--mv-navy);
  box-shadow: 0 24px 70px rgba(6, 17, 31, 0.1);
}

.mv-innovation__visual-card span {
  display: block;
  color: var(--mv-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mv-innovation__visual-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.mv-innovation__visual-card--protocol {
  top: 52px;
  left: 42px;
  width: 230px;
  padding: 22px;
}

.mv-innovation__visual-card--protocol i {
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-innovation__visual-card--data {
  top: 138px;
  right: 42px;
  width: 240px;
  padding: 22px;
}

.mv-innovation__visual-card--data strong {
  color: var(--mv-blue);
  font-size: 2.35rem;
}

.mv-innovation__visual-card--data svg {
  display: block;
  width: 100%;
  height: 72px;
  margin-top: 8px;
}

.mv-innovation__visual-card--data path {
  fill: none;
  stroke: var(--mv-blue);
  stroke-linecap: round;
  stroke-width: 4;
}

.mv-innovation__visual-card--nodes {
  right: 96px;
  bottom: 18px;
  width: 220px;
  padding: 22px;
}

.mv-innovation__visual-card--nodes div {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.mv-innovation__visual-card--nodes b {
  width: 16px;
  height: 16px;
  border: 3px solid var(--mv-blue);
  border-radius: 50%;
}

.mv-innovation__visual-card--nodes b:nth-child(2) {
  position: relative;
  width: 22px;
  height: 22px;
  background: rgba(21, 91, 255, 0.1);
}

.mv-innovation__visual-card--nodes b:nth-child(2)::before,
.mv-innovation__visual-card--nodes b:nth-child(2)::after {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  content: "";
  background: rgba(21, 91, 255, 0.36);
}

.mv-innovation__visual-card--nodes b:nth-child(2)::before {
  right: 18px;
}

.mv-innovation__visual-card--nodes b:nth-child(2)::after {
  left: 18px;
}

.mv-innovation__visual-mark {
  position: absolute;
  bottom: 82px;
  left: 70px;
  display: inline-flex;
  width: 104px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(6, 17, 31, 0.32);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(6, 17, 31, 0.58);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 22px 60px rgba(6, 17, 31, 0.1);
}

.mv-innovation__visual-mark span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mv-innovation__visual-mark-image {
  display: block;
  width: auto;
  max-width: 76px;
  max-height: 48px;
  object-fit: contain;
}

.mv-innovation__decor {
  position: absolute;
  pointer-events: none;
}

.mv-innovation__decor--arc {
  top: 12%;
  left: -360px;
  width: 620px;
  height: 620px;
  border: 74px solid rgba(242, 244, 247, 0.86);
  border-radius: 50%;
}

.mv-innovation__decor--dots-top {
  top: 106px;
  right: max(28px, calc((100vw - 1240px) / 2));
  width: 240px;
  height: 180px;
  opacity: 0.25;
  background-image: radial-gradient(rgba(21, 91, 255, 0.54) 1.3px, transparent 1.3px);
  background-size: 20px 20px;
}

.mv-innovation__decor--dots-bottom {
  right: max(44px, calc((100vw - 1240px) / 2));
  bottom: 84px;
  width: 190px;
  height: 150px;
  opacity: 0.2;
  background-image: radial-gradient(rgba(21, 91, 255, 0.5) 1.1px, transparent 1.1px);
  background-size: 18px 18px;
}

@media (prefers-reduced-motion: no-preference) {
  .mv-innovation__visual-card--protocol,
  .mv-innovation__visual-card--nodes {
    animation: mv-innovation-float 8s ease-in-out infinite;
  }

  .mv-innovation__visual-card--data {
    animation: mv-innovation-float 9s 400ms ease-in-out infinite;
  }
}

@keyframes mv-innovation-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1060px) {
  .mv-innovation {
    padding: 88px 0 96px;
  }

  .mv-innovation__inner {
    grid-template-columns: 1fr;
  }

  .mv-innovation__content {
    max-width: 760px;
  }

  .mv-innovation__visual {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .mv-innovation {
    padding: 76px 0 84px;
  }

  .mv-innovation__inner {
    width: min(100% - 32px, 1220px);
    gap: 44px;
  }

  .mv-innovation__title {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .mv-innovation__features {
    gap: 28px;
    margin-top: 38px;
  }

  .mv-innovation__feature {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
  }

  .mv-innovation__feature-icon {
    width: 58px;
    height: 58px;
  }

  .mv-innovation__feature-icon svg {
    width: 31px;
    height: 31px;
  }

  .mv-innovation__connector {
    left: 29px;
  }

  .mv-innovation__button {
    width: 100%;
  }

  .mv-innovation__visual {
    min-height: 620px;
  }

  .mv-innovation__image-wrap {
    position: relative;
    inset: auto;
    min-height: 560px;
  }

  .mv-innovation__dashed-frame {
    inset: 26px 16px 18px 6px;
    border-width: 2px;
    border-radius: 26px;
    transform: rotate(4deg);
  }

  .mv-innovation__visual-card--protocol,
  .mv-innovation__visual-card--data,
  .mv-innovation__visual-card--nodes {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin: 16px;
    animation: none;
  }

  .mv-innovation__visual-mark {
    position: relative;
    bottom: auto;
    left: auto;
    width: 96px;
    height: 64px;
    margin: 16px;
  }

  .mv-innovation__decor--arc {
    display: none;
  }

  .mv-innovation__decor--dots-top {
    right: -88px;
    opacity: 0.16;
  }

  .mv-innovation__decor--dots-bottom {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-innovation__button,
  .mv-innovation__visual-card {
    transition: none;
    animation: none;
  }

  .mv-innovation__button:hover,
  .mv-innovation__button:focus-visible {
    transform: none;
  }
}

.mv-metrics-cta {
  padding: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f4f7 100%);
  color: var(--mv-white);
}

.mv-metrics-cta__inner {
  width: 100%;
  margin: 0 auto;
}

.mv-metrics-cta__panel {
  position: relative;
  overflow: hidden;
  padding: 88px 72px 92px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(21, 91, 255, 0.32), transparent 34%),
    radial-gradient(circle at 50% 105%, rgba(21, 91, 255, 0.18), transparent 38%),
    linear-gradient(135deg, #06111f 0%, #071a36 48%, #06111f 100%);
  box-shadow:
    0 28px 90px rgba(6, 17, 31, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.mv-metrics-cta__panel::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(242, 244, 247, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 247, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(105deg, #000 0%, transparent 54%);
}

.mv-metrics-cta__decor {
  position: absolute;
  pointer-events: none;
}

.mv-metrics-cta__decor--waves {
  top: -190px;
  bottom: -160px;
  left: -280px;
  width: 620px;
  opacity: 0.28;
  background:
    repeating-radial-gradient(
      ellipse at 80% 48%,
      transparent 0,
      transparent 20px,
      rgba(21, 91, 255, 0.34) 21px,
      transparent 22px
    );
}

.mv-metrics-cta__decor--dots-top,
.mv-metrics-cta__decor--dots-bottom {
  right: 58px;
  width: 180px;
  height: 160px;
  opacity: 0.34;
  background-image: radial-gradient(rgba(21, 91, 255, 0.7) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}

.mv-metrics-cta__decor--dots-top {
  top: 76px;
}

.mv-metrics-cta__decor--dots-bottom {
  right: 92px;
  bottom: 62px;
  opacity: 0.28;
}

.mv-metrics-cta__header,
.mv-metrics-cta__grid,
.mv-metrics-cta__actions {
  position: relative;
  z-index: 1;
}

.mv-metrics-cta__header {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.mv-metrics-cta__eyebrow {
  margin: 0 0 20px;
  color: var(--mv-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mv-metrics-cta__title {
  max-width: 860px;
  margin: 0 auto;
  color: var(--mv-white);
  font-size: clamp(2.55rem, 4.5vw, 4.45rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.mv-metrics-cta__intro {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.mv-metrics-cta__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  margin-top: 66px;
}

.mv-metrics-cta__item {
  text-align: center;
}

.mv-metrics-cta__icon {
  display: inline-flex;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--mv-white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 52px rgba(6, 17, 31, 0.22);
}

.mv-metrics-cta__icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mv-metrics-cta__number {
  min-height: 1.1em;
  margin: 30px 0 0;
  color: var(--mv-white);
  font-size: clamp(2.35rem, 3.4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  text-shadow: 0 10px 36px rgba(255, 255, 255, 0.08);
}

.mv-metrics-cta__rule {
  display: block;
  width: 42px;
  height: 4px;
  margin: 18px auto 22px;
  border-radius: 999px;
  background: var(--mv-blue);
  box-shadow: 0 0 22px rgba(21, 91, 255, 0.52);
}

.mv-metrics-cta__label {
  margin: 0;
  color: var(--mv-white);
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.24;
}

.mv-metrics-cta__description {
  max-width: 300px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.58;
}

.mv-metrics-cta__actions {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.mv-metrics-cta__button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border-radius: 9px;
  background: var(--mv-blue);
  color: var(--mv-white);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 20px 48px rgba(21, 91, 255, 0.32);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mv-metrics-cta__button:hover,
.mv-metrics-cta__button:focus-visible {
  background: #0f4ee8;
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(21, 91, 255, 0.4);
}

.mv-metrics-cta__button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@media (max-width: 1060px) {
  .mv-metrics-cta {
    padding: 0;
  }

  .mv-metrics-cta__panel {
    padding: 76px 44px 80px;
  }

  .mv-metrics-cta__grid {
    gap: 26px;
  }
}

@media (max-width: 820px) {
  .mv-metrics-cta__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .mv-metrics-cta {
    padding: 0;
  }

  .mv-metrics-cta__inner {
    width: 100%;
  }

  .mv-metrics-cta__panel {
    padding: 54px 24px 58px;
    border-radius: 0;
  }

  .mv-metrics-cta__title {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .mv-metrics-cta__grid {
    margin-top: 52px;
  }

  .mv-metrics-cta__number {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .mv-metrics-cta__button {
    width: 100%;
  }

  .mv-metrics-cta__decor--waves {
    left: -380px;
    opacity: 0.18;
  }

  .mv-metrics-cta__decor--dots-top {
    top: 42px;
    right: -76px;
    opacity: 0.22;
  }

  .mv-metrics-cta__decor--dots-bottom {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-metrics-cta__button {
    transition: none;
  }

  .mv-metrics-cta__button:hover,
  .mv-metrics-cta__button:focus-visible {
    transform: none;
  }
}

.mv-service-framework {
  position: relative;
  overflow: hidden;
  padding: 122px 0 126px;
  background:
    radial-gradient(circle at 78% 76%, rgba(242, 244, 247, 0.86), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 52%, #ffffff 100%);
  color: var(--mv-charcoal);
  isolation: isolate;
}

.mv-service-framework__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.mv-service-framework__top {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(58px, 7vw, 92px);
  align-items: center;
}

.mv-service-framework__content {
  max-width: 650px;
}

.mv-service-framework__eyebrow {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--mv-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mv-service-framework__eyebrow::after {
  width: 42px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-service-framework__eyebrow::before {
  width: 5px;
  height: 5px;
  order: 2;
  content: "";
  border-radius: 50%;
  background: var(--mv-blue);
}

.mv-service-framework__title {
  max-width: 660px;
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(2.65rem, 4.2vw, 4.1rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.mv-service-framework__intro {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(17, 24, 39, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.68;
}

.mv-service-framework__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.mv-service-framework__card {
  min-height: 212px;
  padding: 26px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(6, 17, 31, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mv-service-framework__card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 91, 255, 0.18);
  box-shadow: 0 28px 82px rgba(6, 17, 31, 0.1);
}

.mv-service-framework__card--featured {
  background:
    radial-gradient(circle at 82% 12%, rgba(21, 91, 255, 0.36), transparent 42%),
    linear-gradient(135deg, #06111f 0%, #0a2f78 100%);
  color: var(--mv-white);
}

.mv-service-framework__card-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mv-navy);
  color: var(--mv-white);
}

.mv-service-framework__card--featured .mv-service-framework__card-icon {
  background: rgba(255, 255, 255, 0.94);
  color: var(--mv-blue);
}

.mv-service-framework__card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.mv-service-framework__card-title {
  margin: 22px 0 0;
  color: var(--mv-navy);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.22;
}

.mv-service-framework__card--featured .mv-service-framework__card-title {
  color: var(--mv-white);
}

.mv-service-framework__card-text {
  margin: 12px 0 0;
  color: rgba(17, 24, 39, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.mv-service-framework__card--featured .mv-service-framework__card-text {
  color: rgba(255, 255, 255, 0.82);
}

.mv-service-framework__chart {
  justify-self: center;
  width: min(100%, 480px);
}

.mv-service-framework__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
  margin-bottom: 22px;
}

.mv-service-framework__legend-item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--mv-charcoal);
  font-size: 0.84rem;
  font-weight: 700;
}

.mv-service-framework__legend-item i {
  width: 28px;
  height: 10px;
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-service-framework__legend-item:nth-child(2) i {
  background: var(--mv-navy);
}

.mv-service-framework__legend-item:nth-child(3) i {
  background: #d9dee7;
}

.mv-service-framework__chart-wrap {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.mv-service-framework__chart-wrap svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.mv-service-framework__ring-base {
  fill: none;
  stroke: rgba(17, 24, 39, 0.06);
  stroke-width: 28;
}

.mv-service-framework__ring {
  fill: none;
  stroke-linecap: butt;
  stroke-width: 28;
  transform-origin: center;
}

.mv-service-framework__ring--blue {
  stroke: var(--mv-blue);
  stroke-dasharray: 530 792;
}

.mv-service-framework__ring--navy {
  stroke: rgba(6, 17, 31, 0.74);
  stroke-dasharray: 330 603;
  stroke-dashoffset: -124;
}

.mv-service-framework__ring--grey {
  stroke: #d9dee7;
  stroke-dasharray: 260 415;
  stroke-dashoffset: -224;
}

.mv-service-framework__chart-center {
  position: absolute;
  inset: 28%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mv-white);
  text-align: center;
}

.mv-service-framework__chart-center strong {
  max-width: 130px;
  color: var(--mv-navy);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.mv-service-framework__chart-center span {
  max-width: 132px;
  margin-top: 8px;
  color: var(--mv-muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
}

.mv-service-framework__chart-note {
  position: relative;
  max-width: 420px;
  margin: 32px auto 0;
  padding-left: 18px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 0.95rem;
  line-height: 1.58;
}

.mv-service-framework__chart-note::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 3px;
  content: "";
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-service-framework__bottom {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
  gap: clamp(58px, 7vw, 92px);
  align-items: center;
  margin-top: 118px;
}

.mv-service-framework__visual {
  position: relative;
  min-height: 430px;
}

.mv-service-framework__image-wrap {
  position: absolute;
  inset: 28px 58px 40px 18px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.96), transparent 40%),
    linear-gradient(135deg, #f2f4f7 0%, #ffffff 58%, #edf1f7 100%);
  box-shadow: 0 28px 90px rgba(6, 17, 31, 0.08);
}

.mv-service-framework__dashed-frame {
  position: absolute;
  inset: 0 30px 20px 0;
  border: 3px dashed rgba(6, 17, 31, 0.88);
  border-radius: 34px;
  transform: rotate(-7deg);
}

.mv-service-framework__image {
  position: relative;
  height: 100%;
  min-height: 360px;
}

.mv-service-framework__image-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 54% 48%, #000 0%, transparent 74%);
}

.mv-service-framework__image-card {
  position: absolute;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 22px 70px rgba(6, 17, 31, 0.1);
}

.mv-service-framework__image-card span {
  display: block;
  color: var(--mv-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mv-service-framework__image-card strong {
  display: block;
  margin-top: 8px;
  color: var(--mv-navy);
  font-size: 1.18rem;
  line-height: 1.18;
}

.mv-service-framework__image-card--protocol {
  top: 42px;
  left: 32px;
  width: 216px;
  padding: 20px;
}

.mv-service-framework__image-card--signal {
  right: 28px;
  bottom: 32px;
  width: 230px;
  padding: 20px;
}

.mv-service-framework__image-card--signal div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: end;
  height: 86px;
  margin-top: 16px;
}

.mv-service-framework__image-card--signal i {
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, rgba(21, 91, 255, 0.82), var(--mv-blue));
}

.mv-service-framework__image-card--signal i:nth-child(1) {
  height: 22%;
}

.mv-service-framework__image-card--signal i:nth-child(2) {
  height: 38%;
}

.mv-service-framework__image-card--signal i:nth-child(3) {
  height: 56%;
}

.mv-service-framework__image-card--signal i:nth-child(4) {
  height: 72%;
}

.mv-service-framework__image-card--signal i:nth-child(5) {
  height: 92%;
}

.mv-service-framework__image-card--nodes {
  left: 70px;
  bottom: 72px;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
}

.mv-service-framework__image-card--nodes b {
  width: 15px;
  height: 15px;
  border: 3px solid var(--mv-blue);
  border-radius: 50%;
}

.mv-service-framework__image-card--nodes b:nth-child(2) {
  position: relative;
  width: 22px;
  height: 22px;
  background: rgba(21, 91, 255, 0.1);
}

.mv-service-framework__image-card--nodes b:nth-child(2)::before,
.mv-service-framework__image-card--nodes b:nth-child(2)::after {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  content: "";
  background: rgba(21, 91, 255, 0.34);
}

.mv-service-framework__image-card--nodes b:nth-child(2)::before {
  right: 18px;
}

.mv-service-framework__image-card--nodes b:nth-child(2)::after {
  left: 18px;
}

.mv-service-framework__bottom-content {
  max-width: 620px;
}

.mv-service-framework__bottom-title {
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(2.3rem, 3.7vw, 3.65rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.mv-service-framework__bottom-rule {
  display: block;
  width: 64px;
  height: 3px;
  margin: 24px 0 24px;
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-service-framework__bottom-text {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  font-size: 1rem;
  line-height: 1.72;
}

.mv-service-framework__button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  padding: 0 24px;
  border-radius: 9px;
  background: var(--mv-blue);
  color: var(--mv-white);
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(21, 91, 255, 0.24);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mv-service-framework__button:hover,
.mv-service-framework__button:focus-visible {
  background: #0f4ee8;
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(21, 91, 255, 0.3);
}

.mv-service-framework__button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mv-service-framework__decor {
  position: absolute;
  pointer-events: none;
}

.mv-service-framework__decor--arc-left {
  top: -120px;
  left: -360px;
  width: 610px;
  height: 610px;
  border: 72px solid rgba(242, 244, 247, 0.86);
  border-radius: 50%;
}

.mv-service-framework__decor--arc-right {
  right: -320px;
  bottom: -210px;
  width: 580px;
  height: 580px;
  border: 76px solid rgba(242, 244, 247, 0.82);
  border-radius: 50%;
}

.mv-service-framework__decor--dots-top {
  top: 84px;
  right: max(28px, calc((100vw - 1240px) / 2));
  width: 180px;
  height: 190px;
  opacity: 0.22;
  background-image: radial-gradient(rgba(21, 91, 255, 0.52) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
}

.mv-service-framework__decor--dots-bottom {
  bottom: 112px;
  left: max(28px, calc((100vw - 1340px) / 2));
  width: 210px;
  height: 170px;
  opacity: 0.18;
  background-image: radial-gradient(rgba(21, 91, 255, 0.5) 1px, transparent 1px);
  background-size: 18px 18px;
}

@media (max-width: 1060px) {
  .mv-service-framework {
    padding: 88px 0 96px;
  }

  .mv-service-framework__top,
  .mv-service-framework__bottom {
    grid-template-columns: 1fr;
  }

  .mv-service-framework__content,
  .mv-service-framework__bottom-content {
    max-width: 780px;
  }

  .mv-service-framework__chart {
    width: min(100%, 540px);
  }

  .mv-service-framework__bottom {
    margin-top: 92px;
  }

  .mv-service-framework__visual {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .mv-service-framework {
    padding: 76px 0 84px;
  }

  .mv-service-framework__inner {
    width: min(100% - 32px, 1220px);
  }

  .mv-service-framework__title {
    font-size: clamp(2.3rem, 10vw, 3.25rem);
  }

  .mv-service-framework__cards {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .mv-service-framework__card {
    min-height: 0;
    padding: 24px;
  }

  .mv-service-framework__chart-wrap {
    width: min(100%, 340px);
  }

  .mv-service-framework__legend {
    justify-content: flex-start;
  }

  .mv-service-framework__bottom {
    gap: 42px;
    margin-top: 78px;
  }

  .mv-service-framework__visual {
    min-height: 580px;
  }

  .mv-service-framework__image-wrap {
    position: relative;
    inset: auto;
    min-height: 520px;
  }

  .mv-service-framework__dashed-frame {
    inset: 18px 8px 8px 0;
    border-width: 2px;
    border-radius: 24px;
    transform: rotate(-3deg);
  }

  .mv-service-framework__image-card--protocol,
  .mv-service-framework__image-card--signal,
  .mv-service-framework__image-card--nodes {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin: 16px;
  }

  .mv-service-framework__bottom-title {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .mv-service-framework__button {
    width: 100%;
  }

  .mv-service-framework__decor--arc-left,
  .mv-service-framework__decor--arc-right {
    display: none;
  }

  .mv-service-framework__decor--dots-top {
    right: -82px;
    opacity: 0.14;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-service-framework__card,
  .mv-service-framework__button {
    transition: none;
  }

  .mv-service-framework__card:hover,
  .mv-service-framework__button:hover,
  .mv-service-framework__button:focus-visible {
    transform: none;
  }
}

.mv-capabilities {
  position: relative;
  overflow: hidden;
  padding: 122px 0 126px;
  background:
    radial-gradient(circle at 50% 0%, #ffffff 0%, transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  color: var(--mv-charcoal);
  isolation: isolate;
}

.mv-capabilities__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.mv-capabilities__header {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.mv-capabilities__eyebrow {
  margin: 0 0 18px;
  color: var(--mv-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mv-capabilities__eyebrow::after {
  display: block;
  width: 46px;
  height: 2px;
  margin: 14px auto 0;
  content: "";
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-capabilities__title {
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  white-space: nowrap;
}

.mv-capabilities__intro {
  max-width: 920px;
  margin: 26px auto 0;
  color: rgba(17, 24, 39, 0.72);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.72;
}

.mv-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 66px;
}

.mv-capabilities__card {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 22px;
  background: var(--mv-white);
  box-shadow: 0 26px 80px rgba(6, 17, 31, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mv-capabilities__card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 91, 255, 0.18);
  box-shadow: 0 32px 94px rgba(6, 17, 31, 0.1);
}

.mv-capabilities__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(6, 17, 31, 0.05), transparent 34%),
    linear-gradient(135deg, #f2f4f7 0%, #ffffff 100%);
}

.mv-capabilities__visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 56%, #000 0%, transparent 70%);
}

.mv-capabilities__visual-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mv-capabilities__visual--analytics {
  background:
    radial-gradient(circle at 20% 16%, rgba(21, 91, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #06111f 0%, #071a36 56%, #06111f 100%);
}

.mv-capabilities__visual--analytics::before {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(242, 244, 247, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 247, 0.12) 1px, transparent 1px);
}

.mv-capabilities__content {
  padding: 32px;
}

.mv-capabilities__card-title {
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(1.12rem, 1.28vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.mv-capabilities__rule {
  display: block;
  width: 46px;
  height: 3px;
  margin: 22px 0 24px;
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-capabilities__text {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  font-size: 1rem;
  line-height: 1.68;
}

.mv-capabilities__link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
  color: var(--mv-blue);
  font-weight: 800;
}

.mv-capabilities__link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mv-capabilities__link:hover,
.mv-capabilities__link:focus-visible {
  color: #0f4ee8;
}

.mv-capabilities__decor {
  position: absolute;
  pointer-events: none;
}

.mv-capabilities__decor--arc-left {
  top: -240px;
  left: -340px;
  width: 600px;
  height: 600px;
  border: 72px solid rgba(242, 244, 247, 0.86);
  border-radius: 50%;
}

.mv-capabilities__decor--arc-right {
  right: -330px;
  bottom: -250px;
  width: 610px;
  height: 610px;
  border: 74px solid rgba(242, 244, 247, 0.82);
  border-radius: 50%;
}

.mv-capabilities__decor--dots-top {
  top: 70px;
  right: max(28px, calc((100vw - 1240px) / 2));
  width: 210px;
  height: 190px;
  opacity: 0.22;
  background-image: radial-gradient(rgba(21, 91, 255, 0.52) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
}

.mv-capabilities__decor--dots-bottom {
  bottom: 120px;
  left: max(28px, calc((100vw - 1340px) / 2));
  width: 210px;
  height: 170px;
  opacity: 0.18;
  background-image: radial-gradient(rgba(21, 91, 255, 0.5) 1px, transparent 1px);
  background-size: 18px 18px;
}

@media (max-width: 1060px) {
  .mv-capabilities {
    padding: 88px 0 96px;
  }

  .mv-capabilities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mv-capabilities__card--featured {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .mv-capabilities {
    padding: 76px 0 84px;
  }

  .mv-capabilities__inner {
    width: min(100% - 32px, 1220px);
  }

  .mv-capabilities__title {
    font-size: clamp(1.45rem, 7vw, 2.7rem);
  }

  .mv-capabilities__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 52px;
  }

  .mv-capabilities__card--featured {
    grid-column: auto;
  }

  .mv-capabilities__content {
    padding: 26px;
  }

  .mv-capabilities__card-title {
    white-space: normal;
  }

  .mv-capabilities__decor--arc-left,
  .mv-capabilities__decor--arc-right {
    display: none;
  }

  .mv-capabilities__decor--dots-top {
    right: -82px;
    opacity: 0.14;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-capabilities__card {
    transition: none;
  }

  .mv-capabilities__card:hover {
    transform: none;
  }
}

#contact {
  scroll-margin-top: 96px;
}

section[id] {
  scroll-margin-top: 96px;
}

.mv-contact {
  position: relative;
  overflow: hidden;
  padding: 122px 0 126px;
  background:
    radial-gradient(circle at 50% 0%, #ffffff 0%, transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  color: var(--mv-charcoal);
  isolation: isolate;
}

.mv-contact__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.mv-contact__header {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.mv-contact__eyebrow {
  margin: 0 0 18px;
  color: var(--mv-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mv-contact__eyebrow::after {
  display: block;
  width: 50px;
  height: 3px;
  margin: 14px auto 0;
  content: "";
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-contact__title {
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(2.75rem, 4.6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.mv-contact__intro {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(17, 24, 39, 0.7);
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.7;
}

.mv-hero__eyebrow,
.mv-research-overview__eyebrow,
.mv-team__eyebrow,
.mv-timeline__eyebrow,
.mv-innovation__eyebrow,
.mv-metrics-cta__eyebrow,
.mv-service-framework__eyebrow,
.mv-capabilities__eyebrow,
.mv-contact__eyebrow {
  font-size: clamp(0.92rem, 0.9vw, 1rem);
}

.mv-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(44px, 6vw, 68px);
  align-items: stretch;
  margin-top: 68px;
}

.mv-contact__form-card {
  padding: 44px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 26px 84px rgba(6, 17, 31, 0.08),
    inset 0 1px 0 rgba(21, 91, 255, 0.08);
}

.mv-contact__form-title {
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(1.8rem, 2.7vw, 2.45rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.14;
}

.mv-contact__form-intro {
  margin: 16px 0 0;
  color: rgba(17, 24, 39, 0.68);
  font-size: 1rem;
  line-height: 1.58;
}

.mv-contact__form {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.mv-contact__field {
  display: grid;
  gap: 8px;
}

.mv-contact__field--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.mv-contact__label {
  color: var(--mv-charcoal);
  font-size: 0.94rem;
  font-weight: 800;
}

.mv-contact__input,
.mv-contact__textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 10px;
  background: var(--mv-white);
  color: var(--mv-charcoal);
  font: inherit;
  font-size: 0.98rem;
  line-height: 1.4;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.mv-contact__input {
  min-height: 50px;
  padding: 0 15px;
}

.mv-contact__textarea {
  min-height: 156px;
  padding: 14px 15px;
  resize: vertical;
}

.mv-contact__input::placeholder,
.mv-contact__textarea::placeholder {
  color: rgba(107, 114, 128, 0.75);
}

.mv-contact__input:focus,
.mv-contact__textarea:focus {
  border-color: var(--mv-blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(21, 91, 255, 0.12);
}

.mv-contact__field.is-invalid .mv-contact__input,
.mv-contact__field.is-invalid .mv-contact__textarea {
  border-color: #b42318;
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.1);
}

.mv-contact__error {
  min-height: 1.25em;
  color: #b42318;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.mv-contact__error:empty {
  min-height: 0;
}

.mv-contact__privacy {
  margin: 0;
  color: rgba(17, 24, 39, 0.62);
  font-size: 0.84rem;
  line-height: 1.5;
}

.mv-contact__form-status {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.mv-contact__form-status.is-error {
  color: #b42318;
}

.mv-contact__form-status.is-success {
  color: #067647;
}

.mv-contact__submit {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border: 0;
  border-radius: 9px;
  background: var(--mv-blue);
  color: var(--mv-white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(21, 91, 255, 0.24);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mv-contact__submit:hover,
.mv-contact__submit:focus-visible {
  background: #0f4ee8;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(21, 91, 255, 0.3);
}

.mv-contact__submit:focus-visible {
  outline: 3px solid rgba(21, 91, 255, 0.36);
  outline-offset: 4px;
}

.mv-contact__submit:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.mv-contact__submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mv-contact__details {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding-top: 44px;
}

.mv-contact__detail {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
}

.mv-contact__detail:first-child {
  padding-top: 4px;
}

.mv-contact__detail-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mv-navy);
  color: var(--mv-white);
  box-shadow: 0 16px 38px rgba(6, 17, 31, 0.14);
}

.mv-contact__detail-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mv-contact__detail-label {
  margin: 0;
  color: var(--mv-navy);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.mv-contact__detail-value {
  display: inline-block;
  margin-top: 6px;
  color: rgba(17, 24, 39, 0.7);
  font-size: 1rem;
  line-height: 1.45;
}

.mv-contact__detail-value:hover,
.mv-contact__detail-value:focus-visible {
  color: var(--mv-blue);
}

.mv-contact__map {
  flex: 1 1 0;
  position: relative;
  min-height: 0;
  height: auto;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: var(--mv-light);
  box-shadow: 0 26px 84px rgba(6, 17, 31, 0.08);
}

.mv-contact__map iframe,
.mv-contact__map-iframe,
.mv-contact__map .cmplz-placeholder-parent,
.mv-contact__map .cmplz-placeholder-element {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border: 0;
}

.mv-contact__map iframe,
.mv-contact__map-iframe {
  filter: saturate(0.85) contrast(0.98);
}

.mv-contact__decor {
  position: absolute;
  pointer-events: none;
}

.mv-contact__decor--dots-top {
  top: 0;
  left: max(20px, calc((100vw - 1420px) / 2));
  width: 260px;
  height: 180px;
  opacity: 0.18;
  background-image: radial-gradient(rgba(21, 91, 255, 0.5) 1.1px, transparent 1.1px);
  background-size: 18px 18px;
}

.mv-contact__decor--dots-bottom {
  right: max(24px, calc((100vw - 1320px) / 2));
  bottom: 54px;
  width: 250px;
  height: 180px;
  opacity: 0.18;
  background-image: radial-gradient(rgba(21, 91, 255, 0.5) 1px, transparent 1px);
  background-size: 18px 18px;
}

.mv-contact__decor--arc-left {
  top: 220px;
  left: -320px;
  width: 540px;
  height: 540px;
  border: 64px solid rgba(242, 244, 247, 0.82);
  border-radius: 50%;
}

.mv-contact__decor--arc-right {
  top: -120px;
  right: -330px;
  width: 620px;
  height: 620px;
  border: 66px solid rgba(242, 244, 247, 0.72);
  border-radius: 50%;
}

@media (max-width: 1060px) {
  .mv-contact {
    padding: 88px 0 96px;
  }

  .mv-contact__grid {
    grid-template-columns: 1fr;
  }

  .mv-contact__details {
    height: auto;
    max-width: 720px;
    padding-top: 0;
  }

  .mv-contact__map {
    flex: none;
    height: 360px;
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .mv-contact {
    padding: 76px 0 84px;
  }

  .mv-contact__inner {
    width: min(100% - 32px, 1220px);
  }

  .mv-contact__title {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .mv-contact__grid {
    gap: 38px;
    margin-top: 52px;
  }

  .mv-contact__form-card {
    padding: 28px;
    border-radius: 20px;
  }

  .mv-contact__detail {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
  }

  .mv-contact__detail-icon {
    width: 48px;
    height: 48px;
  }

  .mv-contact__map {
    flex: none;
    height: 286px;
    min-height: 286px;
  }

  .mv-contact__decor--arc-left,
  .mv-contact__decor--arc-right {
    display: none;
  }

  .mv-contact__decor--dots-top {
    left: -84px;
    opacity: 0.12;
  }

  .mv-contact__decor--dots-bottom {
    right: -88px;
    opacity: 0.12;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-contact__submit {
    transition: none;
  }

  .mv-contact__submit:hover,
  .mv-contact__submit:focus-visible {
    transform: none;
  }
}

.mv-floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.mv-floating-actions__button {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--mv-white);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 18px 44px rgba(6, 17, 31, 0.18);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.mv-floating-actions__button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mv-floating-actions__button--phone {
  background: var(--mv-blue);
}

.mv-floating-actions__button--phone:hover,
.mv-floating-actions__button--phone:focus-visible {
  background: #0f4ee8;
}

.mv-floating-actions__button--top {
  background: var(--mv-navy);
  opacity: 1;
}

.mv-floating-actions__button--top[hidden] {
  display: inline-flex;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.mv-floating-actions__button--top:hover,
.mv-floating-actions__button--top:focus-visible {
  border-color: rgba(21, 91, 255, 0.65);
  background: #0b1a2d;
}

.mv-floating-actions__button:focus-visible {
  outline: 3px solid rgba(21, 91, 255, 0.36);
  outline-offset: 4px;
}

.mv-floating-actions__button:hover {
  transform: translateY(-2px);
}

.mv-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.mv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .mv-floating-actions {
    right: 16px;
    bottom: 16px;
  }

  .mv-floating-actions__button {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mv-floating-actions__button,
  .mv-reveal {
    transition: none;
  }

  .mv-floating-actions__button:hover,
  .mv-reveal {
    transform: none;
  }

  .mv-reveal {
    opacity: 1;
  }
}

.mv-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background:
    radial-gradient(circle at 92% 12%, rgba(21, 91, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  color: var(--mv-charcoal);
}

.mv-footer__inner {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.mv-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(360px, 1.35fr) minmax(240px, 0.9fr);
  gap: 64px;
  align-items: start;
  padding: 82px 0 78px;
}

.mv-footer__brand {
  max-width: 360px;
}

.mv-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--mv-navy);
}

.mv-footer__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 42px;
  border: 1px dashed rgba(6, 17, 31, 0.28);
  border-radius: 8px;
  background: rgba(242, 244, 247, 0.48);
  color: rgba(6, 17, 31, 0.52);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.mv-footer__custom-logo {
  display: block;
  width: auto;
  max-width: 300px;
  max-height: 86px;
  object-fit: contain;
}

.mv-footer__logo-lockup {
  display: inline-grid;
  gap: 6px;
}

.mv-footer__logo-word {
  color: var(--mv-navy);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
}

.mv-footer__logo-word span {
  color: var(--mv-blue);
}

.mv-footer__logo-descriptor {
  color: rgba(6, 17, 31, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.46em;
  line-height: 1;
  text-transform: uppercase;
}

.mv-footer__tagline {
  max-width: 320px;
  margin: 32px 0 0;
  color: rgba(17, 24, 39, 0.76);
  font-size: 1rem;
  line-height: 1.68;
}

.mv-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 48px;
}

.mv-footer__nav-title,
.mv-footer__cta-title {
  margin: 0;
  color: var(--mv-navy);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}

.mv-footer__nav-title::after {
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 18px;
  content: "";
  border-radius: 999px;
  background: var(--mv-blue);
}

.mv-footer__nav-list {
  display: grid;
  gap: 17px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.mv-footer__nav-link,
.mv-footer__legal-link {
  color: rgba(17, 24, 39, 0.7);
  font-weight: 600;
  transition: color 180ms ease;
}

.mv-footer__nav-link:hover,
.mv-footer__nav-link:focus-visible,
.mv-footer__legal-link:hover,
.mv-footer__legal-link:focus-visible {
  color: var(--mv-blue);
  outline: none;
}

.mv-footer__cta {
  padding-left: 48px;
  border-left: 1px solid rgba(17, 24, 39, 0.1);
}

.mv-footer__cta-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(21, 91, 255, 0.08);
  color: var(--mv-blue);
}

.mv-footer__cta-icon svg,
.mv-footer__cta-link svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mv-footer__cta-icon svg {
  width: 27px;
  height: 27px;
}

.mv-footer__cta-title {
  margin-top: 28px;
}

.mv-footer__cta-text {
  margin: 22px 0 0;
  color: rgba(17, 24, 39, 0.7);
  font-size: 0.98rem;
  line-height: 1.62;
}

.mv-footer__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--mv-blue);
  font-weight: 850;
}

.mv-footer__cta-link svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.mv-footer__cta-link:hover svg,
.mv-footer__cta-link:focus-visible svg {
  transform: translateX(3px);
}

.mv-footer__bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.mv-footer__copyright {
  margin: 0;
  color: rgba(17, 24, 39, 0.74);
  font-size: 0.92rem;
}

.mv-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}

.mv-footer__legal-link {
  position: relative;
  padding: 0 24px;
  font-size: 0.92rem;
}

.mv-footer__legal-link:first-child {
  padding-left: 0;
}

.mv-footer__legal-link:last-child {
  padding-right: 0;
}

.mv-footer__legal-link + .mv-footer__legal-link::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  content: "";
  background: rgba(17, 24, 39, 0.24);
  transform: translateY(-50%);
}

@media (max-width: 1060px) {
  .mv-footer__top {
    grid-template-columns: minmax(250px, 0.9fr) minmax(360px, 1.1fr);
    gap: 54px 64px;
    padding: 72px 0 68px;
  }

  .mv-footer__cta {
    grid-column: 1 / -1;
    padding: 34px 0 0;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .mv-footer__inner {
    width: min(100% - 32px, 1220px);
  }

  .mv-footer__top {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 52px 0 48px;
  }

  .mv-footer__brand,
  .mv-footer__tagline {
    max-width: none;
  }

  .mv-footer__logo-mark {
    width: 64px;
    height: 38px;
  }

  .mv-footer__logo-word {
    font-size: 1.28rem;
  }

  .mv-footer__logo-descriptor {
    font-size: 0.64rem;
    letter-spacing: 0.36em;
  }

  .mv-footer__tagline {
    margin-top: 26px;
  }

  .mv-footer__nav {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mv-footer__cta {
    padding-top: 34px;
  }

  .mv-footer__bottom {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0 28px;
  }

  .mv-footer__legal {
    gap: 14px 22px;
  }

  .mv-footer__legal-link {
    padding: 0;
  }

  .mv-footer__legal-link + .mv-footer__legal-link::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mv-footer__nav-link,
  .mv-footer__legal-link,
  .mv-footer__cta-link svg {
    transition: none;
  }
}

.mv-policy-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(21, 91, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 46%, #f4f7fb 100%);
  color: var(--mv-charcoal);
}

.mv-policy {
  position: relative;
  overflow: hidden;
  padding: 152px 0 96px;
}

.mv-policy__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 980px);
  margin: 0 auto;
}

.mv-policy__eyebrow {
  margin: 0 0 14px;
  color: var(--mv-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.mv-policy__title {
  margin: 0;
  color: var(--mv-navy);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.96;
}

.mv-policy__content {
  margin-top: 42px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 90px rgba(6, 17, 31, 0.08);
}

.mv-policy__content h2 {
  margin: 42px 0 14px;
  color: var(--mv-navy);
  font-size: clamp(1.42rem, 2.1vw, 2rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.16;
}

.mv-policy__content h2:first-child {
  margin-top: 0;
}

.mv-policy__content h3 {
  margin: 28px 0 10px;
  color: var(--mv-navy);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.28;
}

.mv-policy__content p,
.mv-policy__content li {
  color: rgba(17, 24, 39, 0.76);
  font-size: 1.02rem;
  line-height: 1.74;
}

.mv-policy__content p {
  margin: 0 0 18px;
}

.mv-policy__content ul {
  margin: 0 0 22px;
  padding-left: 24px;
}

.mv-policy__content li + li {
  margin-top: 7px;
}

.mv-policy__content a {
  color: var(--mv-blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.mv-policy__table-wrap {
  width: 100%;
  margin: 24px 0 30px;
  overflow-x: auto;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  background: #ffffff;
}

.mv-policy__content table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.mv-policy__content th,
.mv-policy__content td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  color: rgba(17, 24, 39, 0.76);
  font-size: 0.95rem;
  line-height: 1.48;
  text-align: left;
  vertical-align: top;
}

.mv-policy__content th {
  color: var(--mv-navy);
  font-weight: 800;
  background: rgba(2, 98, 255, 0.06);
}

.mv-policy__content tr:last-child td {
  border-bottom: 0;
}

.mv-policy__decor {
  position: absolute;
  pointer-events: none;
}

.mv-policy__decor--dots {
  top: 128px;
  right: 8%;
  width: 270px;
  height: 220px;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(21, 91, 255, 0.72) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
}

.mv-policy__decor--arc {
  left: -120px;
  top: 210px;
  width: 360px;
  height: 360px;
  border: 42px solid rgba(21, 91, 255, 0.05);
  border-radius: 50%;
}

@media (max-width: 760px) {
  .mv-policy {
    padding: 128px 0 74px;
  }

  .mv-policy__inner {
    width: min(100% - 32px, 980px);
  }

  .mv-policy__content {
    margin-top: 32px;
    border-radius: 16px;
  }

  .mv-policy__content p,
  .mv-policy__content li {
    font-size: 0.98rem;
    line-height: 1.68;
  }
}


.mv-404-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 24%, rgba(21, 91, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #06111f 0%, #071321 62%, #06111f 100%);
  color: var(--mv-white);
  overflow: hidden;
}

.mv-404 {
  position: relative;
  min-height: 100vh;
  padding: 168px 24px 96px;
  isolation: isolate;
}

.mv-404::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background-image:
    linear-gradient(rgba(242, 244, 247, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 247, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(110deg, transparent 0%, #000 26%, #000 74%, transparent 100%);
}

.mv-404__inner {
  display: grid;
  width: min(100%, 1160px);
  margin: 0 auto;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
}

.mv-404__copy {
  max-width: 690px;
}

.mv-404__eyebrow {
  margin: 0 0 22px;
  color: var(--mv-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mv-404__title {
  margin: 0;
  color: var(--mv-white);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
}

.mv-404__text {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(242, 244, 247, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.mv-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.mv-404__button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mv-404__button--primary {
  background: var(--mv-blue);
  color: var(--mv-white);
  box-shadow: 0 18px 40px rgba(21, 91, 255, 0.24);
}

.mv-404__button--secondary {
  border: 1px solid rgba(242, 244, 247, 0.2);
  background: rgba(242, 244, 247, 0.05);
  color: var(--mv-white);
}

.mv-404__button:hover,
.mv-404__button:focus-visible {
  transform: translateY(-2px);
}

.mv-404__button:focus-visible {
  outline: 3px solid rgba(21, 91, 255, 0.42);
  outline-offset: 3px;
}

.mv-404__helper {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(242, 244, 247, 0.62);
  font-size: 0.94rem;
  line-height: 1.7;
}

.mv-404__visual {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(242, 244, 247, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(rgba(242, 244, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 247, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 64% 22%, rgba(21, 91, 255, 0.2), transparent 36%),
    rgba(242, 244, 247, 0.045);
  background-size: 56px 56px, 56px 56px, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 80px rgba(0, 0, 0, 0.2);
}

.mv-404__visual::before {
  position: absolute;
  inset: 42px 34px;
  content: "";
  border: 2px dashed rgba(242, 244, 247, 0.72);
  border-radius: 24px;
  transform: rotate(-5deg);
}

.mv-404__card {
  position: absolute;
  border: 1px solid rgba(242, 244, 247, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--mv-charcoal);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.mv-404__card span {
  display: block;
  color: var(--mv-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.mv-404__card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.mv-404__card--signal {
  top: 78px;
  right: 44px;
  width: 180px;
  padding: 22px;
}

.mv-404__card--signal strong {
  color: var(--mv-blue);
  font-size: 3.2rem;
  line-height: 0.9;
}

.mv-404__signal-line {
  width: 100%;
  height: 42px;
  margin-top: 20px;
  border-bottom: 4px solid var(--mv-blue);
  border-left: 4px solid transparent;
  border-radius: 0 0 12px 12px;
  transform: skewX(-20deg);
  opacity: 0.86;
}

.mv-404__card--pathway {
  right: 92px;
  bottom: 82px;
  width: 248px;
  padding: 22px;
}

.mv-404__nodes {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.mv-404__nodes i {
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid var(--mv-blue);
  border-radius: 50%;
}

.mv-404__nodes i:nth-child(2) {
  width: 24px;
  height: 24px;
}

.mv-404__grid {
  position: absolute;
  top: 132px;
  right: 8vw;
  z-index: -1;
  width: 190px;
  height: 190px;
  background-image: radial-gradient(circle, rgba(21, 91, 255, 0.62) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.58;
}

.mv-404__glow {
  position: absolute;
  right: -180px;
  bottom: -220px;
  z-index: -2;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(21, 91, 255, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 91, 255, 0.16), transparent 65%);
}

@media (max-width: 900px) {
  .mv-404 {
    padding-top: 132px;
  }

  .mv-404__inner {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .mv-404__copy {
    max-width: none;
  }

  .mv-404__visual {
    min-height: 340px;
  }

  .mv-404__card--signal {
    top: 52px;
    right: 28px;
  }

  .mv-404__card--pathway {
    right: auto;
    bottom: 54px;
    left: 34px;
  }
}

@media (max-width: 640px) {
  .mv-404-page__nav {
    display: none;
  }

  .mv-404 {
    padding: 118px 18px 72px;
  }

  .mv-404__actions {
    flex-direction: column;
  }

  .mv-404__button {
    width: 100%;
  }

  .mv-404__visual {
    min-height: 300px;
    border-radius: 18px;
  }

  .mv-404__visual::before {
    inset: 34px 24px;
  }

  .mv-404__card--signal {
    width: 150px;
    padding: 18px;
  }

  .mv-404__card--signal strong {
    font-size: 2.6rem;
  }

  .mv-404__card--pathway {
    right: 22px;
    bottom: 42px;
    left: 22px;
    width: auto;
  }
}
