:root {
  --color-bg: #ffffff;
  --color-surface: #f4f6f7;
  --color-text: #16202a;
  --color-muted: #5f6b76;
  --color-accent: #005f73;
  --color-accent-dark: #00404f;
  --color-border: #dfe4e7;
  --font-head: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --container: 1140px;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.22;
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.45rem, 3.4vw, 2.05rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 1.05em;
}

.mv-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.mv-eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 .8em;
}

.mv-lead {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.mv-rule {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

.mv-skip {
  position: absolute;
  left: -9999px;
}

.mv-skip:focus {
  left: 12px;
  top: 12px;
  z-index: 60;
  background: #fff;
  padding: 10px 14px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
}

.mv-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  position: relative;
}

.mv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.mv-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -.02em;
}

.mv-logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 700;
}

.mv-burger {
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 6px;
  width: 42px;
  height: 38px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.mv-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text);
}

.mv-nav {
  display: none;
  width: 100%;
  padding: 8px 0 16px;
  border-top: 1px solid var(--color-border);
}

.mv-nav.is-open {
  display: block;
}

.mv-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mv-nav__link {
  display: block;
  padding: 9px 2px;
  color: var(--color-text);
  text-decoration: none;
  font-size: .97rem;
}

.mv-nav__link:hover,
.mv-nav__link[aria-current="page"] {
  color: var(--color-accent);
}

.mv-action {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .97rem;
  border: 1px solid var(--color-accent);
  cursor: pointer;
}

.mv-action:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.mv-action--ghost {
  background: transparent;
  color: var(--color-accent);
}

.mv-action--ghost:hover {
  background: var(--color-surface);
  color: var(--color-accent-dark);
}

.mv-section {
  padding: 54px 0;
}

.mv-section--tint {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.mv-section__head {
  max-width: 720px;
  margin-bottom: 30px;
}

.mv-hero {
  padding: 46px 0 40px;
}

.mv-hero__grid {
  display: grid;
  gap: 28px;
}

.mv-hero__text p {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.mv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mv-hero__media img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-border);
}

.mv-figure {
  margin: 0 0 26px;
}

.mv-figure img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.mv-figure__caption {
  font-size: .84rem;
  line-height: 1.5;
  color: var(--color-muted);
  margin-top: 8px;
}

.mv-figure--flush {
  margin: 0;
}

.mv-figure--card {
  margin: 0;
}

.mv-figure--card img {
  border: 0;
  border-radius: 0;
}

.mv-figure--card .mv-figure__caption {
  margin: 0;
  padding: 10px 20px 0;
  font-size: .78rem;
}

.mv-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--color-border);
  margin-top: 34px;
}

.mv-stats__item {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.mv-stats__label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--color-muted);
  margin: 0 0 6px;
}

.mv-stats__value {
  font-size: 1.05rem;
  margin: 0;
}

.mv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.mv-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.mv-card__icon {
  width: 34px;
  height: 34px;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.mv-card__title {
  font-size: 1.1rem;
  margin-bottom: .4em;
}

.mv-card__text {
  color: var(--color-muted);
  font-size: .97rem;
  margin: 0;
}

.mv-card__num {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--color-accent);
  margin: 0 0 10px;
}

.mv-featured {
  display: grid;
  gap: 26px;
  align-items: center;
}

.mv-featured__media img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-border);
}

.mv-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.mv-post {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
}

.mv-post__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mv-post__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mv-post__meta {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--color-muted);
  margin: 0 0 10px;
}

.mv-post__title {
  font-size: 1.12rem;
  margin-bottom: .45em;
}

.mv-post__title a {
  color: var(--color-text);
  text-decoration: none;
}

.mv-post__title a:hover {
  color: var(--color-accent);
}

.mv-post__text {
  color: var(--color-muted);
  font-size: .96rem;
  margin: 0 0 16px;
}

.mv-post__more {
  margin-top: auto;
  font-weight: 600;
  font-size: .93rem;
  text-decoration: none;
}

.mv-post__more:hover {
  text-decoration: underline;
}

.mv-tablewrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.mv-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 560px;
  font-size: .95rem;
}

.mv-table th,
.mv-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.mv-table thead th {
  background: var(--color-surface);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

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

.mv-faq {
  max-width: 820px;
}

.mv-faq__item {
  border-bottom: 1px solid var(--color-border);
}

.mv-faq__q {
  width: 100%;
  background: none;
  border: 0;
  padding: 18px 34px 18px 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  position: relative;
}

.mv-faq__q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 1.3rem;
  line-height: 1;
}

.mv-faq__q[aria-expanded="true"]::after {
  content: "\2212";
}

.mv-faq__a {
  padding: 0 0 18px;
  color: var(--color-muted);
  font-size: .98rem;
}

.mv-faq__a p:last-child {
  margin-bottom: 0;
}

.mv-cta {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 26px;
}

.mv-cta h2 {
  color: #fff;
  margin-bottom: .5em;
}

.mv-cta p {
  color: rgba(255, 255, 255, .88);
  max-width: 640px;
}

.mv-cta .mv-action {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
}

.mv-cta .mv-action:hover {
  background: var(--color-surface);
  color: var(--color-accent-dark);
}

.mv-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 20px;
}

.mv-article__meta {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--color-muted);
  margin-bottom: 14px;
}

.mv-article h2 {
  margin-top: 1.5em;
}

.mv-article h3 {
  margin-top: 1.3em;
}

.mv-article ul,
.mv-article ol {
  padding-left: 22px;
  margin: 0 0 1.05em;
}

.mv-article li {
  margin-bottom: .5em;
}

.mv-note {
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface);
  padding: 16px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0 0 1.3em;
  font-size: .97rem;
}

.mv-note p:last-child {
  margin-bottom: 0;
}

.mv-prose {
  max-width: 820px;
}

.mv-prose h3 {
  margin-top: 1.5em;
}

.mv-table caption {
  text-align: left;
  padding: 12px 16px;
  font-size: .84rem;
  color: var(--color-muted);
}

.mv-faq__heading {
  margin: 0;
  font-size: 1rem;
}

.mv-form {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.mv-form__row {
  display: grid;
  gap: 6px;
}

.mv-form__label {
  font-size: .85rem;
  font-weight: 600;
}

.mv-form input,
.mv-form textarea {
  font: inherit;
  font-size: .97rem;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 11px 13px;
  width: 100%;
}

.mv-form input:focus,
.mv-form textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.mv-form textarea {
  min-height: 140px;
  resize: vertical;
}

.mv-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mv-form__note {
  font-size: .84rem;
  color: var(--color-muted);
  margin: 0;
}

.mv-contact {
  display: grid;
  gap: 30px;
}

.mv-contact__box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--color-surface);
}

.mv-contact__box dl {
  margin: 0;
}

.mv-contact__box dt {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--color-muted);
  margin-top: 14px;
}

.mv-contact__box dt:first-child {
  margin-top: 0;
}

.mv-contact__box dd {
  margin: 4px 0 0;
}

.mv-legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 0 20px;
}

.mv-legal h2 {
  font-size: 1.25rem;
  margin-top: 1.6em;
}

.mv-legal ul {
  padding-left: 22px;
}

.mv-legal li {
  margin-bottom: .45em;
}

.mv-credits {
  font-size: .92rem;
  color: var(--color-muted);
}

.mv-notfound {
  text-align: center;
  padding: 80px 0;
}

.mv-footer {
  background: #10222a;
  color: #c8d4d8;
  padding: 44px 0 26px;
  margin-top: 20px;
  font-size: .94rem;
}

.mv-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.mv-footer h2 {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #8fa3aa;
  margin-bottom: 1em;
}

.mv-footer p {
  color: #a9bac0;
  margin-bottom: .7em;
}

.mv-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mv-footer__list li {
  margin-bottom: 8px;
}

.mv-footer a {
  color: #dbe6e9;
  text-decoration: none;
}

.mv-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.mv-footer__bottom {
  border-top: 1px solid #24393f;
  margin-top: 30px;
  padding-top: 18px;
  color: #8fa3aa;
  font-size: .86rem;
}

.mv-cookie {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .16);
  padding: 18px;
  display: none;
}

.mv-cookie.is-visible {
  display: block;
}

.mv-cookie__text {
  font-size: .92rem;
  color: var(--color-muted);
  margin: 0 0 14px;
}

.mv-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mv-cookie__actions .mv-action {
  padding: 10px 18px;
  font-size: .9rem;
}

@media (min-width: 720px) {
  .mv-hero__grid,
  .mv-featured,
  .mv-contact {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .mv-hero {
    padding: 60px 0 52px;
  }

  .mv-section {
    padding: 68px 0;
  }

  .mv-cta {
    padding: 44px 40px;
  }

  .mv-cookie {
    left: auto;
    right: 20px;
    bottom: 20px;
    max-width: 420px;
  }
}

@media (min-width: 900px) {
  .mv-burger {
    display: none;
  }

  .mv-nav {
    display: block;
    width: auto;
    padding: 0;
    border-top: 0;
  }

  .mv-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }

  .mv-nav__link {
    padding: 0;
  }
}
