:root {
  --navy: #071b3b;
  --navy-2: #0b315c;
  --navy-3: #04142d;
  --orange: #f36c21;
  --blue: #1559ff;
  --ink: #071b3b;
  --text: #42516a;
  --muted: #6f7d90;
  --line: #dce5ed;
  --line-strong: #c8d5e1;
  --pale: #f4f8fb;
  --white: #ffffff;
  --color-background: #f7f7f5;
  --color-navy: #061731;
  --color-text: #061731;
  --color-orange: #ff5a00;
  --color-muted: #66758a;
  --color-dark-muted: rgba(255, 255, 255, 0.72);
  --color-divider: rgba(255, 255, 255, 0.42);
  --shadow: 0 24px 70px rgba(7, 27, 59, 0.12);
  --radius: 4px;
  --container: min(1200px, calc(100vw - 48px));
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(243, 108, 33, 0.22); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--orange);
  color: white;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(48px, 6vw, 78px) 0; position: relative; }
.section--pale { background: var(--pale); }
.section--navy { background: var(--navy); color: white; }
.section--tight { padding-block: clamp(34px, 4vw, 54px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.35; letter-spacing: .02em; }
h1 { font-size: clamp(2.35rem, 4.4vw, 4rem); margin-bottom: 18px; }
h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); margin-bottom: 0; }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
p { color: var(--text); }
.section--navy p { color: #bdcada; }
.lead { font-size: clamp(1rem, 1.45vw, 1.16rem); line-height: 1.75; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}
.section-heading__copy { margin: 0; font-size: .95rem; line-height: 1.75; }
.section-heading--single { grid-template-columns: 1fr; }
.section-heading--single .section-heading__copy { max-width: 720px; }

/* Header */
.site-header {
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(200, 213, 225, .75);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(7,27,59,.08); background: rgba(255,255,255,.98); }
.header-inner { height: 100%; display: flex; align-items: center; }
.site-logo { flex: 0 0 auto; display: inline-flex; align-items: center; text-decoration: none; }
.site-logo img { width: 150px; height: auto; }
.site-nav { margin-left: auto; display: flex; align-items: stretch; height: 100%; }
.site-nav__list { list-style: none; display: flex; align-items: stretch; gap: clamp(22px, 2.3vw, 36px); margin: 0; padding: 0; }
.site-nav__item { position: relative; display: flex; align-items: stretch; }
.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  white-space: nowrap;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after,
.site-nav__link[aria-current="true"]::after { transform: scaleX(1); }
.site-nav__item--has-subnav { position: relative; }
.site-subnav {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 210px;
  padding: 12px;
  border: 1px solid rgba(200, 213, 225, .9);
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 44px rgba(7,27,59,.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s step-end;
}
.site-nav__item--has-subnav:hover .site-subnav,
.site-nav__item--has-subnav:focus-within .site-subnav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity .18s ease, transform .18s ease;
}
.site-subnav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 9px 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .09em;
}
.site-subnav a::after { content: "→"; color: var(--orange); opacity: .6; }
.site-subnav a:hover,
.site-subnav a[aria-current="page"] { background: #f4f8fb; color: var(--navy-2); }
.header-contact {
  margin-left: 30px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  background: var(--navy);
  color: white;
  border-radius: 2px;
  text-decoration: none;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .1em;
  transition: transform .2s ease, background .2s ease;
}
.header-contact span { color: var(--orange); }
.header-contact:hover { transform: translateY(-2px); background: var(--navy-2); }
.menu-toggle { display: none; }

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 230px;
  padding: 14px 20px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: white;
  border-radius: 2px;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button::after { content: "→"; color: var(--orange); font-size: 1.1em; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(7,27,59,.16); }
.button--outline { background: white; color: var(--navy); border-color: #8493a7; }
.button--white { background: white; color: var(--navy); border-color: white; }
.button--ghost { background: transparent; color: white; border-color: rgba(255,255,255,.42); }
.button--small { min-width: 0; min-height: 44px; padding: 10px 16px; font-size: .76rem; }

/* Hero */
.hero {
  min-height: min(560px, calc(100vh - var(--header-h)));
  position: relative;
  overflow: clip;
  border-bottom: 1px solid #e7edf3;
  background: white;
}
.hero__inner { min-height: inherit; display: flex; align-items: center; position: relative; z-index: 3; }
.hero__copy { width: min(610px, 52%); padding-block: 48px 52px; }
.hero__copy p { max-width: 570px; font-size: clamp(.96rem, 1.2vw, 1.06rem); line-height: 1.75; margin-bottom: 20px; }
.hero__visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: 50.5%;
  clip-path: polygon(24% 0,100% 0,100% 100%,0 100%);
  background: var(--navy) center / cover no-repeat;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7,27,59,.10), rgba(7,27,59,.18));
}
.hero__visual--network { background-image: url('../img/hero-network-premium.png'); }
.hero__visual--dashboard { background-image: url('../img/ai-dashboard-premium.png'); }
.hero__visual--logistics { background-image: linear-gradient(90deg, rgba(4,20,45,.9), rgba(4,20,45,.28)), url('../img/warehouse.webp'); background-position: center; }
.hero__visual--map { background-image: url('../img/logistics-map-premium.png'); }
.hero__visual--mission { background-image: url('../img/mission-orbit-premium.png'); }
.hero__chips { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-chip {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(4,20,45,.64);
  color: white;
  backdrop-filter: blur(8px);
  font-size: .68rem;
  letter-spacing: .16em;
  font-weight: 800;
}
.hero-chip::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); margin-right: 8px; }
.hero-chip:nth-child(1) { left: 35%; top: 28%; }
.hero-chip:nth-child(2) { left: 54%; top: 50%; }
.hero-chip:nth-child(3) { left: 34%; top: 70%; }
.hero__label { position: absolute; z-index: 2; right: 34px; top: 30px; color: white; text-align: right; }
.hero__label small { display: block; color: #aabed1; letter-spacing: .2em; font-size: .62rem; }
.hero__label strong { display: block; margin-top: 7px; letter-spacing: .12em; font-size: .9rem; }
.hero__scroll { position: absolute; z-index: 4; left: 50%; bottom: 14px; color: #718096; font-size: .58rem; letter-spacing: .16em; transform: translateX(-50%); }
.hero__scroll::after { content: ""; display: block; width: 1px; height: 22px; margin: 6px auto 0; background: #9ba8b8; }

/* Page hero */
.page-hero { min-height: 400px; }
.page-hero .hero__copy { width: min(660px, 56%); padding-block: 46px; }
.page-hero h1 { font-size: clamp(2.3rem, 3.45vw, 3.1rem); }
.news-hero { min-height: 0; }
.news-hero .hero__inner { min-height: 0; }
.news-hero .hero__copy { width: min(720px, 100%); padding-block: clamp(44px, 6vw, 68px); }
.news-hero .hero__copy > p:last-child { margin-bottom: 0; }
.responsive-heading__line { display: block; white-space: nowrap; }

/* Solutions index */
.solutions-hero {
  position: relative;
  min-height: min(660px, calc(100vh - var(--header-h)));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(110deg, rgba(4,20,45,.98) 0%, rgba(7,27,59,.94) 46%, rgba(7,27,59,.45) 100%),
    url('../img/hero-network-premium.png') right center / cover no-repeat;
}
.solutions-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -46% 36%;
  height: 78%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 145px rgba(255,255,255,.018);
}
.solutions-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding-block: clamp(52px, 6vw, 76px) clamp(52px, 7vw, 86px);
}
.solutions-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(3.2rem, 5.3vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: .015em;
}
.solutions-hero__line { display: block; white-space: nowrap; }
.solutions-hero p {
  max-width: 720px;
  margin: 0;
  color: #c9d5df;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}
.solutions-hero__meta {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.solutions-hero__meta div {
  padding: 18px;
  background: rgba(4,20,45,.62);
}
.solutions-hero__meta small {
  display: block;
  color: var(--orange);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .17em;
}
.solutions-hero__meta strong {
  display: block;
  margin-top: 8px;
  color: white;
  font-size: 1.05rem;
}
.solution-lanes {
  display: grid;
  gap: 16px;
}
.solution-lane {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr) auto;
  gap: clamp(22px, 3.2vw, 52px);
  align-items: center;
  min-height: 260px;
  padding: clamp(28px, 4.2vw, 56px);
  border: 1px solid var(--line);
  background: white;
}
.solution-lane::before {
  content: "";
  position: absolute;
  inset: -45% -14% auto auto;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(7,27,59,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(7,27,59,.035), 0 0 0 116px rgba(7,27,59,.02);
}
.solution-lane--dark {
  border-color: var(--navy);
  background:
    linear-gradient(110deg, rgba(7,27,59,.98), rgba(7,27,59,.86)),
    url('../img/logistics-map-premium.png') right center / cover no-repeat;
  color: white;
}
.solution-lane--dark::before {
  border-color: rgba(255,255,255,.13);
  box-shadow: 0 0 0 58px rgba(255,255,255,.03), 0 0 0 116px rgba(255,255,255,.018);
}
.solution-lane__index {
  position: relative;
  z-index: 1;
  color: var(--orange);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
}
.solution-lane__copy {
  position: relative;
  z-index: 1;
}
.solution-lane__copy small {
  display: block;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .17em;
}
.solution-lane h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.16;
}
.solution-lane p {
  max-width: 700px;
  margin: 0 0 22px;
  font-size: .96rem;
}
.solution-lane--dark p { color: #c4cfdb; }
.solution-lane__action {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-width: 160px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  color: var(--orange);
  text-decoration: none;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .13em;
}
.solution-lane--dark .solution-lane__action { border-color: rgba(255,255,255,.22); }
.solution-lane__action::after { content: "→"; display: block; margin-top: 8px; font-size: 1.3rem; }
.solution-usecase-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.solution-usecase-group {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: white;
}
.solution-usecase-group--dark {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}
.solution-usecase-group small,
.case-taxonomy small {
  color: var(--orange);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.solution-usecase-group h3 { margin: 12px 0 18px; }
.solution-usecase-group p { font-size: .86rem; }
.solution-usecase-group--dark p { color: #c4cfdb; }
.solution-usecase-list {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.solution-usecase-group--dark .solution-usecase-list { border-color: #294867; }
.solution-usecase-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: .86rem;
}
.solution-usecase-list li::after { content: "→"; color: var(--orange); }
.solution-usecase-group--dark .solution-usecase-list li {
  border-color: #294867;
  color: #d2dbe5;
}

/* Cards */
.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  background: white;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card--dark { background: var(--navy); border-color: var(--navy); color: white; }
.card--dark p { color: #bdcada; }
.card__number { color: var(--orange); font-size: .68rem; letter-spacing: .16em; font-weight: 900; }
.card__icon {
  width: 50px; height: 50px; margin: 20px 0 16px; display: grid; place-items: center;
  border-radius: 50%; background: #eef4f8; color: var(--navy-2);
}
.card--dark .card__icon { background: #143b68; color: white; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: .88rem; line-height: 1.75; }
.card__link { position: absolute; right: 26px; bottom: 22px; color: var(--orange); text-decoration: none; font-size: .75rem; font-weight: 900; }
.card__link::after { content: " →"; }

.solution-card { min-height: 320px; padding: 32px; overflow: hidden; }
.solution-card__label { color: var(--orange); font-size: .68rem; letter-spacing: .18em; font-weight: 900; }
.solution-card h3 { margin: 18px 0 14px; font-size: clamp(1.55rem, 2.6vw, 2.1rem); }
.solution-card__list { list-style: none; margin: 22px 0 0; padding: 0; }
.solution-card__list li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-top: 1px solid #e1e8ee; color: var(--text); font-size: .84rem; }
.card--dark .solution-card__list li { border-color: #294867; color: #c3cfdb; }
.solution-card--focus::after { content: "FOCUS AREA"; position: absolute; right: -29px; top: 47px; transform: rotate(90deg); color: var(--orange); font-size: .6rem; letter-spacing: .2em; font-weight: 900; }

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--line);
}
.process__item { position: relative; padding: 24px 20px; }
.process__item:not(:last-child)::after { content: "→"; position: absolute; right: -8px; top: 40px; z-index: 2; color: var(--orange); font-size: 1.2rem; }
.process__number { color: var(--orange); font-size: .68rem; letter-spacing: .16em; font-weight: 900; }
.process__item h3 { font-size: 1rem; margin: 13px 0 8px; }
.process__item p { margin: 0; font-size: .76rem; line-height: 1.7; }

/* Flow */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); background: white; color: var(--ink); border: 1px solid var(--line); }
.flow__item { position: relative; padding: 26px; }
.flow__item:not(:last-child) { border-right: 1px solid var(--line); }
.flow__item:not(:last-child)::after { content: "→"; position: absolute; right: -13px; top: 46px; z-index: 2; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--orange); color: white; font-size: .8rem; }
.flow__item small { color: var(--orange); font-size: .65rem; letter-spacing: .16em; font-weight: 900; }
.flow__item strong { display: block; margin: 8px 0 9px; font-size: 1.25rem; }
.flow__item p { margin: 0; font-size: .82rem; line-height: 1.8; }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 9px; }
.tag { display: inline-flex; align-items: center; min-height: 34px; padding: 7px 13px; border: 1px solid var(--line-strong); border-radius: 999px; background: white; color: #47566b; font-size: .72rem; }
.card--dark .tag { background: transparent; color: #d2dce5; border-color: #3f5c7a; }

/* Decision diagram */
.decision { display: grid; grid-template-columns: 1fr 72px 1.06fr 72px 1fr; align-items: stretch; }
.decision__box { padding: 24px; border: 1px solid var(--line); background: white; }
.decision__box--core { background: var(--navy); border-color: var(--navy); color: white; }
.decision__label { color: var(--orange); font-size: .66rem; letter-spacing: .17em; font-weight: 900; }
.decision__box h3 { margin: 14px 0 18px; }
.decision__box ul { list-style: none; margin: 0; padding: 0; }
.decision__box li { padding: 9px 0; border-top: 1px solid #e6edf2; color: var(--text); font-size: .82rem; }
.decision__box--core li { color: #c3cfdb; border-color: #294867; }
.decision__arrow { display: grid; place-items: center; color: var(--orange); font-size: 1.9rem; }

/* Feature list */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--line); background: white; }
.feature__icon { flex: 0 0 48px; height: 48px; display: grid; place-items: center; color: var(--navy-2); background: #eef4f8; border-radius: 50%; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { margin: 0 0 7px; font-size: 1rem; }
.feature p { margin: 0; font-size: .8rem; line-height: 1.75; }

/* Mission */
.mission-quote { padding: 18px 0 18px 30px; border-left: 4px solid var(--orange); font-size: clamp(1.35rem, 2.5vw, 2.15rem); font-weight: 800; line-height: 1.65; }
.mission-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 38px; align-items: center; }
.mission-visual { min-height: 360px; background: var(--navy) url('../img/mission-orbit-premium.png') center/cover no-repeat; box-shadow: var(--shadow); }
.mvv-section {
  overflow: hidden;
  padding: 0 0 clamp(112px, 7.5vw, 160px);
  background: var(--color-navy);
}
.mvv-section > .container {
  position: relative;
  width: 100%;
  max-width: none;
}
.mvv-section__eyebrow {
  position: absolute;
  top: clamp(32px, 3.9vw, 52px);
  left: clamp(34px, 6.45vw, 100px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  color: var(--color-orange);
  font-size: clamp(.84rem, 1.05vw, 1.02rem);
  font-weight: 800;
  letter-spacing: .23em;
}
.mvv-section__eyebrow::before {
  content: "";
  width: 56px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}
.mvv-showcase {
  position: relative;
  height: clamp(1100px, 74vw, 1200px);
  min-height: 1100px;
  overflow: hidden;
  background: var(--color-background);
}
.mvv-showcase__mission {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 63%) minmax(360px, 37%);
  height: 58%;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(90deg, var(--color-background) 0%, #f9faf9 62%, #eef1f4 100%);
}
.mvv-showcase__mission::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0 61%, rgba(219,224,230,.82) 61% 100%);
  clip-path: polygon(75% 0, 100% 0, 100% 100%, 63% 100%);
}
.mvv-showcase__mission-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding: clamp(144px, 11.1vw, 174px) clamp(28px, 3vw, 50px) 0 clamp(54px, 6.45vw, 100px);
}
.mvv-showcase__mission h1 {
  max-width: 940px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(48px, 4.1vw, 63px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0;
}
.mvv-nowrap {
  display: inline-block;
  white-space: nowrap;
}
.mvv-break-mobile { display: none; }
.mvv-showcase__mission p {
  max-width: 730px;
  margin: clamp(26px, 2.6vw, 40px) 0 0;
  color: var(--color-muted);
  font-size: clamp(1.25rem, 1.45vw, 1.48rem);
  line-height: 1.72;
  letter-spacing: .02em;
}
.mvv-flow-lines {
  position: absolute;
  z-index: 1;
  left: 31%;
  right: 18%;
  bottom: 3.5%;
  width: 51%;
  height: 39%;
  opacity: .76;
  pointer-events: none;
}
.mvv-sculpture {
  position: relative;
  min-width: 0;
  pointer-events: none;
}
.mvv-sculpture__scene {
  position: absolute;
  top: 17%;
  right: -2.2vw;
  width: clamp(560px, 42vw, 720px);
  height: 72%;
  max-width: none;
}
.mvv-sculpture__balance {
  transform-origin: 454px 300px;
  animation: mvv-balance-float 8s ease-in-out infinite;
}
.mvv-showcase__principles {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 50%;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(112deg, #061731 0%, #071833 62%, #061a36 100%);
  clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%);
  isolation: isolate;
}
.mvv-showcase__principles::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 58%, rgba(255,255,255,.035), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 46%);
}
.mvv-showcase__principles::after {
  content: "";
  position: absolute;
  top: 17%;
  left: 50%;
  width: 1px;
  height: 74%;
  background: var(--color-divider);
  transform: translateX(-50%) rotate(7deg);
  transform-origin: center;
}
.mvv-principle {
  position: relative;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(84px, 6vw, 96px);
  padding-bottom: clamp(48px, 4vw, 64px);
  color: #fff;
  background: transparent;
}
.mvv-principle--vision { padding-left: clamp(78px, 11.8vw, 182px); padding-right: clamp(20px, 2vw, 36px); }
.mvv-principle--value { padding-left: clamp(52px, 6.8vw, 104px); padding-right: clamp(58px, 8.2vw, 126px); }
.mvv-principle__icon {
  position: relative;
  z-index: 1;
  width: clamp(88px, 6.35vw, 104px);
  height: clamp(88px, 6.35vw, 104px);
  margin-bottom: clamp(16px, 1.4vw, 22px);
  color: currentColor;
}
.mvv-principle__label {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--color-orange);
  font-size: clamp(1rem, 1.06vw, 1.12rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .22em;
}
.mvv-principle__label::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 14px;
  background: currentColor;
}
.mvv-principle h2 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: clamp(18px, 1.6vw, 24px) 0 clamp(18px, 1.5vw, 24px);
  color: #fff;
  font-size: clamp(2.35rem, 2.48vw, 2.58rem);
  font-weight: 800;
  line-height: 1.46;
  letter-spacing: .01em;
}
.mvv-principle p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: var(--color-dark-muted);
  font-size: clamp(1.12rem, 1.32vw, 1.3rem);
  line-height: 1.82;
  letter-spacing: .01em;
}

@keyframes mvv-balance-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(.35deg); }
}

/* Profiles */
.profile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.profile-grid--stacked { grid-template-columns: 1fr; grid-auto-rows: 1fr; }
.profile { display: grid; grid-template-columns: 170px 1fr; min-height: 260px; border: 1px solid var(--line); background: white; }
.profile-grid--stacked .profile { grid-template-columns: 220px 1fr; min-height: 0; }
.profile__image { width: 170px; height: 100%; object-fit: cover; }
.profile-grid--stacked .profile__image { width: 220px; align-self: center; }
.profile__body { padding: 24px; }
.profile__role { color: var(--orange); font-size: .67rem; letter-spacing: .16em; font-weight: 900; }
.profile h3 { margin: 10px 0 12px; font-size: 1.45rem; }
.profile p { margin: 0; font-size: .82rem; line-height: 1.85; }
.profile__bio { margin: 0; padding-left: 1.15em; color: #4e5d70; }
.profile__bio li { padding-left: .2em; font-size: .84rem; line-height: 1.85; }
.profile__bio li + li { margin-top: 7px; }
.profile__bio li::marker { color: var(--orange); }
.profile .tags { margin-top: 14px; }

/* Table */
.definition-list { display: grid; grid-template-columns: 190px 1fr; margin: 0; border-top: 1px solid var(--line); }
.definition-list dt, .definition-list dd { margin: 0; padding: 18px 20px; border-bottom: 1px solid var(--line); font-size: .86rem; }
.definition-list dt { background: var(--pale); color: var(--muted); }
.definition-list dd { color: var(--ink); }

/* Use cases */
.case-filter-shell {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #f8fbfd;
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.filter-button { border: 1px solid var(--line-strong); background: white; padding: 9px 15px; cursor: pointer; font-size: .72rem; transition: border-color .2s ease, transform .2s ease; }
.filter-button:hover { transform: translateY(-1px); }
.filter-button[aria-pressed="true"] { background: var(--navy); color: white; border-color: var(--navy); }
.case-filter-shell .filters { margin-bottom: 14px; }
.case-taxonomy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.case-taxonomy div { min-width: 0; padding: 16px; background: white; }
.case-taxonomy p { margin: 8px 0 0; font-size: .78rem; line-height: 1.75; }
.use-case-card[hidden] { display: none; }
.use-case-card { min-width: 0; border: 1px solid var(--line); background: white; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.use-case-card:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(7,27,59,.1); border-color: transparent; }
.use-case-card__visual { height: 140px; position: relative; overflow: hidden; background: linear-gradient(135deg,#eaf2f8,#cbddea); }
.use-case-card__visual::before { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(7,27,59,.15); background: repeating-linear-gradient(90deg,transparent 0 50px,rgba(7,27,59,.04) 51px), repeating-linear-gradient(0deg,transparent 0 38px,rgba(7,27,59,.04) 39px); }
.use-case-card__visual::after { content: attr(data-label); position: absolute; left: 26px; bottom: 22px; color: var(--navy); font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.use-case-card__visual--ai { background: linear-gradient(135deg, #edf4fb, #d3e2ef); }
.use-case-card__visual--logistics { background: linear-gradient(135deg, #071b3b, #0b315c); }
.use-case-card__visual--logistics::before { border-color: rgba(255,255,255,.18); background: repeating-linear-gradient(90deg,transparent 0 50px,rgba(255,255,255,.06) 51px), repeating-linear-gradient(0deg,transparent 0 38px,rgba(255,255,255,.05) 39px); }
.use-case-card__visual--logistics::after { color: white; }
.use-case-card__body { padding: 22px; }
.use-case-card__body small { color: var(--orange); letter-spacing: .13em; font-size: .64rem; font-weight: 900; }
.use-case-card h3 { margin: 12px 0; font-size: 1.2rem; }
.use-case-card p { margin: 0; font-size: .8rem; line-height: 1.8; }
.notice { padding: 18px 22px; border-left: 3px solid var(--orange); background: #fff7f1; color: #5c6270; font-size: .78rem; }

/* News */
.news-list { border-top: 1px solid var(--line); }
.news-item { display: grid; grid-template-columns: 120px 120px 1fr 30px; align-items: center; gap: 16px; padding: 18px 10px; border-bottom: 1px solid var(--line); text-decoration: none; }
.news-item time { color: var(--muted); font-size: .75rem; }
.news-item__category { color: var(--orange); font-size: .66rem; letter-spacing: .14em; font-weight: 900; }
.news-item h3 { margin: 0; font-size: .94rem; }
.news-item__arrow { color: var(--orange); font-size: 1.15rem; }
.empty-state { padding: 38px; border: 1px dashed #b7c5d2; background: white; text-align: center; }
.empty-state h3 { margin-bottom: 10px; }
.empty-state p { margin: 0; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__button { width: 100%; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 4px; text-align: left; cursor: pointer; font-weight: 800; }
.faq__button::after { content: "+"; color: var(--orange); font-size: 1.5rem; font-weight: 400; transition: transform .2s ease; }
.faq__button[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__answer { padding: 0 4px 18px; }
.faq__answer[hidden] { display: none; }
.faq__answer p { margin: 0; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 26px; align-items: start; }
.form-card { border: 1px solid var(--line); background: white; padding: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; margin-bottom: 8px; font-size: .78rem; font-weight: 800; }
.required { color: var(--orange); font-size: .66rem; margin-left: 8px; }
.form-control { width: 100%; min-height: 52px; border: 1px solid var(--line-strong); background: #fbfcfd; padding: 12px 14px; color: var(--ink); border-radius: 0; outline: none; transition: border-color .2s, box-shadow .2s; }
textarea.form-control { min-height: 160px; resize: vertical; }
.form-control:focus { border-color: var(--navy-2); box-shadow: 0 0 0 3px rgba(11,49,92,.1); }
.form-note { font-size: .72rem; line-height: 1.75; color: var(--muted); }
.form-note a { color: var(--navy-2); }
.honeypot { position: absolute; left: -9999px; }
.form-status {
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid #b9382c;
  background: #fff4f2;
  color: #761f18;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.7;
}
.form-status[hidden] { display: none; }
.contact-side { background: var(--navy); color: white; padding: 28px; }
.contact-side h3 { margin-bottom: 18px; }
.contact-side ul { list-style: none; margin: 0; padding: 0; }
.contact-side li { display: flex; gap: 10px; padding: 12px 0; border-top: 1px solid #294867; color: #c8d3de; font-size: .82rem; }
.contact-side li::before { content: ""; flex: 0 0 6px; height: 6px; margin-top: 10px; border-radius: 50%; background: var(--orange); }
.contact-side__note { margin-top: 26px; padding-top: 22px; border-top: 1px solid #294867; }
.contact-side__note small { color: var(--orange); letter-spacing: .15em; font-weight: 900; }
.contact-side__note p { margin: 9px 0 0; font-size: .74rem; line-height: 1.8; }

/* CTA */
.cta { padding: clamp(42px, 5vw, 70px) 0; background: #eef4f8; }
.cta-box { position: relative; overflow: hidden; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 36px 42px; background: var(--navy); color: white; }
.cta-box::after { content: ""; position: absolute; width: 410px; height: 410px; right: -110px; top: -170px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 58px rgba(255,255,255,.03), 0 0 0 120px rgba(255,255,255,.02); }
.cta-box__copy { position: relative; z-index: 2; }
.cta-box h2 { font-size: clamp(1.65rem, 2.8vw, 2.45rem); margin-bottom: 10px; }
.cta-box p { margin: 0; color: #c0cddb; }
.cta-box .button { position: relative; z-index: 2; flex: 0 0 auto; }

/* Footer */
.site-footer { background: var(--navy-3); color: white; padding: 40px 0 22px; }
.footer-main { display: grid; grid-template-columns: 1fr 1.2fr; gap: 46px; }
.footer-logo { width: 148px; height: auto; margin-bottom: 16px; }
.footer-brand p { max-width: 360px; color: #90a4b8; font-size: .78rem; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 28px; }
.footer-nav a { color: #d5dee7; text-decoration: none; font-size: .7rem; letter-spacing: .1em; }
.footer-nav a:hover { color: var(--orange); }
.footer-sub { display: flex; justify-content: space-between; gap: 24px; margin-top: 28px; padding-top: 16px; border-top: 1px solid #1d3550; color: #74889c; font-size: .65rem; letter-spacing: .08em; }
.footer-sub__links { display: flex; gap: 20px; }
.footer-sub a { text-decoration: none; }

/* Legal */
.legal { max-width: 840px; margin-inline: auto; }
.legal h2 { margin: 36px 0 12px; font-size: 1.38rem; }
.legal h3 { margin: 26px 0 10px; font-size: 1.02rem; }
.legal p, .legal li { font-size: .88rem; line-height: 1.85; }
.legal ul { padding-left: 1.3em; }

/* 404 */
.error-page { min-height: calc(100vh - var(--header-h)); display: grid; place-items: center; background: var(--navy); color: white; text-align: center; padding: 40px; }
.error-page__code { color: var(--orange); font-size: clamp(5rem, 18vw, 12rem); font-weight: 900; line-height: 1; }
.error-page p { color: #bdcada; }

/* Reveal */
html.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
html.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --container: min(100% - 40px, 1000px); }
  .site-nav__list { gap: 20px; }
  .header-contact { margin-left: 20px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .mvv-showcase__mission { grid-template-columns: minmax(0, 64%) minmax(300px, 36%); }
  .mvv-showcase__mission-copy { padding-left: 48px; }
  .mvv-showcase__mission h1 { font-size: clamp(42px, 4.2vw, 48px); }
  .mvv-showcase__mission p { font-size: 1.14rem; }
  .mvv-principle { padding-top: 88px; }
  .mvv-principle--vision { padding-left: 82px; padding-right: 42px; }
  .mvv-principle--value { padding-left: 58px; padding-right: 44px; }
  .mvv-principle h2 { font-size: 2rem; }
  .profile { grid-template-columns: 160px 1fr; }
  .profile__image { width: 160px; }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .hero__label { right: 16px; }
  .hero__label strong { font-size: .82rem; letter-spacing: .08em; }
}

@media (min-width: 901px) and (max-width: 1320px) {
  .mvv-principle--vision { padding-left: clamp(56px, 8vw, 105px); padding-right: 24px; }
  .mvv-principle--value { padding-left: clamp(48px, 6vw, 78px); padding-right: 38px; }
  .mvv-principle h2 { font-size: clamp(1.8rem, 2.55vw, 2.12rem); line-height: 1.5; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; --container: min(100% - 32px, 760px); }
  .site-logo img { width: 130px; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    z-index: 999;
    display: block;
    height: min(calc(var(--header-h) * 4), calc(100dvh - var(--header-h)));
    padding: 14px 24px;
    background: white;
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: clip-path .28s ease, opacity .2s ease, visibility .2s step-end;
    overflow-y: auto;
  }
  .menu-open .site-nav {
    clip-path: inset(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: clip-path .28s ease, opacity .2s ease;
  }
  .site-nav__list { display: block; }
  .site-nav__item { display: block; }
  .site-nav__link { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: .85rem; }
  .site-nav__link::after { display: none; }
  .site-subnav {
    position: static;
    min-width: 0;
    padding: 0 0 8px 18px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .site-subnav a {
    min-height: 34px;
    padding: 7px 0;
    color: var(--muted);
    font-size: .74rem;
  }
  .site-subnav a:hover,
  .site-subnav a[aria-current="page"] { background: transparent; color: var(--navy); }
  .site-nav__item--has-subnav:hover .site-subnav,
  .site-nav__item--has-subnav:focus-within .site-subnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .header-contact { display: none; }
  .menu-toggle {
    margin-left: auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle__lines { width: 26px; height: 18px; position: relative; }
  .menu-toggle__lines::before,
  .menu-toggle__lines::after,
  .menu-toggle__lines span { content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: var(--navy); transition: .22s ease; }
  .menu-toggle__lines::before { top: 0; }
  .menu-toggle__lines span { top: 8px; }
  .menu-toggle__lines::after { top: 16px; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before { top: 8px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines span { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::after { top: 8px; transform: rotate(-45deg); }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero__inner { min-height: 400px; align-items: flex-start; }
  .hero__copy { width: 100%; padding: 40px 0 38px; }
  .hero__copy p { max-width: 630px; }
  .hero__visual { position: relative; width: 100%; height: 280px; clip-path: none; }
  .hero__scroll { display: none; }
  .hero__label { right: 24px; top: 22px; }
  .menu-open .hero .hero__label { top: var(--menu-safe-label-top, 22px); }
  .solutions-hero { min-height: auto; }
  .solutions-hero__inner { grid-template-columns: 1fr; padding-block: 70px 50px; }
  .solutions-hero h1 { font-size: clamp(3rem, 11vw, 5.2rem); }
  .solution-lane { grid-template-columns: 1fr; min-height: 0; }
  .solution-lane__action {
    min-height: 58px;
    align-self: auto;
    place-items: center start;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .solution-lane--dark .solution-lane__action { border-top-color: rgba(255,255,255,.22); }
  .solution-lane__action::after { display: inline; margin: 0 0 0 10px; }
  .solution-usecase-board { grid-template-columns: 1fr; }
  .case-taxonomy { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .mvv-section { background: var(--color-navy); }
  .mvv-section > .container { width: 100%; }
  .mvv-section__eyebrow {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin: 0;
    padding: 42px 28px 28px;
    background: var(--color-background);
  }
  .mvv-showcase {
    height: auto;
    min-height: 0;
  }
  .mvv-showcase__mission { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .mvv-showcase__mission::before {
    clip-path: polygon(62% 0, 100% 0, 100% 58%, 76% 72%);
    opacity: .85;
  }
  .mvv-showcase__mission-copy { padding: 54px 28px 34px; }
  .mvv-showcase__mission h1 { font-size: clamp(2.45rem, 8vw, 3.2rem); line-height: 1.36; }
  .mvv-nowrap { white-space: normal; }
  .mvv-break-mobile { display: initial; }
  .mvv-break-desktop { display: none; }
  .mvv-showcase__mission p { font-size: 1rem; }
  .mvv-flow-lines { display: none; }
  .mvv-sculpture { min-height: 280px; }
  .mvv-sculpture__scene { top: -18px; left: auto; right: -30px; width: min(100vw, 560px); height: 310px; min-width: 0; }
  .mvv-showcase__principles {
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
    clip-path: none;
  }
  .mvv-showcase__principles::after {
    top: auto;
    left: 30px;
    right: auto;
    bottom: 50%;
    width: 96px;
    height: 1px;
    transform: none;
  }
  .mvv-principle {
    min-height: 0;
    padding: 72px 30px 72px;
  }
  .mvv-principle--vision,
  .mvv-principle--value {
    padding-left: 30px;
    padding-right: 30px;
  }
  .mvv-principle__icon { width: 80px; height: 80px; }
  .mvv-principle h2 { font-size: clamp(1.85rem, 5.3vw, 2.15rem); }
  .mvv-principle p { font-size: 1rem; }
  .process { grid-template-columns: 1fr; border: 1px solid var(--line); }
  .process__item { border-bottom: 1px solid var(--line); }
  .process__item:last-child { border-bottom: 0; }
  .process__item:not(:last-child)::after { content: "↓"; right: 24px; top: auto; bottom: -14px; width: 28px; height: 28px; display: grid; place-items: center; background: white; }
  .flow { grid-template-columns: 1fr; }
  .flow__item:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }
  .flow__item:not(:last-child)::after { content: "↓"; right: 28px; top: auto; bottom: -13px; }
  .decision { grid-template-columns: 1fr; gap: 0; }
  .decision__arrow { min-height: 58px; }
  .decision__arrow::before { content: "↓"; }
  .decision__arrow { font-size: 0; }
  .mission-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .cta-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 28px); }
  .section { padding-block: 44px; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.4rem); }
  h2 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .hero__inner { min-height: 350px; }
  .hero__copy { padding-top: 34px; }
  .hero__visual { height: 220px; }
  .button-row { align-items: stretch; }
  .button { width: 100%; min-width: 0; }
  .grid--2, .grid--3, .grid--4, .features { grid-template-columns: 1fr; }
  .case-filter-shell { padding: 14px; }
  .solution-lane { padding: 26px 22px; }
  .solution-lane h2 { font-size: clamp(1.85rem, 10vw, 2.7rem); }
  .solutions-hero__meta div { padding: 15px; }
  .solution-usecase-group { padding: 22px; }
  .mvv-section { padding: 0 0 clamp(68px, 18vw, 92px); }
  .mvv-section > .container { width: 100%; }
  .mvv-section__eyebrow {
    gap: 14px;
    padding: 36px 22px 24px;
    white-space: normal;
    font-size: .78rem;
    letter-spacing: .18em;
  }
  .mvv-section__eyebrow::before { width: 44px; }
  .mvv-showcase__mission-copy { padding: 48px 22px 28px; }
  .mvv-principle__label { font-size: .84rem; }
  .mvv-showcase__mission h1 { font-size: clamp(2.35rem, 10.2vw, 2.75rem); line-height: 1.36; }
  .mvv-showcase__mission p { font-size: .98rem; line-height: 1.85; }
  .mvv-sculpture { min-height: 220px; }
  .mvv-sculpture__scene { top: -24px; right: -26px; width: 112%; height: 260px; min-width: 0; }
  .mvv-principle { min-height: 0; padding: 66px 22px 70px; }
  .mvv-principle--vision,
  .mvv-principle--value { padding-left: 22px; padding-right: 22px; }
  .mvv-principle__icon { width: 76px; height: 76px; margin-bottom: 20px; }
  .mvv-principle h2 { margin: 24px 0 18px; font-size: clamp(1.75rem, 7.2vw, 1.95rem); line-height: 1.55; }
  .mvv-principle p { font-size: .96rem; line-height: 1.85; }
  .solution-card { min-height: 290px; padding: 24px; }
  .card { padding: 22px; }
  .profile { grid-template-columns: 1fr; }
  .profile__image { width: 100%; height: 240px; object-position: center 35%; }
  .definition-list { grid-template-columns: 1fr; }
  .definition-list dt { border-bottom: 0; padding-bottom: 8px; }
  .definition-list dd { padding-top: 8px; }
  .news-item { grid-template-columns: 1fr auto; gap: 8px 16px; }
  .news-item time, .news-item__category { grid-column: auto; }
  .news-item h3 { grid-column: 1 / -1; }
  .form-card { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .cta-box { padding: 30px 24px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-sub { flex-direction: column; }
  .hero-chip:nth-child(1) { left: 20%; }
  .hero-chip:nth-child(2) { left: 50%; }
  .hero-chip:nth-child(3) { left: 23%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Information architecture refresh */
.site-nav__item--mobile-home,
.site-nav__item--mobile-cta { display: none; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.breadcrumb a { color: var(--navy-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }

.home-hero .hero__copy { width: min(700px, 58%); }
.home-hero .hero__copy > p:not(.eyebrow) { max-width: min(570px, 86%); }
.home-hero h1 { font-size: clamp(2.8rem, 4.4vw, 4.2rem); line-height: 1.2; }
.home-hero__line { display: block; white-space: nowrap; }

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.strength-item { min-width: 0; padding: 28px clamp(20px, 2.6vw, 36px); }
.strength-item + .strength-item { border-left: 1px solid var(--line); }
.strength-item span,
.topic-item span,
.scope-item > span {
  color: var(--orange);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.strength-item h3 { margin: 20px 0 10px; }
.strength-item p { margin: 0; font-size: .86rem; line-height: 1.8; }

.service-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}
.service-panel {
  position: relative;
  min-width: 0;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(30px, 4vw, 50px);
  overflow: hidden;
  background: white;
}
.service-panel + .service-panel { border-left: 1px solid var(--line); }
.service-panel::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -180px;
  top: -170px;
  border: 1px solid rgba(7,27,59,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(7,27,59,.025), 0 0 0 100px rgba(7,27,59,.018);
}
.service-panel > * { position: relative; z-index: 1; }
.service-panel small,
.theme-group small,
.founder-summary__label,
.contact-side__label {
  color: var(--orange);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .17em;
}
.service-panel h3 { max-width: 560px; margin: 18px 0 15px; font-size: clamp(1.8rem, 3vw, 2.9rem); }
.service-panel p { max-width: 620px; margin: 0; font-size: .92rem; }
.service-panel a,
.theme-group > a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--navy);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.service-panel a::after,
.theme-group > a::after,
.text-link::after { content: "→"; color: var(--orange); }
.service-panel--dark {
  color: white;
  background:
    linear-gradient(110deg, rgba(7,27,59,.97), rgba(7,27,59,.84)),
    url('../img/logistics-map-premium.png') center / cover no-repeat;
}
.service-panel--dark::before { border-color: rgba(255,255,255,.14); box-shadow: 0 0 0 50px rgba(255,255,255,.025), 0 0 0 100px rgba(255,255,255,.018); }
.service-panel--dark p { color: #c4cfdb; }
.service-panel--dark a { color: white; }

.theme-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.theme-group {
  min-width: 0;
  padding: clamp(26px, 3.5vw, 42px);
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}
.theme-group--dark { border-color: var(--navy-2); background: var(--navy); color: white; }
.theme-group__head h3 { margin: 12px 0 24px; font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.theme-list { list-style: none; margin: 0 0 26px; padding: 0; border-top: 1px solid var(--line); }
.theme-list li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; min-height: 58px; border-bottom: 1px solid var(--line); }
.theme-list span { color: var(--orange); font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.theme-list strong { font-size: .9rem; line-height: 1.5; }
.theme-group--dark .theme-list { border-color: #294867; }
.theme-group--dark .theme-list li { border-color: #294867; }
.theme-group--dark .theme-list strong { color: #e4eaf0; }
.theme-group--dark > a { color: white; }
.theme-columns--on-dark .theme-group { box-shadow: 0 22px 60px rgba(0,0,0,.12); }

.process--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.home-trust { background: white; }
.home-trust__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: clamp(38px, 7vw, 96px); align-items: center; }
.home-trust__grid .lead { max-width: 640px; }
.founder-summary { border-top: 1px solid var(--line); }
.founder-summary__label { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); }
.founder-mini { display: grid; grid-template-columns: 92px 1fr; gap: 20px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.founder-mini img { width: 92px; height: 92px; object-fit: cover; }
.founder-mini small { display: block; color: var(--orange); font-size: .62rem; font-weight: 900; letter-spacing: .13em; }
.founder-mini strong { display: block; margin-top: 4px; font-size: 1.12rem; }
.founder-mini p { margin: 5px 0 0; font-size: .78rem; }
.founder-mini--text-only { grid-template-columns: 1fr; }

.choice-guide { border-top: 1px solid var(--line-strong); }
.choice-row { display: grid; grid-template-columns: minmax(150px, .55fr) minmax(0, 1fr) minmax(0, 1fr); border-bottom: 1px solid var(--line); }
.choice-row > * { min-width: 0; margin: 0; padding: 20px 22px; }
.choice-row > * + * { border-left: 1px solid var(--line); }
.choice-row strong { color: var(--navy); font-size: .82rem; }
.choice-row p { font-size: .84rem; line-height: 1.75; }
.choice-row--head { background: var(--navy); color: white; font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.choice-row--head > * + * { border-color: #294867; }

.topic-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-block: 1px solid var(--line); }
.topic-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.topic-item { min-width: 0; padding: 26px 22px; }
.topic-item + .topic-item { border-left: 1px solid var(--line); }
.topic-item h3 { min-height: 3.3em; margin: 18px 0 10px; font-size: 1.08rem; }
.topic-item p { margin: 0; font-size: .8rem; line-height: 1.78; }

.scope-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.scope-item { display: grid; grid-template-columns: 56px 1fr; gap: 16px; min-width: 0; padding: 25px 24px 25px 0; border-bottom: 1px solid var(--line); }
.scope-item:nth-child(odd) { padding-right: 34px; }
.scope-item:nth-child(even) { padding-left: 34px; border-left: 1px solid var(--line); }
.scope-item h3 { margin: 0 0 8px; }
.scope-item p { margin: 0; font-size: .84rem; }

.decision--on-dark .decision__arrow { color: var(--orange); }
.decision--on-dark .decision__box--core { background: var(--navy-2); }
.logistics-system { display: grid; gap: 34px; }
.system-visual { margin: 0; }
.system-visual img { width: 100%; height: auto; border: 1px solid rgba(255,255,255,.16); }
.system-visual figcaption { margin-top: 12px; color: #9fb0c1; font-size: .72rem; }
.card > .tags { margin-top: 22px; }

.contact-page { padding: clamp(46px, 6vw, 76px) 0; background: var(--pale); }
.contact-page__intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 36px; align-items: end; margin-bottom: 34px; }
.contact-page__intro .eyebrow { grid-column: 1 / -1; margin-bottom: -10px; }
.contact-page__intro h1 { margin: 0; font-size: clamp(2.5rem, 4.05vw, 3.65rem); }
.contact-page__intro > p:last-child { margin: 0; font-size: 1rem; line-height: 1.85; }
.form-card__heading { margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-card__heading .eyebrow { margin-bottom: 8px; }
.form-card__heading h2 { font-size: clamp(1.8rem, 2.8vw, 2.5rem); }
.form-card__heading p { margin: 10px 0 0; font-size: .84rem; }
.consent-label { display: flex !important; flex-wrap: wrap; align-items: center; gap: 6px; }
.consent-label input { width: 18px; height: 18px; }
.contact-side { position: sticky; top: calc(var(--header-h) + 22px); }
.contact-side h2 { margin: 10px 0 18px; font-size: 1.7rem; }
.contact-side__flow { margin-top: 32px; padding-top: 28px; border-top: 1px solid #294867; }
.contact-side__flow h3 { margin: 10px 0 14px; font-size: 1.12rem; }
.contact-side__flow ol { list-style: none; margin: 0; padding: 0; }
.contact-side__flow li { display: grid; grid-template-columns: 38px minmax(0, 1fr); align-items: center; gap: 10px; }
.contact-side__flow li::before { content: none; }
.contact-side__flow li span { color: var(--orange); font-size: .66rem; font-weight: 900; letter-spacing: .1em; }
.contact-side__note a { display: inline-flex; margin-top: 14px; color: white; font-size: .72rem; font-weight: 800; text-underline-offset: 4px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 3px solid rgba(243,108,33,.55); outline-offset: 3px; }

@media (max-width: 1080px) {
  .topic-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .topic-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topic-item { border-bottom: 1px solid var(--line); }
  .topic-item + .topic-item { border-left: 0; }
  .topic-item:not(:nth-child(3n + 1)) { border-left: 1px solid var(--line); }
  .topic-grid--4 .topic-item:not(:nth-child(3n + 1)) { border-left: 0; }
  .topic-grid--4 .topic-item:nth-child(even) { border-left: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .site-nav__item--mobile-home { display: block; }
  .site-nav__item--mobile-cta { display: block; margin-top: 8px; }
  .site-nav__item--mobile-cta .site-nav__link { justify-content: center; border: 0; background: var(--navy); color: white; }
  .site-nav { height: min(460px, calc(100dvh - var(--header-h))); }
  .page-hero .hero__copy { width: 100%; }
  .home-hero .hero__copy { width: 100%; }
  .strength-grid { grid-template-columns: 1fr; }
  .strength-item + .strength-item { border-left: 0; border-top: 1px solid var(--line); }
  .service-split,
  .theme-columns,
  .home-trust__grid { grid-template-columns: 1fr; }
  .service-panel { min-height: 330px; }
  .service-panel + .service-panel { border-left: 0; border-top: 1px solid var(--line); }
  .process--4 { grid-template-columns: 1fr; }
  .home-trust__grid { gap: 34px; }
  .choice-row { grid-template-columns: 140px 1fr 1fr; }
  .topic-grid,
  .topic-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topic-item:not(:nth-child(3n + 1)),
  .topic-grid--4 .topic-item:nth-child(even) { border-left: 0; }
  .topic-item:nth-child(even) { border-left: 1px solid var(--line); }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-item,
  .scope-item:nth-child(odd),
  .scope-item:nth-child(even) { padding: 24px 0; border-left: 0; }
  .contact-page__intro { grid-template-columns: 1fr; gap: 16px; }
  .contact-page__intro .eyebrow { grid-column: auto; margin-bottom: 0; }
  .contact-side { position: static; }
}

@media (max-width: 640px) {
  .home-hero h1 { font-size: clamp(2.4rem, 12vw, 3.2rem); }
  .home-hero__line { white-space: normal; }
  .home-hero__line > span { display: block; white-space: nowrap; }
  .breadcrumb { margin-bottom: 14px; }
  .solutions-hero__line { white-space: normal; }
  .solutions-hero__line > span { display: block; white-space: nowrap; }
  .responsive-heading__line { white-space: normal; }
  .responsive-heading__line > span { display: block; white-space: nowrap; }
  .service-panel { min-height: 300px; padding: 26px 22px; }
  .theme-columns { gap: 12px; }
  .theme-group { padding: 24px 21px; }
  .choice-guide { border-top: 0; }
  .choice-row,
  .choice-row--head { display: grid; grid-template-columns: 1fr; margin-bottom: 14px; border: 1px solid var(--line); background: white; }
  .choice-row--head { display: none; }
  .choice-row > * { padding: 14px 16px; }
  .choice-row > * + * { border-left: 0; border-top: 1px solid var(--line); }
  .choice-row p::before { display: block; margin-bottom: 5px; color: var(--orange); font-size: .63rem; font-weight: 900; letter-spacing: .12em; }
  .choice-row p:nth-of-type(1)::before { content: "AI SOLUTIONS"; }
  .choice-row p:nth-of-type(2)::before { content: "LOGISTICS DX"; }
  .topic-grid,
  .topic-grid--4 { grid-template-columns: 1fr; }
  .topic-item,
  .topic-item:nth-child(even) { border-left: 0; }
  .topic-item h3 { min-height: 0; }
  .scope-item { grid-template-columns: 42px 1fr; }
  .founder-mini { grid-template-columns: 78px 1fr; gap: 15px; }
  .founder-mini img { width: 78px; height: 78px; }
  .contact-page { padding-top: 36px; }
  .contact-page__intro h1 { font-size: clamp(2.3rem, 11vw, 3.1rem); }
  .contact-side { padding: 24px 21px; }
}
