/* Drive Journal — Industrial Utility / Steel Blue & Safety Amber */
:root {
  --steel: #3D4F5F;
  --slate: #1C2430;
  --safety: #F05A28;
  --safety-soft: #FF8A5B;
  --concrete: #EEF1F4;
  --ink: #0E1218;
  --white: #ffffff;
  --line: rgba(61, 79, 95, 0.28);
  --font: "IBM Plex Sans JP", "Archivo", sans-serif;
  --font-en: "Archivo", "IBM Plex Sans JP", sans-serif;
  --max: 1180px;
  --pad: clamp(1rem, 3vw, 2rem);
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --grid: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; width: 0; height: 0; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--concrete);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none; width: 0; height: 0; }

* {
  scrollbar-width: none;
}
*::-webkit-scrollbar { display: none; width: 0; height: 0; }

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea { font: inherit; }
address { font-style: normal; }
h1, h2, h3, h4 { font-weight: 500; line-height: 1.25; letter-spacing: 0.01em; }
strong, b { font-weight: 500; }

.mv-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--safety);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 9999;
}
.mv-skip:focus { left: 1rem; top: 1rem; }

.mv-wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

.mv-body { overflow-x: hidden; }
.mv-main { min-height: 60vh; }

/* Header */
.mv-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--slate);
  border-bottom: 2px solid var(--steel);
}
.mv-header__bar {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mv-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--concrete);
}
.mv-logo__mark { flex-shrink: 0; }
.mv-logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.mv-logo__en {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--safety-soft);
}
.mv-logo__name { font-size: 0.95rem; font-weight: 500; }
.mv-logo__tag { font-size: 0.75rem; color: rgba(238, 241, 244, 0.65); margin-top: 0.25rem; }

.mv-nav-desk { display: none; align-items: center; gap: 0.25rem; }
.mv-nav-desk a {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(238, 241, 244, 0.82);
  border: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.mv-nav-desk a:hover,
.mv-nav-desk a.is-active { color: var(--white); border-color: var(--steel); }
.mv-nav-desk__cta {
  background: var(--safety) !important;
  color: var(--white) !important;
  border-color: var(--safety) !important;
  margin-left: 0.35rem;
}
.mv-nav-desk__cta:hover { background: var(--safety-soft) !important; }

.mv-burger {
  width: 44px;
  height: 44px;
  border: 1px solid var(--steel);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.mv-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--concrete);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.mv-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mv-burger.is-open span:nth-child(2) { opacity: 0; }
.mv-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mv-drawer-bg {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 24, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 110;
}
.mv-drawer-bg.is-open { opacity: 1; pointer-events: auto; }
.mv-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 360px);
  height: 100%;
  background: var(--slate);
  border-left: 2px solid var(--steel);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  z-index: 120;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}
.mv-drawer.is-open { transform: translateX(0); }
.mv-drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--safety-soft);
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}
.mv-drawer__close {
  background: none;
  border: none;
  color: var(--concrete);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}
.mv-drawer__list { display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.mv-drawer__list a {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--steel);
  color: var(--concrete);
  font-size: 1.05rem;
}
.mv-drawer__list a span:first-child {
  font-family: var(--font-en);
  color: var(--safety);
  font-size: 0.8rem;
}
.mv-drawer__cta { color: var(--safety-soft) !important; }
.mv-drawer__foot {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--steel);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(238, 241, 244, 0.7);
}
.mv-drawer__foot a { color: var(--safety-soft); }

@media (min-width: 960px) {
  .mv-nav-desk { display: flex; }
  .mv-burger { display: none; }
}

/* Kickers / buttons */
.mv-kicker {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.65rem;
}
.mv-kicker--light { color: rgba(238, 241, 244, 0.75); }
.mv-kicker--safety { color: var(--safety-soft); }

.mv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-weight: 500;
  font-size: 0.92rem;
  border: 2px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  cursor: pointer;
}
.mv-btn--fill {
  background: var(--safety);
  color: var(--white);
  border-color: var(--safety);
}
.mv-btn--fill:hover { background: var(--safety-soft); border-color: var(--safety-soft); transform: translateY(-1px); }
.mv-btn--ghost {
  background: transparent;
  color: var(--concrete);
  border-color: rgba(238, 241, 244, 0.45);
}
.mv-btn--ghost:hover { border-color: var(--concrete); }

.mv-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-weight: 500;
  color: var(--safety);
  border-bottom: 1px solid var(--safety);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.mv-link::after { content: "→"; font-family: var(--font-en); }
.mv-link:hover { color: var(--slate); border-color: var(--slate); }

.mv-blueprint {
  width: 72px;
  height: 2px;
  background: var(--safety);
  margin: 1rem 0 1.25rem;
  position: relative;
}
.mv-blueprint::before,
.mv-blueprint::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--steel);
}
.mv-blueprint::before { left: 0; }
.mv-blueprint::after { right: 0; }

/* Sections */
.mv-sec { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.mv-sec--concrete { background: var(--concrete); }
.mv-sec--slate { background: var(--slate); color: var(--concrete); }
.mv-sec--slate .mv-blueprint { background: var(--safety); }
.mv-sec--slate .mv-link { color: var(--safety-soft); border-color: var(--safety-soft); }
.mv-sec--ink { background: var(--ink); color: var(--concrete); }

.mv-head { max-width: 640px; margin-bottom: 2.5rem; }
.mv-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); margin-bottom: 0.75rem; }
.mv-head p { color: var(--steel); }
.mv-sec--slate .mv-head p,
.mv-sec--ink .mv-head p { color: rgba(238, 241, 244, 0.7); }

/* Hero */
.mv-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.mv-hero__media { position: absolute; inset: 0; }
.mv-hero__img,
.mv-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.88) contrast(1.05);
}
.mv-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(14, 18, 24, 0.94) 0%, rgba(28, 36, 48, 0.62) 48%, rgba(28, 36, 48, 0.28) 100%),
    linear-gradient(0deg, rgba(14, 18, 24, 0.78) 0%, transparent 45%),
    radial-gradient(ellipse 55% 50% at 78% 58%, rgba(240, 90, 40, 0.22), transparent 62%);
}
.mv-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 79, 95, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 79, 95, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black 0%, transparent 70%);
  pointer-events: none;
}
.mv-hero__copy {
  position: relative;
  z-index: 2;
  width: min(100% - 2 * var(--pad), var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  max-width: 680px;
  margin-left: max(var(--pad), calc((100% - var(--max)) / 2 + var(--pad)));
}
.mv-hero__brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}
.mv-hero__brand-en {
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.mv-hero__brand-jp {
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 500;
  color: var(--safety-soft);
}
.mv-hero__title {
  font-size: clamp(1.85rem, 4.5vw, 3.1rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 500;
}
.mv-hero__lead {
  color: rgba(238, 241, 244, 0.82);
  font-size: 1.02rem;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}
.mv-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Page hero */
.mv-page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.mv-page-hero__media { position: absolute; inset: 0; }
.mv-page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.mv-page-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14, 18, 24, 0.9) 0%, rgba(14, 18, 24, 0.45) 100%);
}
.mv-page-hero__copy {
  position: relative;
  z-index: 2;
  width: min(100% - 2 * var(--pad), var(--max));
  margin: 0 auto;
  padding: 5rem 0 3rem;
  color: var(--concrete);
  max-width: 640px;
  margin-left: max(var(--pad), calc((100% - var(--max)) / 2 + var(--pad)));
}
.mv-page-hero__copy h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.75rem; }
.mv-page-hero__copy p { color: rgba(238, 241, 244, 0.78); }

/* Fleet grid */
.mv-fleet {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.mv-fleet__item {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: auto 1fr;
}
.mv-fleet__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.mv-fleet__media img { width: 100%; height: 100%; transition: transform 0.5s var(--ease); }
.mv-fleet__item:hover .mv-fleet__media img { transform: scale(1.04); }
.mv-fleet__num {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--slate);
  color: var(--safety-soft);
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.7rem;
}
.mv-fleet__body { padding: 1.25rem 1.35rem 1.5rem; }
.mv-fleet__body h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.mv-fleet__body p { font-size: 0.92rem; color: var(--steel); margin-bottom: 0.85rem; }
.mv-fleet__spec {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--safety);
  border-left: 3px solid var(--safety);
  padding-left: 0.65rem;
}

@media (min-width: 640px) {
  .mv-fleet { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .mv-fleet { grid-template-columns: repeat(3, 1fr); }
}

/* Work panels */
.mv-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.mv-panel {
  background: var(--white);
  padding: 1.75rem 1.5rem;
}
.mv-sec--slate .mv-panel,
.mv-sec--ink .mv-panel {
  background: rgba(238, 241, 244, 0.04);
  color: var(--concrete);
}
.mv-panel__num {
  display: block;
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--safety);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.mv-panel h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.mv-panel p { font-size: 0.92rem; color: var(--steel); }
.mv-sec--slate .mv-panel p,
.mv-sec--ink .mv-panel p { color: rgba(238, 241, 244, 0.7); }

@media (min-width: 768px) {
  .mv-panels { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .mv-panels { grid-template-columns: repeat(4, 1fr); }
  .mv-panels:has(.mv-panel:nth-child(3):last-child) { grid-template-columns: repeat(3, 1fr); }
}

/* Split */
.mv-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.mv-split__media { overflow: hidden; border: 1px solid var(--line); }
.mv-split__media img { width: 100%; height: 100%; min-height: 320px; }
.mv-split__copy h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0; }
.mv-split__copy p { margin-bottom: 1rem; color: var(--steel); }
.mv-sec--slate .mv-split__copy p { color: rgba(238, 241, 244, 0.75); }
.mv-split--flip .mv-split__media { order: 1; }

@media (min-width: 900px) {
  .mv-split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .mv-split--flip .mv-split__media { order: 0; }
  .mv-split--flip .mv-split__copy { order: -1; }
}

.mv-check { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1rem; }
.mv-check li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
}
.mv-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 2px;
  background: var(--safety);
}

.mv-inline-quote {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-left: 3px solid var(--safety);
  background: rgba(61, 79, 95, 0.06);
  font-size: 1rem;
  color: var(--slate);
}

/* Supplemental image notes */
.mv-note {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(14, 18, 24, 0.08);
}
.mv-note__media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--slate);
}
.mv-note__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.mv-note__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 18, 24, 0.08) 0%, rgba(14, 18, 24, 0.35) 100%),
    linear-gradient(120deg, rgba(240, 90, 40, 0.22) 0%, transparent 48%);
  pointer-events: none;
}
.mv-note__tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.45rem 0.75rem;
  background: rgba(14, 18, 24, 0.78);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mv-note__body {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mv-note__body h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin-bottom: 0.85rem;
}
.mv-note__body p {
  color: var(--steel);
  margin-bottom: 1rem;
  max-width: 34rem;
}
.mv-note__list {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.4rem;
}
.mv-note__list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--slate);
  font-size: 0.95rem;
}
.mv-note__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 2px;
  background: var(--safety);
}

@media (min-width: 900px) {
  .mv-note {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
  .mv-note--reverse .mv-note__media {
    order: 2;
  }
  .mv-note--reverse .mv-note__body {
    order: 1;
  }
  .mv-note__media {
    min-height: 100%;
  }
}

/* Cases */
.mv-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.mv-case {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
}
.mv-case img { width: 100%; aspect-ratio: 16 / 10; }
.mv-case__body { padding: 1.25rem 1.35rem 1.5rem; }
.mv-case__meta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--safety);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.mv-case__body h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.mv-case__body p { font-size: 0.92rem; color: var(--steel); }

@media (min-width: 768px) {
  .mv-cases { grid-template-columns: repeat(3, 1fr); }
}

/* Network */
.mv-network {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.mv-network__node {
  position: relative;
  padding: 1.5rem 1.25rem 1.5rem 3rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.mv-network__mark {
  position: absolute;
  left: 1.1rem;
  top: 1.7rem;
  width: 12px;
  height: 12px;
  background: var(--safety);
  border: 2px solid var(--slate);
}
.mv-network__node h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.mv-network__node p { font-size: 0.9rem; color: var(--steel); }
.mv-network__line { display: none; }

@media (min-width: 900px) {
  .mv-network {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .mv-network__node {
    border-right: none;
  }
  .mv-network__node:last-child { border-right: 1px solid var(--line); }
  .mv-network__line {
    display: block;
    position: absolute;
    right: -1px;
    top: 2rem;
    width: 1px;
    height: calc(100% - 3rem);
    background: var(--line);
  }
}

/* Specs / progress */
.mv-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
.mv-spec {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem 1.5rem;
}
.mv-spec__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.mv-spec__top h3 { font-size: 1rem; }
.mv-spec__val {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--safety);
}
.mv-spec__val em { font-style: normal; }
.mv-spec__bar {
  height: 8px;
  background: var(--concrete);
  border: 1px solid var(--line);
  overflow: hidden;
}
.mv-spec__fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--steel), var(--safety));
  transition: width 1.1s var(--ease);
}
.mv-spec.is-in .mv-spec__fill { /* set via JS inline or class */ }
.mv-spec__note {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  color: var(--steel);
}

@media (min-width: 768px) {
  .mv-specs { grid-template-columns: repeat(2, 1fr); }
}

/* Quotes */
.mv-quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.mv-quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--safety);
  padding: 1.5rem;
}
.mv-quote__img {
  width: 56px;
  height: 56px;
  border-radius: 0;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}
.mv-quote p { font-size: 0.95rem; margin-bottom: 1rem; }
.mv-quote cite { font-size: 0.82rem; color: var(--steel); font-style: normal; font-weight: 500; }

@media (min-width: 900px) {
  .mv-quotes { grid-template-columns: repeat(3, 1fr); }
}

/* CTA */
.mv-cta {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.mv-cta__copy h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.85rem; }
.mv-cta__copy p { color: rgba(238, 241, 244, 0.75); margin-bottom: 1.25rem; }
.mv-cta__perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}
.mv-cta__perks li {
  font-size: 0.88rem;
  padding-left: 1rem;
  position: relative;
  color: var(--steel);
}
.mv-cta__copy .mv-cta__perks li {
  color: rgba(238, 241, 244, 0.85);
}
.mv-cta__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--safety);
}
.mv-cta__media { overflow: hidden; border: 1px solid var(--steel); }
.mv-cta__media img { width: 100%; min-height: 280px; }
.mv-cta--center { text-align: center; justify-items: center; }
.mv-cta--center .mv-cta__copy { max-width: 560px; }

@media (min-width: 900px) {
  .mv-cta { grid-template-columns: 1.1fr 0.9fr; }
  .mv-cta--center { grid-template-columns: 1fr; }
}

/* Marquee */
.mv-marquee {
  overflow: hidden;
  background: var(--slate);
  border-top: 2px solid var(--safety);
  border-bottom: 2px solid var(--safety);
  padding: 0.85rem 0;
}
.mv-marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: mv-marquee 28s linear infinite;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--concrete);
}
.mv-marquee__track span::before {
  content: "■";
  color: var(--safety);
  margin-right: 3rem;
}
@keyframes mv-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* About extras */
.mv-time { display: flex; flex-direction: column; gap: 1.25rem; }
.mv-time__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem;
}
.mv-time__item img { width: 88px; height: 88px; }
.mv-time__year {
  font-family: var(--font-en);
  font-weight: 500;
  color: var(--safety);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.mv-time__item h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.mv-time__item p { font-size: 0.9rem; color: var(--steel); }

.mv-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--line);
}
.mv-card img { width: 100%; aspect-ratio: 16 / 10; }
.mv-card h3, .mv-card p { padding-left: 1.25rem; padding-right: 1.25rem; }
.mv-card h3 { margin-top: 1.1rem; margin-bottom: 0.4rem; font-size: 1.05rem; }
.mv-card p { padding-bottom: 1.35rem; font-size: 0.92rem; color: var(--steel); }

@media (min-width: 768px) {
  .mv-cards { grid-template-columns: repeat(3, 1fr); }
}

.mv-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.mv-mosaic figure { overflow: hidden; border: 1px solid var(--line); }
.mv-mosaic img { width: 100%; height: 100%; min-height: 220px; }

@media (min-width: 768px) {
  .mv-mosaic {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .mv-mosaic figure:first-child { grid-row: 1 / 3; }
  .mv-mosaic figure:first-child img { min-height: 100%; height: 100%; }
}

/* Services */
.mv-stack { display: flex; flex-direction: column; gap: 1.5rem; }
.mv-plan {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.mv-plan__media img { width: 100%; aspect-ratio: 16 / 10; }
.mv-plan__body { padding: 1.5rem; }
.mv-plan__body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.mv-plan__body p { color: var(--steel); font-size: 0.95rem; }
.mv-plan__price {
  margin-top: 1rem !important;
  font-family: var(--font-en);
  font-weight: 500;
  color: var(--safety) !important;
}

@media (min-width: 800px) {
  .mv-plan { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .mv-plan:nth-child(even) .mv-plan__media { order: 2; }
  .mv-plan__media img { height: 100%; aspect-ratio: auto; min-height: 280px; }
}

.mv-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.mv-rail::-webkit-scrollbar { display: none; }
.mv-rail__item {
  flex: 0 0 260px;
  scroll-snap-align: start;
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--slate);
}
.mv-rail__item img { width: 100%; height: 360px; }
.mv-rail__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(14, 18, 24, 0.92));
  color: var(--concrete);
}
.mv-rail__cap h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.mv-rail__cap span { font-size: 0.8rem; color: var(--safety-soft); }

/* Blog */
.mv-topics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.mv-topic {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  display: block;
}
.mv-topic img { width: 100%; height: 100%; position: absolute; inset: 0; }
.mv-topic__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(14, 18, 24, 0.9));
  color: var(--concrete);
}
.mv-topic__body h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.mv-topic__body p { font-size: 0.85rem; color: rgba(238, 241, 244, 0.75); }

@media (min-width: 768px) {
  .mv-topics { grid-template-columns: repeat(4, 1fr); }
}

.mv-featured {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.mv-featured img { width: 100%; aspect-ratio: 16 / 9; }
.mv-featured__body { padding: 1.5rem; }
.mv-featured__body h3 { font-size: 1.4rem; margin: 0.5rem 0; }
.mv-featured__body p { color: var(--steel); }
.mv-featured__body time { display: block; margin-top: 1rem; font-size: 0.8rem; color: var(--steel); font-family: var(--font-en); }

@media (min-width: 860px) {
  .mv-featured { grid-template-columns: 1.2fr 1fr; }
  .mv-featured img { height: 100%; aspect-ratio: auto; }
}

.mv-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.mv-filter {
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--slate);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mv-filter.is-active,
.mv-filter:hover {
  background: var(--slate);
  color: var(--concrete);
  border-color: var(--slate);
}

.mv-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.mv-post {
  background: var(--white);
  border: 1px solid var(--line);
}
.mv-post.is-hidden { display: none; }
.mv-post img { width: 100%; aspect-ratio: 16 / 10; }
.mv-post__body { padding: 1.2rem 1.25rem 1.4rem; }
.mv-post__body span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--safety);
}
.mv-post__body h3 { font-size: 1.05rem; margin: 0.4rem 0; }
.mv-post__body p { font-size: 0.9rem; color: var(--steel); }
.mv-post__body time {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-family: var(--font-en);
  color: var(--steel);
}

@media (min-width: 768px) {
  .mv-posts { grid-template-columns: repeat(3, 1fr); }
}

.mv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mv-tags span {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.85rem;
  color: var(--steel);
}

/* Contact */
.mv-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.mv-channel {
  background: var(--white);
  padding: 1.5rem;
  display: block;
  transition: background 0.25s;
}
a.mv-channel:hover { background: var(--concrete); }
.mv-channel h3 { font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--safety); }
.mv-channel p { font-size: 0.95rem; }

@media (min-width: 768px) {
  .mv-channels { grid-template-columns: repeat(3, 1fr); }
}

.mv-form-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .mv-form-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}

.mv-form { display: flex; flex-direction: column; gap: 1rem; }
.mv-form label { display: flex; flex-direction: column; gap: 0.4rem; }
.mv-form label span { font-size: 0.85rem; font-weight: 500; color: var(--slate); }
.mv-form input,
.mv-form textarea {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.85rem 1rem;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}
.mv-form input:focus,
.mv-form textarea:focus { border-color: var(--safety); }
.mv-form button { align-self: flex-start; margin-top: 0.5rem; }

.mv-alert {
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  border: 1px solid var(--line);
}
.mv-alert--ok { background: #e8f5e9; border-color: #81c784; }
.mv-alert--err { background: #fce8e3; border-color: var(--safety); color: var(--ink); }

.mv-office {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.mv-office h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.mv-office > p { color: var(--steel); font-size: 0.92rem; margin-bottom: 1rem; }
.mv-office img { width: 100%; margin-bottom: 1.25rem; border: 1px solid var(--line); }
.mv-office__dl { display: grid; gap: 0.35rem 1rem; margin-bottom: 1.25rem; }
.mv-office__dl dt {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--safety);
  font-family: var(--font-en);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.65rem;
}
.mv-office__dl dd { font-size: 0.92rem; color: var(--slate); }

.mv-faq { display: flex; flex-direction: column; gap: 0.65rem; }
.mv-faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0;
}
.mv-faq__item summary {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.mv-faq__item summary::-webkit-details-marker { display: none; }
.mv-faq__item summary::after {
  content: "+";
  font-family: var(--font-en);
  color: var(--safety);
  font-size: 1.2rem;
}
.mv-faq__item[open] summary::after { content: "−"; }
.mv-faq__item p {
  padding: 0 1.25rem 1.25rem;
  color: var(--steel);
  font-size: 0.92rem;
}

.mv-map {
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  background: var(--steel);
}
.mv-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.mv-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.mv-gallery figure { border: 1px solid var(--line); overflow: hidden; }
.mv-gallery img { width: 100%; aspect-ratio: 16 / 10; }

@media (min-width: 768px) {
  .mv-gallery { grid-template-columns: repeat(3, 1fr); }
}

/* Footer */
.mv-footer {
  background: var(--slate);
  color: var(--concrete);
  padding: 4rem 0 0;
  border-top: 3px solid var(--safety);
}
.mv-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.mv-footer__brand .mv-logo { margin-bottom: 1rem; }
.mv-footer__desc {
  font-size: 0.9rem;
  color: rgba(238, 241, 244, 0.7);
  max-width: 320px;
  margin-bottom: 1.25rem;
}
.mv-footer__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--steel);
  color: var(--safety-soft);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-en);
  transition: background 0.2s, border-color 0.2s;
}
.mv-footer__linkedin:hover {
  background: rgba(240, 90, 40, 0.12);
  border-color: var(--safety);
}
.mv-footer h3 {
  font-size: 0.8rem;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--safety-soft);
  margin-bottom: 1rem;
}
.mv-footer ul { display: flex; flex-direction: column; gap: 0.45rem; }
.mv-footer ul a {
  font-size: 0.9rem;
  color: rgba(238, 241, 244, 0.75);
  transition: color 0.2s;
}
.mv-footer ul a:hover { color: var(--white); }
.mv-footer address p {
  font-size: 0.88rem;
  color: rgba(238, 241, 244, 0.75);
  margin-bottom: 0.4rem;
}
.mv-footer address a { color: var(--safety-soft); }

@media (min-width: 768px) {
  .mv-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

.mv-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--steel);
}
.mv-footer__social-label {
  font-size: 0.75rem;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238, 241, 244, 0.55);
}
.mv-social { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.mv-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--steel);
  color: var(--concrete);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mv-social a:hover {
  background: var(--safety);
  border-color: var(--safety);
  color: var(--white);
}

.mv-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid var(--steel);
  font-size: 0.8rem;
  color: rgba(238, 241, 244, 0.55);
}
.mv-top {
  width: 40px;
  height: 40px;
  border: 1px solid var(--steel);
  background: transparent;
  color: var(--concrete);
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
.mv-top:hover { background: var(--safety); border-color: var(--safety); }

/* Grid-snap reveals (28px blueprint unit) */
.mv-reveal {
  opacity: 0;
  transform: translateY(var(--grid));
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  will-change: opacity, transform;
}
.mv-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.mv-reveal--left { transform: translateX(calc(var(--grid) * -1)); }
.mv-reveal--right { transform: translateX(var(--grid)); }
.mv-reveal--left.is-visible,
.mv-reveal--right.is-visible { transform: translate3d(0, 0, 0); }

.mv-stagger .mv-reveal:nth-child(1) { transition-delay: 0.04s; }
.mv-stagger .mv-reveal:nth-child(2) { transition-delay: 0.08s; }
.mv-stagger .mv-reveal:nth-child(3) { transition-delay: 0.12s; }
.mv-stagger .mv-reveal:nth-child(4) { transition-delay: 0.16s; }
.mv-stagger .mv-reveal:nth-child(5) { transition-delay: 0.2s; }
.mv-stagger .mv-reveal:nth-child(6) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mv-reveal { opacity: 1; transform: none; transition: none; }
  .mv-marquee__track { animation: none; }
  .mv-spec__fill { transition: none; }
}
/* ===== HOMEPAGE v2 — unique industrial layouts (not card clones) ===== */
.mv-bluehero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--header-h));
  background: var(--concrete);
  border-bottom: 2px solid var(--steel);
}
.mv-bluehero__sheet {
  padding: clamp(2rem, 5vw, 4rem) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  background:
    linear-gradient(90deg, rgba(61,79,95,0.06) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(61,79,95,0.06) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--concrete);
}
.mv-bluehero__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
  max-width: 36rem;
}
.mv-bluehero__brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0;
}
.mv-bluehero__brand span:first-child {
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.mv-bluehero__brand span:last-child {
  font-size: 0.95rem;
  color: var(--steel);
}
.mv-bluehero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25;
  font-weight: 500;
  max-width: 18em;
  margin: 0.2rem 0;
}
.mv-bluehero__lead {
  max-width: 34em;
  color: var(--steel);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 0.5rem;
}
.mv-bluehero__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0 0;
}
.mv-bluehero__tags li {
  border: 1px solid var(--steel);
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--steel);
}
.mv-bluehero__figure {
  position: relative;
  min-height: 280px;
  background: var(--slate);
  overflow: hidden;
}
.mv-bluehero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(240,90,40,0.15) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(rgba(240,90,40,0.12) 1px, transparent 1px) 0 0 / 40px 40px;
  pointer-events: none;
}
.mv-bluehero__img,
.mv-bluehero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
  opacity: 0.88;
}
.mv-bluehero__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  margin: 0;
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--concrete);
  background: rgba(14,18,24,0.7);
  padding: 0.35rem 0.6rem;
}
@media (min-width: 900px) {
  .mv-bluehero { grid-template-columns: 1.05fr 0.95fr; }
  .mv-bluehero__figure { min-height: 100%; }
  .mv-bluehero__img,
  .mv-bluehero__figure img { min-height: 100%; position: absolute; inset: 0; }
}

.mv-catalog { overflow-x: auto; border: 2px solid var(--steel); background: var(--white); }
.mv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 640px;
}
.mv-table th,
.mv-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.mv-table th {
  background: var(--slate);
  color: var(--concrete);
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.mv-table tbody tr:hover { background: rgba(240,90,40,0.06); }
.mv-table td:first-child {
  font-family: var(--font-en);
  color: var(--safety);
  font-weight: 500;
  width: 3rem;
}
.mv-catalog__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--steel);
}

.mv-pipeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
@media (min-width: 800px) {
  .mv-pipeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
.mv-pipeline__step {
  position: relative;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--white);
}
@media (min-width: 800px) {
  .mv-pipeline__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.2rem;
    right: -0.55rem;
    width: 1rem;
    height: 2px;
    background: var(--safety);
    z-index: 1;
  }
}
.mv-pipeline__num {
  display: block;
  font-family: var(--font-en);
  color: var(--safety);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}
.mv-pipeline__step h3 { font-size: 1.05rem; margin: 0 0 0.5rem; font-weight: 500; }
.mv-pipeline__step p { margin: 0; font-size: 0.9rem; color: var(--steel); line-height: 1.6; }

.mv-paperlay {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .mv-paperlay { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
}
.mv-paper {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--safety);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 4px 4px 0 rgba(61,79,95,0.12);
}
.mv-checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
}
.mv-checklist li {
  display: flex;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
  line-height: 1.55;
}
.mv-checklist li span { color: var(--safety); flex-shrink: 0; }
.mv-paperlay__media { overflow: hidden; border: 2px solid var(--steel); }
.mv-paperlay__media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px; }

.mv-metrics {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .mv-metrics { grid-template-columns: repeat(3, 1fr); }
}
.mv-metric {
  background: var(--white);
  border-top: 3px solid var(--safety);
  border: 1px solid var(--line);
  border-top: 3px solid var(--safety);
  padding: 1.5rem 1.25rem;
}
.mv-metric__num {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  margin: 0 0 0.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.mv-metric__meta {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--safety);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.mv-metric h3 { font-size: 1.05rem; margin: 0 0 0.5rem; font-weight: 500; }
.mv-metric p { margin: 0; font-size: 0.9rem; color: var(--steel); line-height: 1.6; }

.mv-hublist {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(238,241,244,0.2);
}
.mv-hublist__item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(238,241,244,0.2);
}
.mv-hublist__n {
  font-family: var(--font-en);
  font-size: 1.25rem;
  color: var(--safety);
  font-weight: 500;
}
.mv-hublist__item h3 { margin: 0 0 0.35rem; font-size: 1.1rem; font-weight: 500; color: var(--concrete); }
.mv-hublist__item p { margin: 0; color: rgba(238,241,244,0.7); font-size: 0.92rem; line-height: 1.6; }
.mv-head--light { color: var(--concrete); }
.mv-head__sub--light { color: rgba(238,241,244,0.7); }

.mv-rfq {
  display: grid;
  gap: 1.5rem;
  background: var(--white);
  border: 2px solid var(--steel);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 900px) {
  .mv-rfq { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
}
.mv-rfq__side { overflow: hidden; border: 1px solid var(--line); }
.mv-rfq__side img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 240px; }

/* ===== Mobile polish ===== */
@media (max-width: 767px) {
  .mv-reveal--left,
  .mv-reveal--right {
    transform: translateY(var(--grid));
  }
  .mv-reveal--left.is-visible,
  .mv-reveal--right.is-visible {
    transform: translate3d(0, 0, 0);
  }
  .mv-bluehero {
    min-height: 100svh;
  }
  .mv-bluehero__brand {
    letter-spacing: 0.08em;
  }
  .mv-hero__actions,
  .mv-bluehero__sheet,
  .mv-rfq,
  .mv-sec .mv-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .mv-hero__actions .mv-btn,
  .mv-bluehero__sheet .mv-btn,
  .mv-rfq .mv-btn,
  .mv-sec .mv-actions .mv-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .mv-catalog {
    position: relative;
    -webkit-overflow-scrolling: touch;
  }
  .mv-catalog::after {
    content: "← スワイプ →";
    display: block;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--steel);
    padding: 0.55rem 0 0.15rem;
  }
  .mv-title,
  .mv-bluehero__title,
  .mv-bluehero__brand {
    overflow-wrap: anywhere;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .mv-sec {
    padding: 3rem 0;
  }
  .mv-btn {
    padding: 0.9rem 1.15rem;
  }
  .mv-bluehero__sheet {
    padding: 1.5rem 1.15rem;
  }
}

/* ===== Drive Journal unique industrial blocks ===== */
.mv-prose {
  max-width: 42em;
  margin: 0.75rem 0 1rem;
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.85;
}
.mv-bluehero__sheet .mv-prose {
  max-width: 36em;
  font-size: 0.9rem;
}

.mv-tco { margin-top: 0.5rem; }
.mv-table--tco td:first-child { color: var(--ink); font-weight: 500; width: 42%; }

.mv-route {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0;
}
@media (min-width: 800px) {
  .mv-route { grid-template-columns: repeat(3, 1fr); }
}
.mv-route__step {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--white);
  position: relative;
}
@media (min-width: 800px) {
  .mv-route__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.8rem;
    right: -0.5rem;
    width: 1rem;
    height: 2px;
    background: var(--safety);
    z-index: 1;
  }
}
.mv-route__n {
  display: block;
  font-family: var(--font-en);
  color: var(--safety);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}
.mv-route__step h3 { font-size: 1.05rem; margin: 0 0 0.4rem; font-weight: 500; }
.mv-route__step p { margin: 0; font-size: 0.9rem; color: var(--steel); }
.mv-route__media {
  border: 2px solid var(--steel);
  overflow: hidden;
}
.mv-route__media img { width: 100%; height: auto; max-height: 360px; object-fit: cover; }

.mv-ledger {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 2px solid var(--steel);
  background: var(--white);
}
.mv-ledger__row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.mv-ledger__row:last-child { border-bottom: none; }
.mv-ledger__n {
  font-family: var(--font-en);
  color: var(--safety);
  font-weight: 500;
}
.mv-ledger__label { font-weight: 500; }
.mv-ledger__mark {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--safety);
  color: var(--safety);
  padding: 0.2rem 0.5rem;
}

.mv-partner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--steel);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
@media (min-width: 900px) {
  .mv-partner { grid-template-columns: 1.1fr 0.9fr; }
}
.mv-partner__media { overflow: hidden; border: 1px solid var(--line); }
.mv-partner__media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }

.mv-worksheet {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .mv-worksheet { grid-template-columns: repeat(2, 1fr); }
}
.mv-worksheet__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--safety);
}
.mv-worksheet__box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--steel);
  flex-shrink: 0;
}
.mv-worksheet__n {
  font-family: var(--font-en);
  color: var(--safety);
  font-size: 0.8rem;
  font-weight: 500;
}

.mv-uptime {
  display: grid;
  gap: 1.5rem;
  background:
    linear-gradient(90deg, rgba(61,79,95,0.06) 1px, transparent 1px) 0 0 / var(--grid) var(--grid),
    linear-gradient(rgba(61,79,95,0.06) 1px, transparent 1px) 0 0 / var(--grid) var(--grid),
    var(--white);
  border: 2px solid var(--steel);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
@media (min-width: 900px) {
  .mv-uptime { grid-template-columns: 1fr 1.2fr; align-items: center; }
}
.mv-uptime__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 600px) {
  .mv-uptime__grid { grid-template-columns: repeat(3, 1fr); }
}
.mv-uptime__grid li {
  border: 1px solid var(--line);
  background: var(--concrete);
  padding: 0.85rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mv-uptime__grid strong {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--safety);
  font-weight: 500;
}
.mv-uptime__grid span { font-size: 0.88rem; color: var(--ink); }

.mv-bulletin {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--steel);
}
.mv-bulletin__item {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px dashed var(--line);
}
.mv-bulletin__item time {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--safety);
  font-weight: 500;
}
.mv-bulletin__item p { margin: 0; color: var(--steel); }

.mv-glossary {
  margin: 0;
  border: 2px solid var(--steel);
  background: var(--white);
}
.mv-glossary__row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.mv-glossary__row:last-child { border-bottom: none; }
.mv-glossary__row dt {
  font-family: var(--font-en);
  font-weight: 500;
  color: var(--safety);
  letter-spacing: 0.04em;
}
.mv-glossary__row dd { margin: 0; color: var(--steel); font-size: 0.92rem; }

.mv-tco-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: var(--slate);
  color: var(--concrete);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-left: 4px solid var(--safety);
}
.mv-tco-strip h2 { color: var(--concrete); }
.mv-tco-strip p { color: rgba(238, 241, 244, 0.75); max-width: 36em; }

.mv-checklist--grid {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--steel);
  padding: 0.5rem 1.25rem;
}
@media (min-width: 700px) {
  .mv-checklist--grid { grid-template-columns: repeat(2, 1fr); }
}

.mv-depot {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .mv-depot { grid-template-columns: 1fr 1fr; }
}
.mv-depot__media { overflow: hidden; border: 2px solid var(--steel); }
.mv-depot__media img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }

.mv-matrix {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .mv-matrix { grid-template-columns: repeat(3, 1fr); }
}
.mv-matrix__cell {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--safety);
  padding: 1.35rem 1.15rem;
}
.mv-matrix__n {
  font-family: var(--font-en);
  color: var(--safety);
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
.mv-matrix__cell h3 { font-size: 1.05rem; margin: 0 0 0.4rem; font-weight: 500; }
.mv-matrix__cell p { margin: 0; font-size: 0.9rem; color: var(--steel); }

/* =====================================================================
   MINATO YARD CONTROL — Drive Journal homepage v3 (dark, dj-* prefix)
   Full replacement of the old blueprint-hero / table / pipeline layout.
   Old .mv-bluehero / .mv-table / .mv-pipeline / .mv-checklist rules above
   are left in place (unused on the homepage) for other pages/history.
   ===================================================================== */

@keyframes dj-dash-x { from { background-position: 0 0; } to { background-position: 56px 0; } }
@keyframes dj-dash-y { from { background-position: 0 0; } to { background-position: 0 56px; } }

.dj-kicker {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--safety-soft);
  margin-bottom: 0.65rem;
}
.dj-kicker--amber { color: var(--safety); }
.dj-kicker--light { color: rgba(238, 241, 244, 0.55); }

.dj-head { max-width: 640px; margin-bottom: 2.5rem; }
.dj-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  margin-bottom: 0.75rem;
  color: var(--white);
  font-weight: 500;
}
.dj-head p { color: rgba(238, 241, 244, 0.68); }

/* ---------- 1. HERO ---------- */
.dj-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.dj-hero__media { position: absolute; inset: 0; z-index: 0; }
.dj-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.25) contrast(1.1) brightness(0.55);
}
.dj-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 18, 24, 0.3) 0%, rgba(14, 18, 24, 0.58) 48%, rgba(14, 18, 24, 0.95) 100%),
    linear-gradient(90deg, rgba(14, 18, 24, 0.8) 0%, rgba(14, 18, 24, 0.1) 62%);
}
.dj-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(240, 90, 40, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 90, 40, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.dj-hero__stage {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 11vw, 6.5rem);
  max-width: 780px;
  color: var(--concrete);
}
.dj-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--safety-soft);
  margin-bottom: 1.1rem;
}
.dj-hero__eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--safety); display: inline-block; }
.dj-hero__brand { margin: 0 0 1.2rem; line-height: 0.9; }
.dj-hero__brand-en {
  display: block;
  font-family: var(--font-en);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 9.5vw, 6.25rem);
  letter-spacing: 0.01em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(238, 241, 244, 0.92);
}
.dj-hero__brand-jp {
  display: block;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  letter-spacing: 0.34em;
  color: var(--safety-soft);
  margin-top: 0.5rem;
  font-weight: 500;
}
.dj-hero__tagline {
  font-size: clamp(1.55rem, 3.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.dj-hero__lead {
  max-width: 46em;
  color: rgba(238, 241, 244, 0.72);
  font-size: 0.94rem;
  line-height: 1.85;
  margin-bottom: 1.85rem;
}

/* ---------- 2. BAY DOORS ---------- */
.dj-bay { background: var(--slate); color: var(--concrete); }
.dj-bay__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
}
.dj-bay__door {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(150deg, var(--steel) 0%, #263340 100%);
  padding: 1.85rem 1.5rem 2rem;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s var(--ease);
}
.dj-bay__door::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.dj-bay__door::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: var(--safety);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.dj-bay__door:hover,
.dj-bay__door:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 26px 40px rgba(0, 0, 0, 0.5);
  filter: brightness(1.08);
}
.dj-bay__door:hover::after,
.dj-bay__door:focus-within::after { transform: scaleX(1); }
.dj-bay__num {
  position: relative;
  z-index: 1;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--safety-soft);
  margin-bottom: 0.9rem;
}
.dj-bay__door h3 { position: relative; z-index: 1; font-size: 1.3rem; font-weight: 500; margin-bottom: 0.6rem; }
.dj-bay__spec {
  position: relative;
  z-index: 1;
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--safety-soft);
  margin-bottom: 0.5rem;
}
.dj-bay__use { position: relative; z-index: 1; font-size: 0.88rem; color: rgba(238, 241, 244, 0.72); margin-top: auto; }

/* ---------- 3. ROUTE SPINE ---------- */
.dj-spine { background: var(--ink); color: var(--concrete); }
.dj-route { position: relative; padding-top: 2.75rem; margin-bottom: 3.5rem; }
.dj-route__hubs { list-style: none; display: flex; gap: 1.5rem; position: relative; z-index: 2; }
.dj-route__hub { flex: 1; padding-top: 2.5rem; position: relative; text-align: center; }
.dj-route__pin {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--safety);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 0 0 5px var(--ink), 0 0 0 6px rgba(240, 90, 40, 0.35);
}
.dj-route__hub h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.45rem; color: var(--white); }
.dj-route__hub p { font-size: 0.85rem; color: rgba(238, 241, 244, 0.65); }
.dj-route__line {
  position: absolute;
  top: 1.3rem;
  left: 4%;
  right: 4%;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--safety) 0 14px, transparent 14px 28px);
  background-size: 56px 2px;
  animation: dj-dash-x 1.6s linear infinite;
}

.dj-coverage { border-top: 1px dashed rgba(238, 241, 244, 0.18); padding-top: 2.5rem; }
.dj-coverage__title { font-size: 1.15rem; font-weight: 500; color: var(--white); margin: 0.35rem 0 1.75rem; }
.dj-coverage__nodes { list-style: none; display: flex; gap: 1.25rem; flex-wrap: wrap; }
.dj-coverage__node {
  flex: 1 1 220px;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: rgba(238, 241, 244, 0.04);
  border: 1px solid rgba(238, 241, 244, 0.12);
  padding: 1rem 1.1rem;
}
.dj-coverage__dot {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--safety-soft);
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dj-coverage__node h4 { font-size: 0.95rem; font-weight: 500; color: var(--white); margin-bottom: 0.3rem; }
.dj-coverage__node p { font-size: 0.82rem; color: rgba(238, 241, 244, 0.6); }

/* ---------- 4. FIELD NOTES ---------- */
.dj-fieldnotes { background: var(--slate); color: var(--concrete); }
.dj-fieldnotes__wrap { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) {
  .dj-fieldnotes__wrap { grid-template-columns: 1.3fr 0.9fr; }
}
.dj-stampcard {
  position: relative;
  background: rgba(14, 18, 24, 0.55);
  border: 1px solid rgba(240, 90, 40, 0.35);
  padding: clamp(2rem, 4vw, 3rem);
}
.dj-stamp {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border: 3px solid var(--safety);
  color: var(--safety);
  padding: 0.5rem 0.9rem;
  text-align: center;
  transform: rotate(-8deg);
  border-radius: 8px;
  opacity: 0.9;
  line-height: 1.3;
}
.dj-stamp__en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dj-stamp__jp { display: block; font-size: 0.7rem; letter-spacing: 0.08em; margin-top: 0.15rem; }
.dj-stampcard h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0.4rem 0 1rem; font-weight: 500; }
.dj-stampcard > p { color: rgba(238, 241, 244, 0.72); font-size: 0.95rem; line-height: 1.85; max-width: 46em; }
.dj-fieldlist { list-style: none; margin: 1.5rem 0 0.5rem; display: grid; gap: 0.7rem; }
.dj-fieldlist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed rgba(238, 241, 244, 0.18);
  font-size: 0.92rem;
  color: rgba(238, 241, 244, 0.85);
}
.dj-fieldlist__box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--safety);
  color: var(--safety);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 0.1rem;
}
.dj-fieldnotes .mv-link { color: var(--safety-soft); border-color: var(--safety-soft); }
.dj-fieldnotes .mv-link:hover { color: var(--white); border-color: var(--white); }
.dj-fieldnotes__photo {
  position: relative;
  max-width: 320px;
  margin-inline: auto;
  transform: rotate(-2.5deg);
  border: 6px solid var(--concrete);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.dj-fieldnotes__photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(1.05) saturate(0.95); }
.dj-fieldnotes__tag {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--safety);
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- 5. CASE BOARDS ---------- */
.dj-caseboards { background: var(--ink); color: var(--concrete); }
.dj-billboards { display: grid; border-top: 1px solid rgba(238, 241, 244, 0.14); }
@media (min-width: 800px) {
  .dj-billboards { grid-template-columns: repeat(3, 1fr); }
  .dj-billboard { border-left: 1px solid rgba(238, 241, 244, 0.14); }
  .dj-billboard:first-child { border-left: none; }
}
.dj-billboard { padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.1rem, 2vw, 1.85rem); border-bottom: 1px solid rgba(238, 241, 244, 0.14); }
.dj-billboard__num {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  line-height: 0.95;
  color: var(--safety);
  letter-spacing: -0.02em;
}
.dj-billboard__num em { font-style: normal; }
.dj-billboard__meta {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238, 241, 244, 0.5);
  font-family: var(--font-en);
}
.dj-billboard h3 { margin-top: 1rem; font-size: 1.15rem; font-weight: 500; color: var(--white); }
.dj-billboard p { margin-top: 0.55rem; font-size: 0.9rem; color: rgba(238, 241, 244, 0.68); }

.dj-gauges__head { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px dashed rgba(238, 241, 244, 0.18); }
.dj-gauges__head .dj-coverage__title { margin-bottom: 0; }
.dj-gauges { margin-top: 1.5rem; display: grid; gap: 1rem; }
@media (min-width: 700px) {
  .dj-gauges { grid-template-columns: repeat(4, 1fr); }
}
.dj-gauge { background: rgba(238, 241, 244, 0.04); border: 1px solid rgba(238, 241, 244, 0.14); padding: 1.15rem 1.25rem; }
.dj-gauge__top { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; }
.dj-gauge__top h4 { font-size: 0.82rem; font-weight: 500; color: var(--concrete); }
.dj-gauge__val { font-family: var(--font-en); color: var(--safety); font-weight: 500; font-size: 1.15rem; }
.dj-gauge__bar { margin-top: 0.75rem; height: 6px; background: rgba(238, 241, 244, 0.14); position: relative; overflow: hidden; }
.dj-gauge__fill { position: absolute; inset: 0; width: 0; background: linear-gradient(90deg, var(--safety), var(--safety-soft)); transition: width 1s var(--ease); }
.dj-gauge__note { margin-top: 0.6rem; font-size: 0.76rem; color: rgba(238, 241, 244, 0.5); }

/* ---------- 6. DISPATCH CTA ---------- */
.dj-cta { position: relative; min-height: 66vh; display: flex; align-items: flex-end; overflow: hidden; }
.dj-cta__media { position: absolute; inset: 0; z-index: 0; }
.dj-cta__media img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(0.2) brightness(0.6) contrast(1.05); }
.dj-cta__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14, 18, 24, 0.25) 0%, rgba(14, 18, 24, 0.55) 40%, rgba(14, 18, 24, 0.96) 100%);
}
.dj-cta__stage { position: relative; z-index: 2; padding-block: clamp(2.5rem, 7vw, 4.5rem); max-width: 640px; color: var(--concrete); }
.dj-cta__stage h2 { color: var(--white); font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 0.5rem 0 1rem; font-weight: 500; }
.dj-cta__stage p { color: rgba(238, 241, 244, 0.75); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.25rem; }
.dj-cta__perks { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem 0.9rem; margin-bottom: 1.75rem; }
.dj-cta__perks li {
  font-size: 0.82rem;
  color: var(--concrete);
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(238, 241, 244, 0.3);
  background: rgba(238, 241, 244, 0.06);
}
.dj-cta__perks li::before { content: "✓ "; color: var(--safety); }

/* ---------- Mobile ---------- */
@media (max-width: 820px) {
  .dj-route__hubs { flex-direction: column; gap: 2rem; }
  .dj-route__hub { padding-top: 0; padding-left: 3.5rem; text-align: left; }
  .dj-route__pin { top: 0; left: 0; transform: none; }
  .dj-route__line {
    top: 0;
    bottom: 0;
    left: 1.3rem;
    right: auto;
    width: 2px;
    height: auto;
    background-image: repeating-linear-gradient(180deg, var(--safety) 0 14px, transparent 14px 28px);
    background-size: 2px 56px;
    animation: dj-dash-y 1.6s linear infinite;
  }
}
@media (max-width: 800px) {
  .dj-bay__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .dj-bay__door { scroll-snap-align: start; }
}
@media (max-width: 600px) {
  .dj-hero__brand-jp { letter-spacing: 0.2em; }
  .dj-coverage__node { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .dj-route__line { animation: none; }
  .dj-bay__door { transition: none; }
}

