:root {
  --charcoal: #171b1f;
  --charcoal-2: #22282d;
  --charcoal-3: #30373d;
  --ink: #171b1f;
  --slate: #5d6871;
  --steel: #8e989f;
  --line: #d6dadd;
  --line-dark: #3a4248;
  --muted: #f1f3f3;
  --white: #ffffff;
  --orange: #f26422;
  --orange-dark: #c9480d;
  --max-width: 1280px;
  --header-height: 78px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  font-weight: 720;
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: 46px;
}

h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

.section {
  padding-block: 104px;
}

.section-muted {
  padding-block: 104px;
  background: var(--muted);
}

.section-dark {
  color: var(--white);
  background: var(--charcoal);
}

.eyebrow,
.kicker,
.pathway-number,
.material-code {
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ff8a52;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--slate);
  font-size: 18px;
}

.section-heading.compact {
  margin-bottom: 48px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

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

.button-primary:hover {
  background: var(--orange-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(23, 27, 31, 0.28);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(23, 27, 31, 0.7);
}

.button-dark {
  color: var(--white);
  background: var(--charcoal);
}

.button-dark:hover {
  background: var(--charcoal-3);
}

.button-outline-light {
  color: var(--white);
  border-color: #707980;
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  border-bottom: 2px solid var(--orange);
}

.text-link:hover {
  color: var(--orange-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-top: 4px solid var(--orange);
  border-bottom: 1px solid #2e363c;
  color: var(--white);
  background: var(--charcoal);
}

.header-shell {
  display: flex;
  height: calc(var(--header-height) - 4px);
  align-items: center;
  gap: 28px;
}

.brand {
  display: block;
  flex: 0 0 180px;
  width: 180px;
  height: 62px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 4px;
  margin-left: auto;
}

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

.site-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 0;
  left: 13px;
  height: 3px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

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

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 4px;
  color: var(--white);
  background: var(--orange);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--orange-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.home-hero {
  height: calc(100svh - 120px);
  min-height: 590px;
  max-height: 780px;
}

.subpage-hero {
  height: min(620px, calc(100svh - 116px));
  min-height: 520px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.commercial-hero .hero-media img {
  object-position: center 43%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(15, 18, 21, 0.96) 0%, rgba(15, 18, 21, 0.82) 32%, rgba(15, 18, 21, 0.4) 60%, rgba(15, 18, 21, 0.18) 100%);
}

.hero-shade::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 18, 21, 0.62) 0%, transparent 45%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: calc(100% - 76px);
  max-width: var(--max-width);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 34%;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f3f4f4;
}

.kicker span {
  width: 34px;
  height: 3px;
  background: var(--orange);
}

.hero h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: 67px;
}

.subpage-hero h1 {
  max-width: 860px;
  font-size: 57px;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: #e1e5e7;
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  min-height: 76px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(19, 23, 26, 0.72);
  backdrop-filter: blur(8px);
}

.hero-rail span {
  padding: 10px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: #e3e6e8;
  font-size: 13px;
  font-weight: 650;
  text-align: center;
  text-transform: uppercase;
}

.hero-rail span:last-child {
  border-right: 0;
}

.promo-section {
  padding-block: 88px 96px;
}

.promo-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 42px;
}

.promo-heading h2,
.promo-heading p {
  margin-bottom: 0;
}

.promo-intro {
  padding-left: 22px;
  border-left: 3px solid var(--orange);
}

.promo-runtime {
  display: block;
  margin-bottom: 8px;
  color: #ff8a52;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
  text-transform: uppercase;
}

.promo-intro p {
  color: #c9ced1;
  font-size: 17px;
}

.promo-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid #3b4247;
  border-radius: 4px;
  background: #0e1113;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.promo-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0e1113;
}

.sector-pathways {
  padding-top: 96px;
}

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

.pathway-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.pathway-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--muted);
}

.pathway-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.pathway-card:hover .pathway-media img {
  transform: scale(1.025);
}

.pathway-copy {
  padding: 34px;
}

.pathway-copy h3 {
  margin-bottom: 16px;
  font-size: 31px;
}

.pathway-copy > p:not(.pathway-number) {
  margin-bottom: 24px;
  color: var(--slate);
}

.value-band {
  padding-block: 92px;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.value-heading h2 {
  margin-bottom: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.value-item {
  min-width: 0;
  padding: 30px 24px 0;
  border-left: 1px solid var(--line-dark);
}

.value-index,
.application-item > span,
.commercial-sector > span,
.capability-process > span,
.product-index {
  display: block;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.value-item h3 {
  font-size: 20px;
}

.value-item p {
  color: #b9c0c4;
  font-size: 14px;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
  display: grid;
  min-width: 0;
  gap: 42px;
  padding: 34px 30px 16px 0;
  border-right: 1px solid var(--line);
}

.process-step:not(:first-child) {
  padding-left: 30px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step > span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.process-step h3 {
  font-size: 31px;
}

.process-step p {
  color: var(--slate);
}

.capability-feature {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 1.12fr) minmax(460px, 0.88fr);
}

.capability-image {
  min-height: 560px;
}

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

.capability-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 78px;
  padding-right: max(48px, calc((100vw - var(--max-width)) / 2));
  padding-left: clamp(48px, 5vw, 96px);
}

.capability-copy h2 {
  max-width: 560px;
  font-size: 42px;
  text-wrap: balance;
}

.capability-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: #c1c7ca;
  text-wrap: pretty;
}

.check-list {
  width: min(100%, 560px);
  margin: 20px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line-dark);
  color: #e5e8e9;
}

.check-list li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  content: "";
}

.check-list.dark li {
  border-color: var(--line);
  color: var(--ink);
}

.cta-band {
  padding-block: 82px;
  color: var(--ink);
  background: var(--orange);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 90px;
  align-items: end;
}

.cta-band .eyebrow {
  color: #742406;
}

.cta-band h2 {
  margin-bottom: 0;
}

.cta-action p {
  margin-bottom: 24px;
  font-size: 17px;
}

.site-footer {
  padding-top: 72px;
  color: #c2c8cb;
  background: #111417;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr 1.23fr;
  gap: 64px;
  padding-bottom: 62px;
}

.footer-brand img {
  width: 260px;
  height: 99px;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 340px;
  color: #f1f3f3;
  font-size: 18px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-contact {
  gap: 8px;
}

.footer-contact strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.45;
}

.footer-contact span,
.footer-contact a {
  line-height: 1.45;
}

.footer-base {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #2d3439;
  color: #8f989e;
  font-size: 13px;
}

.footer-base a:hover {
  color: var(--white);
}

.intro-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 80px;
}

.section-label {
  padding-top: 8px;
}

.section-label span {
  display: block;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.section-label p {
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.intro-copy h2 {
  max-width: 900px;
}

.large-copy {
  max-width: 920px;
  margin-bottom: 42px;
  color: #31383d;
  font-size: 23px;
  line-height: 1.55;
}

.body-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  color: var(--slate);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #c7cccf;
  border-bottom: 1px solid #c7cccf;
}

.application-item {
  min-width: 0;
  padding: 34px 28px 38px;
  border-right: 1px solid #c7cccf;
}

.application-item:last-child {
  border-right: 0;
}

.application-item h3 {
  min-height: 48px;
  font-size: 20px;
}

.application-item p {
  color: var(--slate);
  font-size: 14px;
}

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

.system-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.system-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--white);
  background: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
}

.system-card h3 {
  font-size: 21px;
}

.system-card > p {
  color: var(--slate);
}

.system-card ul,
.capability-process ul {
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: #444d53;
  font-size: 14px;
  list-style-position: inside;
}

.technical-band {
  padding-block: 100px;
}

.technical-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: 110px;
}

.technical-copy p:not(.eyebrow) {
  color: #bec5c9;
  font-size: 17px;
}

.technical-points {
  border-top: 1px solid var(--line-dark);
}

.technical-point {
  display: grid;
  grid-template-columns: 44px 145px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.technical-point span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.technical-point h3 {
  margin: 0;
  font-size: 17px;
}

.technical-point p {
  margin: 0;
  color: #aeb6bb;
  font-size: 14px;
}

.kit-layout,
.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 72px;
  align-items: center;
}

.kit-image,
.delivery-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--muted);
}

.kit-image img,
.delivery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kit-copy > p:not(.eyebrow),
.delivery-copy > p:not(.eyebrow) {
  color: var(--slate);
  font-size: 17px;
}

.commercial-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #c7cccf;
  border-bottom: 1px solid #c7cccf;
}

.commercial-sector {
  min-width: 0;
  padding: 34px;
  border-right: 1px solid #c7cccf;
}

.commercial-sector:last-child {
  border-right: 0;
}

.commercial-sector h3 {
  min-height: 52px;
}

.commercial-sector p {
  min-height: 128px;
  color: var(--slate);
}

.product-table {
  border-top: 1px solid var(--line);
}

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

.product-row .product-index {
  margin: 4px 0 0;
}

.product-row h3,
.product-row p {
  margin: 0;
}

.product-row p {
  color: var(--slate);
}

.performance-section {
  padding-block: 100px;
}

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

.performance-copy > p:not(.eyebrow) {
  color: #bcc3c7;
}

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

.performance-item {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.performance-item strong {
  display: block;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 12px;
}

.performance-item h3 {
  font-size: 18px;
}

.performance-item p {
  color: #afb7bb;
  font-size: 14px;
}

.mini-process {
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.mini-process li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.mini-process span {
  color: var(--orange-dark);
  font-size: 12px;
}

.process-capabilities {
  padding-block: 102px;
}

.process-capabilities .section-heading > p {
  color: #b7bfc3;
}

.capability-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.capability-process {
  min-width: 0;
  padding: 34px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.capability-process h3 {
  font-size: 25px;
}

.capability-process > p {
  color: #bcc3c7;
}

.capability-process ul {
  border-color: var(--line-dark);
  color: #dde1e3;
}

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

.material-card {
  min-width: 0;
  padding: 18px 18px 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.material-swatch {
  height: 144px;
  margin-bottom: 26px;
  border: 1px solid #c9cdd0;
}

.swatch-hpl {
  background: #454d52;
}

.swatch-ply {
  background: repeating-linear-gradient(0deg, #d8b98d 0, #d8b98d 9px, #cba878 10px, #e0c49b 12px);
}

.swatch-vinyl {
  background: #9a4b27;
}

.swatch-steel {
  background: #747d83;
}

.material-card h3 {
  font-size: 20px;
}

.material-card > p:not(.material-code) {
  min-height: 126px;
  color: var(--slate);
  font-size: 14px;
}

.material-card dl {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.material-card dt {
  color: var(--slate);
  font-weight: 750;
  text-transform: uppercase;
}

.material-card dd {
  margin: 2px 0 14px;
}

.dfm-section {
  padding-block: 100px;
}

.dfm-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.dfm-list {
  border-top: 1px solid #c7cccf;
}

.dfm-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #c7cccf;
}

.dfm-item > span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.dfm-item h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.dfm-item p {
  color: var(--slate);
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.quality-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--slate);
}

.quality-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.quality-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.quality-steps span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.quality-steps h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.quality-steps p {
  color: var(--slate);
}

.quote-hero {
  padding-block: 92px 84px;
}

.quote-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 90px;
  align-items: end;
}

.quote-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 66px;
}

.quote-hero-copy > p {
  color: #c0c6c9;
  font-size: 18px;
}

.quote-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: var(--white);
  font-weight: 700;
}

.quote-contact-line a:hover {
  color: var(--orange);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 72px;
  align-items: start;
}

.quote-form {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.form-heading {
  margin-bottom: 42px;
}

.form-heading h2 {
  margin-bottom: 8px;
}

.form-heading > p:last-child {
  color: var(--slate);
  font-size: 14px;
}

.quote-form fieldset {
  margin: 0 0 42px;
  padding: 0;
  border: 0;
}

.quote-form legend {
  width: 100%;
  margin-bottom: 22px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.field {
  min-width: 0;
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #b9c0c4;
  border-radius: 3px;
  background: var(--white);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange-dark);
  outline: 2px solid rgba(242, 100, 34, 0.18);
  outline-offset: 0;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a949a;
}

.field-note {
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 12px;
}

.file-control {
  position: relative;
  min-height: 58px;
  overflow: hidden;
  border: 1px dashed #aeb6ba;
  border-radius: 3px;
  background: var(--muted);
}

.file-control input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-name {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 12px 16px;
  color: var(--slate);
  font-size: 14px;
}

.file-control:hover {
  border-color: var(--orange-dark);
}

.form-submit {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.submission-note {
  margin: 10px 0 0;
  color: var(--slate);
  font-size: 12px;
}

.consent {
  display: flex;
  max-width: 660px;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
  color: var(--slate);
  font-size: 13px;
}

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

.form-status {
  margin-top: 14px;
  color: var(--slate);
  font-size: 13px;
}

.form-status.error {
  color: #a72713;
}

.quote-package {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.quote-package[hidden] {
  display: none;
}

.quote-package .eyebrow {
  margin-bottom: 8px;
}

.quote-package h3 {
  margin-bottom: 10px;
  font-size: 27px;
}

.quote-package-summary {
  margin-bottom: 22px;
  color: var(--slate);
}

.quote-package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-package-actions [hidden],
.quote-package-guidance [hidden] {
  display: none;
}

.button-quiet {
  color: var(--charcoal);
  border-color: #aeb6ba;
  background: var(--white);
}

.button-quiet:hover {
  border-color: var(--charcoal);
  background: var(--muted);
}

.quote-package-guidance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quote-package-guidance p {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
}

.quote-package-guidance.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.quote-aside {
  position: sticky;
  top: 112px;
  padding-left: 34px;
  border-left: 3px solid var(--orange);
}

.quote-aside h2 {
  font-size: 30px;
}

.aside-section {
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.aside-section:last-child {
  margin-bottom: 0;
}

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

.aside-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.aside-list li:last-child {
  border-bottom: 0;
}

.aside-list span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.aside-section address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  color: var(--slate);
  font-style: normal;
}

.aside-section address strong {
  color: var(--ink);
}

.aside-section address a {
  color: var(--ink);
  font-weight: 700;
}

.aside-section address a:hover {
  color: var(--orange-dark);
}

.response-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 8px;
  background: var(--orange);
}

.consultation-band {
  padding-block: 78px;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 90px;
  align-items: end;
}

.consultation-layout h2 {
  margin-bottom: 0;
}

.consultation-layout > div:last-child p {
  margin-bottom: 24px;
  color: var(--slate);
}

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

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

@media (max-width: 1120px) {
  .header-shell {
    gap: 18px;
  }

  .site-nav a {
    padding-inline: 9px;
  }

  .site-nav a::after {
    right: 9px;
    left: 9px;
  }

  .hero-content {
    padding-right: 24%;
  }

  .hero h1 {
    font-size: 58px;
  }

  .subpage-hero h1 {
    font-size: 50px;
  }

  .value-layout,
  .technical-layout,
  .performance-layout,
  .dfm-layout,
  .quality-layout {
    gap: 60px;
  }

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

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

  .application-item:nth-child(2),
  .material-card:nth-child(2) {
    border-right: 0;
  }

  .application-item:nth-child(-n + 2) {
    border-bottom: 1px solid #c7cccf;
  }

  .material-card > p:not(.material-code) {
    min-height: 0;
  }

  .quote-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 44px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .page-shell,
  .header-shell {
    width: min(calc(100% - 40px), var(--max-width));
  }

  h2 {
    font-size: 39px;
  }

  .section,
  .section-muted {
    padding-block: 82px;
  }

  .brand {
    width: 158px;
    height: 54px;
    flex-basis: 158px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

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

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: none;
    align-items: stretch;
    align-self: auto;
    flex-direction: column;
    gap: 0;
    padding: 28px 20px;
    background: var(--charcoal);
  }

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

  .site-nav a {
    min-height: 58px;
    padding: 0 8px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 18px;
  }

  .site-nav a::after {
    right: auto;
    bottom: 0;
    left: 8px;
    width: 44px;
  }

  .header-cta {
    display: none;
  }

  .home-hero {
    height: calc(100svh - 110px);
    min-height: 540px;
  }

  .hero-content {
    padding-right: 14%;
  }

  .section-heading,
  .promo-heading,
  .intro-layout,
  .value-layout,
  .technical-layout,
  .kit-layout,
  .delivery-layout,
  .performance-layout,
  .dfm-layout,
  .quality-layout,
  .quote-hero-layout,
  .quote-layout,
  .consultation-layout,
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 44px;
  }

  .promo-section {
    padding-block: 76px 82px;
  }

  .promo-heading {
    align-items: start;
    margin-bottom: 34px;
  }

  .section-heading > p {
    max-width: 700px;
  }

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

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

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

  .capability-image {
    min-height: 440px;
  }

  .capability-copy {
    padding: 70px max(20px, calc((100vw - var(--max-width)) / 2));
  }

  .technical-point {
    grid-template-columns: 44px 150px 1fr;
  }

  .commercial-sector-grid {
    grid-template-columns: 1fr;
  }

  .commercial-sector {
    border-right: 0;
    border-bottom: 1px solid #c7cccf;
  }

  .commercial-sector:last-child {
    border-bottom: 0;
  }

  .commercial-sector h3,
  .commercial-sector p {
    min-height: 0;
  }

  .quote-aside {
    position: static;
  }

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

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

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  body {
    font-size: 15px;
  }

  .page-shell,
  .header-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  h2 {
    font-size: 33px;
  }

  h3 {
    font-size: 21px;
  }

  .section,
  .section-muted {
    padding-block: 66px;
  }

  .brand {
    width: 132px;
    height: 50px;
    flex-basis: 132px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .home-hero {
    height: calc(100svh - 98px);
    min-height: 470px;
    max-height: 650px;
  }

  .subpage-hero {
    height: calc(100svh - 98px);
    min-height: 480px;
    max-height: 580px;
  }

  .hero-content {
    height: calc(100% - 58px);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .hero h1,
  .subpage-hero h1 {
    margin-bottom: 16px;
    font-size: 40px;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-actions {
    width: 100%;
  }

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

  .hero-rail {
    min-height: 58px;
  }

  .hero-rail span {
    padding: 8px 5px;
    font-size: 9px;
    line-height: 1.25;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(15, 18, 21, 0.94) 0%, rgba(15, 18, 21, 0.69) 74%, rgba(15, 18, 21, 0.52) 100%);
  }

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

  .subpage-hero .hero-media img {
    object-position: center;
  }

  .section-heading,
  .promo-heading,
  .intro-layout,
  .value-layout,
  .technical-layout,
  .kit-layout,
  .delivery-layout,
  .performance-layout,
  .dfm-layout,
  .quality-layout,
  .quote-hero-layout,
  .quote-layout,
  .consultation-layout,
  .cta-layout {
    gap: 30px;
  }

  .promo-section {
    padding-block: 62px 66px;
  }

  .promo-heading {
    margin-bottom: 26px;
  }

  .promo-intro {
    padding-left: 16px;
  }

  .promo-intro p {
    font-size: 15px;
  }

  .pathway-grid,
  .systems-grid,
  .process-list,
  .value-grid,
  .application-grid,
  .material-grid,
  .performance-grid,
  .capability-process-grid,
  .body-columns,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pathway-copy,
  .system-card,
  .capability-process,
  .performance-item {
    padding: 24px;
  }

  .pathway-copy h3 {
    font-size: 27px;
  }

  .value-grid,
  .capability-process-grid,
  .performance-grid {
    border-left: 0;
  }

  .value-item {
    padding: 26px 0;
    border-bottom: 1px solid var(--line-dark);
    border-left: 0;
  }

  .process-step,
  .process-step:not(:first-child) {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step h3 {
    font-size: 27px;
  }

  .capability-image {
    min-height: 300px;
  }

  .capability-copy {
    padding: 58px 20px;
  }

  .capability-copy h2 {
    font-size: 34px;
  }

  .cta-band {
    padding-block: 58px;
  }

  .cta-layout {
    align-items: start;
  }

  .application-item {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid #c7cccf;
  }

  .application-item h3 {
    min-height: 0;
  }

  .technical-point {
    grid-template-columns: 36px 1fr;
  }

  .technical-point p {
    grid-column: 2;
  }

  .product-row {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

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

  .material-card {
    padding: 16px 16px 24px;
  }

  .quote-hero {
    padding-block: 62px;
  }

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

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

  .quote-package-actions .button {
    width: 100%;
  }

  .quote-package-guidance {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quote-aside {
    padding-left: 22px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-base {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 390px) {
  .home-hero,
  .subpage-hero {
    min-height: 455px;
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: 35px;
  }

  .kicker {
    font-size: 10px;
  }

  .button {
    padding-inline: 15px;
    font-size: 13px;
  }
}

@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;
  }

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