:root {
  --ink: #0b1316;
  --ink-soft: #132126;
  --ink-muted: #26363a;
  --paper: #ffffff;
  --ground: #f2f5f3;
  --ground-strong: #e7ece9;
  --line: #d6dfdb;
  --line-dark: #344449;
  --muted: #607074;
  --muted-light: #afbcbe;
  --teal: #078f9c;
  --teal-dark: #05717b;
  --teal-pale: #d9eff0;
  --orange: #e45d38;
  --green: #22775e;
  --yellow: #d5aa37;
  --shadow: 0 18px 48px rgba(11, 19, 22, 0.12);
  --shell: 1240px;
  --header-height: 76px;
  --radius: 6px;
  --font-body: "Avenir Next", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-display: "DIN Alternate", "Avenir Next Condensed", "HarmonyOS Sans SC", "PingFang SC", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.16;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 22px;
}

svg {
  width: 1em;
  height: 1em;
  stroke-width: 1.8;
}

::selection {
  color: var(--paper);
  background: var(--teal-dark);
}

:focus-visible {
  outline: 3px solid rgba(7, 143, 156, 0.38);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.prototype-bar {
  position: relative;
  z-index: 80;
  height: 32px;
  color: #172124;
  background: #efc65b;
  border-bottom: 1px solid #c99e32;
  font-size: 12px;
}

.prototype-bar .shell {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 8px;
}

.prototype-bar svg {
  width: 14px;
  height: 14px;
}

.prototype-bar b {
  font-weight: 500;
  opacity: 0.72;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(11, 19, 22, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.brand-mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1;
}

.brand-mark b {
  display: grid;
  place-items: center;
  height: 100%;
}

.brand-mark b:last-child {
  color: var(--ink);
  background: var(--teal-pale);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 19px;
  line-height: 1.2;
}

.brand-copy small {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 9px;
  line-height: 1.3;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  min-width: 0;
  margin-left: auto;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 13px;
  color: #29373a;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 13px;
  bottom: -1px;
  left: 13px;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link-with-icon {
  gap: 5px;
}

.nav-link-with-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.nav-group {
  position: relative;
  display: flex;
}

.nav-group:hover .nav-link-with-icon svg,
.nav-group:focus-within .nav-link-with-icon svg {
  transform: rotate(180deg);
}

.mega-menu {
  position: fixed;
  z-index: 90;
  top: calc(var(--header-height) + 31px);
  right: 24px;
  left: 24px;
  width: min(calc(100% - 48px), 1000px);
  margin: 0 auto;
  padding: 22px;
  visibility: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.is-production .mega-menu {
  top: var(--header-height);
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mega-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.mega-heading a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  background: var(--line);
  border: 1px solid var(--line);
}

.mega-link {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  gap: 11px;
  align-items: start;
  min-height: 112px;
  padding: 17px;
  background: var(--paper);
  transition: background 160ms ease;
}

.mega-link:hover {
  background: var(--ground);
}

.mega-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border-radius: 3px;
}

.mega-link strong,
.mega-link small {
  display: block;
}

.mega-link strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.mega-link small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mega-arrow {
  width: 15px;
  height: 15px;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.header-phone svg {
  color: var(--teal-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button svg {
  width: 16px;
  height: 16px;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-primary:hover {
  background: #045c64;
  border-color: #045c64;
}

.button-compact {
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.button-large {
  min-height: 50px;
  padding: 0 23px;
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button-light:hover {
  color: var(--paper);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-ghost-light {
  color: var(--paper);
  background: rgba(11, 19, 22, 0.32);
  border-color: rgba(255, 255, 255, 0.48);
}

.button-ghost-light:hover {
  background: rgba(11, 19, 22, 0.72);
  border-color: var(--paper);
}

.button-outline {
  background: transparent;
  border-color: var(--line);
}

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

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.icon-button svg {
  width: 21px;
  height: 21px;
}

.menu-toggle {
  display: none;
}

.mobile-drawer {
  position: fixed;
  z-index: 200;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms;
}

.mobile-drawer.is-open {
  visibility: visible;
  opacity: 1;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 22, 0.65);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(92%, 420px);
  overflow-y: auto;
  background: var(--paper);
  box-shadow: -20px 0 48px rgba(11, 19, 22, 0.2);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
}

.mobile-nav-link.is-active {
  color: var(--teal-dark);
}

.mobile-nav-link svg {
  width: 18px;
  height: 18px;
}

.mobile-subnav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.mobile-subnav a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 10px 14px;
  gap: 8px;
  background: var(--ground);
  font-size: 12px;
  font-weight: 600;
}

.mobile-subnav svg {
  flex: 0 0 auto;
  color: var(--teal-dark);
}

.drawer-contact {
  margin: 24px 20px;
  padding: 18px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.drawer-contact > span,
.drawer-contact small {
  color: var(--muted-light);
}

.drawer-contact a {
  display: flex;
  align-items: center;
  margin: 8px 0 3px;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 20px;
}

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.home-hero {
  height: min(720px, calc(100svh - 108px));
  min-height: 600px;
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 46%;
}

.hero-shade {
  background: rgba(7, 14, 17, 0.66);
}

.home-hero .hero-shade {
  background: rgba(7, 14, 17, 0.57);
}

.hero-grid {
  pointer-events: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-grid::before,
.hero-grid::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.09);
}

.hero-grid::before {
  left: 33.333%;
}

.hero-grid::after {
  left: 66.666%;
}

.home-hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-copy {
  width: min(760px, 72%);
  padding-bottom: 22px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #dce5e4;
  font-size: 14px;
  font-weight: 700;
}

.hero-kicker b {
  width: 26px;
  height: 2px;
  background: #42c6ce;
}

.hero-copy h1 {
  margin-bottom: 18px;
  font-size: 76px;
  line-height: 1;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: #ecf2f1;
  font-size: 21px;
  line-height: 1.65;
}

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

.hero-helper {
  margin: 16px 0 0;
  color: #c4cece;
  font-size: 13px;
}

.hero-coordinate {
  position: absolute;
  right: 0;
  bottom: 52px;
  padding-left: 18px;
  border-left: 2px solid var(--orange);
  text-align: right;
}

.hero-coordinate span,
.hero-coordinate strong {
  display: block;
}

.hero-coordinate span {
  margin-bottom: 4px;
  color: #c5d0d0;
  font-size: 10px;
}

.hero-coordinate strong {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.4;
}

.scene-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  gap: 6px;
  color: #f4f7f7;
  background: rgba(11, 19, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  font-size: 10px;
  line-height: 1;
}

.scene-note svg {
  width: 12px;
  height: 12px;
}

.home-hero-inner > .scene-note {
  right: 0;
  bottom: 18px;
}

.fact-strip {
  position: relative;
  z-index: 3;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.fact-item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  min-height: 116px;
  padding: 20px 28px;
  border-left: 1px solid var(--line);
}

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

.fact-item span {
  color: var(--muted);
  font-size: 12px;
}

.fact-item strong {
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.25;
}

.section {
  padding: 108px 0;
}

.section-tint {
  background: var(--ground);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 48px;
}

.section-head > div:first-child {
  max-width: 790px;
}

.section-head h2 {
  margin: 8px 0 15px;
}

.section-head p {
  max-width: 730px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.eyebrow,
.meta-label {
  display: inline-flex;
  align-items: center;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 18px;
  height: 2px;
  margin-right: 8px;
  content: "";
  background: currentColor;
}

.eyebrow-on-dark {
  color: #67d3d9;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.text-link svg,
.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 160ms ease;
}

.text-link:hover svg,
.card-link:hover svg {
  transform: translateX(3px);
}

.solution-switcher {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.7fr);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(11, 19, 22, 0.08);
}

.solution-tabs {
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.solution-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: 32px 36px minmax(0, 1fr) 18px;
  align-items: center;
  flex: 1 1 0;
  min-height: 92px;
  padding: 14px 20px;
  gap: 11px;
  text-align: left;
  background: var(--paper);
  border: 0;
  border-bottom: 1px solid var(--line);
  transition: color 160ms ease, background 160ms ease;
}

.solution-tabs button:last-child {
  border-bottom: 0;
}

.solution-tabs button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  content: "";
  background: var(--teal);
  transform: scaleY(0);
  transition: transform 160ms ease;
}

.solution-tabs button:hover,
.solution-tabs button[aria-selected="true"] {
  background: var(--ground);
}

.solution-tabs button[aria-selected="true"]::before {
  transform: scaleY(1);
}

.solution-tab-index {
  color: #9da9aa;
  font-family: var(--font-display);
  font-size: 11px;
}

.solution-tab-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border-radius: 3px;
}

.solution-tab-copy {
  min-width: 0;
}

.solution-tab-copy strong,
.solution-tab-copy small {
  display: block;
}

.solution-tab-copy strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.solution-tab-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-tab-arrow {
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.solution-tabs button[aria-selected="true"] .solution-tab-arrow {
  color: var(--teal-dark);
}

.solution-panels {
  position: relative;
  min-width: 0;
  background: var(--ink);
}

.solution-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--paper);
}

.solution-panel[hidden] {
  display: none;
}

.solution-panel > img,
.solution-panel-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.solution-panel > img {
  object-fit: cover;
}

.solution-panel-shade {
  background: rgba(8, 16, 19, 0.55);
}

.solution-panel-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 720px;
  padding: 50px;
}

.solution-panel-content > span {
  color: #76d5da;
  font-size: 11px;
  font-weight: 800;
}

.solution-panel-content h3 {
  max-width: 650px;
  margin: 10px 0 14px;
  font-size: 36px;
}

.solution-panel-content p {
  max-width: 620px;
  margin-bottom: 25px;
  color: #e3eaea;
  font-size: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 30px;
  background: var(--paper);
  transition: background 160ms ease;
}

.product-card:hover {
  background: #f9fbfa;
}

.product-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-icon,
.approach-icon,
.quality-step-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border-radius: 4px;
}

.product-icon svg,
.approach-icon svg,
.quality-step-icon svg {
  width: 23px;
  height: 23px;
}

.product-index {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #a2adae;
  font-family: var(--font-display);
  font-size: 12px;
}

.product-card > small {
  margin-top: 32px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
}

.product-card h3 {
  margin: 5px 0 10px;
}

.product-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.product-card .card-link {
  margin-top: auto;
}

.process-section {
  overflow: hidden;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.process-step {
  position: relative;
  min-height: 240px;
  padding: 28px 24px 20px 0;
}

.process-step::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  content: "";
  background: var(--paper);
  border: 2px solid var(--teal-dark);
  border-radius: 50%;
}

.process-number {
  position: absolute;
  top: -29px;
  left: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 40px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 4px;
}

.process-icon svg {
  width: 22px;
  height: 22px;
}

.process-step h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.process-step p {
  max-width: 180px;
  color: var(--muted);
  font-size: 13px;
}

.quality-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 720px;
  color: var(--paper);
  background: var(--ink);
}

.quality-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.quality-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(7, 14, 17, 0.18);
}

.quality-image .scene-note {
  z-index: 2;
}

.quality-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px max(48px, calc((100vw - var(--shell)) / 2));
}

.quality-content h2 {
  max-width: 650px;
  margin: 12px 0 18px;
  font-size: 44px;
}

.quality-content > p {
  max-width: 690px;
  color: #c4cfd0;
  font-size: 17px;
}

.quality-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0 34px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.quality-points > div {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  padding: 20px;
  gap: 2px 10px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.quality-points > div > span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: #65d2d8;
  background: #14262a;
  border-radius: 3px;
}

.quality-points strong {
  font-size: 14px;
}

.quality-points small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted-light);
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.quality-content > .button {
  align-self: flex-start;
}

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

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.case-card:hover {
  border-color: #9db4b1;
  box-shadow: 0 16px 36px rgba(11, 19, 22, 0.08);
  transform: translateY(-3px);
}

.case-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 11px;
}

.case-card-top span:last-child {
  color: var(--teal-dark);
  font-weight: 800;
}

.case-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.case-card > p {
  color: var(--muted);
  font-size: 14px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-tags span,
.topic-cloud span {
  padding: 4px 8px;
  color: #415155;
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 11px;
}

.case-card .case-tags {
  margin: auto 0 22px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  gap: 90px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 112px;
}

.faq-intro h2 {
  margin: 10px 0 14px;
}

.faq-intro p {
  color: var(--muted);
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px 0;
  gap: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--teal-dark);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 720px;
  padding: 0 40px 24px 0;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.insight-list {
  border-top: 1px solid var(--ink);
}

.insight-row {
  display: grid;
  grid-template-columns: 60px 110px minmax(0, 1fr) 22px;
  align-items: center;
  min-height: 95px;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  transition: padding 160ms ease, background 160ms ease;
}

.insight-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: var(--paper);
}

.insight-number {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 11px;
}

.insight-category {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
}

.insight-row h3 {
  margin: 0;
  font-size: 19px;
}

.insight-row > svg {
  color: var(--muted);
}

.contact-band {
  color: var(--paper);
  background: var(--teal-dark);
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 310px;
  padding-top: 48px;
  padding-bottom: 48px;
  gap: 56px;
}

.contact-band h2 {
  max-width: 700px;
  margin: 12px 0 10px;
  font-size: 42px;
}

.contact-band p {
  margin-bottom: 0;
  color: #cde6e7;
}

.contact-band-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.site-footer {
  color: #dce4e4;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) repeat(3, minmax(130px, 0.55fr));
  gap: 60px;
  padding-top: 78px;
  padding-bottom: 68px;
}

.brand-light .brand-mark {
  border-color: #35464a;
}

.brand-light .brand-copy small {
  color: var(--muted-light);
}

.footer-brand > p {
  max-width: 430px;
  margin: 24px 0;
  color: #aab8b9;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-list a,
.footer-contact-list button,
.footer-contact-list > span {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 8px;
  color: #c8d3d4;
  background: none;
  border: 0;
  text-align: left;
  font-size: 13px;
}

.footer-contact-list svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: #61cdd3;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 11px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 13px;
}

.footer-column a {
  color: #9fadaf;
  font-size: 13px;
}

.footer-column a:hover {
  color: #72d6dc;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 24px;
  color: #839294;
  border-top: 1px solid #26373b;
  font-size: 11px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.toast {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100% - 48px));
  padding: 12px 16px;
  visibility: hidden;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  font-size: 13px;
}

.toast.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.image-page-hero {
  height: 560px;
}

.image-page-hero .hero-media {
  object-position: center;
}

.image-page-hero .hero-shade {
  background: rgba(7, 14, 17, 0.64);
}

.page-hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.page-hero-copy {
  max-width: 880px;
  padding-top: 16px;
}

.page-hero-copy h1 {
  margin: 0 0 20px;
  font-size: 60px;
}

.page-hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: #e6eded;
  font-size: 19px;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 9px;
}

.page-hero-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  gap: 6px;
  color: #e3ecec;
  background: rgba(11, 19, 22, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  font-size: 12px;
}

.page-hero-meta svg {
  color: #69d5da;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  min-height: 58px;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}

.breadcrumbs a:hover {
  color: var(--teal-dark);
}

.breadcrumbs svg {
  width: 13px;
  height: 13px;
}

.breadcrumbs span[aria-current="page"] {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.solution-index-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.solution-index-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.solution-index-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ground-strong);
}

.solution-index-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(8, 16, 19, 0.14);
}

.solution-index-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.solution-index-card:hover img {
  transform: scale(1.035);
}

.solution-index-image > span {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--paper);
  background: rgba(11, 19, 22, 0.72);
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 11px;
}

.solution-index-copy {
  position: relative;
  min-height: 325px;
  padding: 28px;
}

.solution-index-copy .product-icon {
  position: absolute;
  top: -23px;
  left: 28px;
  border: 4px solid var(--paper);
}

.solution-index-copy h2 {
  margin: 18px 0 10px;
  font-size: 25px;
}

.solution-index-copy > p {
  min-height: 70px;
  color: var(--muted);
  font-size: 14px;
}

.solution-index-copy .case-tags {
  margin: 22px 0;
}

.split-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 110px;
}

.split-statement h2 {
  margin: 10px 0 0;
}

.split-statement p {
  color: var(--muted);
  font-size: 18px;
}

.answer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.answer-grid h2 {
  margin: 10px 0 0;
}

.answer-lead {
  margin-bottom: 26px;
  font-size: 21px;
  line-height: 1.75;
}

.answer-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.answer-apps span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  gap: 6px;
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 12px;
}

.answer-apps svg {
  color: var(--teal-dark);
}

.challenge-layout,
.evidence-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 112px;
}

.sticky-heading h2 {
  margin: 10px 0 15px;
}

.sticky-heading p {
  color: var(--muted);
}

.challenge-list {
  border-top: 1px solid var(--ink);
}

.challenge-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  min-height: 145px;
  padding: 28px 0;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.challenge-item span {
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 13px;
}

.challenge-item p {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.approach-card {
  position: relative;
  min-height: 315px;
  padding: 28px;
  background: var(--paper);
}

.approach-card > small {
  position: absolute;
  top: 30px;
  right: 28px;
  color: var(--muted);
  font-family: var(--font-display);
}

.approach-card h3 {
  margin: 62px 0 12px;
}

.approach-card p {
  color: var(--muted);
  font-size: 14px;
}

.deliverable-band {
  padding: 78px 0;
  color: var(--paper);
  background: var(--ink-soft);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 90px;
}

.deliverable-grid h2 {
  margin: 10px 0 0;
}

.deliverable-grid > div:last-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.deliverable-grid > div:last-child > span {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 16px 20px;
  gap: 10px;
  background: var(--ink-soft);
}

.deliverable-grid svg {
  flex: 0 0 auto;
  color: #64d1d7;
}

.product-detail-list {
  border-top: 1px solid var(--ink);
}

.product-detail {
  display: grid;
  grid-template-columns: 70px minmax(240px, 0.9fr) minmax(0, 1.1fr);
  min-height: 325px;
  padding: 46px 0;
  gap: 50px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.product-detail-number {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
}

.product-detail-title small {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 10px;
}

.product-detail-title h2 {
  margin: 5px 0 10px;
  font-size: 30px;
}

.product-detail-title p {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
}

.product-detail-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.product-detail-copy ul,
.contact-sidebar ul {
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.product-detail-copy li,
.contact-sidebar li {
  display: flex;
  align-items: flex-start;
  margin: 9px 0;
  gap: 9px;
  font-size: 14px;
}

.product-detail-copy li svg,
.contact-sidebar li svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--teal-dark);
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
}

.spec-table {
  border-top: 1px solid var(--ink);
}

.spec-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.spec-row strong,
.spec-row span {
  display: flex;
  align-items: center;
  padding: 17px 20px;
}

.spec-row strong {
  background: #e4eae7;
  font-size: 13px;
}

.spec-row span {
  background: var(--paper);
  font-size: 14px;
}

.connector-panel {
  align-self: start;
  padding: 30px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.connector-panel h3 {
  margin: 10px 0 24px;
}

.brand-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.brand-list span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 10px;
  gap: 7px;
  background: var(--ink);
  font-size: 11px;
}

.brand-list svg {
  color: #66d2d8;
}

.connector-panel > p {
  margin: 22px 0 0;
  color: var(--muted-light);
  font-size: 12px;
}

.case-disclaimer,
.content-draft-note {
  color: #513f0b;
  background: #f5e8b9;
  border-bottom: 1px solid #deca82;
}

.case-disclaimer .shell,
.content-draft-note .shell {
  display: flex;
  align-items: flex-start;
  min-height: 76px;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 12px;
}

.case-disclaimer svg,
.content-draft-note svg {
  flex: 0 0 auto;
  margin-top: 4px;
}

.case-disclaimer p,
.content-draft-note p {
  margin: 0;
  font-size: 13px;
}

.filter-bar {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.filter-button {
  position: relative;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 18px;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-button::after {
  position: absolute;
  right: 15px;
  bottom: -1px;
  left: 15px;
  height: 2px;
  content: "";
  background: var(--teal-dark);
  transform: scaleX(0);
}

.filter-button.is-active {
  color: var(--ink);
}

.filter-button.is-active::after {
  transform: scaleX(1);
}

.case-blueprints {
  border-top: 1px solid var(--ink);
}

.case-blueprint {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.case-blueprint[hidden] {
  display: none;
}

.case-rail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.case-rail > span {
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}

.case-rail > small {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 9px;
  line-height: 1.4;
}

.case-main {
  padding-left: 44px;
}

.case-heading > span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.case-heading h2 {
  margin: 8px 0 7px;
  font-size: 34px;
}

.case-heading p {
  color: var(--muted);
  font-size: 13px;
}

.case-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.case-columns > div {
  min-height: 210px;
  padding: 24px;
  background: var(--ground);
}

.case-columns small {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
}

.case-columns p {
  margin: 13px 0 0;
  color: #47575a;
  font-size: 14px;
}

.case-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.quality-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quality-step {
  position: relative;
  min-height: 300px;
  padding: 30px;
  background: var(--paper);
}

.quality-step-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 11px;
}

.quality-step h3 {
  margin: 62px 0 10px;
}

.quality-step p {
  color: var(--muted);
  font-size: 14px;
}

.evidence-list {
  border-top: 1px solid var(--ink);
}

.evidence-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: start;
  min-height: 130px;
  padding: 26px 0;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.evidence-item > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--teal-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.evidence-item h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.evidence-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.evidence-item > small {
  padding: 4px 7px;
  color: #6b5314;
  background: #f1df9d;
  border-radius: 3px;
  font-size: 10px;
}

.two-column-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 110px;
}

.two-column-feature h2 {
  margin: 10px 0 15px;
}

.two-column-feature p {
  color: var(--muted);
  font-size: 17px;
}

.capability-bars {
  border-top: 1px solid var(--ink);
}

.capability-bars > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.capability-bars span {
  font-weight: 700;
}

.capability-bars b {
  padding: 5px 8px;
  color: var(--green);
  background: #dcece5;
  border-radius: 3px;
  font-size: 11px;
}

.capability-bars .is-pending b {
  color: #6b5314;
  background: #f1e4b7;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 100px;
}

.about-intro h2 {
  margin: 10px 0 0;
}

.about-intro > div:last-child p {
  color: #425255;
  font-size: 18px;
  line-height: 1.85;
}

.about-timeline {
  color: var(--paper);
  background: var(--ink);
}

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

.timeline-grid > div {
  min-height: 335px;
  padding: 54px 38px;
  border-left: 1px solid var(--line-dark);
}

.timeline-grid > div:last-child {
  border-right: 1px solid var(--line-dark);
}

.timeline-year {
  display: block;
  margin-bottom: 70px;
  color: #64d1d7;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
}

.timeline-grid h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.timeline-grid p {
  color: var(--muted-light);
  font-size: 14px;
}

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

.value-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  background: var(--teal-dark);
  border-radius: 4px;
}

.value-card h3 {
  margin: 54px 0 10px;
}

.value-card p {
  color: var(--muted);
  font-size: 14px;
}

.location-band {
  color: var(--paper);
  background: #17493e;
}

.location-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 300px;
  gap: 58px;
}

.location-coordinate {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.location-coordinate strong {
  font-family: var(--font-display);
  font-size: 36px;
}

.location-coordinate span {
  color: #b8d2ca;
  font-size: 10px;
}

.location-inner h2 {
  margin: 10px 0;
  font-size: 28px;
}

.location-inner p {
  margin: 0;
  color: #c8dcd7;
}

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

.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.article-card:hover {
  border-color: #9fb6b2;
  box-shadow: 0 16px 36px rgba(11, 19, 22, 0.08);
  transform: translateY(-3px);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.article-meta span:first-child {
  color: var(--teal-dark);
  font-weight: 800;
}

.article-index {
  margin: 48px 0 12px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 11px;
}

.article-card h2 {
  font-size: 24px;
}

.article-card h2 a:hover {
  color: var(--teal-dark);
}

.article-card > p {
  color: var(--muted);
  font-size: 14px;
}

.article-card .card-link {
  margin-top: auto;
}

.newsletter-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 90px;
}

.newsletter-strip h2 {
  margin: 10px 0 0;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-cloud span {
  padding: 8px 11px;
  background: var(--paper);
  font-size: 12px;
}

.article-hero {
  padding: 112px 0 88px;
  color: var(--paper);
  background: var(--ink);
}

.article-hero-inner {
  max-width: 980px;
}

.article-hero h1 {
  margin: 16px 0 22px;
  font-size: 56px;
}

.article-hero p {
  max-width: 820px;
  color: #c6d0d1;
  font-size: 19px;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 10px 20px;
  color: #9caaac;
  font-size: 12px;
}

.article-byline span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: center;
  gap: 80px;
  padding-top: 88px;
  padding-bottom: 112px;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 110px;
}

.article-aside > div {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}

.article-aside .meta-label {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.article-aside a {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  padding: 14px 0;
  gap: 8px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.article-aside a span {
  color: var(--teal-dark);
  font-family: var(--font-display);
}

.article-content {
  min-width: 0;
}

.article-content > section {
  scroll-margin-top: 110px;
}

.article-content h2 {
  margin: 64px 0 18px;
  font-size: 31px;
}

.article-content p {
  color: #405053;
  font-size: 17px;
  line-height: 1.9;
}

.article-answer {
  padding: 28px 30px;
  background: var(--teal-pale);
  border-left: 4px solid var(--teal-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-answer span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
}

.article-answer p {
  margin: 10px 0 0;
  color: #223a3f;
  font-size: 19px;
}

.article-check {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  align-items: center;
  margin: 24px 0;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.article-check > * {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  gap: 6px;
  background: var(--ground);
  font-size: 11px;
}

.article-check svg {
  color: var(--teal-dark);
}

.article-review-note {
  display: flex;
  align-items: flex-start;
  margin-top: 64px;
  padding: 20px;
  gap: 11px;
  color: #604c16;
  background: #f5e8b9;
  border: 1px solid #dfcc89;
  border-radius: var(--radius);
}

.article-review-note svg {
  flex: 0 0 auto;
  margin-top: 5px;
}

.article-review-note p {
  margin: 0;
  color: inherit;
  font-size: 13px;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.contact-hero::before,
.contact-hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  content: "";
  background: var(--line-dark);
}

.contact-hero::before {
  left: 33.333%;
}

.contact-hero::after {
  left: 66.666%;
}

.contact-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: center;
  min-height: 570px;
  gap: 90px;
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
}

.contact-hero-copy h1 {
  margin: 0 0 20px;
  font-size: 58px;
}

.contact-hero-copy > p {
  max-width: 680px;
  color: #bdc9ca;
  font-size: 18px;
}

.contact-direct {
  display: flex;
  margin-top: 34px;
  gap: 10px;
}

.contact-direct a,
.contact-direct button {
  display: flex;
  align-items: center;
  min-width: 220px;
  min-height: 68px;
  padding: 10px 16px;
  gap: 12px;
  color: var(--paper);
  background: #14252a;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  text-align: left;
}

.contact-direct svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: #62d0d6;
}

.contact-direct span,
.contact-direct small,
.contact-direct strong {
  display: block;
}

.contact-direct small {
  color: var(--muted-light);
  font-size: 10px;
}

.contact-direct strong {
  font-family: var(--font-display);
  font-size: 17px;
}

.contact-coordinate {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-height: 320px;
  border-left: 1px solid var(--line-dark);
}

.contact-coordinate strong,
.contact-coordinate span {
  display: block;
}

.contact-coordinate strong {
  font-family: var(--font-display);
  font-size: 38px;
}

.contact-coordinate span {
  color: var(--muted-light);
  font-size: 11px;
}

.contact-coordinate b {
  margin-top: 72px;
  color: #1a3035;
  font-family: var(--font-display);
  font-size: 170px;
  line-height: 0.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 70px;
}

.contact-sidebar {
  position: sticky;
  top: 110px;
}

.contact-sidebar h2 {
  margin: 10px 0 12px;
}

.contact-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-people > div {
  padding: 16px;
  background: var(--ground);
}

.contact-people small,
.contact-people strong {
  display: block;
}

.contact-people small,
.address-block small {
  color: var(--muted);
  font-size: 10px;
}

.address-block {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  padding-top: 20px;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.address-block > svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--teal-dark);
}

.address-block span,
.address-block strong {
  display: block;
}

.address-block strong {
  font-size: 13px;
}

.project-form {
  padding: 38px;
  background: var(--ground);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-head > span {
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
}

.form-head h2 {
  margin: 7px 0 7px;
  font-size: 32px;
}

.form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-head b,
.project-form label > span b {
  color: var(--orange);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.project-form label {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 7px;
}

.project-form label > span:first-child {
  font-size: 12px;
  font-weight: 700;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  background: var(--paper);
  border: 1px solid #c6d1cd;
  border-radius: 3px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.project-form textarea {
  min-height: 150px;
  resize: vertical;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(7, 143, 156, 0.12);
}

.project-form input[aria-invalid="true"],
.project-form select[aria-invalid="true"],
.project-form textarea[aria-invalid="true"] {
  border-color: #b93b2e;
}

.field-error {
  min-height: 0;
  color: #a33025;
  font-size: 11px;
}

.form-span {
  grid-column: 1 / -1;
}

.file-field > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.file-drop {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 20px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  gap: 10px;
  background: var(--paper);
  border: 1px dashed #9aaba7;
  border-radius: 3px;
  cursor: pointer;
}

.file-drop > svg:first-child {
  width: 24px;
  height: 24px;
  color: var(--teal-dark);
}

.file-drop > svg:last-child {
  color: var(--muted);
}

.file-drop strong,
.file-drop small {
  display: block;
}

.file-drop strong {
  overflow-wrap: anywhere;
  font-size: 12px;
}

.file-drop small {
  color: var(--muted);
  font-size: 10px;
}

.consent {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 8px !important;
}

.consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal-dark);
}

.consent > span {
  font-weight: 500 !important;
}

.consent a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.consent .field-error {
  grid-column: 2;
}

.button-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 24px;
}

.form-success {
  display: none;
  align-items: flex-start;
  margin-top: 20px;
  padding: 18px;
  gap: 11px;
  color: #173e34;
  background: #dcece5;
  border: 1px solid #b6d6c8;
  border-radius: 4px;
}

.form-success.is-visible {
  display: flex;
}

.form-success > svg {
  flex: 0 0 auto;
  margin-top: 3px;
}

.form-success strong,
.form-success p {
  display: block;
}

.form-success p {
  margin: 3px 0 0;
  font-size: 12px;
}

.plain-hero {
  padding: 96px 0 80px;
  color: var(--paper);
  background: var(--ink);
}

.plain-hero h1 {
  margin: 12px 0 15px;
  font-size: 52px;
}

.plain-hero p {
  max-width: 720px;
  color: var(--muted-light);
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin: 44px 0 14px;
  font-size: 27px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: #425255;
  font-size: 16px;
}

.legal-copy a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.credit-list {
  margin-top: 32px;
  border-top: 1px solid var(--ink);
}

.credit-list a {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 20px;
  align-items: center;
  min-height: 68px;
  gap: 20px;
  color: inherit;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.credit-list span {
  color: var(--teal-dark);
  font-size: 12px;
}

.credit-list strong {
  font-size: 14px;
}

.credit-list svg {
  color: var(--muted);
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 72vh;
  text-align: center;
}

.not-found span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.not-found h1 {
  margin: 12px 0;
  font-size: 52px;
}

.not-found p {
  color: var(--muted);
}

.not-found .shell > div {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease var(--delay, 0ms), transform 520ms ease var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .solution-switcher {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  }

  .quality-content {
    padding-right: 42px;
    padding-left: 42px;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (max-width: 980px) {
  h2 {
    font-size: 36px;
  }

  .section {
    padding: 88px 0;
  }

  .home-hero {
    height: 640px;
    min-height: 640px;
  }

  .hero-copy {
    width: 82%;
  }

  .hero-copy h1 {
    font-size: 66px;
  }

  .fact-item {
    min-height: 104px;
    padding: 18px;
  }

  .fact-item strong {
    font-size: 21px;
  }

  .solution-switcher {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .solution-tabs button {
    grid-template-columns: 30px minmax(0, 1fr) 16px;
    min-height: 92px;
    border-right: 1px solid var(--line);
  }

  .solution-tab-icon {
    display: none;
  }

  .solution-panels {
    min-height: 540px;
  }

  .product-grid,
  .solution-index-grid,
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-line {
    grid-template-columns: repeat(5, 220px);
    overflow-x: auto;
  }

  .quality-feature {
    grid-template-columns: 0.8fr 1.2fr;
  }

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

  .quality-content h2 {
    font-size: 36px;
  }

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

  .faq-layout,
  .challenge-layout,
  .evidence-grid {
    gap: 54px;
  }

  .contact-band-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-column:last-child {
    display: none;
  }

  .approach-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spec-layout {
    grid-template-columns: 1fr;
  }

  .connector-panel {
    width: 100%;
  }

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

  .case-columns > div {
    min-height: 0;
  }

  .quality-step-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location-inner {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .location-inner > .button {
    grid-column: 2;
    justify-self: start;
    margin-top: -40px;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-coordinate {
    display: none;
  }

  .contact-layout {
    gap: 44px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

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

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

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .prototype-bar {
    height: 30px;
  }

  .prototype-bar .shell {
    width: calc(100% - 20px);
    overflow: hidden;
    font-size: 10px;
    white-space: nowrap;
  }

  .prototype-bar .shell > span {
    flex: 0 0 auto;
  }

  .prototype-bar b {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .header-phone,
  .header-actions > .button {
    display: none;
  }

  .header-inner {
    gap: 12px;
  }

  h2 {
    font-size: 31px;
  }

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

  .home-hero {
    height: 560px;
    min-height: 560px;
  }

  .home-hero .hero-media {
    object-position: 59% center;
  }

  .home-hero .hero-shade {
    background: rgba(7, 14, 17, 0.68);
  }

  .hero-grid::before {
    left: 50%;
  }

  .hero-grid::after {
    display: none;
  }

  .hero-copy {
    width: 100%;
    padding: 12px 0 0;
  }

  .hero-kicker {
    margin-bottom: 17px;
    font-size: 12px;
  }

  .hero-copy h1 {
    margin-bottom: 15px;
    font-size: 48px;
  }

  .hero-lead {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 310px);
  }

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

  .hero-helper {
    font-size: 11px;
  }

  .hero-coordinate {
    display: none;
  }

  .home-hero-inner > .scene-note {
    right: 0;
    bottom: 12px;
  }

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

  .fact-item {
    min-height: 88px;
    padding: 14px 13px;
    border-bottom: 1px solid var(--line);
  }

  .fact-item:nth-child(2),
  .fact-item:nth-child(4) {
    border-right: 1px solid var(--line);
  }

  .fact-item strong {
    font-size: 18px;
  }

  .fact-item span {
    font-size: 10px;
  }

  .section {
    padding: 70px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 34px;
  }

  .section-head h2 {
    margin-top: 8px;
  }

  .section-head p {
    font-size: 15px;
  }

  .solution-switcher {
    border-radius: 4px;
  }

  .solution-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .solution-tabs button {
    grid-template-columns: 25px minmax(0, 1fr);
    min-height: 76px;
    padding: 11px 12px;
    gap: 7px;
  }

  .solution-tabs button::before {
    width: 3px;
  }

  .solution-tab-copy strong {
    font-size: 13px;
  }

  .solution-tab-copy small,
  .solution-tab-arrow {
    display: none;
  }

  .solution-panels {
    min-height: 500px;
  }

  .solution-panel-content {
    padding: 28px 22px 36px;
  }

  .solution-panel-content h3 {
    font-size: 29px;
  }

  .solution-panel-content p {
    font-size: 14px;
  }

  .solution-panel .scene-note {
    top: 14px;
    right: 14px;
    bottom: auto;
  }

  .product-grid,
  .solution-index-grid,
  .article-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 290px;
    padding: 24px;
  }

  .process-line {
    grid-template-columns: repeat(5, 190px);
    padding-bottom: 8px;
  }

  .process-step {
    min-height: 210px;
  }

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

  .quality-image {
    min-height: 420px;
    max-height: 500px;
  }

  .quality-image > img {
    object-position: center 30%;
  }

  .quality-content {
    padding: 58px 20px 64px;
  }

  .quality-content h2 {
    font-size: 32px;
  }

  .quality-content > p {
    font-size: 15px;
  }

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

  .case-card {
    min-height: 350px;
  }

  .case-card-top {
    margin-bottom: 38px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-intro,
  .sticky-heading,
  .contact-sidebar,
  .article-aside {
    position: static;
  }

  .faq-list summary {
    min-height: 70px;
    font-size: 15px;
  }

  .insight-row {
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    min-height: 92px;
    gap: 10px;
  }

  .insight-category {
    display: none;
  }

  .insight-row h3 {
    font-size: 16px;
  }

  .contact-band-inner {
    min-height: 340px;
  }

  .contact-band h2 {
    font-size: 32px;
  }

  .contact-band-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
    padding-top: 60px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    display: flex;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .footer-legal {
    gap: 12px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 58px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(11, 19, 22, 0.1);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-action-bar a:first-child {
    border-right: 1px solid var(--line);
  }

  .mobile-action-bar .is-primary {
    color: var(--paper);
    background: var(--teal-dark);
  }

  .toast {
    right: 16px;
    bottom: 74px;
    max-width: calc(100% - 32px);
  }

  .image-page-hero {
    height: 500px;
  }

  .page-hero-copy h1 {
    font-size: 43px;
  }

  .page-hero-copy > p {
    font-size: 16px;
  }

  .page-hero-meta {
    margin-top: 22px;
  }

  .page-hero-meta span {
    padding: 6px 8px;
    font-size: 10px;
  }

  .image-page-hero .scene-note {
    right: 16px;
    bottom: 14px;
  }

  .breadcrumbs {
    width: calc(100% - 32px);
    overflow: hidden;
  }

  .solution-index-copy {
    min-height: 300px;
    padding: 24px;
  }

  .split-statement,
  .answer-grid,
  .challenge-layout,
  .evidence-grid,
  .deliverable-grid,
  .two-column-feature,
  .about-intro,
  .newsletter-strip {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .answer-lead {
    font-size: 18px;
  }

  .challenge-item {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 120px;
  }

  .challenge-item p {
    font-size: 17px;
  }

  .approach-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .approach-card {
    min-height: 265px;
  }

  .deliverable-grid > div:last-child {
    grid-template-columns: 1fr;
  }

  .product-detail {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 36px 0;
    gap: 18px;
  }

  .product-detail-copy {
    grid-column: 2;
  }

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

  .spec-row strong,
  .spec-row span {
    min-height: 52px;
  }

  .brand-list {
    grid-template-columns: 1fr;
  }

  .case-disclaimer .shell,
  .content-draft-note .shell {
    min-height: 92px;
  }

  .case-blueprint {
    grid-template-columns: 1fr;
    padding: 42px 0;
  }

  .case-rail {
    flex-direction: row;
    align-items: center;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-main {
    padding: 24px 0 0;
  }

  .case-heading h2 {
    font-size: 29px;
  }

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

  .case-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .quality-step-grid {
    grid-template-columns: 1fr;
  }

  .quality-step {
    min-height: 260px;
  }

  .evidence-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .evidence-item > span {
    width: 42px;
    height: 42px;
  }

  .evidence-item > small {
    grid-column: 2;
    justify-self: start;
  }

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

  .timeline-grid > div,
  .timeline-grid > div:last-child {
    min-height: 250px;
    padding: 38px 24px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .timeline-year {
    margin-bottom: 40px;
    font-size: 31px;
  }

  .location-inner {
    grid-template-columns: 1fr;
    padding-top: 52px;
    padding-bottom: 58px;
    gap: 28px;
  }

  .location-coordinate {
    min-height: 100px;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .location-inner > .button {
    grid-column: 1;
    margin-top: 0;
  }

  .article-hero {
    padding: 82px 0 68px;
  }

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

  .article-hero p {
    font-size: 16px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .article-aside > div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .article-content h2 {
    margin-top: 50px;
    font-size: 27px;
  }

  .article-content p {
    font-size: 16px;
  }

  .article-answer {
    padding: 22px;
  }

  .article-answer p {
    font-size: 17px;
  }

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

  .contact-hero-grid {
    min-height: 570px;
  }

  .contact-hero-copy h1 {
    font-size: 42px;
  }

  .contact-hero-copy > p {
    font-size: 16px;
  }

  .contact-direct {
    flex-direction: column;
  }

  .contact-direct a,
  .contact-direct button {
    width: 100%;
    min-width: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .project-form {
    padding: 24px 18px;
  }

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

  .form-span {
    grid-column: 1;
  }

  .plain-hero {
    padding: 74px 0 62px;
  }

  .plain-hero h1,
  .not-found h1 {
    font-size: 41px;
  }

  .credit-list a {
    grid-template-columns: 1fr 20px;
    padding: 14px 0;
    gap: 6px 12px;
  }

  .credit-list span {
    grid-column: 1;
  }

  .credit-list strong {
    grid-column: 1;
  }

  .credit-list svg {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .not-found .shell > div {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .brand-copy small {
    display: none;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

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

  .solution-tab-copy strong {
    font-size: 12px;
  }

  .page-hero-copy h1 {
    font-size: 38px;
  }

  .contact-hero-copy h1 {
    font-size: 38px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
