:root {
  --signal: #ffca0a;
  --signal-deep: #e6ac00;
  --ink: #101112;
  --graphite: #202225;
  --steel: #5f6469;
  --fog: #eceeed;
  --paper: #f7f7f4;
  --white: #ffffff;
  --shell: min(1420px, calc(100vw - 64px));
  --display: "Arial Black", "Segoe UI Black", Impact, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
  --utility: Consolas, "Courier New", monospace;
}

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

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 116px; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

a { color: inherit; }

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

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

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

.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;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 12px 16px;
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.utility-bar {
  min-height: 36px;
  padding: 0 max(32px, calc((100vw - 1420px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.utility-bar p { margin: 0; }
.utility-bar a { text-decoration: none; }
.utility-bar a:hover { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(16, 17, 18, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 17, 18, .985);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

.header-shell {
  width: var(--shell);
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  gap: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: -.05em;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 14px;
  height: 34px;
  display: inline-block;
  background: var(--signal);
  transform: skewX(-16deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  width: 5px;
  height: 26px;
  background: var(--signal);
}

.primary-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 4px;
}

.primary-nav a {
  position: relative;
  min-width: 100px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 4px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-width: 202px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--signal);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background-color 160ms ease;
}

.header-cta:hover { background: #ffdc4b; }

.nav-toggle { display: none; }

.header-actions {
  display: flex;
  align-items: stretch;
}

.language-switch {
  min-width: 104px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-left: 1px solid rgba(255, 255, 255, .12);
  color: #70757a;
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.language-switch button {
  min-width: 28px;
  min-height: 40px;
  padding: 0;
  border: 0;
  color: #aeb3b7;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  transition: color 160ms ease;
}

.language-switch button:hover { color: var(--white); }
.language-switch button.is-active { color: var(--signal); }

html[lang="es"] .hero h1 { font-size: clamp(56px, 5.8vw, 92px); }
html[lang="es"] .section-heading h2,
html[lang="es"] .support h2 { font-size: clamp(44px, 4.8vw, 70px); }

.hero {
  position: relative;
  min-height: 740px;
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000 0%, #000 38%, transparent 78%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: -10vw;
  width: 61vw;
  background: var(--signal);
  transform: skewX(-11deg);
  transform-origin: top;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 22px;
  background: repeating-linear-gradient(135deg, var(--ink) 0 14px, var(--signal) 14px 28px);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 24px;
}

.hero-copy {
  max-width: 720px;
  padding: 76px 0 94px;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 38px;
  height: 5px;
  display: inline-block;
  background: var(--signal);
  transform: skewX(-22deg);
}

.eyebrow--dark { color: var(--steel); }
.eyebrow--dark > span:first-child { background: var(--ink); }

.hero h1,
.section-heading h2,
.work-copy h2,
.support h2,
.quote h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .88;
  text-transform: uppercase;
}

.hero h1 { font-size: clamp(64px, 7vw, 112px); }

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--signal);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 4px;
  right: -10px;
  bottom: -18px;
  height: 7px;
  background: var(--signal);
  transform: skewX(-35deg);
}

.hero-lede {
  max-width: 610px;
  margin: 42px 0 30px;
  color: #d5d7d6;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
}

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

.button {
  min-height: 56px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 2px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--yellow { color: var(--ink); background: var(--signal); }
.button--yellow:hover { background: #ffdc4b; }
.button--ghost { color: var(--white); border-color: rgba(255, 255, 255, .65); background: transparent; }
.button--ghost:hover { color: var(--ink); background: var(--white); }

.hero-product {
  position: relative;
  min-height: 620px;
  align-self: end;
  display: grid;
  align-items: end;
}

.hero-product .hero-video {
  position: relative;
  z-index: 3;
  width: min(760px, 55vw);
  aspect-ratio: 16 / 9;
  max-height: 590px;
  margin: auto -18px 70px auto;
  display: block;
  object-fit: cover;
  background: #050505;
  border: 10px solid rgba(255, 255, 255, .96);
  box-shadow: 18px 28px 26px rgba(0, 0, 0, .34);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  inset: 12% -7% 9% 3%;
  border: 2px solid rgba(16, 17, 18, .25);
  transform: skewX(-7deg);
}

.model-stamp {
  position: absolute;
  z-index: 4;
  top: 68px;
  right: 0;
  width: 155px;
  padding: 14px 17px 12px;
  color: var(--white);
  background: var(--ink);
  border-left: 8px solid var(--white);
  transform: rotate(2deg);
}

.model-stamp span { display: block; font-family: var(--utility); font-size: 10px; letter-spacing: .12em; }
.model-stamp strong { display: block; margin-top: 2px; font-family: var(--display); font-size: 29px; line-height: 1; }

.hero-caption {
  position: absolute;
  z-index: 5;
  left: 38px;
  bottom: 51px;
  margin: 0;
  padding: 12px 15px 11px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--utility);
  transform: rotate(-1.5deg);
}

.hero-caption b { display: block; font-family: var(--display); font-size: 15px; text-transform: uppercase; }
.hero-caption span { display: block; color: #c9cbca; font-size: 10px; }

.proof-strip { color: var(--white); background: var(--graphite); }

.proof-shell {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-shell article {
  min-height: 138px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.proof-shell article:first-child { border-left: 1px solid rgba(255, 255, 255, .13); }

.proof-shell strong {
  color: var(--signal);
  font-family: var(--display);
  font-size: 43px;
  letter-spacing: -.06em;
  line-height: 1;
}

.proof-shell strong span { margin-left: 3px; font-family: var(--utility); font-size: 12px; letter-spacing: 0; }
.proof-shell p { margin: 0; color: #ced0d0; font-size: 13px; font-weight: 650; }

.section { padding: 112px 0; }
.section-shell { width: var(--shell); margin: 0 auto; }

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

.section-heading h2,
.support h2 { font-size: clamp(48px, 5.5vw, 80px); }
.section-heading > p { max-width: 580px; margin: 0 0 4px; color: var(--steel); font-size: 17px; line-height: 1.65; }
.section-heading--compact { margin-bottom: 42px; }

.filter-bar {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #c9ccca;
  border-bottom: 1px solid #c9ccca;
}

.filter-button {
  min-height: 58px;
  padding: 0 25px;
  border: 0;
  border-right: 1px solid #c9ccca;
  background: transparent;
  color: var(--steel);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button span { margin-left: 12px; color: #989c99; }
.filter-button:hover { color: var(--ink); }
.filter-button.is-active { color: var(--ink); background: var(--signal); }
.filter-button.is-active span { color: var(--ink); }

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

.product-card {
  min-height: 660px;
  display: grid;
  grid-template-rows: minmax(350px, 1fr) auto;
  background: var(--white);
  border: 1px solid #dcdfdd;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card[hidden] { display: none; }

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(20, 23, 22, .1);
}

.product-media {
  position: relative;
  min-height: 360px;
  padding: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f0f1ee;
}

.product-media::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 28px;
  width: 15px;
  height: 94px;
  background: var(--signal);
  transform: skewX(-13deg);
  transition: left 180ms ease;
}

.product-card:hover .product-media::before { left: 20px; }

.product-media img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 280ms ease;
}

.product-card:hover .product-media img { transform: scale(1.035); }

.product-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 8px 11px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.product-copy { padding: 31px 34px 34px; }
.product-code { margin: 0 0 8px; color: var(--steel); font-family: var(--utility); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.product-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -.05em;
  line-height: 1;
  text-transform: uppercase;
}

.product-copy h3 span { color: var(--signal-deep); }
.product-copy > p:not(.product-code) { min-height: 48px; margin: 15px 0 21px; color: var(--steel); }

.product-copy dl {
  margin: 0 0 23px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d9dcda;
  border-bottom: 1px solid #d9dcda;
}

.product-copy dl div { padding: 13px 12px 12px 0; }
.product-copy dt { color: #777c79; font-family: var(--utility); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-copy dd { margin: 3px 0 0; font-size: 13px; font-weight: 800; }

.text-link {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 0;
  border-bottom: 3px solid var(--signal);
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 2;
  text-transform: uppercase;
  cursor: pointer;
}

.text-link span { transition: transform 140ms ease; }
.text-link:hover span { transform: translateX(5px); }

.work-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  color: var(--white);
  background: var(--ink);
}

.work-photo { position: relative; min-height: 760px; overflow: hidden; }
.work-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset -40px 0 60px rgba(0, 0, 0, .24); }
.work-photo img { width: 100%; height: 100%; object-fit: cover; }

.work-index {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: -52px;
  color: var(--signal);
  font-family: var(--display);
  font-size: 180px;
  letter-spacing: -.1em;
  line-height: 1;
  opacity: .92;
}

.work-copy {
  padding: 90px max(48px, calc((100vw - 1420px) / 2)) 90px 7vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.work-copy h2 { font-size: clamp(52px, 6vw, 86px); }
.work-intro { max-width: 620px; margin: 28px 0 34px; color: #c8cbca; font-size: 18px; line-height: 1.62; }

.feature-list { width: 100%; margin: 0 0 35px; padding: 0; list-style: none; border-top: 1px solid #44484a; }
.feature-list li { padding: 19px 0; display: grid; grid-template-columns: 45px 1fr; gap: 15px; border-bottom: 1px solid #44484a; }
.feature-list > li > span { color: var(--signal); font-family: var(--utility); font-size: 12px; font-weight: 800; }
.feature-list strong { display: block; margin-bottom: 4px; font-size: 16px; text-transform: uppercase; }
.feature-list p { margin: 0; color: #aeb2b0; font-size: 14px; }

.compare { background: var(--fog); }

.comparison-wrap {
  overflow-x: auto;
  border-top: 7px solid var(--ink);
  box-shadow: 0 1px 0 #c9ccca;
}

table { width: 100%; min-width: 940px; border-collapse: collapse; background: var(--white); }
th, td { padding: 19px 22px; text-align: left; border-right: 1px solid #dfe1df; border-bottom: 1px solid #dfe1df; }
thead th { color: var(--ink); background: var(--signal); font-family: var(--utility); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
tbody th { min-width: 190px; font-family: var(--display); font-size: 17px; text-transform: uppercase; }
tbody th b { color: var(--signal-deep); }
tbody td { color: #4d524f; font-size: 14px; }
tbody tr:hover { background: #fffbed; }
.table-note { margin: 14px 0 0; color: #737875; font-size: 12px; }

.applications { background: var(--paper); }

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cfd2d0;
  border-left: 1px solid #cfd2d0;
}

.application-grid article {
  position: relative;
  min-height: 315px;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid #cfd2d0;
  border-bottom: 1px solid #cfd2d0;
  transition: color 180ms ease, background-color 180ms ease;
}

.application-grid article:hover { color: var(--white); background: var(--ink); }
.app-number { font-family: var(--utility); font-size: 12px; font-weight: 800; }
.application-grid h3 { margin: 82px 0 15px; font-family: var(--display); font-size: 28px; letter-spacing: -.04em; line-height: 1; text-transform: uppercase; }
.application-grid p { margin: 0; color: var(--steel); font-size: 14px; line-height: 1.6; }
.application-grid article:hover p { color: #c6cac8; }
.app-line { position: absolute; left: 28px; right: 28px; bottom: 26px; height: 6px; background: var(--signal); transform: skewX(-25deg); }

.support { background: var(--signal); }
.support .eyebrow--dark > span:first-child { background: var(--ink); }
.support h2 { margin-bottom: 46px; }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }

.support-grid article {
  min-height: 340px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.support-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 2px solid var(--ink); font-family: var(--display); font-size: 23px; }
.support-grid h3 { margin: 65px 0 12px; font-family: var(--display); font-size: 28px; letter-spacing: -.04em; line-height: 1; text-transform: uppercase; }
.support-grid p { margin: 0; color: #403b27; font-size: 14px; line-height: 1.6; }
.support-grid a { margin-top: auto; align-self: flex-start; font-size: 12px; font-weight: 900; letter-spacing: .03em; text-decoration-thickness: 2px; text-underline-offset: 6px; text-transform: uppercase; }

.quote { color: var(--white); background: var(--graphite); }

.quote-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: 104px 0;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: 10vw;
}

.quote-copy { padding-top: 12px; }
.quote h2 { font-size: clamp(54px, 6vw, 88px); }
.quote-copy > p:not(.eyebrow) { max-width: 520px; margin: 28px 0 24px; color: #c1c5c3; font-size: 17px; line-height: 1.65; }
.quote-copy > a { color: var(--signal); font-family: var(--utility); font-weight: 800; text-underline-offset: 5px; }

.quote-form { padding: 38px; background: var(--white); color: var(--ink); box-shadow: 16px 16px 0 var(--signal); }
.quote-form label { margin-bottom: 18px; display: grid; gap: 7px; font-family: var(--utility); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #c7cac8; border-radius: 0; background: #f9faf8; color: var(--ink); font-family: var(--body); font-size: 15px; text-transform: none; }
.quote-form input, .quote-form select { height: 48px; padding: 0 13px; }
.quote-form textarea { padding: 12px 13px; resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--ink); outline: 3px solid rgba(255, 202, 10, .55); }
.quote-form .button { width: 100%; border: 0; }
.form-note { margin: 13px 0 0; color: #737875; font-size: 11px; text-align: center; }
.form-note.is-success { color: #1c653c; font-weight: 700; }

.site-footer { padding: 0 max(32px, calc((100vw - 1420px) / 2)); color: var(--white); background: var(--ink); }
.footer-top { min-height: 150px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 65px; border-bottom: 1px solid #3a3d3f; }
.brand--footer { font-size: 33px; }
.footer-top > p { margin: 0; color: #9da19f; }
.footer-top-link { color: var(--signal); font-size: 12px; font-weight: 900; text-decoration: none; text-transform: uppercase; }

.footer-grid { padding: 58px 0 62px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 45px; }
.footer-grid h2 { margin: 0 0 19px; color: var(--signal); font-family: var(--utility); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.footer-grid a { width: fit-content; margin: 9px 0; display: block; color: #b8bcba; font-size: 13px; text-decoration: none; }
.footer-grid a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #777c79; border-top: 1px solid #3a3d3f; font-family: var(--utility); font-size: 10px; text-transform: uppercase; }

.product-dialog {
  width: min(1050px, calc(100vw - 44px));
  max-height: calc(100vh - 44px);
  padding: 0;
  grid-template-columns: 1.1fr .9fr;
  overflow: auto;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.product-dialog[open] { display: grid; }
.product-dialog::backdrop { background: rgba(5, 6, 6, .82); backdrop-filter: blur(3px); }
.dialog-close { position: absolute; z-index: 4; top: 13px; right: 13px; width: 44px; height: 44px; border: 0; background: var(--ink); color: var(--white); font-size: 28px; line-height: 1; cursor: pointer; }
.dialog-media { min-height: 590px; padding: 44px; display: grid; place-items: center; background: #eff1ee; }
.dialog-media img { width: 100%; height: 500px; object-fit: contain; mix-blend-mode: multiply; }
.dialog-copy { padding: 74px 48px 48px; }
.dialog-copy h2 { margin: 0 0 20px; font-family: var(--display); font-size: 48px; letter-spacing: -.055em; line-height: .95; text-transform: uppercase; }
.dialog-copy > p:not(.product-code) { color: var(--steel); line-height: 1.65; }
.dialog-copy dl { margin: 30px 0; border-top: 1px solid #d4d7d5; }
.dialog-copy dl div { padding: 13px 0; display: flex; justify-content: space-between; gap: 25px; border-bottom: 1px solid #d4d7d5; }
.dialog-copy dt { color: var(--steel); font-size: 12px; }
.dialog-copy dd { margin: 0; font-weight: 800; }

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 1000px); }
  .header-shell { gap: 20px; }
  .primary-nav a { min-width: 0; padding: 0 11px; }
  .header-cta { min-width: 174px; padding: 0 17px; }
  .language-switch { min-width: 90px; padding: 0 10px; }
  .hero { min-height: 680px; }
  .hero-shell { grid-template-columns: .9fr 1.1fr; }
  .hero-product { min-height: 560px; }
  .proof-shell article { padding: 22px 18px; }
  .proof-shell strong { font-size: 35px; }
  .section-heading { gap: 38px; }
  .work-copy { padding-left: 5vw; padding-right: 32px; }
  .application-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 32px); }
  .utility-bar { min-height: 32px; padding: 0 16px; font-size: 9px; }
  .utility-bar p { display: none; }
  .utility-bar { justify-content: center; }
  .header-shell { min-height: 70px; grid-template-columns: 1fr auto auto; gap: 4px; }
  .brand { font-size: 24px; }
  .brand-mark { height: 30px; }
  .header-cta { display: none; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .language-switch { min-width: 84px; min-height: 70px; padding: 0 5px; border-left: 0; }
  .nav-toggle { width: 48px; height: 48px; padding: 12px; display: grid; grid-column: 3; grid-row: 1; align-self: center; align-content: center; gap: 5px; border: 0; background: transparent; }
  .nav-toggle span:not(.sr-only) { height: 2px; display: block; background: var(--white); transition: transform 160ms ease, opacity 160ms ease; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; z-index: 45; top: 102px; left: 0; right: 0; bottom: 0; padding: 26px 16px; display: none; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; background: var(--ink); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { min-height: 68px; justify-content: flex-start; border-bottom: 1px solid #383b3d; font-family: var(--display); font-size: 25px; text-transform: uppercase; }
  html[lang="es"] .hero h1 { font-size: clamp(48px, 12vw, 72px); }
  html[lang="es"] .section-heading h2,
  html[lang="es"] .support h2 { font-size: clamp(40px, 10.5vw, 60px); }
  .hero { min-height: auto; }
  .hero::before { top: auto; right: -24%; bottom: 0; width: 120%; height: 43%; transform: skewY(-6deg); }
  .hero::after { width: 100%; height: 14px; }
  .hero-shell { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding: 72px 0 20px; }
  .hero h1 { font-size: clamp(54px, 15vw, 84px); }
  .hero-lede { margin-top: 35px; font-size: 17px; }
  .hero-product { min-height: 410px; }
  .hero-product .hero-video { width: min(610px, 100%); max-height: none; margin: auto 0 38px auto; border-width: 8px; }
  .hero-panel { inset: 10% -8% 10% 2%; }
  .model-stamp { top: 37px; right: 0; width: 132px; }
  .model-stamp strong { font-size: 24px; }
  .hero-caption { left: 4px; bottom: 35px; }
  .proof-shell { grid-template-columns: repeat(2, 1fr); }
  .proof-shell article, .proof-shell article:first-child { min-height: 110px; border: 1px solid rgba(255,255,255,.13); border-top: 0; }
  .section { padding: 78px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 40px; }
  .section-heading h2, .support h2 { font-size: clamp(45px, 12vw, 67px); }
  .section-heading > p { font-size: 15px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 0; grid-template-rows: 310px auto; }
  .product-media { min-height: 310px; padding: 28px; }
  .product-media img { height: 250px; }
  .work-band { grid-template-columns: 1fr; }
  .work-photo { min-height: 470px; }
  .work-copy { padding: 70px 20px 76px; }
  .work-copy h2 { font-size: clamp(48px, 13vw, 70px); }
  .support-grid { grid-template-columns: 1fr; }
  .support-grid article { min-height: 275px; }
  .support-grid h3 { margin-top: 42px; }
  .quote-shell { padding: 76px 0 90px; grid-template-columns: 1fr; gap: 48px; }
  .quote-form { padding: 28px; box-shadow: 10px 10px 0 var(--signal); }
  .footer-top { min-height: 180px; grid-template-columns: 1fr auto; gap: 18px; align-content: center; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .product-dialog[open] { display: block; }
  .dialog-media { min-height: 330px; padding: 30px; }
  .dialog-media img { height: 290px; }
  .dialog-copy { padding: 42px 28px 35px; }
}

@media (max-width: 520px) {
  .hero-copy { padding-top: 56px; }
  .hero h1 { font-size: clamp(47px, 14vw, 68px); }
  html[lang="es"] .hero h1 { font-size: clamp(39px, 10.7vw, 56px); }
  .hero h1 em::after { bottom: -12px; height: 5px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-product { min-height: 340px; }
  .hero-product .hero-video { width: 100%; margin-bottom: 44px; border-width: 6px; }
  .model-stamp { top: 18px; }
  .proof-shell article { padding: 19px 14px; gap: 11px; }
  .proof-shell strong { font-size: 30px; }
  .proof-shell p { font-size: 11px; }
  .filter-bar { display: grid; grid-template-columns: 1fr; }
  .filter-button { justify-content: space-between; border-right: 0; border-bottom: 1px solid #c9ccca; text-align: left; }
  .product-copy { padding: 27px 24px 29px; }
  .product-copy dl { grid-template-columns: 1fr; }
  .product-copy dl div { display: flex; justify-content: space-between; border-bottom: 1px solid #e1e3e1; }
  .product-copy dl div:last-child { border-bottom: 0; }
  .work-photo { min-height: 370px; }
  .work-index { font-size: 130px; }
  .application-grid { grid-template-columns: 1fr; }
  .application-grid article { min-height: 245px; }
  .application-grid h3 { margin-top: 52px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 22px; }
  .footer-top { grid-template-columns: 1fr; padding: 38px 0; }
  .footer-top-link { margin-top: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 31px; }
  .footer-bottom { padding: 20px 0; display: block; }
  .dialog-copy h2 { font-size: 39px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
