:root {
  color-scheme: light dark;
  --paper: #f2f0ea;
  --paper-raised: #fbfaf6;
  --ink: #161817;
  --ink-muted: #5c615e;
  --line: #c9cbc5;
  --line-strong: #969b97;
  --red: #d52b22;
  --red-dark: #a81f19;
  --yellow: #f4b41a;
  --steel: #68706b;
  --night: #121413;
  --white: #fff;
  --shadow: 0 18px 50px rgba(29, 32, 30, .12);
  --header-height: 82px;
  --shell: 1360px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #161817;
    --paper-raised: #202321;
    --ink: #f1f0eb;
    --ink-muted: #aeb3af;
    --line: #3d423f;
    --line-strong: #686f6a;
    --shadow: 0 18px 50px rgba(0, 0, 0, .35);
  }
}

html[data-theme="light"] {
  color-scheme: light;
  --paper: #f2f0ea;
  --paper-raised: #fbfaf6;
  --ink: #161817;
  --ink-muted: #5c615e;
  --line: #c9cbc5;
  --line-strong: #969b97;
  --shadow: 0 18px 50px rgba(29, 32, 30, .12);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #161817;
  --paper-raised: #202321;
  --ink: #f1f0eb;
  --ink-muted: #aeb3af;
  --line: #3d423f;
  --line-strong: #686f6a;
  --shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }

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

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

button { color: inherit; }

::selection { background: var(--yellow); color: #161817; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
}

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

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

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

.eyebrow,
.kicker,
.footer-label,
.spec-label,
.serial,
label,
.field-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow,
.kicker { color: var(--red); }

.eyebrow::before,
.kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  margin-right: 10px;
  vertical-align: .2em;
  background: var(--red);
}

h1, h2, h3, p { overflow-wrap: break-word; }

h1, h2, h3 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  line-height: .98;
  letter-spacing: 0;
}

h2 { font-size: 52px; }
h3 { font-size: 25px; line-height: 1.05; }
p { margin-block: 0 1em; }

.lede {
  max-width: 760px;
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 1.45;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper-raised) 93%, transparent);
  backdrop-filter: blur(16px);
}

.brand { display: block; width: 190px; text-decoration: none; }
.brand picture { display: block; }
.brand img { width: 100%; height: auto; }

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-inline: 28px;
}

.main-nav a {
  position: relative;
  padding-block: 9px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active { color: var(--ink); }
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.mobile-nav-tools { display: none; }

.segmented {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}

.segmented button {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 0;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.segmented button:last-child { border-right: 0; }
.segmented button:hover { background: color-mix(in srgb, var(--ink) 7%, transparent); }
.segmented button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.segmented .icon { width: 16px; height: 16px; }
.language-switch { grid-auto-columns: 38px; }
.language-switch button { font-size: 10px; font-weight: 800; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}
.menu-close-icon { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover { border-color: var(--red); background: var(--red); color: #fff; }
.button--red { border-color: var(--red); background: var(--red); color: #fff; }
.button--red:hover { border-color: var(--red-dark); background: var(--red-dark); }
.button--outline { background: transparent; color: var(--ink); }
.button--light { border-color: #fff; background: #fff; color: #161817; }
.button--light:hover { border-color: var(--yellow); background: var(--yellow); color: #161817; }
.button .icon { width: 18px; height: 18px; }

.hero {
  position: relative;
  min-height: calc(92svh - var(--header-height));
  max-height: 860px;
  overflow: hidden;
  background: #151817;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  background: rgba(9, 11, 10, .78);
  pointer-events: none;
}

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

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  align-items: end;
  min-height: inherit;
  padding-block: 84px 60px;
}

.hero-copy { align-self: center; }
.hero .eyebrow { margin-bottom: 28px; color: var(--yellow); }
.hero .eyebrow::before { background: var(--yellow); }

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  font-size: 76px;
  line-height: .86;
  text-transform: uppercase;
}

.hero-title span:nth-child(2) { color: var(--yellow); }
.hero-subtitle { max-width: 585px; margin-bottom: 34px; color: #e4e6e2; font-size: 21px; line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-index {
  align-self: end;
  justify-self: end;
  width: 300px;
  border-top: 1px solid rgba(255,255,255,.55);
  color: #e7e9e5;
}

.hero-index div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.hero-index dt,
.hero-index dd { margin: 0; }
.hero-index dt { color: var(--yellow); font-family: "Arial Narrow", Arial, sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 0; }
.hero-index dd { font-size: 12px; font-weight: 700; }

.data-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper-raised);
}

.data-strip > div {
  min-height: 126px;
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}
.data-strip > div:last-child { border-right: 0; }
.data-strip .serial { color: var(--red); }
.data-strip strong { display: block; margin-top: 9px; font-family: "Arial Narrow", Arial, sans-serif; font-size: 28px; line-height: 1.05; }
.data-strip p { margin: 8px 0 0; color: var(--ink-muted); font-size: 13px; }

.section { padding-block: 110px; }
.section--tight { padding-block: 76px; }
.section--ruled { border-bottom: 1px solid var(--line); }
.section--dark { background: var(--night); color: #f1f0eb; }
.section--yellow { background: var(--yellow); color: #161817; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, .55fr) minmax(0, 1.45fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 54px;
}
.section-heading h2 { max-width: 820px; }
.section-heading .lede { margin-top: 22px; }

.intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8%;
  align-items: start;
}
.intro-grid .display-copy { font-family: "Arial Narrow", Arial, sans-serif; font-size: 35px; font-weight: 700; line-height: 1.12; }
.intro-grid .body-copy { columns: 2; column-gap: 36px; color: var(--ink-muted); }
.intro-grid .body-copy p { break-inside: avoid; }

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

.capability {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-raised);
}
.capability::before { content: ""; position: absolute; top: -1px; left: -1px; width: 56px; height: 4px; background: var(--red); }
.capability:nth-child(even)::before { background: var(--yellow); }
.capability .icon { width: 28px; height: 28px; margin-bottom: 72px; color: var(--red); }
.capability .serial { display: block; margin-bottom: 12px; color: var(--ink-muted); }
.capability h3 { margin-bottom: 12px; }
.capability p { color: var(--ink-muted); font-size: 14px; }
.capability a { position: absolute; right: 28px; bottom: 24px; display: inline-flex; color: var(--red); }

.feature-split {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 650px;
  border-block: 1px solid var(--line);
}
.feature-split--reverse { grid-template-columns: .88fr 1.12fr; }
.feature-image { min-height: 520px; overflow: hidden; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-split:not(.feature-split--reverse) .feature-image img { object-position: 54% center; }
.feature-content { display: flex; flex-direction: column; justify-content: center; padding: 70px max(32px, calc((100vw - var(--shell)) / 2)); padding-left: clamp(44px, 6vw, 100px); }
.feature-split--reverse .feature-content { order: -1; padding-right: clamp(44px, 6vw, 100px); padding-left: max(32px, calc((100vw - var(--shell)) / 2)); }
.feature-content h2 { margin: 24px 0; }
.feature-content p { max-width: 590px; color: var(--ink-muted); }

.bullet-specs { display: grid; gap: 0; margin: 26px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.bullet-specs li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.bullet-specs .icon { width: 17px; height: 17px; color: var(--red); }

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #fff;
}
.cta-band::after { content: "PEV"; position: absolute; right: -18px; bottom: -56px; color: rgba(255,255,255,.08); font-family: "Arial Narrow", Arial, sans-serif; font-size: 250px; font-weight: 800; line-height: 1; }
.cta-band .shell { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; min-height: 280px; padding-block: 54px; }
.cta-band h2 { max-width: 850px; }
.cta-band p { max-width: 680px; margin: 18px 0 0; color: rgba(255,255,255,.82); }

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-raised);
}
.page-hero::after { content: ""; position: absolute; inset: 0 0 0 65%; background: url("brand/pressure-pattern.svg") center/cover; opacity: .18; }
.page-hero .shell { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: end; min-height: 390px; padding-block: 72px 56px; }
.page-hero h1 { max-width: 900px; margin-top: 26px; font-size: 64px; }
.page-hero .lede { margin-top: 24px; }
.page-code { justify-self: end; align-self: start; padding-top: 8px; color: var(--ink-muted); font-family: "Arial Narrow", Arial, sans-serif; font-size: 11px; font-weight: 800; line-height: 1.8; letter-spacing: 0; }

.tab-shell { border: 1px solid var(--line); }
.tab-list { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.tab-list button { min-height: 68px; padding: 12px; border: 0; border-right: 1px solid var(--line); background: var(--paper-raised); color: var(--ink-muted); font-size: 12px; font-weight: 800; cursor: pointer; }
.tab-list button:last-child { border-right: 0; }
.tab-list button[aria-selected="true"] { background: var(--ink); color: var(--paper); }
.tab-panel { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 480px; }
.tab-panel[hidden] { display: none; }
.tab-copy { padding: 48px; }
.tab-copy h3 { margin: 16px 0 20px; font-size: 37px; }
.tab-copy p { color: var(--ink-muted); }
.tab-visual { min-height: 420px; background: var(--night); }
.tab-visual img { width: 100%; height: 100%; object-fit: cover; }

.spec-table { width: 100%; border-collapse: collapse; border-top: 2px solid var(--ink); }
.spec-table th, .spec-table td { padding: 17px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { width: 28%; color: var(--ink-muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.spec-table td { font-weight: 700; }

.process-grid { display: grid; grid-template-columns: 320px 1fr; gap: 70px; }
.process-grid h2 { position: sticky; top: 130px; }
.process-list { counter-reset: process; border-top: 1px solid var(--line-strong); }
.process-step { counter-increment: process; display: grid; grid-template-columns: 75px 1fr; gap: 24px; padding: 30px 0 42px; border-bottom: 1px solid var(--line); }
.process-step::before { content: "0" counter(process); color: var(--red); font-family: "Arial Narrow", Arial, sans-serif; font-size: 14px; font-weight: 800; letter-spacing: 0; }
.process-step h3 { margin-bottom: 12px; }
.process-step p { max-width: 720px; color: var(--ink-muted); }
.process-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.process-meta span { padding: 4px 8px; border: 1px solid var(--line); color: var(--ink-muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }

.trade-banner { position: relative; min-height: 610px; color: #fff; }
.trade-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.trade-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,12,11,.85), rgba(10,12,11,.12) 70%); }
.trade-banner-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; min-height: 610px; padding-block: 70px; }
.trade-banner h2 { max-width: 650px; margin: 22px 0; }
.trade-banner p { max-width: 570px; color: #e4e6e2; }

.route-board { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #444946; }
.route { padding: 28px; border-right: 1px solid #444946; }
.route:last-child { border-right: 0; }
.route .serial { color: var(--yellow); }
.route h3 { margin: 58px 0 15px; }
.route p { color: #afb4b0; font-size: 14px; }
.route-line { display: flex; align-items: center; gap: 10px; margin-top: 30px; color: var(--yellow); }
.route-line::before, .route-line::after { content: ""; width: 8px; height: 8px; border: 2px solid currentColor; border-radius: 50%; }
.route-line span { flex: 1; height: 1px; background: currentColor; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value { min-height: 310px; padding: 32px; background: var(--paper-raised); }
.value .serial { color: var(--red); }
.value h3 { margin: 90px 0 16px; }
.value p { color: var(--ink-muted); }

.quote-block { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.quote-block blockquote { margin: 0; font-family: "Arial Narrow", Arial, sans-serif; font-size: 47px; font-weight: 800; line-height: 1.06; }
.quote-block blockquote::before { content: "“"; display: block; height: 55px; color: var(--red); font-size: 90px; line-height: .8; }
.quote-block blockquote::after { content: "”"; display: block; height: 55px; margin-top: 14px; color: var(--red); font-size: 90px; line-height: .8; text-align: right; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.contact-aside { position: sticky; top: 126px; }
.contact-aside h2 { margin: 20px 0 24px; font-size: 41px; }
.contact-aside > p { color: var(--ink-muted); }
.contact-lines { margin-top: 36px; border-top: 1px solid var(--line); }
.contact-line { display: grid; grid-template-columns: 26px 1fr; gap: 13px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-line .icon { color: var(--red); }
.contact-line a { font-weight: 700; text-decoration: none; }

.contact-form { padding: 42px; border: 1px solid var(--line); background: var(--paper-raised); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.field { display: grid; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); outline: 2px solid color-mix(in srgb, var(--red) 26%, transparent); }
.field-error { margin: 0; color: var(--red); font-size: 12px; font-weight: 700; }
.field-hint { margin: 0; color: var(--ink-muted); font-size: 11px; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; }
.checkbox input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--red); }
.checkbox label { font-size: 12px; font-weight: 400; line-height: 1.5; letter-spacing: 0; text-transform: none; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-actions { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-top: 26px; }
.form-actions p { max-width: 410px; margin: 0; color: var(--ink-muted); font-size: 11px; }
.alert { margin-bottom: 24px; padding: 16px 18px; border-left: 4px solid var(--red); background: color-mix(in srgb, var(--red) 9%, var(--paper)); }
.alert--success { border-color: #2e8b57; background: color-mix(in srgb, #2e8b57 10%, var(--paper)); }
.alert p { margin: 0; }

.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.brand-asset { display: flex; flex-direction: column; min-height: 310px; border: 1px solid var(--line); background: var(--paper-raised); }
.brand-preview { display: grid; place-items: center; flex: 1; min-height: 220px; padding: 36px; overflow: hidden; background: #eeece6; }
.brand-preview--dark { background: #161817; }
.brand-preview img { max-width: 100%; max-height: 140px; }
.brand-preview--pattern { background: url("brand/pressure-pattern.svg") center/cover; }
.brand-preview--pattern img { width: 70px; height: 70px; }
.brand-asset-meta { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 17px 20px; border-top: 1px solid var(--line); }
.brand-asset-meta strong { display: block; font-size: 14px; }
.brand-asset-meta span { color: var(--ink-muted); font-size: 11px; }
.brand-asset-meta a { display: inline-flex; flex: 0 0 auto; color: var(--red); }
.swatches { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 40px; }
.swatch { min-height: 160px; padding: 14px; border: 1px solid var(--line); font-size: 11px; font-weight: 700; }
.swatch span { display: block; margin-top: 75px; }
.swatch--red { background: #d52b22; color: #fff; }.swatch--yellow { background: #f4b41a; color: #161817; }.swatch--ink { background: #161817; color: #fff; }.swatch--paper { background: #f2f0ea; color: #161817; }.swatch--steel { background: #68706b; color: #fff; }

.legal-content { padding-block: 80px 110px; }
.legal-content h1 { margin-bottom: 36px; font-size: 58px; }
.legal-content h2 { margin: 46px 0 16px; font-size: 29px; }
.legal-content p, .legal-content li { color: var(--ink-muted); }
.legal-content strong { color: var(--ink); }
.legal-notice { margin-bottom: 34px; padding: 18px 20px; border-left: 4px solid var(--yellow); background: var(--paper-raised); }

.site-footer { background: var(--night); color: #f1f0eb; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 54px; padding-block: 70px; }
.footer-brand picture { display: block; width: min(100%, 260px); margin-bottom: 20px; }
.footer-brand img { width: 100%; height: auto; }
.footer-brand p { color: #afb4b0; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-column a { color: #cdd0cd; font-size: 13px; text-decoration: none; }
.footer-column a:hover { color: var(--yellow); }
.footer-label { margin-bottom: 10px; color: var(--yellow); }
.footer-meta { display: flex; justify-content: space-between; padding-block: 16px 24px; border-top: 1px solid #3d423f; color: #8f9691; font-family: "Arial Narrow", Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal-links a { color: #cdd0cd; text-decoration: none; }
.footer-legal-links a:hover { color: var(--yellow); }

html[lang="en"] [data-i18n] { }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 200px 1fr auto; padding-inline: 20px; }
  .main-nav { gap: 17px; padding-inline: 18px; }
  .main-nav a { font-size: 12px; }
  .theme-switch { display: none; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.7fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 920px) {
  :root { --header-height: 72px; }
  .shell, .narrow { width: min(calc(100% - 40px), var(--shell)); }
  h2 { font-size: 42px; }
  .site-header { grid-template-columns: minmax(190px, 260px) 1fr; min-height: var(--header-height); padding: 10px 20px; }
  .brand { grid-column: 1; grid-row: 1; }
  .header-actions { position: absolute; top: 15px; right: 20px; grid-column: 2; grid-row: 1; justify-self: end; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 34px 20px;
    background: var(--paper-raised);
  }
  .nav-open .main-nav { display: flex; }
  .main-nav a { padding: 20px 0; border-bottom: 1px solid var(--line); font-family: "Arial Narrow", Arial, sans-serif; font-size: 27px; }
  .nav-open .menu-open-icon { display: none; }.nav-open .menu-close-icon { display: block; }
  .hero { min-height: calc(88svh - var(--header-height)); }
  .hero::after { width: 72%; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 64px 42px; }
  .hero-title { font-size: 64px; }
  .hero-index { display: none; }
  .data-strip { grid-template-columns: repeat(3, 1fr); }
  .data-strip > div:first-child { grid-column: 1 / -1; min-height: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .intro-grid { grid-template-columns: 1fr; gap: 35px; }
  .intro-grid .body-copy { columns: 1; }
  .feature-split, .feature-split--reverse { grid-template-columns: 1fr; }
  .feature-split--reverse .feature-content { order: initial; }
  .feature-image { min-height: 430px; }
  .feature-content, .feature-split--reverse .feature-content { padding: 65px 20px; }
  .page-hero .shell { grid-template-columns: 1fr; min-height: 340px; }
  .page-code { display: none; }
  .tab-panel { grid-template-columns: 1fr; }.tab-visual { min-height: 390px; }
  .process-grid { grid-template-columns: 1fr; gap: 42px; }.process-grid h2 { position: static; }
  .quote-block { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }.contact-aside { position: static; }
  .footer-main { grid-template-columns: repeat(3, 1fr); }.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .shell, .narrow { width: min(calc(100% - 32px), var(--shell)); }
  h2 { font-size: 35px; }
  .lede { font-size: 17px; }
  .site-header { grid-template-columns: minmax(164px, 1fr) auto; padding-inline: 16px; }
  .brand { max-width: 160px; }
  .header-actions > .language-switch { display: none; }
  .header-actions { right: 16px; }
  .mobile-nav-tools { display: flex; gap: 10px; margin-top: 28px; }
  .mobile-nav-tools .theme-switch { display: grid; }
  .hero { min-height: calc(84svh - var(--header-height)); max-height: 730px; }
  .hero::after { width: 100%; background: rgba(9,11,10,.66); }
  .hero-media img { object-position: 59% center; }
  .hero-grid { width: auto; margin-inline: 16px; align-items: center; padding-block: 44px; }
  .hero-copy, .hero-actions, .hero-actions .button { min-width: 0; max-width: 100%; }
  .hero .eyebrow { max-width: 310px; font-size: 9px; line-height: 1.55; }
  .hero-title { margin-bottom: 21px; font-size: 43px; line-height: .9; }
  .hero-subtitle { font-size: 17px; }
  .hero-actions { align-items: stretch; }.hero-actions .button { flex: 1 1 100%; }
  .data-strip { grid-template-columns: 1fr; }
  .data-strip > div:first-child { grid-column: auto; }.data-strip > div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding-block: 72px; }.section--tight { padding-block: 54px; }
  .section-heading { margin-bottom: 38px; }
  .intro-grid .display-copy { font-size: 29px; }
  .capability-grid { grid-template-columns: 1fr; }.capability { min-height: 285px; }.capability .icon { margin-bottom: 53px; }
  .feature-image { min-height: 340px; }.feature-content, .feature-split--reverse .feature-content { padding: 54px 16px; }
  .cta-band .shell { grid-template-columns: 1fr; min-height: 340px; }.cta-band::after { font-size: 150px; }
  .page-hero .shell { min-height: 330px; padding-block: 56px 42px; }.page-hero h1 { font-size: 43px; }
  .tab-list { grid-template-columns: repeat(2, 1fr); }.tab-list button { border-bottom: 1px solid var(--line); }.tab-copy { padding: 30px 22px; }.tab-copy h3 { font-size: 31px; }.tab-visual { min-height: 300px; }
  .spec-table th, .spec-table td { display: block; width: 100%; padding-inline: 0; }.spec-table th { padding-bottom: 2px; border-bottom: 0; }.spec-table td { padding-top: 2px; }
  .process-step { grid-template-columns: 48px 1fr; gap: 12px; }
  .trade-banner, .trade-banner-content { min-height: 560px; }.trade-banner img { object-position: 61% center; }
  .route-board { grid-template-columns: 1fr; }.route { border-right: 0; border-bottom: 1px solid #444946; }.route:last-child { border-bottom: 0; }
  .values-grid { grid-template-columns: 1fr; }.value { min-height: 260px; }.value h3 { margin-top: 60px; }
  .quote-block blockquote { font-size: 35px; }
  .contact-form { padding: 27px 19px; }.form-grid { grid-template-columns: 1fr; }.field--wide { grid-column: auto; }.form-actions { align-items: stretch; flex-direction: column; }.form-actions .button { width: 100%; }
  .brand-grid { grid-template-columns: 1fr; }.swatches { grid-template-columns: repeat(2, 1fr); }.swatch:last-child { grid-column: 1 / -1; }
  .legal-content h1 { font-size: 43px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding-block: 54px; }.footer-brand { grid-column: 1 / -1; }.footer-main .footer-column:last-child { grid-column: 1 / -1; }.footer-meta { gap: 15px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
