/* Aptise editorial redesign - 2026-07-20 */
:root {
  --navy: #06172f;
  --navy-2: #102f52;
  --navy-3: #050b12;
  --orange: #ff5a16;
  --ink: #07162c;
  --text: #3f4b59;
  --muted: #6f7882;
  --line: #cdd2d6;
  --line-strong: #8f989f;
  --paper: #f2f3f0;
  --pale: #e7e9e6;
  --white: #ffffff;
  --container: min(1320px, calc(100vw - 80px));
  --header-h: 84px;
  --ease-editorial: cubic-bezier(.22, 1, .36, 1);
  --type-section-title: clamp(2rem, 3.6vw, 3.25rem);
  --type-feature-title: clamp(1.75rem, 2.8vw, 2.6rem);
  --type-subsection-title: clamp(1.5rem, 2.2vw, 2rem);
  --type-card-title: clamp(1.2rem, 1.65vw, 1.55rem);
  --type-body: .95rem;
  --type-small: .86rem;
  --type-label: .72rem;
}

html { background: var(--paper); }
body {
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

::selection { background: var(--orange); color: white; }

.container { width: var(--container); }

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
  font-weight: 800;
}

h3 { font-size: var(--type-card-title); }

p { color: var(--text); }

/* Header */
.site-header {
  height: var(--header-h);
  background: rgba(247, 248, 245, .97);
  border-bottom: 1px solid var(--ink);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(247, 248, 245, .98);
  box-shadow: 0 12px 30px rgba(5, 11, 18, .06);
}

.header-inner {
  width: 100%;
  max-width: none;
  padding-left: clamp(24px, 4.2vw, 68px);
}

.site-logo img { width: 142px; }
.site-nav__list { gap: clamp(24px, 2.4vw, 40px); }

.site-nav__link {
  font-size: .73rem;
  letter-spacing: .08em;
}

.site-nav__link::after {
  bottom: -1px;
  height: 4px;
  background: var(--orange);
  transform-origin: left;
}

.site-subnav {
  min-width: 240px;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 rgba(6, 23, 47, .12);
}

.site-subnav a {
  min-height: 54px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.site-subnav a:last-child { border-bottom: 0; }
.site-subnav a:hover,
.site-subnav a[aria-current="page"] { background: var(--ink); color: white; }

.header-contact {
  align-self: stretch;
  min-width: 194px;
  margin-left: 34px;
  padding: 0 30px;
  justify-content: center;
  border-radius: 0;
  background: var(--navy-3);
  font-size: .75rem;
  letter-spacing: .1em;
}

.header-contact:hover {
  transform: none;
  background: var(--orange);
}

.header-contact:hover span { color: white; }

/* Buttons */
.button {
  position: relative;
  isolation: isolate;
  min-height: 62px;
  min-width: 250px;
  overflow: hidden;
  padding: 16px 22px;
  border-radius: 0;
  border-color: var(--ink);
  background: var(--ink);
  letter-spacing: 0;
  box-shadow: none;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-editorial);
}

.button:hover {
  transform: none;
  box-shadow: none;
}

.button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.button--outline { background: transparent; color: var(--ink); }
.button--outline::before { background: var(--ink); }
.button--outline:hover { color: white; }
.button--white { background: white; color: var(--ink); border-color: white; }
.button--white::before { background: var(--orange); }

/* Hero */
.hero {
  min-height: max(640px, calc(100svh - var(--header-h)));
  overflow: clip;
  border-bottom: 1px solid var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(7, 22, 44, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 22, 44, .08) 1px, transparent 1px);
  background-size: 150px 150px;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  left: -12vw;
  top: 8%;
  border: 1px solid rgba(7, 22, 44, .13);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  width: 100%;
  max-width: none;
  min-height: inherit;
  padding-left: max(40px, calc((100vw - 1320px) / 2));
  padding-right: 50%;
}

.hero__copy,
.home-hero .hero__copy,
.page-hero .hero__copy {
  width: 100%;
  padding: clamp(70px, 9vh, 108px) clamp(34px, 5vw, 82px) clamp(76px, 9vh, 112px) 0;
}

.hero__copy h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 1.13;
}

.home-hero h1 {
  font-size: clamp(3.25rem, 5.25vw, 5.35rem);
  line-height: 1.1;
}

.hero__copy p,
.home-hero .hero__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 28px;
  font-size: clamp(.98rem, 1.12vw, 1.1rem);
  line-height: 1.95;
}

.hero__visual {
  width: 50%;
  clip-path: none;
  border-left: 1px solid var(--ink);
  background-color: var(--navy-3);
  background-position: center calc(50% + var(--media-shift, 0px));
  transition: background-position .08s linear;
}

.hero__visual--network,
.hero__visual--dashboard {
  background-image: url('../img/aptise-signal-studio.jpg');
}

.hero__visual--logistics,
.hero__visual--map {
  background-image: url('../img/aptise-logistics-floor.jpg');
}

@media (min-width: 901px) {
  .hero--copy-expanded .hero__inner {
    padding-left: clamp(44px, 4.25vw, 68px);
    padding-right: 43%;
  }

  .hero--copy-expanded .hero__copy {
    padding-right: clamp(34px, 3.4vw, 54px);
  }

  .hero--copy-expanded .hero__visual {
    width: 43%;
    background-position: 58% calc(50% + var(--media-shift, 0px));
  }

  .hero--copy-expanded .hero__scroll {
    left: calc(57% - 36px);
  }
}

.hero__visual::after {
  background: linear-gradient(180deg, rgba(5, 11, 18, .04), rgba(5, 11, 18, .34));
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  background: var(--paper);
  transform-origin: right;
  animation: editorial-curtain 1.15s .12s var(--ease-editorial) forwards;
}

.hero__label {
  top: 28px;
  right: 30px;
  padding: 13px 15px;
  background: rgba(5, 11, 18, .82);
  text-align: left;
  backdrop-filter: blur(12px);
}

.hero__label small { color: #b9c0c6; }
.hero__label strong { font-size: .78rem; }

.hero-chip {
  padding: 12px 16px;
  border-radius: 0;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(5, 11, 18, .78);
  font-size: .66rem;
  box-shadow: 8px 8px 0 rgba(5, 11, 18, .18);
}

.hero__scroll {
  left: calc(50% - 36px);
  bottom: 24px;
  color: var(--ink);
}

.page-hero { min-height: max(580px, calc(88svh - var(--header-h))); }
.page-hero .hero__copy h1 { font-size: clamp(3rem, 4.65vw, 4.75rem); }
.message-hero { min-height: clamp(380px, 48svh, 460px); }
.message-hero .hero__copy {
  padding-top: clamp(52px, 6vh, 72px);
  padding-bottom: clamp(52px, 6vh, 72px);
}
.news-hero { min-height: 410px; }
.news-hero::before { left: auto; right: 8%; top: -40%; }
.news-hero .hero__inner { padding-right: max(40px, calc((100vw - 1320px) / 2)); }
.news-hero .hero__copy { padding-block: 88px; }

.eyebrow {
  gap: 14px;
  margin-bottom: 22px;
  font-size: .72rem;
  letter-spacing: .16em;
}

.eyebrow::before { width: 42px; height: 1px; }

.breadcrumb {
  margin-bottom: 30px;
  color: var(--muted);
}

/* Home motion rail */
.motion-rail {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  background: var(--navy);
  color: white;
}

.motion-rail__track {
  display: flex;
  width: max-content;
  padding: 15px 0;
  white-space: nowrap;
  animation: editorial-marquee 24s linear infinite;
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.motion-rail__group {
  display: flex;
  flex: none;
  justify-content: space-around;
  min-width: 100vw;
}

.motion-rail__track span { display: inline-flex; align-items: center; }
.motion-rail__track span::after { content: "/"; margin: 0 28px; }

/* Sections and headings */
.section {
  padding: clamp(84px, 9vw, 136px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.section--pale { background: var(--pale); }
.section--navy { background: var(--navy); }

.section-heading {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 82px);
  padding-top: 28px;
  border-top: 1px solid currentColor;
}

.section-heading h2 {
  max-width: 880px;
  font-size: var(--type-section-title);
  line-height: 1.35;
}

.section-heading__copy {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.95;
}

.section-heading--theme-title-wide {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
}

.section-heading--single {
  grid-template-columns: 1fr;
}

.section--navy .section-heading { border-color: rgba(255, 255, 255, .46); }

/* Home strengths */
.strength-grid {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.strength-item {
  min-height: 330px;
  padding: clamp(30px, 4vw, 56px);
  transition: background .45s var(--ease-editorial), color .45s var(--ease-editorial);
}

.strength-item + .strength-item { border-left-color: var(--ink); }

.strength-item span {
  display: block;
  color: var(--orange);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1;
}

.strength-item h3 {
  margin: 96px 0 16px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.strength-item p { font-size: var(--type-body); line-height: 1.9; }

@media (hover: hover) {
  .strength-item:hover { background: var(--ink); color: white; }
  .strength-item:hover p { color: #c5ccd3; }
}

/* Image-led solution panels */
.service-split {
  border: 1px solid var(--ink);
}

.service-panel {
  min-height: 600px;
  padding: clamp(34px, 4.5vw, 64px);
  background: var(--navy-3);
  color: white;
}

.service-panel + .service-panel { border-left-color: rgba(255, 255, 255, .55); }

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(5, 11, 18, .12) 15%, rgba(5, 11, 18, .88) 78%);
}

.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat;
  transition: transform 1s var(--ease-editorial), filter .6s ease;
}

.service-panel:first-child::after { background-image: url('../img/aptise-signal-studio.jpg'); }
.service-panel--dark::after { background-image: url('../img/aptise-logistics-floor.jpg'); }

.service-panel > * { z-index: 2; }
.service-panel h3 {
  max-width: 620px;
  font-size: var(--type-feature-title);
  line-height: 1.35;
}
.service-panel p { max-width: 560px; color: #d2d7dc; font-size: var(--type-body); line-height: 1.9; }
.service-panel a,
.service-panel--dark a { color: white; }

.service-panel a {
  position: static;
  width: 100%;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .55);
  font-size: .82rem;
}

.service-panel a::after {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  transition: transform .35s var(--ease-editorial), background .35s ease;
}

@media (hover: hover) {
  .service-panel:hover::after { transform: scale(1.045); filter: contrast(1.08); }
  .service-panel:hover a::after { transform: rotate(-45deg); background: var(--orange); color: white; }
}

/* Lists, cards and themes */
.theme-columns {
  gap: 0;
  border-block: 1px solid currentColor;
}

.theme-group {
  position: relative;
  padding: clamp(34px, 4.5vw, 64px);
  border: 0;
  background: transparent;
}

.theme-group + .theme-group { border-left: 1px solid var(--line); }
.theme-group--dark { background: var(--navy-3); }
.theme-group__head h3 {
  font-size: var(--type-subsection-title);
  line-height: 1.42;
}
.theme-list li { min-height: 74px; }
.theme-list strong { font-size: .98rem; }

.theme-columns--on-dark .theme-group {
  color: white;
}

.theme-columns--on-dark .theme-group__head h3,
.theme-columns--on-dark .theme-list strong,
.theme-columns--on-dark .theme-group > a {
  color: white;
}

.theme-columns--on-dark .theme-list {
  border-color: rgba(255, 255, 255, .3);
}

.theme-columns--on-dark .theme-list li {
  border-color: rgba(255, 255, 255, .24);
}

.theme-columns--on-dark .theme-group + .theme-group {
  border-color: rgba(255, 255, 255, .42);
}

.card {
  padding: clamp(26px, 3.2vw, 42px);
  border-color: var(--line-strong);
  background: transparent;
  box-shadow: none;
  transition: background .4s var(--ease-editorial), color .4s var(--ease-editorial), border-color .4s ease;
}

.card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--ink);
  background: white;
}

.card--dark { background: var(--navy-3); border-color: var(--navy-3); }
.card__icon { border-radius: 0; background: transparent; border: 1px solid var(--line); }

.theme-card-grid .theme-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  border-color: rgba(7, 22, 44, .22);
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 22, 44, .07);
  color: var(--ink);
  text-decoration: none;
}

.theme-card-grid .theme-card h3 {
  margin: 28px 0 16px;
  font-size: var(--type-card-title);
  line-height: 1.45;
}

.theme-card-grid .theme-card p {
  color: var(--text);
  font-size: var(--type-body);
}

.theme-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: .78rem;
  letter-spacing: .08em;
}

.theme-card__cta span {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform .3s var(--ease-editorial);
}

.theme-card-grid .theme-card:focus-visible {
  z-index: 2;
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

@media (hover: hover) {
  .theme-card-grid .theme-card:hover {
    border-color: rgba(7, 22, 44, .55);
    background: #fff;
    box-shadow: 0 18px 38px rgba(7, 22, 44, .11);
  }

  .theme-card-grid .theme-card:hover .theme-card__cta span {
    transform: translate(4px, -4px);
  }
}

.features { gap: 0; border: 1px solid var(--line-strong); }
.feature { border: 0; border-bottom: 1px solid var(--line); background: transparent; }
.feature:nth-child(odd) { border-right: 1px solid var(--line); }

.tags { gap: 7px; }
.tag { min-height: 32px; padding: 6px 12px; background: rgba(255, 255, 255, .72); }

.process {
  border-color: var(--ink);
}

.process__item {
  min-height: 230px;
  padding: 32px 28px;
}

.process__item + .process__item { border-left: 1px solid var(--line); }
.process__number { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; }
.process__item h3 { margin-top: 72px; font-size: 1.25rem; }
.process__item p { font-size: var(--type-small); }

.flow,
.decision { border-color: var(--line-strong); }
.flow__item { min-height: 220px; padding: 32px; }
.flow__item strong { margin-top: 48px; }
.decision__box { padding: clamp(26px, 3.5vw, 44px); background: var(--white); }
.decision__box--core { background: var(--navy-3); }
.decision__box li { font-size: var(--type-small); line-height: 1.75; }

.decision--light .decision__box--core {
  border-color: var(--line-strong);
  background: var(--white);
  color: var(--ink);
  box-shadow: inset 0 4px 0 var(--orange);
}

.decision--light .decision__box--core h3 { color: var(--ink); }

.decision--light .decision__box--core li {
  border-color: var(--line);
  color: var(--text);
}

.decision--on-dark .decision__box {
  border-color: rgba(255, 255, 255, .72);
  color: white;
}

.decision--on-dark .decision__box h3 {
  color: white;
}

.decision--on-dark .decision__box li {
  border-color: rgba(255, 255, 255, .38);
  color: #d7dfe7;
}

.topic-grid,
.scope-grid { border-color: var(--line-strong); }
.topic-item { min-height: 260px; padding: 34px 28px; }
.topic-item h3 { margin-top: 58px; }
.scope-item { min-height: 180px; padding-top: 34px; padding-bottom: 34px; }

.topic-item--link {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  isolation: isolate;
  color: var(--ink);
  text-decoration: none;
}

.topic-item--link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  opacity: 0;
  transition: opacity .35s var(--ease-editorial);
}

.topic-item--link p {
  color: var(--text);
}

.topic-item__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: .72rem;
  letter-spacing: .08em;
}

.topic-item__cta span {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform .3s var(--ease-editorial);
}

.topic-item--link:focus-visible {
  z-index: 2;
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

@media (hover: hover) {
  .topic-item--link:hover {
    color: white;
  }

  .topic-item--link:hover::before {
    opacity: 1;
  }

  .topic-item--link:hover p {
    color: #cbd3dc;
  }

  .topic-item--link:hover .topic-item__cta {
    border-color: rgba(255, 255, 255, .42);
    color: white;
  }

  .topic-item--link:hover .topic-item__cta span {
    transform: translate(4px, -4px);
  }
}

/* AI use theme detail */
.theme-detail-hero {
  position: relative;
  display: grid;
  min-height: max(560px, calc(78svh - var(--header-h)));
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 11, 18, .98) 0%, rgba(6, 23, 47, .9) 54%, rgba(5, 11, 18, .42) 100%),
    url('../img/aptise-signal-studio.jpg') center / cover no-repeat;
}

.theme-detail-hero--logistics {
  background:
    linear-gradient(90deg, rgba(5, 11, 18, .98) 0%, rgba(6, 23, 47, .9) 54%, rgba(5, 11, 18, .42) 100%),
    url('../img/aptise-logistics-floor.jpg') center / cover no-repeat;
}

.theme-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 160px 160px;
  pointer-events: none;
}

.theme-detail-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(42px, 6vw, 96px);
  align-items: end;
  min-height: inherit;
  padding-block: clamp(72px, 9vh, 104px);
}

.theme-detail-hero__copy {
  max-width: 900px;
}

.theme-detail-hero .breadcrumb {
  margin-bottom: 34px;
  color: #c8d1da;
}

.theme-detail-hero .breadcrumb a {
  color: white;
}

.theme-detail-hero .eyebrow {
  margin-bottom: 20px;
}

.theme-detail-hero h1 {
  max-width: 920px;
  margin-bottom: 28px;
  color: white;
  font-size: clamp(3.3rem, 5.8vw, 5.8rem);
  line-height: 1.12;
}

.theme-detail-hero__lead {
  max-width: 760px;
  margin: 0;
  color: #d2d9e0;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.9;
}

.theme-detail-hero__actions {
  margin-top: 30px;
}

.theme-detail-hero__index {
  align-self: center;
  color: transparent;
  font-size: clamp(9rem, 17vw, 15rem);
  font-weight: 800;
  line-height: .8;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .34);
  user-select: none;
}

.theme-detail-summary {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 124px);
  align-items: start;
  padding-block: clamp(52px, 7vw, 88px);
  border-block: 1px solid var(--ink);
}

.theme-detail-summary h2 {
  margin: 0;
  font-size: var(--type-section-title);
  line-height: 1.35;
}

.theme-detail-summary__copy {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 2;
}

.theme-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.theme-fact {
  min-width: 0;
  padding: clamp(34px, 4vw, 58px);
}

.theme-fact + .theme-fact {
  border-left: 1px solid var(--line-strong);
}

.theme-fact small,
.theme-deliverable small {
  color: var(--orange);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.theme-fact h3 {
  margin: 44px 0 24px;
  font-size: var(--type-card-title);
  line-height: 1.45;
}

.theme-fact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.theme-fact li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: var(--type-body);
  line-height: 1.7;
}

.theme-deliverables {
  background: var(--navy-3);
  color: white;
}

.theme-deliverables .section-heading h2 {
  color: white;
}

.theme-deliverables .section-heading__copy {
  color: #b9c4ce;
}

.theme-deliverables__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, .45);
}

.theme-deliverable {
  min-width: 0;
  min-height: 210px;
  padding: clamp(28px, 3.2vw, 44px);
}

.theme-deliverable + .theme-deliverable {
  border-left: 1px solid rgba(255, 255, 255, .26);
}

.theme-deliverable h3 {
  margin: 56px 0 0;
  color: white;
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  line-height: 1.55;
}

.theme-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: white;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.theme-detail-back::before {
  content: "←";
  color: var(--orange);
}

.faq { border-top-color: var(--ink); }
.faq__item { border-bottom-color: var(--ink); }
.faq__button { min-height: 78px; font-size: 1rem; }

/* Solutions overview */
.solutions-hero {
  min-height: max(650px, calc(100svh - var(--header-h)));
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(5, 11, 18, .96) 0%, rgba(6, 23, 47, .86) 46%, rgba(5, 11, 18, .25) 100%),
    url('../img/aptise-signal-studio.jpg') center / cover no-repeat;
}

.solutions-hero::before {
  inset: 0;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 160px 160px;
}

.solutions-hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(40px, 4vw, 64px);
  align-items: center;
  padding-block: clamp(56px, 7vh, 86px);
}

.solutions-hero h1 {
  max-width: 780px;
  font-size: clamp(3.8rem, 5.1vw, 5.4rem);
}
.solutions-hero p { max-width: 690px; line-height: 1.9; }
.solutions-hero__meta { border-color: rgba(255,255,255,.55); background: transparent; backdrop-filter: blur(12px); }
.solutions-hero__meta div { min-height: 112px; padding: 23px; background: rgba(5, 11, 18, .65); }

.solution-lanes { gap: 0; border-top: 1px solid var(--ink); }
.solution-lane {
  min-height: 420px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
}

.solution-lane::before {
  inset: 0 0 0 auto;
  width: 38%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(90deg, var(--paper), rgba(242,243,240,.06)), url('../img/aptise-signal-studio.jpg') center / cover;
  opacity: .4;
}

.solution-lane--dark {
  background: var(--navy-3);
}

.solution-lane--dark::before {
  background: linear-gradient(90deg, var(--navy-3), rgba(5,11,18,.08)), url('../img/aptise-logistics-floor.jpg') center / cover;
  opacity: .58;
}

.solution-lane__index { font-size: clamp(3.6rem, 7vw, 7.5rem); }
.solution-lane h2 {
  font-size: var(--type-section-title);
  line-height: 1.35;
}

.solution-lane__title-part { white-space: nowrap; }

.solution-lane__action {
  position: static;
  min-width: 180px;
}

.theme-group > a {
  position: static;
}

.solution-lane,
.service-panel,
.theme-group {
  cursor: pointer;
}

.solution-lane__action::before,
.service-panel > a::before,
.theme-group > a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
}

.solution-lane:focus-within,
.service-panel:focus-within,
.theme-group:focus-within {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.solution-lane__action::after,
.theme-group > a::after {
  transition: transform .3s var(--ease-editorial);
}

@media (hover: hover) {
  .solution-lane:hover .solution-lane__action::after,
  .theme-group:hover > a::after {
    transform: translateX(6px);
  }
}

.choice-guide { border-top-color: var(--ink); }
.choice-row { border-bottom-color: var(--line-strong); }
.choice-row--head { background: var(--navy-3); }

/* Company */
.mvv-section {
  padding: 0;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.mvv-section > .container {
  width: 100%;
  max-width: none;
}

.mvv-section__eyebrow {
  top: 46px;
  left: clamp(44px, 4.25vw, 68px);
  gap: 14px;
  color: var(--orange);
  font-size: .72rem;
  letter-spacing: .16em;
}

.mvv-section__eyebrow::before {
  width: 42px;
  height: 1px;
}

.mvv-showcase {
  display: grid;
  grid-template-rows: auto auto;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: var(--paper);
}

.mvv-showcase__mission {
  grid-template-columns: minmax(0, 66%) minmax(340px, 34%);
  height: clamp(600px, 44vw, 680px);
  min-height: 600px;
  border-bottom: 1px solid var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(7, 22, 44, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 22, 44, .08) 1px, transparent 1px);
  background-size: 150px 150px;
}

.mvv-showcase__mission::before {
  display: none;
}

.mvv-showcase__mission-copy {
  align-self: center;
  padding: 84px clamp(34px, 3.4vw, 54px) 48px clamp(44px, 4.25vw, 68px);
}

.mvv-showcase__mission-label {
  margin-bottom: clamp(24px, 2vw, 30px);
}

.mvv-showcase__mission h1 {
  max-width: 920px;
  font-size: clamp(3.35rem, 4.2vw, 4.25rem);
  line-height: 1.16;
}

.mvv-showcase__mission p {
  max-width: 650px;
  margin-top: 30px;
  color: var(--text);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.95;
}

.mvv-flow-lines {
  display: none;
}

.mvv-sculpture {
  overflow: hidden;
  border-left: 1px solid var(--ink);
  background-color: var(--navy-3);
}

.mvv-sculpture::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 10, 20, .2), transparent 36%),
    linear-gradient(180deg, rgba(3, 10, 20, .12), transparent 24%, rgba(3, 10, 20, .16));
}

.mvv-sculpture__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.mvv-showcase__principles {
  position: relative;
  inset: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: auto;
  min-height: 540px;
  overflow: hidden;
  clip-path: none;
  background: var(--navy-3);
}

.mvv-showcase__principles::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 150px 150px;
}

.mvv-showcase__principles::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, .34);
  transform: none;
}

.mvv-principle,
.mvv-principle--vision,
.mvv-principle--value {
  min-height: 540px;
  padding: clamp(52px, 5vw, 76px) clamp(44px, 5vw, 76px);
  background: transparent;
}

.mvv-principle__icon {
  width: clamp(64px, 5vw, 76px);
  height: clamp(64px, 5vw, 76px);
  margin-bottom: 30px;
  color: #dbe1e6;
}

.mvv-principle__label {
  font-size: .76rem;
  letter-spacing: .16em;
}

.mvv-principle__label::after {
  width: 42px;
  height: 1px;
  margin-top: 14px;
}

.mvv-principle h2 {
  max-width: 570px;
  margin: 30px 0 22px;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.38;
}

.mvv-principle p {
  max-width: 540px;
  color: #aeb9c3;
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
  line-height: 1.9;
}

.profile-grid--stacked { gap: 0; }
.profile-grid--stacked .profile {
  grid-template-columns: minmax(280px, 36%) minmax(0, 1fr);
  min-height: 560px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
}

.profile-grid--stacked .profile__image {
  width: 100%;
  height: 440px;
  align-self: center;
  object-position: center 28%;
  filter: saturate(.65) contrast(1.04);
}

.profile-grid--stacked .profile--text-only {
  grid-template-columns: 1fr;
  min-height: 0;
}

.profile--text-only .profile__body {
  max-width: 980px;
}

.profile__body { padding: clamp(40px, 6vw, 88px); }
.profile__role { font-size: .72rem; }
.profile h3 { margin: 18px 0 28px; font-size: clamp(2rem, 3vw, 3.3rem); }
.profile__bio li {
  font-size: clamp(1rem, 1.06vw, 1.08rem);
  line-height: 1.9;
}

.profile__message-link {
  display: flex;
  width: min(100%, 360px);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 16px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
}

.profile__message-link::after {
  content: "↗";
  color: var(--orange);
  font-size: 1rem;
  transition: transform .3s var(--ease-editorial);
}

.profile__message-link:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}

@media (hover: hover) {
  .profile__message-link:hover::after { transform: translate(4px, -4px); }
}

.ceo-message-section {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(7, 22, 44, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 22, 44, .055) 1px, transparent 1px);
  background-size: 150px 150px;
}

.ceo-message {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(247, 247, 244, .92);
}

.ceo-message--without-photo {
  grid-template-columns: minmax(280px, .4fr) minmax(0, 1.6fr);
}

.ceo-message--without-photo .ceo-message__profile {
  position: sticky;
  top: 104px;
  padding: clamp(32px, 3vw, 44px);
}

.ceo-message--without-photo .ceo-message__name strong { white-space: nowrap; }

.ceo-message__profile {
  align-self: start;
  padding: clamp(32px, 4vw, 58px);
}

.ceo-message__profile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(.65) contrast(1.04);
}

.ceo-message__profile .profile__role {
  display: block;
  margin-top: 26px;
}

.ceo-message__name {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
}

.ceo-message__name span,
.ceo-message__signature span {
  color: var(--text);
  font-size: .78rem;
}

.ceo-message__name strong {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.ceo-message__body {
  --ceo-message-copy-size: clamp(1.125rem, 1.28vw, 1.25rem);
  padding: clamp(52px, 7vw, 104px);
  border-left: 1px solid var(--line-strong);
}

.ceo-message__body h2 {
  max-width: 900px;
  margin: 30px 0 34px;
  color: var(--text);
  font-size: var(--ceo-message-copy-size);
  font-weight: 400;
  line-height: 2.05;
}

.ceo-message__text {
  max-width: 820px;
  color: var(--text);
  font-size: var(--ceo-message-copy-size);
  line-height: 2.05;
}

.ceo-message__text p { margin: 0; }
.ceo-message__text p + p { margin-top: 34px; }

.ceo-message__vision {
  max-width: 880px;
  margin: 34px 0 0;
  padding: 30px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--text);
  font-size: var(--ceo-message-copy-size);
  font-weight: 400;
  line-height: 2.05;
}

.ceo-message__signature {
  display: grid;
  justify-content: end;
  gap: 8px;
  margin: 42px 0 0;
  text-align: right;
}

.ceo-message__signature img {
  display: block;
  width: clamp(210px, 19vw, 290px);
  height: auto;
  mix-blend-mode: multiply;
}

.definition-list { border-top-color: var(--ink); }
.definition-list dt,
.definition-list dd { padding-block: 24px; border-bottom-color: var(--line-strong); }

/* Contact and legal */
.contact-page {
  padding: clamp(76px, 9vw, 128px) 0;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(7, 22, 44, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 22, 44, .07) 1px, transparent 1px);
  background-size: 150px 150px;
}

.contact-page__intro { margin-bottom: 62px; }
.contact-page__intro h1 { font-size: clamp(3.2rem, 5.4vw, 5.6rem); line-height: 1.14; }
.form-card { padding: clamp(30px, 4.5vw, 58px); border-color: var(--ink); background: rgba(255,255,255,.68); backdrop-filter: blur(12px); }
.form-control { min-height: 58px; border-color: var(--line-strong); background: rgba(255,255,255,.82); }
.contact-side { padding: clamp(30px, 4vw, 50px); background: var(--navy-3); }
.form-card__heading h2 { font-size: var(--type-subsection-title); line-height: 1.4; }
.form-card__heading p { font-size: var(--type-body); }
.contact-side h2 { font-size: var(--type-card-title); line-height: 1.45; }

.diagnosis-contact-notice {
  margin: 0 0 28px;
  padding: 15px 17px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, .82);
  color: var(--text);
  font-size: var(--type-small);
  line-height: 1.75;
}

.diagnosis-contact-summary {
  margin: 0 0 38px;
  padding: clamp(24px, 3.5vw, 38px);
  border: 1px solid var(--ink);
  background: var(--navy-3);
  color: white;
}

.diagnosis-contact-notice[hidden],
.diagnosis-contact-summary[hidden] { display: none; }

.diagnosis-contact-summary__label {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: var(--type-label);
  font-weight: 900;
  letter-spacing: .14em;
}

.diagnosis-contact-summary h2 { margin: 0; color: white; font-size: var(--type-subsection-title); }
.diagnosis-contact-summary h3 { margin: 0 0 7px; color: white; font-size: .83rem; }
.diagnosis-contact-summary p,
.diagnosis-contact-summary li { color: #d2d7dc; font-size: .82rem; line-height: 1.8; }

.diagnosis-contact-summary__ratings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0;
  background: rgba(255, 255, 255, .25);
}

.diagnosis-contact-summary__ratings div { padding: 17px; background: var(--navy-2); }
.diagnosis-contact-summary__ratings dt { color: #b9c3cd; font-size: .7rem; }
.diagnosis-contact-summary__ratings dd { margin: 5px 0 0; color: white; font-size: .9rem; font-weight: 800; line-height: 1.55; }
.diagnosis-contact-summary__details { display: grid; gap: 18px; }
.diagnosis-contact-summary__details p { margin: 0; }
.diagnosis-contact-summary__details ul { margin: 0; padding-left: 1.25em; }
.diagnosis-contact-summary__note { margin: 24px 0 0 !important; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .28); }

.legal { padding-block: 30px; }
.legal h2 { padding-top: 28px; border-top: 1px solid var(--ink); }
.legal p,
.legal li { font-size: var(--type-body); }
.empty-state { min-height: 300px; border: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }

.news-empty-state {
  position: relative;
  display: grid;
  min-height: clamp(360px, 42vw, 600px);
  padding: clamp(32px, 4vw, 58px);
  place-items: center;
}

.news-empty-state__label {
  position: absolute;
  top: clamp(30px, 3.5vw, 48px);
  left: clamp(30px, 3.5vw, 52px);
  margin: 0;
}

.news-empty-state h2 {
  margin: 0;
  text-align: center;
  font-size: var(--type-section-title);
  line-height: 1.35;
}

/* CTA and footer */
.cta {
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.24);
  background: var(--navy-3);
}

.cta .container { width: 100%; max-width: none; }
.cta-box {
  min-height: 390px;
  padding: clamp(64px, 8vw, 126px) max(40px, calc((100vw - 1320px) / 2));
  border-radius: 0;
  background: var(--navy-3);
}

.cta-box::before {
  content: "CONTACT";
  position: absolute;
  left: max(40px, calc((100vw - 1320px) / 2));
  top: 34px;
  color: rgba(255,255,255,.08);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 1;
}

.cta-box::after {
  width: min(48vw, 650px);
  height: auto;
  aspect-ratio: 1;
  right: -8%;
  top: -60%;
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018);
}

.cta-box h2 {
  max-width: 920px;
  font-size: var(--type-section-title);
  line-height: 1.35;
}
.cta-box p { font-size: var(--type-body); line-height: 1.85; }

.site-footer { padding: 78px 0 28px; background: var(--navy-3); }
.footer-main { grid-template-columns: 1.15fr .85fr; gap: 80px; }
.footer-logo { width: 168px; }
.footer-brand p { margin-top: 26px; line-height: 1.9; }
.footer-nav { gap: 0; border-top: 1px solid rgba(255,255,255,.35); }
.footer-nav a { min-height: 50px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.2); font-size: .76rem; }
.footer-nav a:hover { padding-left: 8px; }
.footer-sub { margin-top: 58px; padding-top: 22px; font-size: .72rem; }

/* Reveal and motion */
html.js [data-reveal] {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(46px);
  transition:
    opacity .9s var(--ease-editorial) var(--reveal-delay, 0ms),
    transform .9s var(--ease-editorial) var(--reveal-delay, 0ms),
    filter .9s var(--ease-editorial) var(--reveal-delay, 0ms);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  filter: none;
  transform: none;
}

@keyframes editorial-curtain {
  to { transform: scaleX(0); }
}

@keyframes editorial-marquee {
  to { transform: translateX(-50%); }
}

@media (min-width: 1321px) {
  .hero .hero__inner {
    padding-left: clamp(56px, 4.25vw, 68px);
  }

  .solutions-hero__inner {
    width: 100%;
    max-width: none;
    padding-right: clamp(56px, 4.25vw, 68px);
    padding-left: clamp(56px, 4.25vw, 68px);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .home-hero__line,
  .responsive-heading__line,
  .solutions-hero__line { white-space: normal; }

  .home-hero__line > span,
  .responsive-heading__line > span,
  .solutions-hero__line > span {
    display: block;
    white-space: nowrap;
  }
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .hero--copy-expanded .responsive-heading__line { white-space: normal; }

  .hero--copy-expanded .responsive-heading__line > span {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 1080px) {
  :root { --container: min(100% - 48px, 1000px); }
  .hero__inner { padding-left: 32px; }
  .hero__copy,
  .home-hero .hero__copy,
  .page-hero .hero__copy { padding-right: 36px; }
  .hero__copy h1,
  .home-hero h1 { font-size: clamp(3rem, 5vw, 4rem); }
  .site-nav__list { gap: 18px; }
  .header-contact { min-width: 160px; margin-left: 20px; }
  .service-panel { min-height: 540px; }
  .mvv-showcase__mission {
    grid-template-columns: minmax(0, 60%) minmax(300px, 40%);
    height: 570px;
    min-height: 570px;
  }
  .mvv-showcase__mission-copy { padding-left: 48px; }
  .mvv-showcase__mission h1 { font-size: clamp(3rem, 5vw, 3.4rem); }
  .mvv-nowrap { white-space: normal; }
  .mvv-sculpture__image { object-position: 50% 50%; }
  .mvv-showcase__principles,
  .mvv-principle,
  .mvv-principle--vision,
  .mvv-principle--value { min-height: 500px; }
  .mvv-principle,
  .mvv-principle--vision,
  .mvv-principle--value { padding: 52px 44px; }
  .mvv-principle h2 { font-size: 2.15rem; }
  .profile-grid--stacked .profile { min-height: 520px; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; --container: min(100% - 36px, 760px); }

  .header-inner { padding: 0 22px; }
  .site-logo img { width: 132px; }
  .header-contact { display: none; }

  .site-nav {
    inset: var(--header-h) 0 0;
    height: calc(100dvh - var(--header-h));
    padding: 30px 26px 44px;
    border-top: 0;
    background: var(--paper);
  }

  .site-nav__link {
    min-height: 58px;
    padding: 16px 0;
    border-bottom-color: var(--ink);
    font-size: 1rem;
  }

  .site-subnav {
    padding: 0 0 10px 18px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-subnav a { min-height: 46px; padding: 9px 14px 9px 18px; background: transparent; }
  .site-nav__item--mobile-cta .site-nav__link { background: var(--ink); }

  .hero,
  .page-hero { min-height: auto; }

  .hero__inner {
    min-height: 590px;
    padding: 0 28px;
  }

  .hero__copy,
  .home-hero .hero__copy,
  .page-hero .hero__copy {
    padding: 66px 0 70px;
  }

  .hero__copy h1,
  .home-hero h1,
  .page-hero .hero__copy h1 {
    max-width: 760px;
    font-size: clamp(3.25rem, 8.8vw, 5.2rem);
  }

  .hero__visual {
    width: 100%;
    height: clamp(360px, 62vw, 520px);
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .message-hero .hero__inner { min-height: 420px; }
  .message-hero .hero__copy { padding: 54px 0 58px; }

  .hero__scroll { display: none; }
  .motion-rail__track { animation-duration: 19s; }

  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .strength-grid { grid-template-columns: 1fr; }
  .strength-item { min-height: 0; }
  .strength-item + .strength-item { border-left: 0; border-top: 1px solid var(--ink); }
  .strength-item h3 { margin-top: 54px; }

  .service-split,
  .theme-columns { grid-template-columns: 1fr; }
  .service-panel { min-height: 520px; }
  .service-panel + .service-panel { border-left: 0; border-top: 1px solid rgba(255,255,255,.55); }
  .theme-group + .theme-group { border-left: 0; border-top: 1px solid var(--line); }

  .process,
  .process--4 { grid-template-columns: 1fr; }
  .process__item { min-height: 180px; }
  .process__item + .process__item { border-left: 0; border-top: 1px solid var(--line); }
  .process__item h3 { margin-top: 36px; }

  .solutions-hero__inner { grid-template-columns: 1fr; align-items: end; }
  .solutions-hero h1 { font-size: clamp(3.8rem, 10vw, 6rem); }
  .solution-lane::before { width: 54%; opacity: .22; }
  .solution-lane__action { min-width: 0; }

  .theme-detail-hero__inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding-block: 64px;
  }

  .theme-detail-hero__copy { max-width: 720px; }

  .theme-detail-hero__index {
    position: absolute;
    right: -10px;
    bottom: 54px;
    opacity: .32;
  }

  .theme-detail-summary {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .theme-facts { grid-template-columns: 1fr; }
  .theme-fact + .theme-fact {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .theme-deliverables__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .theme-deliverable:nth-child(odd) { border-left: 0; }
  .theme-deliverable:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, .26); }

  .mvv-section__eyebrow {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 32px 28px 24px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }

  .mvv-showcase__mission {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    background-size: 120px 120px;
  }

  .mvv-showcase__mission-copy {
    padding: 58px 28px 52px;
  }

  .mvv-showcase__mission h1 {
    max-width: 760px;
    font-size: clamp(2.85rem, 8.2vw, 4rem);
    line-height: 1.22;
  }

  .mvv-showcase__mission p { font-size: 1rem; }

  .mvv-sculpture {
    min-height: 360px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .mvv-sculpture__image { object-position: 50% 54%; }

  .mvv-showcase__principles {
    grid-template-columns: 1fr;
    min-height: 0;
    background-size: 120px 120px;
  }

  .mvv-showcase__principles::after { display: none; }

  .mvv-principle,
  .mvv-principle--vision,
  .mvv-principle--value {
    min-height: 430px;
    padding: 58px 30px 64px;
  }

  .mvv-principle + .mvv-principle {
    border-top: 1px solid rgba(255, 255, 255, .34);
  }

  .mvv-principle h2 {
    max-width: 650px;
    font-size: clamp(2rem, 5.8vw, 2.7rem);
  }

  .profile-grid--stacked .profile {
    grid-template-columns: minmax(220px, 36%) minmax(0, 1fr);
    min-height: 500px;
  }

  .profile-grid--stacked .profile--text-only {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .profile-grid--stacked .profile__image { height: 280px; }
  .profile__body { padding: 44px 34px; }

  .ceo-message { grid-template-columns: 1fr; }
  .ceo-message--without-photo .ceo-message__profile { position: static; }
  .ceo-message__profile { padding: 40px; }
  .ceo-message__profile img {
    width: min(100%, 520px);
    margin-inline: auto;
  }
  .ceo-message__body {
    padding: 58px 40px 72px;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }
  .ceo-message__body h2 { margin-bottom: 44px; }

  .cta-box {
    min-height: 0;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
  }
  .footer-main { grid-template-columns: 1fr; gap: 54px; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 28px); }

  .hero__inner { min-height: 510px; padding: 0 20px; }
  .hero__copy,
  .home-hero .hero__copy,
  .page-hero .hero__copy { padding: 50px 0 54px; }

  .message-hero .hero__inner { min-height: 340px; }
  .message-hero .hero__copy { padding: 42px 0 46px; }

  .hero__copy h1,
  .home-hero h1,
  .page-hero .hero__copy h1 {
    font-size: clamp(2.55rem, 11.8vw, 3.45rem);
    line-height: 1.18;
  }

  .hero__copy p,
  .home-hero .hero__copy > p:not(.eyebrow) { font-size: .94rem; line-height: 1.85; }
  .hero__visual { height: 320px; }
  .hero__label { top: 18px; right: 18px; }
  .hero-chip { padding: 9px 11px; font-size: .56rem; }
  .hero-chip:nth-child(1) { left: 8%; top: 28%; }
  .hero-chip:nth-child(2) { left: 42%; top: 52%; }
  .hero-chip:nth-child(3) { left: 12%; top: 74%; }

  .button-row { gap: 10px; }
  .button { min-height: 58px; }
  .motion-rail__track { padding: 12px 0; font-size: .65rem; }

  .section { padding-block: 70px; }
  .section-heading { margin-bottom: 40px; padding-top: 20px; }
  .section-heading__copy { font-size: .92rem; }

  .strength-item { padding: 30px 24px; }
  .service-panel { min-height: 480px; padding: 28px 22px; }
  .service-panel h3 { font-size: var(--type-feature-title); }
  .service-panel a::after { width: 48px; height: 48px; }

  .theme-group { padding: 30px 22px; }
  .theme-group__head h3 { font-size: var(--type-subsection-title); }
  .topic-item { min-height: 220px; }
  .topic-item--link { min-height: 280px; }
  .theme-card-grid .theme-card { min-height: 0; }

  .theme-detail-hero { min-height: 560px; }
  .theme-detail-hero__inner { padding-block: 52px; }
  .theme-detail-hero h1 { font-size: clamp(2.7rem, 13vw, 3.7rem); }
  .theme-detail-hero__lead { font-size: .95rem; }
  .theme-detail-hero__index { right: -4px; bottom: 46px; }
  .theme-detail-summary { padding-block: 46px; }
  .theme-detail-summary h2 { font-size: var(--type-section-title); }
  .theme-fact { padding: 30px 22px; }

  .news-empty-state {
    min-height: 390px;
    padding: 26px 20px;
  }

  .news-empty-state__label {
    top: 26px;
    left: 20px;
  }

  .news-empty-state h2 { font-size: var(--type-section-title); }
  .theme-deliverables__grid { grid-template-columns: 1fr; }
  .theme-deliverable + .theme-deliverable {
    border-top: 1px solid rgba(255, 255, 255, .26);
    border-left: 0;
  }

  .solutions-hero { min-height: 650px; }
  .solutions-hero__inner { padding: 70px 20px 56px; }
  .solutions-hero h1 { font-size: clamp(3.2rem, 14vw, 4.2rem); }
  .solution-lane { min-height: 0; padding: 34px 24px; }
  .solution-lane h2 {
    font-size: clamp(1.65rem, 8.2vw, var(--type-section-title));
  }
  .solution-lane::before { width: 100%; opacity: .12; }

  .mvv-section__eyebrow {
    gap: 12px;
    padding: 28px 22px 22px;
    font-size: .68rem;
  }

  .mvv-section__eyebrow::before { width: 36px; }
  .mvv-showcase__mission { background-size: 96px 96px; }
  .mvv-showcase__mission-copy { padding: 46px 22px 42px; }
  .mvv-showcase__mission h1 {
    font-size: clamp(2.4rem, 10.4vw, 3rem);
    line-height: 1.28;
  }
  .mvv-showcase__mission p { font-size: .95rem; line-height: 1.85; }
  .mvv-sculpture { min-height: 300px; }
  .mvv-sculpture__image { object-position: 50% 55%; }
  .mvv-showcase__principles { background-size: 96px 96px; }
  .mvv-principle,
  .mvv-principle--vision,
  .mvv-principle--value {
    min-height: 400px;
    padding: 48px 22px 54px;
  }
  .mvv-principle__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 26px;
  }
  .mvv-principle h2 {
    margin-top: 26px;
    font-size: clamp(1.8rem, 7.8vw, 2.2rem);
  }
  .mvv-principle p { font-size: .94rem; }

  .profile-grid--stacked .profile {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .profile-grid--stacked .profile__image {
    width: 100%;
    height: 330px;
    align-self: auto;
    object-position: center 25%;
  }

  .profile__body { padding: 34px 22px 46px; }
  .profile__bio li { font-size: .95rem; }

  .ceo-message-section { background-size: 96px 96px; }
  .ceo-message__profile { padding: 20px; }
  .ceo-message__profile .profile__role { margin-top: 22px; }
  .ceo-message__body { padding: 44px 20px 56px; }
  .ceo-message__body h2 {
    margin: 24px 0 28px;
    font-size: var(--ceo-message-copy-size);
    line-height: 2;
  }
  .ceo-message__text {
    font-size: var(--ceo-message-copy-size);
    line-height: 2;
  }
  .ceo-message__text p + p { margin-top: 28px; }
  .ceo-message__vision {
    margin-top: 28px;
    padding-block: 26px;
    font-size: var(--ceo-message-copy-size);
    line-height: 2;
  }
  .ceo-message__signature { margin-top: 34px; }

  .contact-page { padding-block: 64px; background-size: 96px 96px; }
  .contact-page__intro h1 { font-size: clamp(2.75rem, 12vw, 3.5rem); }
  .form-card { padding: 26px 20px; }
  .diagnosis-contact-summary__ratings { grid-template-columns: 1fr; }

  .cta-box {
    min-height: 0;
    padding: 86px 22px 60px;
  }

  .cta-box::before { left: 22px; top: 30px; }
  .cta-box h2 { font-size: var(--type-section-title); }
  .site-footer { padding-top: 62px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 350px) {
  .solution-lane h2 {
    font-size: clamp(1.4rem, 7.2vw, 1.65rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__visual { background-position: center; }
  .hero__visual::before { display: none; }
  .motion-rail__track { animation: none; }
  .mvv-sculpture__balance { animation: none; }
  html.js [data-reveal] { opacity: 1; filter: none; transform: none; }
}
