@charset "UTF-8";

:root {
  --navy-950: #172d3b;
  --navy-900: #203b4c;
  --navy-800: #2c4a5e;
  --navy-700: #3f6578;
  --blue-600: #5a8a9a;
  --blue-300: #a8c8d2;
  --blue-150: #dcecf1;
  --blue-075: #edf6f8;
  --ink: #2c3e50;
  --text: #4a5c6a;
  --muted: #71808b;
  --line: #d5e0e4;
  --line-strong: #b7c8cf;
  --white: #ffffff;
  --off-white: #f8fafb;
  --warm: #f4f1eb;
  --pending-bg: #fff8e8;
  --pending: #76571b;
  --error: #a23737;
  --success: #27624b;
  --font-sans: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  --content: 1180px;
  --content-narrow: 840px;
  --header-height: 78px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --radius: 6px;
  --shadow: 0 22px 60px rgba(29, 52, 67, 0.11);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

html.capture-full {
  scroll-behavior: auto;
  scrollbar-width: none;
}

html.capture-full::-webkit-scrollbar {
  display: none;
}

html.capture-full .site-header,
html.capture-full .contact-copy {
  position: relative;
  top: auto;
}

html.capture-full .mobile-contact-bar {
  display: none;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-break: strict;
  overflow-wrap: anywhere;
  text-wrap: pretty;
  word-break: auto-phrase;
}

.keep-word {
  display: inline-block;
  white-space: nowrap;
}

.title-line,
.hero-title-line,
.hero-title-brand {
  display: block;
}

.hero-title-brand {
  margin-top: 0.18em;
  color: var(--navy-800);
  font-size: 0.78em;
  font-weight: 700;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(90, 138, 154, 0.48);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.container-narrow {
  width: min(var(--content-narrow), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(183, 200, 207, 0.72);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1320px, calc(100% - 48px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: 102px;
  height: 58px;
  overflow: hidden;
}

.site-brand img {
  width: 102px;
  height: auto;
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav .button {
  color: var(--white);
}

.primary-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--blue-600);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  position: relative;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
}

.nav-dropdown-toggle::before {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--blue-600);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::before,
.nav-dropdown:focus-within .nav-dropdown-toggle::before,
.nav-dropdown.is-open .nav-dropdown-toggle::before,
.nav-dropdown.is-current .nav-dropdown-toggle::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown-chevron {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.nav-dropdown.is-open .nav-dropdown-chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% - 4px);
  left: 50%;
  width: 236px;
  padding: 10px;
  border: 1px solid rgba(183, 200, 207, 0.84);
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 18px 38px rgba(23, 45, 59, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
}

.nav-dropdown-menu a,
.nav-dropdown-coming-soon {
  min-height: 48px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  letter-spacing: 0.045em;
}

.nav-dropdown-menu a {
  transition: color 180ms ease, background 180ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--navy-900);
  background: var(--blue-075);
}

.primary-nav .nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-coming-soon {
  border-bottom: 0;
  color: var(--muted);
  cursor: default;
}

.nav-dropdown-coming-soon small {
  flex: 0 0 auto;
  padding: 3px 6px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

@media (min-width: 861px) {
  .nav-dropdown:hover .nav-dropdown-chevron,
  .nav-dropdown:focus-within .nav-dropdown-chevron {
    margin-top: 4px;
    transform: rotate(225deg);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

.button,
.text-link,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--navy-800);
  border-radius: 3px;
  color: var(--white);
  background: var(--navy-800);
  font-weight: 650;
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button {
  padding: 13px 24px;
  font-size: 0.9rem;
}

.button:hover,
.submit-button:hover {
  border-color: var(--navy-950);
  background: var(--navy-950);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--navy-800);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
}

.button-light {
  border-color: var(--white);
  color: var(--navy-950);
  background: var(--white);
}

.button-light:hover {
  border-color: var(--blue-150);
  color: var(--white);
  background: transparent;
}

.button-compact {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.8rem;
}

.text-link {
  min-height: auto;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: var(--navy-800);
  background: transparent;
  font-size: 0.9rem;
}

.text-link:hover {
  color: var(--navy-950);
}

.menu-toggle {
  display: none;
  width: 52px;
  min-height: 52px;
  margin-left: auto;
  padding: 5px 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  font-weight: 700;
  line-height: 1;
}

.menu-toggle-icon {
  width: 28px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle-icon span {
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.3);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.page-hero,
.corporate-hero,
.product-hero {
  position: relative;
  overflow: hidden;
}

.corporate-hero {
  min-height: 700px;
  border-bottom: 1px solid var(--line);
  background: var(--blue-075);
}

.corporate-hero::before {
  position: absolute;
  inset: 0 48% 0 0;
  background: var(--white);
  content: "";
}

.corporate-hero-grid {
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: stretch;
}

.corporate-hero-copy {
  align-self: center;
  padding: 94px 72px 94px 0;
}

.corporate-hero .display-title {
  font-size: 52px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.display-title {
  margin: 0;
  color: var(--ink);
  font-size: 64px;
  font-weight: 660;
  letter-spacing: 0;
  line-height: 1.16;
}

.display-title em {
  color: var(--blue-600);
  font-style: normal;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 2;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.keyword-row,
.audience-row {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.keyword-row span,
.audience-row span {
  padding: 6px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--navy-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.portrait-stage {
  position: relative;
  min-height: 620px;
  margin: 40px 0 40px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-left: 1px solid var(--line-strong);
  background: var(--blue-150);
}

.portrait-placeholder {
  width: min(430px, calc(100% - 48px));
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  border: 1px dashed var(--blue-600);
  color: var(--navy-700);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.portrait-placeholder strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
}

.portrait-placeholder span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.75;
}

.portrait-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(330px, 80%);
  padding: 22px 24px;
  color: var(--white);
  background: var(--navy-900);
}

.portrait-caption b,
.portrait-caption span {
  display: block;
}

.portrait-caption b {
  font-size: 1.02rem;
}

.portrait-caption span {
  margin-top: 4px;
  font-size: 0.75rem;
  opacity: 0.78;
}

.product-hero {
  color: var(--ink);
  background: var(--off-white);
}

.product-hero::after {
  position: absolute;
  inset: 0 0 0 62%;
  background: var(--blue-150);
  content: "";
}

.product-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  padding-block: 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 44px;
}

.product-brand-lockup {
  width: min(320px, 72%);
  margin-bottom: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 45, 59, 0.15);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(29, 52, 67, 0.08);
}

.product-brand-lockup-logo {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-brand-lockup-logo img {
  width: 100%;
}

.product-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.product-visual > img {
  position: relative;
  z-index: 2;
  width: min(680px, 110%);
  max-width: none;
  filter: drop-shadow(0 30px 40px rgba(23, 45, 59, 0.17));
}

.page-hero {
  padding: 100px 0 84px;
  border-bottom: 1px solid var(--line);
  background: var(--blue-075);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 60px;
}

.page-hero .display-title {
  font-size: 56px;
}

.page-number {
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
  color: var(--navy-700);
  font-size: 80px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
}

.section {
  padding-block: var(--space-8);
}

.section-compact {
  padding-block: var(--space-6);
}

.section-soft {
  background: var(--blue-075);
}

.section-offwhite {
  background: var(--off-white);
}

.section-warm {
  background: var(--warm);
}

.section-dark {
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy-950);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark strong {
  color: var(--white);
}

.section-head {
  margin-bottom: 46px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 32px;
}

.section-index {
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 640;
  letter-spacing: 0;
  line-height: 1.35;
}

.section-lead {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: 1.02rem;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.split-intro > :first-child {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.metric-strip {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--white);
}

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

.metric {
  min-height: 168px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.metric:last-child {
  border-right: 1px solid var(--line);
}

.metric strong {
  color: var(--navy-800);
  font-size: 52px;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1;
}

.metric span {
  margin-top: 14px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 650;
}

.official-source-note {
  margin-top: 0;
  padding-top: 14px;
  padding-bottom: 16px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.8;
  text-align: right;
}

.official-source-note a,
.case-source {
  color: var(--navy-700);
  font-weight: 650;
  text-decoration-line: underline;
  text-decoration-color: var(--blue-300);
  text-underline-offset: 4px;
}

.official-source-note a:hover,
.case-source:hover {
  color: var(--blue-600);
}

.metric small {
  margin-top: 6px;
  color: var(--pending);
  font-size: 0.65rem;
}

.number-list {
  border-top: 1px solid var(--line-strong);
}

.number-row {
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  padding: 30px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.number-row > b {
  color: var(--blue-600);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.number-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.6;
}

.number-row p {
  margin: 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

.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));
}

.top-gap {
  margin-top: 28px;
}

.section-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.line-card {
  min-height: 100%;
  padding: 30px;
  border-top: 3px solid var(--navy-800);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.line-card > b,
.line-card .card-index {
  display: block;
  margin-bottom: 20px;
  color: var(--blue-600);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.line-card h3,
.line-card h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.5;
}

.line-card h3 {
  font-size: 1.22rem;
}

.line-card h4 {
  font-size: 1.05rem;
}

.line-card p {
  margin: 16px 0 0;
  font-size: 0.91rem;
}

.line-card .text-link {
  margin-top: 24px;
}

.capability-list {
  margin-top: 40px;
  border-top: 1px solid var(--line-strong);
}

.capability-item {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 390px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.capability-item-reverse > :first-child {
  order: 2;
}

.capability-copy {
  padding: clamp(34px, 4.5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.capability-label {
  margin: 0 0 20px;
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.capability-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.5;
}

.capability-copy > p:not(.capability-label) {
  margin: 22px 0 0;
}

.capability-relation {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.capability-media {
  min-width: 0;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  background: #edf2f4;
}

.capability-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.capability-media-photo img {
  object-fit: cover;
}

.capability-media-diagram {
  padding: 24px;
}

.capability-media-diagram img {
  object-fit: contain;
}

.capability-media-pair {
  min-width: 0;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
  background: #edf2f4;
}

.capability-media-pair figure {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.capability-screen {
  aspect-ratio: 4 / 3;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capability-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.capability-media-pair figcaption {
  min-height: 72px;
  padding: 15px 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
}

.capability-integration {
  min-width: 0;
  min-height: 390px;
  padding: 44px;
  display: grid;
  place-content: center;
  gap: 28px;
  background: var(--navy-800);
}

.capability-integration > strong {
  width: min(230px, 100%);
  margin: 0 auto;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-align: center;
}

.capability-integration > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.capability-integration span {
  padding: 13px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  text-align: center;
}

.capability-source {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: right;
}

.capability-source a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.25fr;
  align-items: stretch;
  gap: 14px;
}

.formula-box {
  min-height: 144px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: var(--white);
  text-align: center;
}

.formula-box:last-child {
  color: var(--white);
  background: var(--navy-800);
}

.formula-box small,
.formula-box strong {
  display: block;
}

.formula-box small {
  margin-bottom: 4px;
  color: var(--blue-600);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.formula-box:last-child small {
  color: var(--blue-150);
}

.formula-sign {
  align-self: center;
  color: var(--blue-600);
  font-size: 1.3rem;
}

.media-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.media-feature + .media-feature {
  margin-top: 28px;
}

.media-feature:nth-child(even) .media-feature-media {
  order: 2;
}

.media-feature-media {
  min-height: 390px;
  padding: 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--blue-150);
}

.media-feature-media img {
  width: 100%;
  max-height: 370px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(23, 45, 59, 0.15));
}

.media-feature-copy {
  padding: 54px;
  align-self: center;
}

.media-feature-copy > b {
  color: var(--blue-600);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.feature-index {
  margin: 0 0 22px;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  color: var(--blue-600);
  line-height: 1;
}

.feature-index-number {
  color: var(--navy-800);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.media-feature-copy .feature-index-number {
  font-size: 64px;
}

.feature-index-label {
  margin-bottom: 7px;
  padding-left: 15px;
  border-left: 1px solid var(--blue-300);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
}

.media-feature-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.45;
}

.media-feature-copy p {
  margin: 20px 0 0;
}

.media-feature-copy .feature-index,
.line-card .feature-index {
  margin: 0 0 22px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-strong);
  background: var(--white);
}

.comparison-infographic {
  margin: 0;
}

.comparison-infographic picture {
  display: block;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.comparison-infographic img {
  display: block;
  width: 100%;
}

.comparison-infographic img {
  height: auto;
}

.comparison-column {
  position: relative;
  padding: 38px;
  border-top: 4px solid var(--line-strong);
}

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

.comparison-column-conventional {
  background: var(--off-white);
}

.comparison-column-batchline {
  border-top-color: var(--blue-600);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(32, 59, 76, 0.1);
  z-index: 1;
}

.comparison-column + .comparison-column-batchline {
  border-left: 2px solid var(--blue-300);
}

.comparison-heading {
  margin-bottom: 24px;
}

.comparison-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.comparison-column-batchline .comparison-label {
  display: inline-block;
  padding: 5px 10px;
  color: var(--white);
  background: var(--navy-800);
}

.comparison-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
}

.comparison-column-conventional .comparison-heading h3 {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
}

.comparison-column-batchline .comparison-heading h3 {
  color: var(--navy-900);
  font-size: 1.375rem;
}

.comparison-note {
  max-width: 920px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.comparison-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.05rem;
}

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

.plain-list li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.plain-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.dark-message {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: start;
}

.dark-message .section-title {
  color: var(--white);
}

.why-story {
  max-width: 720px;
}

.why-story p {
  margin: 0;
}

.why-story p + p {
  margin-top: 18px;
}

.why-story .why-conclusion {
  margin-top: 24px;
  color: var(--blue-150);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.9;
}

.dark-list-title {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0;
}

.dark-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-list b {
  color: var(--blue-300);
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.dark-list h3,
.dark-list p {
  margin: 0;
}

.dark-list h3 {
  font-size: 1.05rem;
}

.dark-list p {
  margin-top: 7px;
  font-size: 0.88rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.result-cell {
  min-height: 220px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--white);
}

.result-cell strong {
  color: var(--navy-800);
  font-size: 38px;
  line-height: 1.2;
}

.result-cell span {
  display: block;
  font-size: 0.86rem;
}

.result-cell small {
  display: block;
  margin-top: 10px;
  color: var(--pending);
  font-size: 0.64rem;
}

.case-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.case-card {
  padding: 30px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.case-card > b {
  color: var(--blue-600);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.case-card h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1.1rem;
}

.case-card p {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.case-source {
  display: inline-flex;
  gap: 0.35em;
  align-items: center;
  margin-top: 20px;
  font-size: 0.76rem;
}

.promo-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--white);
}

.promo-copy {
  padding: 54px;
}

.promo-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 40px;
  line-height: 1.4;
}

.promo-copy p {
  margin: 20px 0 0;
}

.promo-media {
  min-height: 430px;
  padding: 36px;
  display: grid;
  place-items: center;
  background: var(--blue-150);
}

.promo-media img {
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(23, 45, 59, 0.16));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.timeline-step {
  min-height: 198px;
  padding: 26px 20px;
  border-left: 1px solid var(--line);
}

.timeline-step:last-child {
  border-right: 1px solid var(--line);
}

.timeline-step b,
.timeline-step strong,
.timeline-step span {
  display: block;
}

.timeline-step b {
  color: var(--blue-600);
  line-height: 1;
}

.timeline-label,
.timeline-number {
  display: block;
}

.timeline-label {
  font-size: 0.66rem;
  letter-spacing: 0.13em;
}

.timeline-number {
  margin-top: 8px;
  color: var(--navy-800);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.timeline-step strong {
  margin-top: 24px;
  color: var(--ink);
}

.timeline-step span {
  margin-top: 8px;
  font-size: 0.76rem;
  line-height: 1.65;
}

.deployment-industries {
  margin-top: 64px;
  padding-top: 8px;
}

.deployment-industries-head {
  max-width: 780px;
}

.deployment-industries-head h3,
.deployment-industries-head p {
  margin: 0;
}

.deployment-industries-head h3 {
  margin-top: 8px;
  color: var(--ink);
  font-size: 26px;
  letter-spacing: 0;
  line-height: 1.45;
}

.deployment-industries-head > p {
  margin-top: 12px;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.9;
}

.deployment-industry-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  row-gap: 10px;
}

.deployment-industry-list a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.8;
  text-decoration-line: underline;
  text-decoration-color: var(--blue-300);
  text-underline-offset: 4px;
}

.deployment-industry-list a:hover {
  color: var(--blue-600);
}

.deployment-industry-list li:not(:last-child)::after {
  content: "／";
  margin: 0 12px;
  color: var(--line-strong);
  font-weight: 400;
}

.lsdc-results-section {
  border-top: 1px solid var(--line);
}

.lsdc-case-list {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.lsdc-case-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 52px;
  align-items: stretch;
  padding: 34px 0;
}

.lsdc-case-card + .lsdc-case-card {
  border-top: 1px solid var(--line);
}

.lsdc-case-logo {
  min-height: 240px;
  padding: 32px;
  display: grid;
  place-items: center;
  color: var(--navy-700);
  background: var(--off-white);
}

.lsdc-case-logo span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.lsdc-case-copy {
  align-self: center;
  padding: 18px 48px 18px 0;
}

.lsdc-case-label {
  margin: 0 0 10px;
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.lsdc-case-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.5;
}

.lsdc-case-copy > p:not(.lsdc-case-label) {
  max-width: 660px;
  margin: 16px 0 0;
}

.lsdc-case-meta {
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.lsdc-case-meta div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.lsdc-case-meta dt,
.lsdc-case-meta dd {
  margin: 0;
}

.lsdc-case-meta dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.lsdc-case-meta dd {
  color: var(--ink);
  font-size: 0.86rem;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 360ms ease;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  padding: 24px 52px 24px 0;
  position: relative;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition: color 360ms ease;
}

.faq-question::before,
.faq-question::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 1px;
  background: var(--blue-600);
  content: "";
  transform: translateY(-50%);
  transform-origin: center;
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.is-open .faq-question {
  color: var(--navy-700);
}

.faq-item.is-open .faq-question::after {
  opacity: 0;
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    visibility 0s linear 720ms;
}

.faq-answer p {
  margin: 0;
  min-height: 0;
  padding: 0 52px 0 0;
  overflow: hidden;
  transition: padding-bottom 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition:
    grid-template-rows 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease 80ms,
    visibility 0s linear 0s;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 26px;
}

.cta-band {
  padding-block: 62px;
  color: var(--white);
  background: var(--navy-800);
}

.cta-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.cta-band h2,
.cta-band p {
  margin: 0;
}

.cta-band h2 {
  color: var(--white);
  font-size: 38px;
  line-height: 1.4;
}

.cta-band p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cta-band .button-outline {
  border-color: var(--white);
  color: var(--white);
}

.contact-section {
  padding-block: var(--space-8);
  background: var(--navy-950);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  gap: 72px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  color: rgba(255, 255, 255, 0.78);
}

.contact-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: 44px;
  line-height: 1.35;
}

.contact-title-line {
  display: block;
}

.contact-copy p {
  margin: 22px 0 0;
}

.contact-promise {
  margin-top: 34px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--blue-150);
  font-size: 0.82rem;
}

.form-panel {
  padding: 44px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.55rem;
}

.form-panel > p {
  margin: 12px 0 0;
  font-size: 0.82rem;
}

.form-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.fieldset-label,
.field legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
}

.field fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.required,
.optional {
  margin-left: 6px;
  font-size: 0.68rem;
  font-weight: 500;
}

.required {
  color: var(--error);
}

.optional {
  color: var(--muted);
}

.field input:not([type="radio"]):not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
}

.field input:not([type="radio"]):not([type="checkbox"]),
.field select {
  min-height: 52px;
  padding: 10px 12px;
}

.field textarea {
  min-height: 138px;
  padding: 12px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa6ad;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.choice,
.check-choice {
  position: relative;
}

.choice input,
.check-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice label,
.check-choice label {
  min-height: 50px;
  margin: 0;
  padding: 11px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--text);
  background: var(--white);
  font-size: 0.78rem;
  text-align: center;
  cursor: pointer;
}

.choice input:checked + label,
.check-choice input:checked + label {
  border-color: var(--navy-800);
  color: var(--white);
  background: var(--navy-800);
}

.choice input:focus-visible + label,
.check-choice input:focus-visible + label {
  outline: 3px solid rgba(90, 138, 154, 0.48);
  outline-offset: 2px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.privacy-check {
  margin-top: 26px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--off-white);
  font-size: 0.78rem;
}

.privacy-check label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.privacy-check input {
  margin-top: 6px;
}

.privacy-check a {
  color: var(--navy-800);
}

.submit-button {
  width: 100%;
  min-height: 58px;
  margin-top: 20px;
  padding: 14px 24px;
  cursor: pointer;
}

.form-status {
  min-height: 48px;
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--line-strong);
  background: var(--off-white);
  font-size: 0.78rem;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="error"] {
  border-color: var(--error);
  color: var(--error);
  background: #fff4f4;
}

.form-status[data-state="success"] {
  border-color: var(--success);
  color: var(--success);
  background: #f1faf6;
}

.form-status[data-state="sending"] {
  border-color: var(--blue-600);
  color: var(--navy-700);
  background: var(--blue-075);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
}

.profile-summary {
  padding: 32px;
  border-top: 3px solid var(--navy-800);
  background: var(--off-white);
}

.profile-summary h3,
.profile-summary p {
  margin: 0;
}

.profile-summary h3 {
  color: var(--ink);
  font-size: 1.55rem;
}

.profile-summary p {
  margin-top: 14px;
}

.profile-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-list {
  border-top: 1px solid var(--line-strong);
}

.career-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.career-item > b {
  color: var(--blue-600);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.career-item h3,
.career-item p {
  margin: 0;
}

.career-item h3 {
  color: var(--ink);
  font-size: 1.12rem;
}

.career-item p {
  margin-top: 10px;
}

.news-toolbar {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  padding: 9px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--navy-800);
  color: var(--white);
  background: var(--navy-800);
}

.news-list {
  border-top: 1px solid var(--line-strong);
}

.news-item {
  display: grid;
  grid-template-columns: 120px 130px minmax(0, 1fr) auto;
  gap: 24px;
  padding: 26px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.news-item[hidden] {
  display: none;
}

.news-date {
  color: var(--muted);
  font-size: 0.78rem;
}

.news-category {
  padding: 4px 8px;
  border-left: 2px solid var(--blue-600);
  color: var(--navy-700);
  font-size: 0.72rem;
}

.news-title {
  color: var(--ink);
  font-weight: 600;
}

.news-arrow {
  color: var(--blue-600);
  font-size: 1.2rem;
}

.pagination {
  margin-top: 36px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.pagination a,
.pagination span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  text-decoration: none;
}

.pagination [aria-current="page"] {
  color: var(--white);
  background: var(--navy-800);
}

.article-header {
  padding: 88px 0 58px;
  border-bottom: 1px solid var(--line);
  background: var(--blue-075);
}

.article-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.article-header h1 {
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 52px;
  letter-spacing: 0;
  line-height: 1.35;
}

.article-body {
  padding-block: 72px;
}

.article-body h2,
.article-body h3 {
  color: var(--ink);
  line-height: 1.5;
}

.article-body h2 {
  margin: 56px 0 22px;
  padding-top: 16px;
  border-top: 2px solid var(--navy-800);
  font-size: 1.65rem;
}

.article-body h3 {
  margin: 36px 0 14px;
  font-size: 1.22rem;
}

.article-body p,
.article-body ul {
  margin: 0 0 22px;
}

.privacy-header .eyebrow {
  margin: 0 0 18px;
}

.privacy-header-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.9;
}

.privacy-policy-body {
  max-width: 900px;
}

.privacy-policy-body .policy-updated {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.privacy-policy-body li + li {
  margin-top: 8px;
}

.privacy-policy-body a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}

.policy-link-list {
  padding: 22px 24px 22px 44px;
  border: 1px solid var(--line);
  background: var(--off-white);
}

.policy-company-card {
  margin-bottom: 22px;
  border-top: 3px solid var(--navy-800);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.policy-company-card dl {
  margin: 0;
}

.policy-company-card dl > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.policy-company-card dl > div:last-child {
  border-bottom: 0;
}

.policy-company-card dt {
  color: var(--ink);
  font-weight: 700;
}

.policy-company-card dd {
  margin: 0;
}

.article-image-placeholder {
  min-height: 420px;
  margin: 36px 0;
  display: grid;
  place-items: center;
  border: 1px dashed var(--blue-600);
  color: var(--navy-700);
  background: var(--blue-075);
  text-align: center;
}

.article-back {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.template-outline {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 42px;
}

.template-nav {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
  border-top: 1px solid var(--line-strong);
}

.template-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy-700);
  font-size: 0.78rem;
  text-decoration: none;
}

.template-stack > section {
  min-height: 260px;
  padding: 36px;
  border-top: 3px solid var(--navy-800);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.template-stack > section + section {
  margin-top: 24px;
}

.template-stack h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.55rem;
}

.template-stack p {
  margin: 16px 0 0;
}

.template-fields {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.template-fields span {
  padding: 6px 9px;
  color: var(--navy-700);
  background: var(--blue-075);
  font-size: 0.7rem;
}

.site-footer {
  padding: 58px 0 28px;
  color: rgba(255, 255, 255, 0.66);
  background: #102532;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.footer-brand {
  width: 132px;
}

.footer-brand img {
  opacity: 0.92;
  filter: brightness(0) invert(1);
}

.footer-company {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.footer-company p {
  margin: 5px 0 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 30px;
}

.footer-nav a {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-contact-bar {
  display: none;
}

/* Corporate home: preserves the existing LSDC site's visual language. */
.home-section {
  padding: 112px 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.home-section-header {
  margin-bottom: 64px;
  text-align: center;
}

.home-section-label {
  margin: 0 0 14px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.45;
}

.home-section-divider {
  width: 60px;
  height: 3px;
  margin: 24px auto 0;
  background: var(--blue-600);
}

.home-section-intro {
  max-width: 760px;
  margin: -30px auto 48px;
  font-size: 1.04rem;
  line-height: 2;
  text-align: center;
}

.home-problem {
  background: var(--white);
}

.home-problem-lead {
  max-width: 880px;
  margin-bottom: 48px;
}

.home-problem-lead h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.5;
}

.home-problem-lead > p:last-child {
  max-width: 820px;
  margin: 0;
  font-size: 1.06rem;
  line-height: 2;
}

.home-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-problem-card {
  min-height: 260px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--off-white);
}

.home-problem-card span {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(90, 138, 154, 0.28);
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.home-problem-card h3,
.home-problem-card p {
  margin: 0;
}

.home-problem-card h3 {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.6;
}

.home-problem-card p {
  font-size: 0.94rem;
  line-height: 1.9;
}

.home-expertise {
  background: linear-gradient(180deg, #f4f7f9 0%, var(--blue-075) 100%);
}

.home-expertise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 32px;
}

.home-expertise-message {
  padding: 48px;
  border-radius: 4px;
  color: var(--white);
  background: var(--navy-800);
}

.home-expertise-eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-expertise-message > h3 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.55;
}

.home-expertise-message > p:not(.home-expertise-eyebrow) {
  margin: 0 0 20px;
  line-height: 2;
  opacity: 0.86;
}

.home-expertise-message > p:last-child {
  margin-bottom: 0;
}

.home-expertise-map {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.2fr;
  align-items: center;
  gap: 12px;
}

.home-expertise-map-node {
  min-height: 96px;
  padding: 16px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
}

.home-expertise-map-node span,
.home-expertise-map-node strong {
  display: block;
}

.home-expertise-map-node span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-expertise-map-node strong {
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1.45;
}

.home-expertise-map-accent {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(168, 200, 210, 0.2);
}

.home-expertise-map-sign {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-align: center;
}

.home-expertise-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-expertise-point {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.home-expertise-point > span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.home-expertise-point h3,
.home-expertise-point p {
  margin: 0;
}

.home-expertise-point h3 {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.6;
}

.home-expertise-point p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.home-company,
.home-fit,
.home-news {
  background: var(--white);
}

.home-company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-company-item {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--off-white);
}

.home-company-label {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-company-label::before {
  width: 20px;
  height: 2px;
  background: var(--blue-600);
  content: "";
}

.home-company-value {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
}

.home-company-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-company-description {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 46px 48px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-600);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--off-white) 0%, #e8f4f8 100%);
}

.home-company-description p {
  margin: 0 0 22px;
  font-size: 1.04rem;
  line-height: 2;
}

.home-services {
  position: relative;
  background: linear-gradient(180deg, var(--off-white) 0%, #e8f1f5 100%);
}

.home-services::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
}

.home-service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.home-service-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(44, 74, 94, 0.04);
}

.home-service-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue-300), var(--blue-600));
  content: "";
}

.home-service-header {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.home-service-number {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue-600);
  border-radius: 50%;
  color: var(--blue-600);
  font-size: 1.4rem;
  font-weight: 600;
}

.home-service-header h3,
.home-service-header p {
  margin: 0;
}

.home-service-header h3 {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.45;
}

.home-service-header p {
  margin-top: 4px;
  color: var(--blue-600);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.home-service-description {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.9;
}

.home-batchline-detail {
  margin-top: 36px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(135deg, #f8fbfc 0%, #eef5f8 100%);
}

.home-batchline-detail h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.24rem;
}

.home-batchline-detail > p:not(.home-company-label) {
  margin: 0 0 22px;
}

.home-batchline-tags {
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-batchline-tags span {
  padding: 12px 14px;
  border: 1px solid rgba(213, 224, 228, 0.8);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.home-fit-panel {
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-600);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--off-white) 0%, #e8f4f8 100%);
}

.home-fit-copy h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.5;
}

.home-fit-copy > p:not(.home-section-label) {
  margin: 0;
  line-height: 2;
}

.home-fit-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-fit-tags span {
  min-height: 34px;
  padding: 5px 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(213, 224, 228, 0.9);
  border-radius: 999px;
  color: var(--navy-800);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

.home-fit-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.home-fit-list li {
  position: relative;
  padding: 16px 20px 16px 42px;
  border: 1px solid rgba(213, 224, 228, 0.8);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.home-fit-list li::before {
  position: absolute;
  top: 25px;
  left: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-600);
  content: "";
}

.home-insights {
  background: var(--off-white);
}

.home-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.home-insight-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.home-insight-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.35rem;
}

.home-insight-card > p:not(.home-company-label) {
  margin: 0 0 24px;
}

.home-batchline {
  background: linear-gradient(180deg, #eef5f8 0%, var(--blue-075) 100%);
}

.home-batchline-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(44, 74, 94, 0.08);
}

.home-batchline-copy {
  padding: 56px;
  align-self: center;
}

.home-batchline-copy h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.5;
}

.home-batchline-copy > p:not(.home-section-label) {
  margin: 0;
  line-height: 2;
}

.home-batchline-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-batchline-media {
  min-height: 440px;
  padding: 48px;
  display: grid;
  place-items: center;
  background: var(--blue-150);
}

.home-batchline-media img {
  width: min(580px, 110%);
  max-width: none;
  filter: drop-shadow(0 24px 32px rgba(23, 45, 59, 0.17));
}

.home-news .news-list {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.home-news .section-actions {
  justify-content: center;
}

.home-contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy-800) 0%, #1e3a4a 100%);
  text-align: center;
}

.home-contact::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.035) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.035) 0%, transparent 50%);
  content: "";
}

.home-contact .container {
  position: relative;
  z-index: 1;
}

.home-contact .home-section-label {
  color: rgba(255, 255, 255, 0.62);
}

.home-contact .home-section-title {
  color: var(--white);
}

.home-contact .home-section-divider {
  background: rgba(255, 255, 255, 0.3);
}

.home-contact-text {
  margin: -28px auto 0;
  font-size: 1.08rem;
  opacity: 0.9;
}

.home-contact-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1100px) {
  :root {
    --space-8: 5rem;
  }

  .header-inner,
  .container,
  .container-narrow {
    width: min(var(--content), calc(100% - 40px));
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav a,
  .nav-dropdown-toggle {
    font-size: 0.72rem;
  }

  .display-title {
    font-size: 54px;
  }

  .corporate-hero .display-title {
    font-size: 48px;
  }

  .page-hero .display-title {
    font-size: 50px;
  }

  .section-title {
    font-size: 40px;
  }

  .article-header h1 {
    font-size: 46px;
  }

  .contact-copy h2 {
    font-size: 40px;
  }

  .corporate-hero-copy {
    padding-right: 44px;
  }

  .product-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.9fr);
  }

  .product-visual > img {
    width: 105%;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
    gap: 44px;
  }

  .form-panel {
    padding: 36px;
  }

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

  .timeline-step:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .timeline-step:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
    --space-8: 4.5rem;
  }

  .home-section {
    padding: 88px 0;
  }

  .home-problem-lead h2 br {
    display: none;
  }

  .home-problem-grid,
  .home-expertise-layout,
  .home-company-grid,
  .home-fit-panel,
  .home-insight-grid,
  .home-batchline-panel {
    grid-template-columns: 1fr;
  }

  .home-expertise-message {
    padding: 38px;
  }

  .home-expertise-map {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-expertise-map-sign {
    display: none;
  }

  .home-company-description {
    grid-column: auto;
  }

  .home-service-card {
    padding: 38px;
  }

  .home-fit-panel {
    padding: 38px;
  }

  .home-batchline-media {
    min-height: 360px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .site-brand {
    width: 88px;
    height: 52px;
  }

  .site-brand img {
    width: 88px;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 1200;
    inset: var(--header-height) 0 auto;
    max-height: calc(100vh - var(--header-height));
    padding: 28px 24px 34px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 24px 34px rgba(23, 45, 59, 0.12);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.84rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav .button {
    margin-top: 18px;
    padding-inline: 20px;
  }

  .nav-dropdown {
    width: 100%;
    display: block;
  }

  .nav-dropdown-toggle {
    width: 100%;
    min-height: 0;
    padding: 14px 0;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 0.84rem;
  }

  .nav-dropdown-toggle::before {
    display: none;
  }

  .nav-dropdown-chevron {
    margin-right: 4px;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 18px;
    overflow: hidden;
    border: 0;
    background: var(--blue-075);
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 320ms ease, visibility 320ms ease;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 160px;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown-menu a,
  .nav-dropdown-coming-soon {
    min-height: 46px;
    padding: 11px 14px;
    font-size: 0.8rem;
  }

  .nav-dropdown-menu a[aria-current="page"] {
    background: var(--blue-150);
  }

  .display-title,
  .corporate-hero .display-title,
  .page-hero .display-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 36px;
  }

  .article-header h1 {
    font-size: 40px;
  }

  .contact-copy h2,
  .promo-copy h2,
  .cta-band h2 {
    font-size: 36px;
  }

  .corporate-hero::before,
  .product-hero::after {
    display: none;
  }

  .corporate-hero-grid,
  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .corporate-hero-copy {
    padding: 72px 0 42px;
  }

  .portrait-stage {
    min-height: 520px;
    margin: 0 0 40px;
    border: 0;
  }

  .product-hero-grid {
    padding-block: 64px 44px;
  }

  .product-visual {
    min-height: 400px;
    background: var(--blue-150);
  }

  .product-visual > img {
    width: min(680px, 96%);
  }

  .page-hero-grid,
  .split-intro,
  .dark-message,
  .trust-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-number {
    text-align: left;
  }

  .split-intro > :first-child,
  .contact-copy {
    position: static;
  }

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

  .metric:nth-child(3),
  .metric:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .number-row {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .number-row p {
    grid-column: 2;
  }

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

  .formula {
    grid-template-columns: 1fr;
  }

  .formula-sign {
    transform: rotate(90deg);
  }

  .media-feature {
    grid-template-columns: 1fr;
  }

  .promo-panel {
    grid-template-columns: 1fr;
  }

  .media-feature:nth-child(even) .media-feature-media {
    order: 0;
  }

  .media-feature-media {
    min-height: 330px;
  }

  .case-row {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 42px;
  }

  .footer-nav {
    max-width: 620px;
  }

  .template-outline {
    grid-template-columns: 1fr;
  }

  .template-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }
}

@media (max-width: 600px) {
  :root {
    --space-7: 3.25rem;
    --space-8: 4rem;
  }

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

  .home-section-header {
    margin-bottom: 44px;
  }

  .home-section-title,
  .home-problem-lead h2 {
    font-size: 29px;
  }

  .home-section-intro {
    margin-top: -18px;
    font-size: 0.96rem;
  }

  .home-problem-lead {
    margin-bottom: 34px;
  }

  .home-problem-lead > p:last-child {
    font-size: 0.98rem;
  }

  .home-problem-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .home-expertise-message {
    padding: 30px 24px;
  }

  .home-expertise-message > h3 {
    font-size: 26px;
  }

  .home-expertise-points {
    grid-template-columns: 1fr;
  }

  .home-expertise-point,
  .home-company-item {
    padding: 26px 22px;
  }

  .home-company-description {
    padding: 30px 24px;
  }

  .home-service-card {
    padding: 30px 24px;
  }

  .home-service-header {
    flex-direction: column;
    gap: 18px;
  }

  .home-service-number {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .home-service-header h3 {
    font-size: 1.28rem;
  }

  .home-batchline-detail {
    padding: 26px 22px;
  }

  .home-batchline-tags {
    grid-template-columns: 1fr;
  }

  .home-fit-panel {
    padding: 30px 24px;
  }

  .home-insight-card {
    padding: 30px 24px;
  }

  .home-batchline-copy {
    padding: 34px 24px;
  }

  .home-batchline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-batchline-actions .button {
    width: 100%;
  }

  .home-batchline-media {
    min-height: 280px;
    padding: 28px 20px;
  }

  .home-batchline-media img {
    width: min(520px, 108%);
  }

  .home-contact-text {
    margin-top: -16px;
    font-size: 1rem;
  }

  body {
    padding-bottom: 64px;
    font-size: 15px;
  }

  .container,
  .container-narrow,
  .header-inner {
    width: calc(100% - 32px);
  }

  .display-title {
    font-size: 36px;
    letter-spacing: 0;
  }

  .corporate-hero .display-title,
  .page-hero .display-title {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .page-number {
    font-size: 52px;
  }

  .corporate-hero,
  .corporate-hero-grid {
    min-height: auto;
  }

  .corporate-hero-copy {
    padding-top: 56px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .portrait-stage {
    min-height: 430px;
  }

  .portrait-placeholder {
    width: calc(100% - 36px);
  }

  .portrait-caption {
    width: 88%;
  }

  .product-hero-grid {
    padding-top: 52px;
  }

  .product-visual {
    min-height: 320px;
  }

  .page-hero {
    padding: 68px 0 56px;
  }

  .page-hero-grid {
    gap: 34px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 34px;
  }

  .section-title {
    font-size: 30px;
  }

  .article-header h1 {
    font-size: 32px;
  }

  .contact-copy h2,
  .promo-copy h2,
  .cta-band h2 {
    font-size: 30px;
  }

  .media-feature-copy h3 {
    font-size: 26px;
  }

  .feature-index-number,
  .media-feature-copy .feature-index-number {
    font-size: 46px;
  }

  .dark-list article {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
  }

  .dark-list b {
    font-size: 40px;
  }

  .media-feature-copy .feature-index,
  .line-card .feature-index {
    margin-bottom: 18px;
  }

  .metric strong {
    font-size: 44px;
  }

  .result-cell strong {
    font-size: 32px;
  }

  .metric-grid,
  .results-grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(3),
  .metric:nth-child(4) {
    min-height: 140px;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .number-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
  }

  .line-card {
    padding: 26px 22px;
  }

  .capability-list {
    margin-top: 28px;
  }

  .capability-item {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .capability-item-reverse > :first-child {
    order: 0;
  }

  .capability-copy {
    padding: 32px 24px 38px;
  }

  .capability-copy h3 {
    font-size: 24px;
  }

  .capability-media,
  .capability-integration {
    min-height: 300px;
  }

  .capability-media-diagram {
    padding: 16px;
  }

  .capability-media-pair {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 10px;
  }

  .capability-media-pair figcaption {
    min-height: 0;
    padding: 13px 12px;
    font-size: 0.8rem;
  }

  .capability-integration {
    padding: 36px 24px;
  }

  .capability-source {
    text-align: left;
  }

  .media-feature-media {
    min-height: 260px;
    padding: 20px;
  }

  .media-feature-copy {
    padding: 32px 24px;
  }

  .promo-copy {
    padding: 34px 24px;
  }

  .promo-media {
    min-height: 300px;
    padding: 24px;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .comparison-column {
    padding: 28px 22px;
  }

  .comparison-column + .comparison-column {
    border-top: 4px solid var(--blue-600);
    border-left: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-step,
  .timeline-step:nth-child(3),
  .timeline-step:nth-child(n + 4) {
    min-height: auto;
    padding: 22px 18px;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .timeline-step strong {
    margin-top: 18px;
  }

  .timeline-number {
    font-size: 40px;
  }

  .deployment-industries {
    margin-top: 48px;
    padding-top: 0;
  }

  .deployment-industries-head h3 {
    font-size: 24px;
  }

  .deployment-industry-list {
    margin-top: 18px;
    display: block;
  }

  .deployment-industry-list li + li {
    margin-top: 7px;
  }

  .deployment-industry-list li:not(:last-child)::after {
    display: none;
  }

  .lsdc-case-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 0 30px;
  }

  .lsdc-case-logo {
    min-height: 180px;
    padding: 24px;
  }

  .lsdc-case-copy {
    padding: 28px 0 0;
  }

  .lsdc-case-copy h3 {
    font-size: 24px;
  }

  .lsdc-case-meta div {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .cta-band-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cta-band-actions {
    justify-content: stretch;
    flex-direction: column;
  }

  .cta-band-actions .button {
    width: 100%;
  }

  .form-panel {
    padding: 30px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .choice-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .policy-company-card dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
  }

  .news-item {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
  }

  .news-date,
  .news-category {
    grid-row: 1;
  }

  .news-category {
    justify-self: end;
  }

  .news-title {
    grid-column: 1 / -1;
  }

  .news-arrow {
    display: none;
  }

  .career-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .article-image-placeholder {
    min-height: 240px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
    background: var(--white);
    box-shadow: 0 -8px 22px rgba(23, 45, 59, 0.12);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    color: var(--navy-800);
    font-size: 0.77rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-contact-bar a + a {
    color: var(--white);
    background: var(--navy-800);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
