.mobile-v1 {
  display: none;
}

.team-section {
  background: #f3f7f9;
}

.team-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.team-grid h2 {
  margin: 0;
  color: #071a2a;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.18;
  letter-spacing: -.04em;
}

.team-copy {
  display: grid;
  gap: 18px;
}

.team-copy p {
  margin: 0;
  color: #5f7382;
  font-size: 16px;
  line-height: 1.9;
}

.menu-icon {
  display: none;
}

@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  :root {
    --mv-navy: #071a2a;
    --mv-navy-soft: #102c43;
    --mv-cyan: #12b7c8;
    --mv-mint: #65e2c4;
    --mv-ink: #10273b;
    --mv-slate: #5f7382;
    --mv-line: #d9e5ea;
    --mv-mist: #f3f7f9;
  }

  html {
    scroll-padding-top: 66px;
  }

  body {
    background: #fff;
    overflow-x: hidden;
  }

  .desktop-site {
    display: none !important;
  }

  .mobile-v1 {
    display: block;
    color: var(--mv-ink);
    background: #fff;
    min-width: 320px;
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .mv-shell,
  .mv-hero-inner {
    width: min(100% - 36px, 520px);
    margin-inline: auto;
  }

  .mv-header {
    position: sticky;
    top: 0;
    z-index: 80;
    height: 66px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(217, 229, 234, .82);
    background: rgba(255, 255, 255, .94);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .mv-brand img {
    width: 176px;
    height: auto;
  }

  .mv-menu-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--mv-line);
    border-radius: 9px;
    background: #fff;
    display: grid;
    place-content: center;
    gap: 4px;
  }

  .mv-menu-button span {
    width: 17px;
    height: 1.5px;
    background: var(--mv-navy);
    transition: transform .2s, opacity .2s;
  }

  .mv-menu-button[aria-expanded="true"] span:first-child { transform: translateY(5.5px) rotate(45deg); }
  .mv-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mv-menu-button[aria-expanded="true"] span:last-child { transform: translateY(-5.5px) rotate(-45deg); }

  .mv-nav {
    position: absolute;
    top: 58px;
    right: 16px;
    left: 16px;
    padding: 12px;
    border: 1px solid var(--mv-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(7, 26, 42, .18);
  }

  .mv-nav:not([hidden]) { display: grid; }
  .mv-nav a { padding: 14px 12px; color: #334f63; font-size: 14px; font-weight: 650; }
  .mv-nav .mv-nav-cta { margin-top: 6px; color: #fff; text-align: center; background: var(--mv-cyan); border-radius: 8px; }

  .mv-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 90% 12%, rgba(18, 183, 200, .22), transparent 36%), linear-gradient(150deg, #0a2236, #04131f 78%);
    min-height: 650px;
    padding: 54px 0 44px;
  }

  .mv-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .17;
    background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: linear-gradient(#000, transparent 92%);
    mask-image: linear-gradient(#000, transparent 92%);
  }

  .mv-hero-inner { position: relative; z-index: 1; }
  .mv-kicker, .mv-eyebrow { margin: 0 0 18px; color: var(--mv-cyan); letter-spacing: .17em; font-size: 11px; font-weight: 800; }
  .mv-kicker { display: flex; align-items: center; color: #86e5ed; }
  .mv-kicker span { width: 24px; height: 1px; margin-right: 10px; background: var(--mv-mint); }

  .mv-hero h1 {
    margin: 0;
    max-width: 420px;
    font-size: clamp(40px, 11.4vw, 51px);
    line-height: 1.12;
    letter-spacing: -.055em;
    font-weight: 790;
  }

  .mv-hero h1 strong { color: var(--mv-mint); display: block; }
  .mv-lead { margin: 22px 0 0; color: #b8cad4; font-size: 15px; line-height: 1.82; }

  .mv-ai-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
  }

  .mv-ai-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 11px;
    border: 1px solid rgba(124, 224, 233, .24);
    border-radius: 999px;
    color: #e4f0f3;
    background: rgba(255, 255, 255, .045);
    font-size: 11px;
    font-weight: 680;
  }

  .mv-ai-row img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    flex: 0 0 17px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, .94);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .site-header .header-inner {
    height: 66px;
  }

  .site-header .brand img {
    width: 176px;
  }

  .site-header .mobile-menu-button {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 9px;
  }

  .site-header .menu-label {
    display: none;
  }

  .site-header .menu-icon {
    display: grid;
    place-content: center;
    gap: 4px;
  }

  .site-header .menu-icon i {
    display: block;
    width: 17px;
    height: 1.5px;
    background: var(--mv-navy);
    transition: transform .2s, opacity .2s;
  }

  .site-header .mobile-menu-button.is-open .menu-icon i:first-child { transform: translateY(5.5px) rotate(45deg); }
  .site-header .mobile-menu-button.is-open .menu-icon i:nth-child(2) { opacity: 0; }
  .site-header .mobile-menu-button.is-open .menu-icon i:last-child { transform: translateY(-5.5px) rotate(-45deg); }

  .site-header .mobile-menu nav {
    top: 52px;
    right: 0;
    width: min(calc(100vw - 36px), 484px);
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(7, 26, 42, .18);
  }

  .site-header .mobile-menu nav a {
    min-height: 0;
    padding: 14px 12px;
    font-size: 14px;
    font-weight: 650;
  }

  .site-header .mobile-menu nav .mobile-cta {
    border-radius: 8px;
  }

  .team-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .team-grid h2 {
    font-size: 36px;
  }

  .team-copy p {
    font-size: 14px;
    line-height: 1.82;
  }

  .mv-hero-actions { margin-top: 29px; display: grid; gap: 18px; }

  .mv-button {
    min-height: 54px;
    padding: 14px 17px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 780;
  }

  .mv-button-primary { color: #061923; background: var(--mv-mint); box-shadow: 0 16px 38px rgba(40, 240, 176, .15); }
  .mv-button b { font-size: 17px; }
  .mv-text-link { color: #d6e6eb; font-size: 13px; font-weight: 650; }
  .mv-text-link span { margin-left: 4px; color: var(--mv-mint); }
  .mv-scope { margin: 28px 0 0; color: #748d9c; display: flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: .08em; }
  .mv-scope i { width: 3px; height: 3px; border-radius: 50%; background: var(--mv-cyan); }

  .mv-section { padding: 72px 0; }
  .mv-section h2 { margin: 0; color: var(--mv-navy); font-size: clamp(31px, 8.7vw, 40px); line-height: 1.19; letter-spacing: -.045em; }
  .mv-intro { margin: 18px 0 0; color: var(--mv-slate); font-size: 14px; line-height: 1.8; }
  .mv-inline-link { display: inline-block; margin-top: 28px; color: #0a8fa0; font-size: 13px; font-weight: 760; }

  .mv-shift { background: var(--mv-mist); }
  .mv-shift-flow { display: grid; grid-template-columns: 1fr 24px 1fr; align-items: stretch; gap: 8px; margin-top: 34px; }
  .mv-shift-flow article { padding: 18px 14px; border: 1px solid var(--mv-line); border-radius: 12px; background: rgba(255,255,255,.75); }
  .mv-shift-flow article.is-now { border-color: rgba(18, 183, 200, .48); background: #fff; box-shadow: 0 18px 46px rgba(7,26,42,.07); }
  .mv-shift-flow article > span { color: #899ba7; font-size: 10px; }
  .mv-shift-flow strong { display: block; margin-top: 12px; color: var(--mv-navy); font-size: 15px; }
  .mv-shift-flow i { display: block; margin: 8px 0; color: var(--mv-cyan); font-style: normal; }
  .mv-shift-flow p { margin: 0; color: var(--mv-slate); font-size: 11px; line-height: 1.55; }
  .mv-flow-arrow { display: grid; place-items: center; color: var(--mv-cyan); font-size: 18px; }
  .mv-warning { margin-top: 26px; padding: 21px; border-left: 3px solid var(--mv-cyan); background: #fff; }
  .mv-warning small { color: #718895; font-size: 11px; }
  .mv-warning p { margin: 8px 0 0; color: var(--mv-navy); font-size: 18px; line-height: 1.45; font-weight: 780; }
  .mv-evidence { margin: 18px 0 0; color: #82939f; font-size: 10px; line-height: 1.7; }

  .mv-service-list { margin-top: 36px; display: grid; }
  .mv-service-list article { display: grid; grid-template-columns: 44px 1fr; gap: 13px; padding: 25px 0; border-bottom: 1px solid var(--mv-line); }
  .mv-service-list article:first-child { border-top: 1px solid var(--mv-line); }
  .mv-service-list article > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(18,183,200,.36); border-radius: 50%; color: var(--mv-cyan); font-size: 10px; font-weight: 800; }
  .mv-service-list h3 { margin: 4px 0 8px; color: var(--mv-navy); font-size: 18px; line-height: 1.35; }
  .mv-service-list p { margin: 0; color: var(--mv-slate); font-size: 13px; line-height: 1.75; }

  .mv-scenarios { overflow: hidden; background: #edf4f6; }
  .mv-question-track { display: flex; gap: 13px; margin-top: 28px; padding: 0 18px 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .mv-question-track::-webkit-scrollbar { display: none; }
  .mv-question-track blockquote { flex: 0 0 min(84vw, 360px); scroll-snap-align: start; min-height: 212px; margin: 0; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; color: #e9f4f6; background: linear-gradient(145deg, var(--mv-navy-soft), var(--mv-navy)); border-radius: 14px; font-size: 17px; line-height: 1.62; font-weight: 650; }
  .mv-question-track blockquote span { color: var(--mv-mint); font-size: 10px; letter-spacing: .1em; }
  .mv-big-question { margin: 24px 0 0; color: #4f6575; font-size: 15px; line-height: 1.6; }
  .mv-big-question strong { display: block; color: var(--mv-navy); font-size: 25px; letter-spacing: -.03em; }

  .mv-fit-list { display: grid; gap: 12px; margin-top: 32px; }
  .mv-fit-list article { display: grid; grid-template-columns: 30px 1fr; gap: 10px; padding: 18px 16px; border: 1px solid var(--mv-line); border-radius: 12px; background: #fff; }
  .mv-fit-list i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: var(--mv-navy); background: #c8f6e8; font-style: normal; font-size: 12px; font-weight: 800; }
  .mv-fit-list h3 { margin: 1px 0 6px; color: var(--mv-navy); font-size: 16px; }
  .mv-fit-list p { margin: 0; color: var(--mv-slate); font-size: 12px; line-height: 1.6; }
  .mv-button-outline { width: 100%; margin-top: 22px; color: var(--mv-navy); border: 1px solid var(--mv-navy); background: #fff; }

  .mv-trust { color: #fff; background: linear-gradient(150deg, #0b263b, #04141f); }
  .mv-trust h2 { color: #fff; }
  .mv-eyebrow-light { color: #7ce0e9; }
  .mv-no-promises { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
  .mv-no-promises span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #9aadb8; text-decoration: line-through; font-size: 11px; }
  .mv-trust > .mv-shell > p:not(.mv-eyebrow) { margin: 25px 0 0; color: #aabdc7; font-size: 14px; line-height: 1.85; }
  .mv-trust-words { display: grid; gap: 8px; margin-top: 25px; color: var(--mv-mint); font-size: 22px; line-height: 1.25; }
  .mv-inline-light { color: #8ee7ef; }

  .mv-assessment { background: var(--mv-mist); }
  .mv-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 25px 0 0; padding: 0; }
  .mv-checks li { min-height: 58px; padding: 12px; display: flex; align-items: center; border: 1px solid var(--mv-line); border-radius: 9px; color: #405a6d; background: #fff; font-size: 11px; line-height: 1.45; }
  .mv-checks li:before { content: "✓"; margin-right: 7px; color: #0e9d7f; font-weight: 800; }
  .mv-form-card { margin-top: 26px; padding: 23px 18px; border: 1px solid #cfe1e5; border-radius: 15px; background: #fff; box-shadow: 0 24px 60px rgba(7,26,42,.09); }
  .mv-form-card .lead-form-heading span { font-size: 18px; }
  .mv-form-card .lead-submit { background: var(--mv-cyan); }
  .mv-email-link { display: block; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--mv-line); color: #607887; text-align: center; font-size: 10px; }

  /* Mobile knowledge base */
  .insights-hero {
    min-height: 0;
    padding: 62px 0 58px;
    background: radial-gradient(circle at 88% 14%, rgba(18, 183, 200, .23), transparent 38%), linear-gradient(150deg, #0a2236, #04131f 78%);
  }

  .insights-hero h1 {
    max-width: 340px;
    margin-top: 16px;
    font-size: 37px;
    line-height: 1.14;
    letter-spacing: -.05em;
  }

  .insights-hero p {
    margin-top: 20px;
    color: #b8cad4;
    font-size: 14px;
    line-height: 1.75;
  }

  .insights-hero + .subpage-section {
    padding: 54px 0;
    background: #f3f7f9;
  }

  .insights-hero + .subpage-section .longform-list {
    gap: 14px;
  }

  .insights-hero + .subpage-section .longform-list article,
  .insights-hero + .subpage-section .longform-list article:first-child {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
    padding: 22px 18px;
    border: 1px solid var(--mv-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(7, 26, 42, .045);
  }

  .insights-hero + .subpage-section .article-icon {
    width: 48px;
    height: 48px;
    border-radius: 11px;
  }

  .insights-hero + .subpage-section .article-icon svg {
    width: 23px;
  }

  .insights-hero + .subpage-section .longform-list h2 {
    margin: 10px 0 16px;
    font-size: 24px;
    line-height: 1.32;
    letter-spacing: -.035em;
  }

  .insights-hero + .subpage-section .longform-list p {
    margin-bottom: 13px;
    font-size: 14px;
    line-height: 1.78;
  }

  .insights-hero + .subpage-section .article-tags {
    gap: 7px;
    margin-top: 20px;
  }

  .insights-hero + .subpage-section .article-tags span {
    padding: 6px 9px;
    border-radius: 999px;
    background: #f6f9fa;
    font-size: 10px;
  }

  .research-strip {
    padding: 62px 0;
  }

  .research-strip .shell {
    gap: 30px;
  }

  .research-strip h2 {
    font-size: 28px;
    line-height: 1.32;
  }

  .research-strip a {
    padding: 15px;
    border-radius: 9px;
  }

  .insights-hero ~ .simple-cta {
    padding: 48px 0;
  }

  .insights-hero ~ .simple-cta h2 {
    font-size: 27px;
    line-height: 1.3;
  }

  .insights-hero ~ .simple-cta .button {
    width: 100%;
  }

  /* Mobile about page */
  .about-hero {
    min-height: 0;
    padding: 62px 0 58px;
    background: radial-gradient(circle at 88% 14%, rgba(101, 226, 196, .2), transparent 38%), linear-gradient(150deg, #0a2236, #04131f 78%);
  }

  .about-hero h1 {
    max-width: 350px;
    margin-top: 16px;
    font-size: 37px;
    line-height: 1.14;
    letter-spacing: -.05em;
  }

  .about-hero p {
    margin-top: 20px;
    color: #b8cad4;
    font-size: 14px;
    line-height: 1.75;
  }

  .about-hero + .subpage-section {
    padding: 56px 0 62px;
  }

  .about-hero + .subpage-section .origin-grid {
    gap: 30px;
  }

  .about-hero + .subpage-section .origin-mark {
    min-height: 0;
    padding: 34px;
    border: 1px solid var(--mv-line);
    border-radius: 15px;
  }

  .about-hero + .subpage-section .origin-mark img {
    width: 132px;
  }

  .about-hero + .subpage-section .origin-grid h2 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 1.2;
  }

  .about-hero + .subpage-section .origin-grid p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.82;
  }

  .about-hero ~ .team-section {
    padding: 62px 0;
  }

  .about-hero ~ .team-section .team-grid {
    gap: 26px;
  }

  .about-hero ~ .team-section .team-grid h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .about-hero ~ .principles-section {
    padding: 68px 0;
  }

  .about-hero ~ .principles-section .principles-heading {
    display: grid;
    gap: 12px;
  }

  .about-hero ~ .principles-section .principles-heading h2 {
    font-size: 34px;
  }

  .about-hero ~ .principles-section .principles-grid {
    gap: 12px;
    margin-top: 32px;
  }

  .about-hero ~ .principles-section .principles-grid article {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 7px 14px;
    padding: 21px 18px;
    border-radius: 12px;
  }

  .about-hero ~ .principles-section .principles-grid svg {
    grid-row: 1 / span 2;
    width: 24px;
  }

  .about-hero ~ .principles-section .principles-grid h3 {
    margin: 0;
    font-size: 17px;
  }

  .about-hero ~ .principles-section .principles-grid p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
  }

  .mv-footer { padding: 56px 18px 30px; color: #8096a4; text-align: center; background: #071421; }
  .mv-footer > img { width: 182px; margin: 0 auto 20px; padding: 6px 8px; border-radius: 5px; background: #fff; }
  .mv-footer > strong { display: block; color: #d7e5e9; font-size: 13px; }
  .mv-footer > p { margin: 7px 0 24px; font-size: 12px; }
  .mv-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; font-size: 9px; }

  .mv-sticky-cta {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 68px;
    padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 9px;
    color: #071b29;
    background: var(--mv-mint);
    box-shadow: 0 -10px 34px rgba(7, 26, 42, .19);
    transition: transform .22s, opacity .22s;
  }
  .mv-sticky-cta span { font-size: 15px; font-weight: 850; }
  .mv-sticky-cta small { padding-left: 9px; border-left: 1px solid rgba(7,27,41,.22); font-size: 10px; }
  .mv-sticky-cta b { font-size: 20px; }
  .mv-sticky-cta.is-hidden { pointer-events: none; opacity: 0; transform: translateY(100%); }
}

@media (max-width: 359px) {
  .mv-shell,
  .mv-hero-inner { width: min(100% - 28px, 520px); }
  .mv-hero h1 { font-size: 37px; }
  .mv-ai-row span { padding-inline: 9px; }
  .mv-checks { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .mv-menu-button span,
  .mv-sticky-cta { transition: none; }
}
