:root {
  --brand: #20afe0;
  --brand-deep: #087da8;
  --ink: #10222b;
  --ink-soft: #465860;
  --ink-muted: #718087;
  --paper: #ffffff;
  --paper-soft: #f1f5f6;
  --paper-blue: #edf9fd;
  --line: #d9e2e5;
  --line-dark: rgba(255, 255, 255, 0.17);
  --night: #0b171d;
  --night-soft: #12262f;
  --white: #ffffff;
  --container: 1240px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(32, 175, 224, 0.48);
  outline-offset: 4px;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--night);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 229, 0.88);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

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

.brand img {
  width: 168px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
  transition: color 160ms ease;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--ink);
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  color: var(--white);
  background: var(--night);
  border: 1px solid var(--night);
  border-radius: 3px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}

.nav-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  display: none;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  margin: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #77d9f7;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: clamp(58px, 6.5vw, 100px) 0;
  background: linear-gradient(90deg, var(--paper-blue) 0, var(--paper-blue) 38%, var(--paper) 38%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero h1,
.section-heading h2,
.reasons-intro h2,
.contact-copy h2,
.brand-strip-heading h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1 {
  max-width: 10.6ch;
  font-size: clamp(3.5rem, 5.5vw, 5.8rem);
}

.hero-lede {
  max-width: 53ch;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 35px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.89rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}

.button-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: #aebcc2;
}

.button-secondary:hover {
  background: var(--white);
  border-color: var(--ink);
}

.hero-note {
  max-width: 56ch;
  margin: 26px 0 0;
  padding-top: 20px;
  color: var(--ink-muted);
  border-top: 1px solid rgba(16, 34, 43, 0.14);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
}

.hero-image img {
  height: auto;
}

.hero-image-main {
  grid-column: 1 / -1;
}

.hero-image-main figcaption {
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 14px 86px 14px 20px;
  color: var(--white);
  background: var(--night);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-image-main figcaption span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.hero-image-support {
  aspect-ratio: 16 / 9;
}

.hero-marker {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 68px;
  height: 68px;
  display: grid;
  place-content: center;
  color: var(--white);
  background: var(--brand-deep);
  text-align: center;
}

.hero-marker span {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-marker small {
  margin-top: 5px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.capability-band {
  color: var(--white);
  background: var(--night);
}

.capability-grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  align-items: center;
  gap: 40px;
}

.capability-grid > p {
  margin: 0;
  color: #8edcf5;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-grid ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-grid li {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding-left: 22px;
  border-left: 1px solid var(--line-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  padding: clamp(92px, 10vw, 150px) 0;
}

.section-heading h2,
.reasons-intro h2,
.contact-copy h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(52px, 9vw, 130px);
}

.split-heading h2 {
  max-width: 13ch;
}

.split-heading > p,
.work-heading > p {
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.solutions-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  align-items: start;
  gap: clamp(50px, 7vw, 100px);
  margin-top: clamp(64px, 8vw, 105px);
}

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

.solutions-list a {
  min-height: 138px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  padding: 28px 2px;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding 180ms ease;
}

.solutions-list a:hover {
  padding-right: 10px;
  padding-left: 10px;
  color: var(--brand-deep);
}

.solutions-list a > span {
  padding-top: 4px;
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solutions-list h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.2;
}

.solutions-list p {
  max-width: 60ch;
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.solutions-media {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  min-height: 675px;
}

.solutions-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
}

.solutions-photo img {
  height: 100%;
  object-fit: cover;
}

.solutions-photo-primary {
  inset: 0 0 90px 0;
}

.solutions-photo-lograr img {
  object-position: right bottom;
}

.solutions-photo-secondary {
  right: -28px;
  top: 54px;
  width: 43%;
  aspect-ratio: 4 / 5;
  border: 9px solid var(--white);
}

.solutions-media > p {
  position: absolute;
  z-index: 2;
  bottom: 13px;
  left: 26px;
  width: 45%;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.55;
}

.solutions-media > p strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.85rem;
}

.work-section {
  color: var(--white);
  background: var(--night);
}

.work-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(50px, 8vw, 125px);
}

.work-heading h2 {
  max-width: 13ch;
}

.work-heading > p {
  color: rgba(255, 255, 255, 0.63);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 70px);
  gap: 16px;
  margin-top: clamp(62px, 8vw, 100px);
}

.work-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--night-soft);
}

.work-item::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(5, 13, 17, 0.88));
  content: "";
  pointer-events: none;
}

.work-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-item:hover img {
  transform: scale(1.025);
}

.work-item figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 21px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.work-item figcaption strong {
  font-size: 1rem;
}

.work-item figcaption span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.68rem;
  text-align: right;
}

.work-item-tall {
  grid-column: 1 / 6;
  grid-row: 1 / 9;
}

.work-item-wide {
  grid-column: 6 / 13;
  grid-row: 1 / 5;
}

.work-item-square {
  grid-column: 6 / 9;
  grid-row: 5 / 9;
}

.work-item-landscape {
  grid-column: 9 / 13;
  grid-row: 5 / 9;
}

.work-item-corven::after {
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 13, 17, 0.72), rgba(5, 13, 17, 0.3) 36%, transparent 68%);
}

.work-item-corven img {
  object-position: center bottom;
}

.work-item-corven figcaption {
  right: auto;
  width: 46%;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}

.work-item-corven figcaption span {
  text-align: left;
}

.work-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.work-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  aspect-ratio: 1.35;
}

.work-strip img {
  height: 100%;
  object-fit: contain;
}

.work-strip figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 11px 14px;
  color: var(--white);
  background: rgba(8, 20, 26, 0.88);
  font-size: 0.7rem;
  font-weight: 700;
}

.process-section {
  background: var(--paper-soft);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: clamp(68px, 8vw, 105px) 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 260px;
  padding: 0 28px;
  border-left: 1px solid #cbd6da;
}

.process-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
}

.process-list li > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 70px;
  color: var(--brand-deep);
  border: 1px solid #b6c5ca;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}

.process-list h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.process-list p {
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.65;
}

.process-cta {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 22px 28px;
  color: var(--white);
  background: var(--brand-deep);
}

.process-cta p {
  margin: 0;
  font-weight: 700;
}

.process-cta a {
  font-size: 0.82rem;
  font-weight: 800;
}

.process-cta a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.reasons-section {
  color: var(--white);
  background: var(--night-soft);
}

.reasons-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(58px, 9vw, 132px);
}

.reasons-intro > h2 {
  max-width: 10ch;
  font-size: clamp(2.75rem, 4vw, 4.1rem);
}

.reasons-intro > p:not(.eyebrow) {
  max-width: 48ch;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.reasons-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.reasons-list div {
  min-height: 190px;
  padding: 31px 30px 30px 0;
  border-bottom: 1px solid var(--line-dark);
}

.reasons-list div:nth-child(even) {
  padding-right: 0;
  padding-left: 30px;
  border-left: 1px solid var(--line-dark);
}

.reasons-list dt {
  font-size: 1.05rem;
  font-weight: 700;
}

.reasons-list dd {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.83rem;
  line-height: 1.7;
}

.brand-strip {
  overflow: hidden;
  padding: clamp(72px, 8vw, 105px) 0;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}

.brand-strip-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}

.brand-strip-heading .eyebrow {
  margin: 0 0 6px;
}

.brand-strip-heading h2 {
  max-width: 17ch;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  text-align: right;
}

.brand-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #cbd6da;
  border-bottom: 1px solid #cbd6da;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.brand-marquee-track {
  width: max-content;
  display: flex;
  animation: brand-loop 52s linear infinite;
}

.brand-marquee-group {
  flex: none;
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 24px;
}

.brand-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 104px;
  padding: 0 24px;
}

.brand-logo::after {
  position: absolute;
  right: 0;
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: 50%;
  content: "";
}

.brand-logo-frame {
  width: 168px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo--compact .brand-logo-frame {
  width: 108px;
}

.brand-logo--wide .brand-logo-frame {
  width: 210px;
}

.brand-logo-frame img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.brand-logo--volkswagen .brand-logo-frame img {
  max-height: 48px;
}

.brand-logo--arcelormittal .brand-logo-frame img,
.brand-logo--ucc .brand-logo-frame img,
.brand-logo--integra .brand-logo-frame img {
  max-height: 46px;
}

@keyframes brand-loop {
  to {
    transform: translateX(-50%);
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(500px, 1.22fr);
  align-items: start;
  gap: clamp(70px, 11vw, 160px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.faq-heading h2 {
  max-width: 10ch;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--brand-deep);
  font-size: 0.83rem;
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

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

.faq-list summary {
  position: relative;
  display: block;
  padding: 28px 52px 28px 0;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details[open] summary {
  color: var(--brand-deep);
}

.faq-list details p {
  max-width: 66ch;
  margin: -6px 0 28px;
  padding-right: 50px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.75;
}

.contact-section {
  padding: clamp(90px, 9vw, 135px) 0;
  color: var(--white);
  background: var(--night);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(580px, 1.22fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

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

.contact-copy h2 {
  max-width: 10ch;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 43ch;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.contact-methods {
  display: grid;
  margin-top: 50px;
  border-top: 1px solid var(--line-dark);
}

.contact-methods a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-methods a:hover span {
  color: #83dcf7;
}

.contact-methods span {
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.contact-methods small {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.69rem;
}

.contact-methods b {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 1rem;
}

.contact-form {
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--white);
}

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

.form-grid label {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: #f7f9fa;
  border: 1px solid #cbd6da;
  border-radius: 0;
  outline: 0;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.form-grid input,
.form-grid select {
  min-height: 52px;
  padding: 0 14px;
}

.form-grid textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: var(--white);
  border-color: var(--brand-deep);
  box-shadow: 0 0 0 3px rgba(32, 175, 224, 0.12);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #8b989e;
}

.form-submit {
  width: 100%;
  margin-top: 30px;
}

.form-note,
.form-status {
  margin: 13px 0 0;
  color: var(--ink-muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.form-status:not(:empty) {
  padding: 10px 12px;
  color: #0c617e;
  background: var(--paper-blue);
  font-weight: 700;
}

.site-footer {
  padding: 62px 0 25px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.65fr 0.75fr;
  gap: 60px;
}

.footer-grid > div,
.footer-grid nav {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 9px;
}

.footer-brand img {
  width: 172px;
  margin-bottom: 9px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.76rem;
}

.footer-grid p {
  max-width: 40ch;
}

.footer-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.76rem;
}

.footer-grid a:hover {
  color: var(--brand-deep);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 20px;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 18px;
    font-size: 0.79rem;
  }

  .hero {
    background: linear-gradient(180deg, var(--paper-blue) 0, var(--paper-blue) 52%, var(--paper) 52%);
  }

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

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

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    width: min(720px, 100%);
    margin-inline: auto;
  }

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

  .solutions-media {
    position: relative;
    top: auto;
    width: min(820px, 100%);
    margin-inline: auto;
  }

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

  .reasons-intro h2,
  .contact-copy h2 {
    max-width: 14ch;
  }

  .reasons-intro figure {
    max-width: 780px;
  }

  .contact-copy {
    position: static;
  }

  .contact-methods {
    max-width: 540px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

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

  .brand img {
    width: 152px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    min-height: calc(100dvh - var(--header-height));
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: 22px 20px 36px;
    background: rgba(255, 255, 255, 0.985);
    border-top: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    min-height: 52px;
    margin-top: 24px;
    padding: 0 20px !important;
    border-bottom: 0 !important;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 26px;
  }

  .capability-grid ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-grid li:nth-child(3) {
    margin-top: 12px;
  }

  .capability-grid li:nth-child(4) {
    margin-top: 12px;
  }

  .split-heading,
  .work-heading,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }

  .split-heading > p,
  .work-heading > p {
    max-width: 62ch;
  }

  .work-grid {
    grid-template-rows: repeat(8, 58px);
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #cbd6da;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    min-height: 240px;
    padding: 26px;
    border-right: 1px solid #cbd6da;
    border-bottom: 1px solid #cbd6da;
    border-left: 0;
  }

  .process-list li:nth-child(even) {
    border-right: 0;
  }

  .process-list li > span {
    margin-bottom: 48px;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .hero {
    min-height: auto;
    padding: 54px 0 62px;
    background: var(--paper-blue);
  }

  .hero-grid {
    gap: 50px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.85rem, 13.4vw, 4rem);
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.65;
  }

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

  .hero-note {
    font-size: 0.72rem;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .hero-image-support {
    display: none;
  }

  .hero-image-main figcaption {
    padding-left: 16px;
  }

  .hero-marker span {
    font-size: 1.2rem;
  }

  .hero-marker small {
    font-size: 0.48rem;
  }

  .capability-grid ul {
    grid-template-columns: 1fr 1fr;
    gap: 10px 0;
  }

  .capability-grid li,
  .capability-grid li:nth-child(3),
  .capability-grid li:nth-child(4) {
    min-height: 30px;
    margin: 0;
    padding-left: 13px;
    font-size: 0.71rem;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading h2,
  .reasons-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .solutions-layout {
    margin-top: 52px;
  }

  .solutions-list a {
    min-height: 0;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    padding: 23px 0;
  }

  .solutions-list a:hover {
    padding-right: 0;
    padding-left: 0;
  }

  .solutions-list h3 {
    font-size: 1.18rem;
  }

  .solutions-list p {
    font-size: 0.82rem;
  }

  .solutions-media {
    min-height: 520px;
  }

  .solutions-photo-primary {
    right: 0;
    bottom: 100px;
  }

  .solutions-photo-secondary {
    right: -7px;
    top: 48px;
    width: 42%;
    border-width: 7px;
  }

  .solutions-media > p {
    bottom: 19px;
    left: 14px;
    width: 48%;
    font-size: 0.67rem;
  }

  .work-heading {
    gap: 24px;
  }

  .work-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
    margin-top: 52px;
  }

  .work-item,
  .work-item-tall,
  .work-item-wide,
  .work-item-square,
  .work-item-landscape {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .work-item-tall,
  .work-item-square {
    aspect-ratio: 4 / 5;
  }

  .work-item figcaption {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .work-item figcaption span {
    max-width: 14ch;
  }

  .work-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .work-strip figure {
    aspect-ratio: 1;
  }

  .work-strip figcaption {
    padding: 9px 10px;
    font-size: 0.64rem;
  }

  .process-list {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    min-height: 0;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 25px 0;
    border-right: 0;
  }

  .process-list li > span {
    margin: 0;
  }

  .process-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
  }

  .reasons-grid {
    gap: 60px;
  }

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

  .reasons-list div,
  .reasons-list div:nth-child(even) {
    min-height: 0;
    padding: 25px 0;
    border-left: 0;
  }

  .reasons-list dd {
    margin-top: 9px;
  }

  .brand-strip-heading {
    display: block;
    margin-bottom: 42px;
  }

  .brand-strip-heading .eyebrow {
    margin-bottom: 16px;
  }

  .brand-strip-heading h2 {
    max-width: 12ch;
    font-size: 2.5rem;
    text-align: left;
  }

  .brand-marquee {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
  }

  .brand-marquee-group {
    padding-right: 24px;
  }

  .brand-logo {
    min-height: 84px;
    padding: 0 18px;
  }

  .brand-logo-frame {
    width: 148px;
    height: 48px;
  }

  .brand-logo--compact .brand-logo-frame {
    width: 92px;
  }

  .brand-logo--wide .brand-logo-frame {
    width: 184px;
  }

  .brand-logo-frame img {
    max-height: 36px;
  }

  .brand-logo--volkswagen .brand-logo-frame img,
  .brand-logo--arcelormittal .brand-logo-frame img,
  .brand-logo--ucc .brand-logo-frame img,
  .brand-logo--integra .brand-logo-frame img {
    max-height: 38px;
  }

  .faq-grid {
    gap: 48px;
  }

  .faq-heading h2 {
    max-width: 12ch;
  }

  .faq-list summary {
    padding: 23px 42px 23px 0;
    font-size: 0.92rem;
  }

  .faq-list details p {
    padding-right: 22px;
    font-size: 0.83rem;
  }

  .contact-section {
    padding: 86px 0;
  }

  .contact-grid {
    gap: 58px;
  }

  .contact-methods {
    margin-top: 38px;
  }

  .contact-form {
    padding: 23px;
  }

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

  .form-span-2 {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

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

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

  .brand-marquee-track {
    width: auto;
    animation: none;
  }

  .brand-marquee-group {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px;
  }

  .brand-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .brand-logo {
    min-height: 80px;
    padding: 7px;
  }
}
