:root {
  --ink: #122430;
  --ink-deep: #0a171f;
  --slate: #40535c;
  --muted: #74828a;
  --paper: #f5f4ed;
  --paper-2: #fbfaf6;
  --line: #dedfd8;
  --line-dark: #30434c;
  --accent: #d37a42;
  --accent-deep: #b75c2f;
  --blue: #87b9c3;
  --green: #a6b9a2;
  --shadow: 0 20px 60px rgba(20, 31, 35, 0.1);
  --shadow-small: 0 8px 30px rgba(20, 31, 35, 0.08);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --container: 1200px;
  --serif: Georgia, "Times New Roman", serif;
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* Verified SRRP identity and customer-supplied manufacturing evidence. */
.ind-film-section {
  background: var(--ind-deep);
  color: #fff;
}
.ind-film-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: 84px;
  align-items: center;
}
.ind-film-copy h2 {
  max-width: 580px;
  color: #fff;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.04;
}
.ind-film-copy > p:not(.ind-kicker) {
  max-width: 560px;
  margin-top: 24px;
  color: #aeb7bb;
  font-size: 15px;
  line-height: 1.72;
}
.ind-film-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 31px;
  border-top: 1px solid #323a3f;
}
.ind-film-points span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid #323a3f;
  color: #d7dcde;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}
.ind-film-points span:nth-child(odd) {
  border-right: 1px solid #323a3f;
}
.ind-film-points span:nth-child(even) {
  padding-left: 16px;
}
.ind-film-copy .ind-text-link {
  color: #fff;
}
.ind-film-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #343d42;
  background: #080a0c;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}
.ind-video-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.ind-video-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 10, 0.52) 0%,
    rgba(5, 8, 10, 0.05) 48%,
    rgba(5, 8, 10, 0.66) 100%
  );
  transition: opacity 180ms ease;
}
.ind-film-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #080a0c;
  object-fit: cover;
}
.ind-video-thumbnail-meta {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  pointer-events: none;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}
.ind-video-thumbnail-meta strong {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(12, 16, 18, 0.35);
  color: #fff;
  font-size: 9px;
}
.ind-video-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  min-width: 280px;
  display: none;
  align-items: center;
  gap: 15px;
  padding: 13px 17px 13px 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(12, 16, 18, 0.82);
  color: #fff;
  text-align: left;
  transform: translate(-50%, -50%);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}
.js .ind-video-play {
  display: flex;
}
.ind-video-play:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(12, 16, 18, 0.95);
}
.ind-video-play-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ind-orange);
}
.ind-video-play-icon::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}
.ind-video-play > span:last-child {
  display: grid;
  gap: 5px;
}
.ind-video-play strong {
  font-size: 12px;
  letter-spacing: 0.02em;
}
.ind-video-play small {
  color: #aeb7bb;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.ind-video-stage.is-playing::after,
.ind-video-stage.is-playing .ind-video-thumbnail-meta,
.ind-video-stage.is-playing .ind-video-play {
  opacity: 0;
  pointer-events: none;
}
.ind-film-media figcaption {
  padding: 13px 17px;
  border-top: 1px solid #343d42;
  color: #9aa4a8;
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.lux-video-media {
  position: relative;
  margin: 0;
  background: #111517;
}
.lux-video-media video {
  display: block;
  width: 100%;
  height: 520px;
  background: #111517;
  object-fit: cover;
}
.lux-video-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 16px;
  background: rgba(13, 17, 19, 0.86);
  color: #e9ecec;
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.lux-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.lux-evidence-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #151a1d;
}
.lux-evidence-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 11, 13, 0.92), transparent 62%);
}
.lux-evidence-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 500ms ease;
}
.lux-evidence-card:hover img {
  transform: scale(1.025);
}
.lux-evidence-card > div {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 25px;
  left: 26px;
}
.lux-evidence-card span {
  color: #ff8a63;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.lux-evidence-card h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1.08;
}

@media (max-width: 900px) {
  .ind-film-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 640px) {
  .ind-film-copy h2 {
    font-size: 39px;
  }
  .ind-film-points {
    grid-template-columns: 1fr;
  }
  .ind-film-points span:nth-child(odd) {
    border-right: 0;
  }
  .ind-film-points span:nth-child(even) {
    padding-left: 0;
  }
  .ind-video-thumbnail-meta {
    top: 13px;
    right: 13px;
    left: 13px;
  }
  .ind-video-thumbnail-meta > span {
    max-width: 180px;
    line-height: 1.4;
  }
  .ind-video-play {
    min-width: 0;
    width: max-content;
    max-width: calc(100% - 28px);
    gap: 11px;
    padding: 10px 14px 10px 10px;
  }
  .ind-video-play-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .ind-video-play small {
    display: none;
  }
  .lux-video-media video {
    height: 340px;
  }
  .lux-evidence-grid {
    grid-template-columns: 1fr;
  }
  .lux-evidence-card,
  .lux-evidence-card img {
    min-height: 270px;
    height: 270px;
  }
  .lux-evidence-card h3 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lux-evidence-card img {
    transition: none;
  }
  .ind-video-stage::after,
  .ind-video-thumbnail-meta,
  .ind-video-play {
    transition: none;
  }
}

/* Homepage cinematic hero — a full-width industrial image with overlaid RFQ content. */
.industrial-page .ind-hero {
  padding: 0;
  background: var(--ind-white);
}
.industrial-page .ind-hero-grid {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin: 0;
  overflow: hidden;
}
.industrial-page .ind-hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--ind-shell), calc(100% - 64px));
  max-width: none;
  margin-inline: auto;
  padding: 104px 0 116px;
  color: #fff;
}
.industrial-page .ind-hero-copy > * {
  max-width: 610px;
}
.industrial-page .ind-hero .ind-kicker {
  color: var(--ind-orange-bright);
}
.industrial-page .ind-hero h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}
.industrial-page .ind-hero h1 em {
  color: #ff6940;
}
.industrial-page .ind-hero-lede {
  color: #d4dcdf;
}
.industrial-page .ind-hero .ind-button-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(10, 14, 17, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
}
.industrial-page .ind-hero .ind-button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.industrial-page .ind-hero-mini {
  color: #d4dcdf;
}
.industrial-page .ind-hero-mini span + span::before {
  color: #7f898e;
}
.industrial-page .ind-hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  background: var(--ind-deep);
}
.industrial-page .ind-hero-visual picture,
.industrial-page .ind-hero-visual img {
  width: 100%;
  height: 100%;
}
.industrial-page .ind-hero-visual img {
  object-fit: cover;
  object-position: 60% 52%;
}
.industrial-page .ind-hero-visual::after {
  background:
    linear-gradient(
      90deg,
      rgba(7, 10, 12, 0.96) 0%,
      rgba(7, 10, 12, 0.88) 31%,
      rgba(7, 10, 12, 0.46) 55%,
      rgba(7, 10, 12, 0.1) 78%
    ),
    linear-gradient(0deg, rgba(7, 10, 12, 0.55), transparent 44%);
}
.industrial-page .ind-visual-badge {
  right: max(32px, calc((100vw - var(--ind-shell)) / 2));
  bottom: 32px;
}
.industrial-page .ind-proof-strip {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .industrial-page .ind-hero-grid {
    min-height: 790px;
  }
  .industrial-page .ind-hero-copy {
    width: calc(100% - 64px);
    padding: 82px 0 210px;
  }
  .industrial-page .ind-hero-visual,
  .industrial-page .ind-hero-visual img {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .industrial-page .ind-hero {
    padding-top: 0;
  }
  .industrial-page .ind-hero-grid {
    min-height: 820px;
  }
  .industrial-page .ind-hero-copy {
    width: calc(100% - 64px);
    max-width: none;
    padding: 72px 0 210px;
  }
  .industrial-page .ind-hero-visual {
    min-height: 0;
  }
  .industrial-page .ind-hero-visual img {
    height: 100%;
    object-position: 64% 52%;
  }
}

@media (max-width: 640px) {
  .industrial-page .ind-hero {
    padding-top: 0;
  }
  .industrial-page .ind-hero-grid {
    min-height: 900px;
  }
  .industrial-page .ind-hero-copy {
    width: calc(100% - 36px);
    padding: 62px 0 210px;
  }
  .industrial-page .ind-hero-copy > * {
    max-width: none;
  }
  .industrial-page .ind-hero-visual {
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .industrial-page .ind-hero-visual img {
    min-height: 0;
    height: 100%;
    object-position: 62% 52%;
  }
  .industrial-page .ind-hero-visual::after {
    background:
      linear-gradient(
        180deg,
        rgba(7, 10, 12, 0.91) 0%,
        rgba(7, 10, 12, 0.82) 64%,
        rgba(7, 10, 12, 0.5) 100%
      ),
      linear-gradient(90deg, rgba(7, 10, 12, 0.45), transparent 88%);
  }
  .industrial-page .ind-visual-badge {
    right: 18px;
    bottom: 18px;
  }
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
img,
video {
  max-width: 100%;
  display: block;
}
::selection {
  background: rgba(211, 122, 66, 0.25);
}

.topbar {
  min-height: 34px;
  display: flex;
  align-items: center;
  background: var(--ink-deep);
  color: #dce4e3;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar-inner,
.nav-inner,
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(245, 244, 237, 0.92);
  border-bottom: 1px solid rgba(18, 36, 48, 0.12);
  backdrop-filter: blur(18px);
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}
.brand-mark {
  width: 34px;
  height: 34px;
  position: relative;
  border-radius: 50%;
  background: var(--accent);
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  left: 5px;
  top: 15px;
  background: var(--ink);
  transform: rotate(45deg);
}
.brand-name {
  display: grid;
  gap: 0;
  line-height: 1;
}
.brand-name strong {
  font-size: 20px;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.brand-name span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 13px;
  color: var(--slate);
}
.site-nav a {
  position: relative;
  padding: 27px 0;
  transition: color 0.2s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--accent);
}
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border 0.2s ease,
    color 0.2s ease;
}
.nav-cta {
  padding: 12px 17px;
  background: var(--ink);
  color: #fff;
}
.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}
.nav-cta:hover {
  background: var(--accent-deep);
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 9px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.button {
  padding: 14px 21px;
}
.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 7px 20px rgba(183, 92, 47, 0.2);
}
.button-primary:hover {
  background: var(--accent-deep);
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: var(--ink-deep);
}
.button-light {
  background: #fff;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.45);
}
.button-outline {
  border-color: var(--line-dark);
  color: var(--ink);
}
.button-outline:hover {
  background: var(--ink);
  color: #fff;
}
.button-ghost {
  padding: 0;
  color: var(--accent-deep);
  border: 0;
  border-radius: 0;
}
.button-ghost::after {
  content: "↗";
  font-size: 17px;
  transition: transform 0.2s ease;
}
.button-ghost:hover::after {
  transform: translate(3px, -3px);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow-light {
  color: #f0b484;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(42px, 6vw, 78px);
}
h2 {
  font-size: clamp(34px, 4.6vw, 58px);
}
h3 {
  font-size: clamp(25px, 3vw, 36px);
}
h4 {
  font-size: 22px;
}
p {
  margin: 0;
}
.lede {
  max-width: 660px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.7;
}
.lede-light {
  color: #cad5d5;
}
.small-copy {
  color: var(--muted);
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 68%);
}
.hero-grid {
  min-height: 640px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 60px;
  padding-top: 75px;
  padding-bottom: 75px;
}
.hero-copy {
  max-width: 620px;
}
.hero h1 {
  max-width: 620px;
}
.hero h1 em {
  color: #f0b484;
  font-style: normal;
}
.hero .lede {
  margin-top: 25px;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-note {
  margin-top: 24px;
  color: #94a6a7;
  font-size: 12px;
}
.hero-visual {
  position: relative;
  min-height: 500px;
}
.hero-image {
  position: absolute;
  inset: 0 0 0 10%;
  overflow: hidden;
  border-radius: 2px 0 0 2px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 23, 31, 0.85), rgba(10, 23, 31, 0.04) 50%),
    linear-gradient(0deg, rgba(10, 23, 31, 0.5), transparent 45%);
}
.hero-spec {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 0;
  display: grid;
  gap: 7px;
  padding: 15px 18px;
  border-left: 2px solid var(--accent);
  background: rgba(10, 23, 31, 0.78);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-spec strong {
  color: #fff;
  font-size: 12px;
}
.hero-orbit {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -30px;
  top: -30px;
  border: 1px solid rgba(240, 180, 132, 0.6);
  border-radius: 50%;
}
.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(240, 180, 132, 0.28);
  border-radius: 50%;
}
.hero-orbit::after {
  inset: 90px;
  background: var(--accent);
  border: 0;
  box-shadow:
    0 0 0 10px rgba(211, 122, 66, 0.16),
    0 0 0 22px rgba(211, 122, 66, 0.09);
}

.section {
  padding: 120px 0;
}
.section-tight {
  padding: 75px 0;
}
.section-dark {
  color: #fff;
  background: var(--ink);
}
.section-dark .detail-list,
.section-dark .detail-list div {
  border-color: rgba(255, 255, 255, 0.24);
}
.section-dark .detail-list dt {
  color: #aebbc0;
}
.section-dark .detail-list dd {
  color: #eef2f3;
}
.section-paper-2 {
  background: var(--paper-2);
}
.section-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.section-intro .lede {
  justify-self: end;
}
.section-heading {
  max-width: 650px;
}
.section-heading h2 {
  margin-bottom: 18px;
}
.section-rule {
  height: 1px;
  background: var(--line);
  margin: 30px 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.metric {
  padding: 28px 25px;
  border-right: 1px solid var(--line-dark);
}
.metric:last-child {
  border-right: 0;
}
.metric strong {
  display: block;
  font-family: var(--serif);
  color: #fff;
  font-size: 43px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.metric span {
  display: block;
  margin-top: 3px;
  color: #9eb0b0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  padding: 29px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: #c1c8c4;
  box-shadow: var(--shadow-small);
}
.card-dark {
  background: #192e38;
  border-color: var(--line-dark);
  color: #fff;
}
.card-dark:hover {
  border-color: #6b8588;
}
.card-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.card-number span:last-child {
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
}
.card h3 {
  margin-bottom: 12px;
}
.card p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}
.card-dark p {
  color: #bfd0cf;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.card-link::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.2s ease;
}
.card-link:hover::after {
  transform: translateX(4px);
}

.capability-symbol {
  position: relative;
  width: 65px;
  height: 65px;
  margin-bottom: 34px;
  border: 1px solid rgba(211, 122, 66, 0.5);
  border-radius: 50%;
}
.capability-symbol::before,
.capability-symbol::after {
  content: "";
  position: absolute;
  border: 1px solid var(--accent);
}
.capability-symbol::before {
  inset: 13px;
  transform: rotate(45deg);
}
.capability-symbol::after {
  inset: 25px 7px;
  border-left: 0;
  border-right: 0;
  transform: rotate(-45deg);
}

.application-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.application {
  min-height: 265px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  overflow: hidden;
  background: var(--paper);
}
.application::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: 25px;
  right: 22px;
  border: 1px solid rgba(18, 36, 48, 0.18);
  border-radius: 50%;
}
.application::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  top: 70px;
  right: 68px;
  border: 1px solid rgba(211, 122, 66, 0.65);
  transform: rotate(45deg);
}
.application:nth-child(2)::before {
  border-radius: 10px;
  transform: rotate(30deg);
}
.application:nth-child(3)::before {
  width: 110px;
  border-radius: 6px;
  transform: skewX(-20deg);
}
.application:nth-child(4)::before {
  border-radius: 4px;
  transform: rotate(45deg);
}
.application > * {
  position: relative;
  z-index: 1;
}
.application h3 {
  max-width: 280px;
}
.application p {
  max-width: 285px;
  margin-top: 9px;
  color: var(--slate);
  font-size: 13px;
}
.application .button-ghost {
  margin-top: 16px;
}

.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  gap: 0;
}
.process::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: rgba(240, 180, 132, 0.36);
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-dot {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--ink);
  color: #f0b484;
  font-family: var(--serif);
  font-size: 19px;
}
.process-step strong {
  display: block;
  color: #fff;
  font-size: 12px;
}
.process-step span {
  display: block;
  margin-top: 4px;
  color: #93a7a8;
  font-size: 11px;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #dfe1db;
}
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.split-reverse > :first-child {
  order: 2;
}
.split-reverse > :last-child {
  order: 1;
}
.split-copy h2 {
  margin-bottom: 20px;
}
.split-copy .lede {
  margin-bottom: 28px;
}
.detail-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}
.detail-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.detail-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.detail-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.page-hero {
  padding: 100px 0 92px;
  background: var(--ink);
  color: #fff;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
}
.page-hero h1 {
  max-width: 760px;
}
.page-hero .lede {
  margin-top: 22px;
}
.page-hero-aside {
  align-self: stretch;
  display: flex;
  align-items: end;
  justify-content: end;
}
.aside-note {
  max-width: 285px;
  padding: 20px 0 0 20px;
  border-left: 1px solid rgba(240, 180, 132, 0.72);
  color: #c9d3d0;
  font-size: 13px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
  color: #93a7a8;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  color: var(--accent);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 55px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat-strip article {
  padding: 25px;
  background: var(--paper-2);
}
.stat-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}
.stat-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.feature-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature-row {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 35px;
  align-items: start;
  padding: 31px 28px;
  background: var(--paper-2);
}
.feature-row > strong {
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}
.feature-row h3 {
  font-size: 26px;
}
.feature-row p {
  color: var(--slate);
  font-size: 14px;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background: var(--accent);
  color: #fff;
}
.quote-band::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  top: -220px;
  right: -80px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 40px rgba(255, 255, 255, 0.06),
    0 0 0 80px rgba(255, 255, 255, 0.04);
}
.quote-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.quote-band h2 {
  max-width: 700px;
}
.quote-band p {
  max-width: 560px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.logo-placeholder {
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  color: #7a8582;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
}
.logo-cloud-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
}

.accordion {
  border-top: 1px solid var(--line);
}
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-family: var(--serif);
  font-size: 23px;
}
.accordion-trigger span:last-child {
  color: var(--accent);
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 300;
  transition: transform 0.2s ease;
}
.accordion-panel {
  max-width: 780px;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.25s ease;
}
.accordion-panel > div {
  min-height: 0;
  color: var(--slate);
  font-size: 14px;
}
.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}
.accordion-item.is-open .accordion-trigger span:last-child {
  transform: rotate(45deg);
}
.accordion-item.is-open .accordion-panel > div {
  padding-bottom: 24px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.article-card-image {
  min-height: 180px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: #d9ddd6;
}
.article-card-image::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(18, 36, 48, 0.3);
  transform: rotate(45deg);
}
.article-card-image::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}
.article-card-image:has(img)::before,
.article-card-image:has(img)::after {
  display: none;
}
.article-card-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.article-card-body {
  padding: 25px;
}
.article-card-body h3 {
  font-size: 25px;
}
.article-card-body p {
  margin-top: 11px;
  color: var(--slate);
  font-size: 13px;
}
.article-meta {
  display: flex;
  gap: 13px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.form-intro h2 {
  margin-bottom: 19px;
}
.contact-stack {
  display: grid;
  gap: 21px;
  margin-top: 35px;
}
.contact-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  align-items: start;
}
.contact-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  border-radius: 50%;
  font-size: 12px;
}
.contact-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-item span {
  display: block;
  margin-top: 3px;
  color: var(--slate);
  font-size: 13px;
}
.rfq-form {
  padding: 35px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: grid;
  gap: 7px;
}
.field-full {
  grid-column: 1 / -1;
}
.field label {
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  background: #fff;
  color: var(--ink);
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #5e8f9b;
  box-shadow: 0 0 0 3px rgba(94, 143, 155, 0.15);
}
.field input:invalid:not(:placeholder-shown),
.field select:invalid:not(:focus) {
}
.file-input {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 14px;
  border: 1px dashed #b8c3be;
  border-radius: 9px;
  background: #fff;
}
.file-input input {
  width: 108px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 12px;
}
.file-input input::file-selector-button {
  margin-right: 0;
  padding: 9px 12px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.file-input [data-file-label] {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.form-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.form-consent a,
.form-email-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 23px;
}
.form-footer p {
  max-width: 360px;
  color: var(--muted);
  font-size: 11px;
}
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #a8c5b5;
  background: #eff8f0;
  color: #2e6246;
  font-size: 13px;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-error {
  border-color: #d8aaa1;
  background: #fff1ee;
  color: #8e2c1b;
}
.form-status.is-error small {
  color: #754138;
}
.rfq-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}
.form-status small {
  display: block;
  margin-top: 6px;
  color: #466354;
}

.video-frame {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
}
.video-frame video {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  opacity: 0.72;
}
.video-label {
  position: absolute;
  left: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.play-symbol {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--accent);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tag {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--slate);
  font-size: 11px;
}
.dark-tag {
  border-color: var(--line-dark);
  color: #c7d2cf;
}

.not-found {
  min-height: calc(100vh - 112px);
  display: grid;
  place-items: center;
  text-align: center;
}
.not-found h1 {
  font-size: clamp(70px, 14vw, 160px);
  color: var(--accent);
}
.not-found .lede {
  margin: 15px auto 28px;
}

.site-footer {
  padding: 70px 0 30px;
  background: var(--ink-deep);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 45px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand-name span {
  color: #91a3a3;
}
.site-footer .brand-name strong,
.lux-page .site-footer .brand-name strong {
  color: #fff;
}
.site-footer .brand-name span,
.lux-page .site-footer .brand-name span {
  color: #91a3a3;
}
.footer-brand p {
  max-width: 280px;
  margin-top: 22px;
  color: #a9b9b7;
  font-size: 13px;
}
.footer-title {
  margin-bottom: 16px;
  color: #f0b484;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 10px;
  color: #b6c4c2;
  font-size: 13px;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact {
  display: grid;
  gap: 9px;
  color: #b6c4c2;
  font-size: 13px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #7c9090;
  font-size: 11px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 991px) {
  .site-nav {
    gap: 16px;
  }
  .site-nav a {
    font-size: 12px;
  }
  .nav-cta {
    padding: 10px 13px;
    font-size: 12px;
  }
  .hero-grid,
  .page-hero-inner,
  .section-intro,
  .split,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero-grid {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .hero-visual {
    min-height: 450px;
  }
  .section-intro .lede {
    justify-self: start;
  }
  .page-hero-aside {
    justify-content: start;
  }
  .split-reverse > :first-child,
  .split-reverse > :last-child {
    order: initial;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 10px;
  }
  .process::before {
    display: none;
  }
  .logo-cloud {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .topbar-inner,
  .nav-inner,
  .container {
    width: min(var(--container), calc(100% - 34px));
  }
  .topbar-inner {
    min-height: 34px;
    font-size: 9px;
  }
  .topbar-inner span {
    display: none;
  }
  .site-header {
    position: relative;
  }
  .nav-inner {
    min-height: 68px;
  }
  .nav-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
    left: 17px;
    right: 17px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 13px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 0 0 14px 14px;
    box-shadow: var(--shadow-small);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a:last-child {
    border-bottom: 0;
  }
  .site-nav a[aria-current="page"]::after {
    left: 10px;
    right: auto;
    bottom: 5px;
    width: 18px;
  }
  .nav-cta {
    margin: 9px 0 2px;
    padding: 12px;
    text-align: center;
  }
  .hero-grid {
    min-height: 0;
    gap: 45px;
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .hero-visual {
    min-height: 310px;
  }
  .hero-image {
    inset: 0;
    clip-path: none;
    border-radius: 2px;
  }
  .hero-orbit {
    width: 155px;
    height: 155px;
    top: -22px;
    right: -26px;
  }
  .hero-orbit::before {
    inset: 18px;
  }
  .hero-orbit::after {
    inset: 59px;
  }
  .hero-spec {
    left: 14px;
    bottom: 14px;
  }
  .section {
    padding: 78px 0;
  }
  .section-tight {
    padding: 56px 0;
  }
  .section-intro {
    margin-bottom: 32px;
  }
  .metrics,
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .metric {
    padding: 21px 15px;
  }
  .metric strong {
    font-size: 33px;
  }
  .metric span {
    font-size: 9px;
  }
  .card-grid,
  .card-grid-2,
  .article-grid,
  .application-list {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 24px;
  }
  .application {
    min-height: 225px;
    padding: 24px;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .process-step {
    text-align: left;
  }
  .process-dot {
    margin-left: 0;
  }
  .feature-row {
    grid-template-columns: 45px 1fr;
    gap: 16px;
    padding: 23px 18px;
  }
  .feature-row p {
    grid-column: 2;
  }
  .quote-band {
    padding: 62px 0;
  }
  .quote-band-inner {
    display: grid;
  }
  .logo-cloud {
    grid-template-columns: 1fr 1fr;
  }
  .detail-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .rfq-form {
    padding: 22px 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-full {
    grid-column: auto;
  }
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .form-footer .button {
    width: 100%;
  }
  .video-frame,
  .video-frame video {
    min-height: 290px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 38px;
  }
  .footer-bottom {
    display: grid;
    gap: 7px;
  }
}

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

/* Reference-aligned implementation layer: dark utility bar, orange search rail,
   dense industrial content blocks, and the Applications/RFQ route from Pencil. */
:root {
  --reference-dark: #2d3238;
  --reference-text: #32373b;
  --reference-muted: #6b7074;
  --reference-gray: #f3f3f1;
  --reference-line: #d9d9d5;
  --reference-orange: #ff5b16;
}

.reference-search {
  background: var(--reference-orange);
  color: #fff;
}
.reference-search-inner {
  width: min(1200px, calc(100% - 48px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 28px;
}
.reference-search label {
  font:
    700 11px/1 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.reference-search form {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.reference-search input {
  min-width: 0;
  flex: 1;
  padding: 12px 0 11px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
}
.reference-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}
.reference-search button {
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: #fff;
  font:
    700 10px/1 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reference-page {
  background: var(--reference-gray);
  color: var(--reference-text);
}
.reference-page .site-header {
  background: #fff;
  border-bottom-color: var(--reference-line);
}
.reference-page h1,
.reference-page h2,
.reference-page h3,
.reference-page h4 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.045em;
}
.reference-page .topbar {
  background: var(--reference-dark);
}
.reference-page .site-nav a[aria-current="page"] {
  color: var(--reference-orange);
}
.reference-page .site-nav a[aria-current="page"]::after {
  background: var(--reference-orange);
}
.reference-page .nav-cta {
  border-radius: 0;
  background: var(--reference-orange);
}
.reference-page .nav-cta:hover {
  background: #db4d0d;
}

.ref-hero {
  background: var(--reference-dark);
  color: #fff;
}
.ref-hero-grid {
  width: min(1440px, calc(100% - 48px));
  min-height: 590px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.ref-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px 72px 82px 0;
}
.ref-kicker {
  margin: 0 0 26px;
  color: var(--reference-orange);
  font:
    700 11px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ref-hero h1 {
  max-width: 650px;
  font-size: clamp(50px, 5.4vw, 78px);
  line-height: 1.02;
}
.ref-hero-copy > p:not(.ref-kicker):not(.ref-meta) {
  max-width: 575px;
  margin-top: 31px;
  color: #e6e8e9;
  font-size: 17px;
  line-height: 1.55;
}
.ref-meta {
  margin: 58px 0 0;
  color: #fff;
  font:
    700 10px/1.3 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.08em;
}
.ref-hero-media {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}
.ref-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ref-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(45, 50, 56, 0.75), rgba(45, 50, 56, 0.08) 52%),
    linear-gradient(0deg, rgba(21, 25, 29, 0.55), transparent 45%);
}
.ref-media-label {
  position: absolute;
  z-index: 1;
  left: 52px;
  bottom: 33px;
  color: #fff;
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.08em;
}

.ref-proof {
  min-height: 142px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: stretch;
  background: #fff;
}
.ref-proof-intro,
.ref-proof-item {
  padding: 29px 30px;
}
.ref-proof-intro {
  padding-left: max(30px, calc((100vw - 1296px) / 2));
}
.ref-proof-label {
  margin: 0 0 16px;
  color: var(--reference-orange);
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ref-proof-intro h2 {
  max-width: 300px;
  font-size: 23px;
  line-height: 1.08;
}
.ref-proof-item {
  border-left: 1px solid var(--reference-line);
}
.ref-proof-item strong {
  display: block;
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
}
.ref-proof-item p {
  margin-top: 13px;
  color: var(--reference-muted);
  font-size: 13px;
  line-height: 1.35;
}

.ref-section {
  padding: 104px 0;
}
.ref-section-inner {
  width: min(1296px, calc(100% - 48px));
  margin: 0 auto;
}
.ref-section-surface {
  background: var(--reference-gray);
}
.ref-section-white {
  background: #fff;
}
.ref-section-dark {
  background: var(--reference-dark);
  color: #fff;
}
.ref-section-heading {
  max-width: 810px;
}
.ref-section-heading h2 {
  font-size: clamp(35px, 4vw, 54px);
  line-height: 1.04;
}
.ref-section-heading > p:last-child {
  max-width: 700px;
  margin-top: 22px;
  color: var(--reference-muted);
  font-size: 15px;
  line-height: 1.55;
}
.ref-section-dark .ref-section-heading > p:last-child {
  color: #d8dbdd;
}
.ref-section-label {
  margin: 0 0 23px;
  color: var(--reference-orange);
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.ref-image-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 43px;
}
.ref-image-tile {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  background: #899095;
}
.ref-image-tile img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}
.ref-image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(21, 25, 29, 0.78),
    rgba(21, 25, 29, 0.05) 70%
  );
}
.ref-image-tile span {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 18px;
  color: #fff;
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
}
.ref-application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.ref-application-card {
  min-height: 250px;
  padding: 25px;
  background: #fff;
}
.ref-application-card .ref-number {
  display: block;
  color: var(--reference-orange);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.ref-application-card h3 {
  margin-top: 25px;
  font-size: 21px;
  letter-spacing: -0.03em;
}
.ref-application-card p {
  max-width: 320px;
  margin-top: 13px;
  color: var(--reference-muted);
  font-size: 13px;
  line-height: 1.45;
}
.ref-application-card small {
  display: block;
  margin-top: 23px;
  font:
    700 9px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.06em;
}

.ref-rfq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}
.ref-rfq-grid h2 {
  max-width: 560px;
  font-size: clamp(37px, 4vw, 55px);
  line-height: 1.04;
}
.ref-rfq-intro {
  max-width: 500px;
  margin-top: 28px;
  color: #d8dbdd;
  font-size: 15px;
  line-height: 1.55;
}
.ref-rfq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}
.ref-rfq-columns h3 {
  color: var(--reference-orange);
  font:
    700 11px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.08em;
}
.ref-rfq-columns ol {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}
.ref-rfq-columns li {
  margin-bottom: 8px;
}
.ref-rfq-note {
  margin-top: 60px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
}

.ref-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.ref-process-card {
  min-height: 112px;
  padding: 21px;
  background: var(--reference-gray);
}
.ref-process-card strong {
  display: block;
  color: var(--reference-orange);
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.06em;
}
.ref-process-card p {
  margin-top: 17px;
  color: var(--reference-text);
  font-size: 13px;
  line-height: 1.4;
}

.ref-evidence {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 86px;
  align-items: center;
}
.ref-evidence-media {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: #899095;
}
.ref-evidence-media > img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.ref-evidence-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 25, 29, 0.5), transparent 60%);
}
.ref-evidence-media span {
  position: absolute;
  z-index: 1;
  left: 27px;
  bottom: 25px;
  color: #fff;
  font:
    700 9px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
}
.ref-evidence h2 {
  max-width: 610px;
  font-size: clamp(35px, 3.8vw, 52px);
  line-height: 1.04;
}
.ref-evidence p:not(.ref-section-label) {
  max-width: 620px;
  margin-top: 25px;
  color: var(--reference-muted);
  font-size: 15px;
  line-height: 1.55;
}
.ref-evidence-note {
  margin-top: 40px;
  color: var(--reference-text);
  font:
    700 10px/1.4 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
}

.ref-cta {
  padding: 76px 0;
  background: var(--reference-orange);
  color: #fff;
}
.ref-cta-inner {
  width: min(1296px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.ref-cta h2 {
  max-width: 780px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.03;
}
.ref-cta p {
  max-width: 430px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.45;
}
.ref-cta .button {
  flex: 0 0 auto;
  border-radius: 0;
  background: var(--reference-dark);
  color: #fff;
}

.reference-page .site-footer {
  background: var(--reference-dark);
}

@media (max-width: 991px) {
  .ref-hero-grid,
  .ref-rfq-grid,
  .ref-evidence {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ref-hero-copy {
    padding: 76px 0 66px;
  }
  .ref-hero-media {
    min-height: 390px;
  }
  .ref-proof {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
  .ref-proof-intro {
    padding-left: 24px;
  }
  .ref-rfq-grid {
    gap: 55px;
  }
  .ref-evidence-media {
    margin-bottom: 52px;
  }
}

@media (max-width: 767px) {
  .reference-search-inner {
    width: calc(100% - 34px);
    min-height: 90px;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 17px 0 14px;
  }
  .reference-search form {
    gap: 10px;
  }
  .reference-search input {
    font-size: 12px;
  }
  .ref-hero-grid,
  .ref-section-inner,
  .ref-cta-inner {
    width: calc(100% - 34px);
  }
  .ref-hero-copy {
    padding: 60px 0 48px;
  }
  .ref-hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }
  .ref-hero-copy > p:not(.ref-kicker):not(.ref-meta) {
    font-size: 15px;
  }
  .ref-meta {
    margin-top: 40px;
    font-size: 9px;
    line-height: 1.5;
  }
  .ref-hero-media {
    min-height: 300px;
    margin: 0 -17px;
  }
  .ref-media-label {
    left: 24px;
    bottom: 22px;
    font-size: 9px;
  }
  .ref-proof {
    display: block;
  }
  .ref-proof-intro,
  .ref-proof-item {
    padding: 23px 17px;
  }
  .ref-proof-item {
    border-top: 1px solid var(--reference-line);
    border-left: 0;
  }
  .ref-section {
    padding: 76px 0;
  }
  .ref-image-rail,
  .ref-application-grid,
  .ref-process-grid,
  .ref-rfq-columns {
    grid-template-columns: 1fr;
  }
  .ref-image-rail {
    gap: 10px;
  }
  .ref-image-tile,
  .ref-image-tile img {
    min-height: 100px;
    height: 100px;
  }
  .ref-application-grid {
    gap: 10px;
  }
  .ref-rfq-grid {
    gap: 44px;
  }
  .ref-rfq-columns {
    gap: 32px;
  }
  .ref-rfq-note {
    margin-top: 42px;
  }
  .ref-evidence-media,
  .ref-evidence-media > img {
    min-height: 270px;
    height: 270px;
  }
  .ref-evidence-media {
    margin-bottom: 42px;
  }
  .ref-cta-inner {
    display: grid;
    gap: 28px;
  }
  .ref-cta .button {
    width: 100%;
  }
}

.catalog-hero h1 {
  max-width: 690px;
}
.catalog-hero .ref-hero-media img {
  object-position: center;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.catalog-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--reference-line);
}
.catalog-card-image {
  height: 220px;
  overflow: hidden;
  background: #e7e8e5;
}
.catalog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.catalog-card:hover .catalog-card-image img {
  transform: scale(1.04);
}
.catalog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.catalog-card-label {
  margin: 0 0 17px;
  color: var(--reference-orange);
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.08em;
}
.catalog-card h3 {
  font-size: 24px;
  line-height: 1.05;
}
.catalog-card p {
  margin-top: 13px;
  color: var(--reference-muted);
  font-size: 13px;
  line-height: 1.45;
}
.catalog-card .button-ghost {
  margin-top: auto;
  padding-top: 22px;
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.catalog-note {
  margin-top: 23px;
  color: var(--reference-muted);
  font-size: 12px;
  line-height: 1.5;
}
.catalog-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.catalog-split-media {
  min-height: 390px;
  overflow: hidden;
  background: #e7e8e5;
}
.catalog-split-media img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.catalog-split h2 {
  max-width: 600px;
  font-size: clamp(35px, 4vw, 54px);
  line-height: 1.04;
}
.catalog-split p:not(.ref-section-label) {
  max-width: 560px;
  margin-top: 22px;
  color: var(--reference-muted);
  font-size: 15px;
  line-height: 1.55;
}
.catalog-points {
  display: grid;
  gap: 0;
  margin-top: 31px;
  border-top: 1px solid var(--reference-line);
}
.catalog-point {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--reference-line);
}
.catalog-point strong {
  color: var(--reference-text);
  font:
    700 10px/1.3 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.catalog-point span {
  color: var(--reference-muted);
  font-size: 13px;
  line-height: 1.45;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 47px;
  background: var(--reference-line);
  border: 1px solid var(--reference-line);
}
.fact-card {
  min-height: 135px;
  padding: 23px;
  background: #fff;
}
.fact-card strong {
  display: block;
  color: var(--reference-orange);
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
}
.fact-card b {
  display: block;
  margin-top: 18px;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.fact-card span {
  display: block;
  margin-top: 8px;
  color: var(--reference-muted);
  font-size: 12px;
  line-height: 1.35;
}
.profile-note {
  margin-top: 17px;
  color: var(--reference-muted);
  font-size: 11px;
  line-height: 1.45;
}
.company-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.company-media {
  min-height: 420px;
  overflow: hidden;
  background: #e7e8e5;
}
.company-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.company-split h2 {
  max-width: 650px;
  font-size: clamp(37px, 4vw, 55px);
  line-height: 1.04;
}
.company-split p:not(.ref-section-label) {
  max-width: 620px;
  margin-top: 23px;
  color: var(--reference-muted);
  font-size: 15px;
  line-height: 1.55;
}
.company-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.company-fact {
  padding: 17px;
  background: var(--reference-gray);
}
.company-fact strong {
  display: block;
  color: var(--reference-orange);
  font:
    700 9px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
}
.company-fact span {
  display: block;
  margin-top: 8px;
  color: var(--reference-text);
  font-size: 13px;
  line-height: 1.35;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.capability-card {
  min-height: 330px;
  padding: 23px;
  background: #fff;
  border: 1px solid var(--reference-line);
}
.capability-card-image {
  height: 130px;
  margin: -23px -23px 22px;
  overflow: hidden;
  background: #e7e8e5;
}
.capability-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.capability-card strong {
  display: block;
  color: var(--reference-orange);
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
}
.capability-card h3 {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.05;
}
.capability-card p {
  margin-top: 12px;
  color: var(--reference-muted);
  font-size: 13px;
  line-height: 1.45;
}
.capability-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--reference-line);
  border-bottom: 1px solid var(--reference-line);
}
.capability-process div {
  min-height: 145px;
  padding: 22px 18px;
  border-right: 1px solid var(--reference-line);
}
.capability-process div:last-child {
  border-right: 0;
}
.capability-process strong {
  display: block;
  color: var(--reference-orange);
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
}
.capability-process span {
  display: block;
  margin-top: 19px;
  font-size: 14px;
  line-height: 1.3;
}

.quality-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--reference-line);
  border: 1px solid var(--reference-line);
}
.quality-evidence-card {
  min-height: 155px;
  padding: 22px;
  background: #fff;
}
.quality-evidence-card strong {
  display: block;
  color: var(--reference-orange);
  font:
    700 10px/1.2 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
}
.quality-evidence-card h3 {
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.08;
}
.quality-evidence-card p {
  margin-top: 10px;
  color: var(--reference-muted);
  font-size: 12px;
  line-height: 1.4;
}
.quality-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.quality-media {
  min-height: 430px;
  overflow: hidden;
  background: #899095;
}
.quality-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.quality-split h2 {
  max-width: 620px;
  font-size: clamp(37px, 4vw, 54px);
  line-height: 1.04;
}
.quality-split p:not(.ref-section-label) {
  max-width: 590px;
  margin-top: 23px;
  color: var(--reference-muted);
  font-size: 15px;
  line-height: 1.55;
}
.quality-checklist {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--reference-line);
}
.quality-check {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--reference-line);
}
.quality-check strong {
  color: var(--reference-text);
  font:
    700 10px/1.3 "IBM Plex Mono",
    ui-monospace,
    monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.quality-check span {
  color: var(--reference-muted);
  font-size: 13px;
  line-height: 1.4;
}
.quality-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 43px;
}
.quality-photo {
  height: 185px;
  overflow: hidden;
  background: #e7e8e5;
}
.quality-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quality-disclaimer {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--reference-orange);
  background: #fff;
  color: var(--reference-muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .catalog-grid,
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-split,
  .company-split,
  .quality-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .capability-process {
    grid-template-columns: repeat(3, 1fr);
  }
  .capability-process div:nth-child(3) {
    border-right: 0;
  }
  .capability-process div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--reference-line);
  }
  .quality-evidence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .catalog-grid,
  .capability-grid,
  .quality-evidence-grid,
  .quality-photos {
    grid-template-columns: 1fr;
  }
  .catalog-card {
    min-height: 360px;
  }
  .catalog-card-image {
    height: 190px;
  }
  .catalog-split-media,
  .catalog-split-media img,
  .company-media,
  .company-media img,
  .quality-media,
  .quality-media img {
    min-height: 280px;
    height: 280px;
  }
  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fact-card {
    min-height: 115px;
    padding: 17px;
  }
  .fact-card b {
    font-size: 21px;
  }
  .company-facts {
    grid-template-columns: 1fr;
  }
  .capability-process {
    grid-template-columns: 1fr 1fr;
  }
  .capability-process div:nth-child(3) {
    border-right: 1px solid var(--reference-line);
  }
  .capability-process div:nth-child(2n) {
    border-right: 0;
  }
  .capability-process div:nth-child(n + 3) {
    border-top: 1px solid var(--reference-line);
  }
  .quality-check {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* SRRP editorial redesign — quiet confidence for a high-value B2B manufacturer. */
.lux-page {
  --lux-ink: #191a18;
  --lux-graphite: #2f302d;
  --lux-copy: #5e5c56;
  --lux-muted: #8c8980;
  --lux-paper: #f3f0e8;
  --lux-ivory: #fbfaf6;
  --lux-sand: #e7e1d6;
  --lux-line: #ddd7ca;
  --lux-copper: #b85f3d;
  --lux-copper-dark: #91472f;
  --lux-green: #697267;
  --lux-serif: Georgia, "Times New Roman", serif;
  --lux-sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--lux-ink);
  background: var(--lux-paper);
  font-family: var(--lux-sans);
}

.lux-page::selection {
  background: rgba(184, 95, 61, 0.22);
}
.lux-page .container,
.lux-shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}
.lux-page h1,
.lux-page h2,
.lux-page h3,
.lux-page h4 {
  color: inherit;
  font-family: var(--lux-serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}
.lux-page p {
  color: var(--lux-copy);
}
.lux-page a:focus-visible,
.lux-page button:focus-visible {
  outline: 3px solid #3898ec;
  outline-offset: 4px;
}

.lux-page .topbar {
  min-height: 30px;
  background: var(--lux-ink);
  color: #d9d3c7;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.lux-page .topbar-inner {
  width: min(1240px, calc(100% - 64px));
}
.lux-page .topbar a {
  color: #f6f2e9;
  border-bottom: 0;
}
.lux-page .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(25, 26, 24, 0.1);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}
.lux-page .nav-inner {
  width: min(1240px, calc(100% - 64px));
  min-height: 78px;
}
.lux-page .brand {
  gap: 12px;
}
.lux-page .brand-mark {
  width: 30px;
  height: 30px;
  background: var(--lux-copper);
}
.lux-page .brand-mark::after {
  width: 21px;
  height: 21px;
  left: 4px;
  top: 13px;
  background: var(--lux-graphite);
}
.lux-page .brand-name strong {
  color: var(--lux-ink);
  font-size: 18px;
  letter-spacing: 0.16em;
}
.lux-page .brand-name span {
  margin-top: 4px;
  color: var(--lux-muted);
  font-size: 7px;
  letter-spacing: 0.2em;
}
.lux-page .site-nav {
  gap: 28px;
  color: #56544e;
  font-size: 12px;
}
.lux-page .site-nav a {
  padding: 28px 0;
}
.lux-page .site-nav a:hover,
.lux-page .site-nav a[aria-current="page"] {
  color: var(--lux-ink);
}
.lux-page .site-nav a[aria-current="page"]::after {
  bottom: 20px;
  height: 1px;
  background: var(--lux-copper);
}
.lux-page .nav-cta {
  min-height: 43px;
  margin-left: 4px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--lux-ink);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(25, 26, 24, 0.05);
}
.lux-page .nav-cta:hover {
  background: var(--lux-copper-dark);
  transform: translateY(-1px);
}
.lux-page .nav-toggle span {
  background: var(--lux-ink);
}

.lux-hero {
  overflow: hidden;
  padding: 84px 0 42px;
  background: var(--lux-paper);
}
.lux-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: 76px;
  align-items: center;
}
.lux-eyebrow {
  margin: 0 0 22px;
  color: var(--lux-copper) !important;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lux-hero h1 {
  max-width: 760px;
  font-size: clamp(56px, 5.7vw, 84px);
  line-height: 1.02;
}
.lux-hero-copy > p:not(.lux-eyebrow):not(.lux-caption) {
  max-width: 620px;
  margin-top: 30px;
  color: var(--lux-copy);
  font-size: 18px;
  line-height: 1.68;
}
.lux-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.lux-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 650;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.lux-button:hover {
  transform: translateY(-2px);
}
.lux-button-primary {
  background: var(--lux-copper);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(145, 71, 47, 0.15),
    0 10px 30px rgba(104, 63, 43, 0.12);
}
.lux-button-primary:hover {
  background: var(--lux-copper-dark);
}
.lux-button-secondary {
  border-color: var(--lux-line);
  background: rgba(251, 250, 246, 0.72);
  color: var(--lux-ink);
}
.lux-button-secondary:hover {
  background: var(--lux-ivory);
  box-shadow: 0 0 0 1px #cbc4b7;
}
.lux-button-dark {
  background: var(--lux-ink);
  color: #fff;
}
.lux-button-dark:hover {
  background: #30312e;
}
.lux-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lux-ink);
  font-size: 12px;
  font-weight: 650;
}
.lux-text-link span {
  color: var(--lux-copper);
  transition: transform 0.2s ease;
}
.lux-text-link:hover span {
  transform: translate(3px, -3px);
}
.lux-caption {
  margin-top: 26px;
  color: var(--lux-muted) !important;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lux-hero-media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--lux-ivory);
  box-shadow:
    0 0 0 1px rgba(70, 62, 48, 0.08),
    0 24px 80px rgba(50, 43, 33, 0.1);
}
.lux-hero-media img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}
.lux-hero-media.is-contain img {
  object-fit: contain;
  padding: 38px;
}
.lux-media-shade {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(20, 20, 18, 0.68), transparent);
  pointer-events: none;
}
.lux-media-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 290px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(251, 250, 246, 0.93);
  box-shadow: 0 8px 35px rgba(25, 26, 24, 0.12);
  backdrop-filter: blur(14px);
}
.lux-media-card strong {
  display: block;
  color: var(--lux-ink);
  font-family: var(--lux-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.16;
}
.lux-media-card span {
  display: block;
  margin-top: 8px;
  color: var(--lux-copy);
  font-size: 11px;
  line-height: 1.5;
}
.lux-hero-index {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(25, 26, 24, 0.82);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.lux-proof-row {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--lux-line);
  border-bottom: 1px solid var(--lux-line);
}
.lux-proof-intro,
.lux-proof-item {
  min-height: 138px;
  padding: 25px 26px;
}
.lux-proof-intro {
  padding-left: 0;
}
.lux-proof-intro h2 {
  max-width: 310px;
  font-size: 26px;
  line-height: 1.12;
}
.lux-proof-item {
  border-left: 1px solid var(--lux-line);
}
.lux-proof-item strong {
  display: block;
  color: var(--lux-copper);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lux-proof-item p {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1.55;
}

.lux-section {
  padding: 118px 0;
}
.lux-section-ivory {
  background: var(--lux-ivory);
}
.lux-section-paper {
  background: var(--lux-paper);
}
.lux-section-dark {
  background: var(--lux-ink);
  color: #f8f5ed;
}
.lux-section-dark p {
  color: #bdb8ae;
}
.lux-section-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 84px;
  align-items: end;
  margin-bottom: 56px;
}
.lux-section-head h2 {
  max-width: 760px;
  font-size: clamp(42px, 4.3vw, 62px);
  line-height: 1.08;
}
.lux-section-head > p {
  max-width: 600px;
  justify-self: end;
  font-size: 16px;
  line-height: 1.7;
}
.lux-section-intro {
  max-width: 780px;
  margin-bottom: 54px;
}
.lux-section-intro h2 {
  font-size: clamp(42px, 4.3vw, 62px);
  line-height: 1.08;
}
.lux-section-intro > p:not(.lux-eyebrow) {
  max-width: 650px;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.7;
}

.lux-product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}
.lux-product-card {
  grid-column: span 6;
  overflow: hidden;
  border-radius: 20px;
  background: var(--lux-ivory);
  box-shadow:
    0 0 0 1px rgba(68, 61, 49, 0.08),
    0 14px 44px rgba(49, 42, 32, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.lux-product-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgba(68, 61, 49, 0.1),
    0 22px 60px rgba(49, 42, 32, 0.11);
}
.lux-product-card.is-wide {
  grid-column: span 7;
}
.lux-product-card.is-narrow {
  grid-column: span 5;
}
.lux-product-card-media {
  height: 325px;
  overflow: hidden;
  background: #ece9e1;
}
.lux-product-card.is-wide .lux-product-card-media {
  height: 390px;
}
.lux-product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.lux-product-card:hover .lux-product-card-media img {
  transform: scale(1.025);
}
.lux-product-card-body {
  padding: 28px 30px 30px;
}
.lux-product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--lux-copper);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.lux-product-card h3 {
  margin-top: 16px;
  font-size: 31px;
  line-height: 1.1;
}
.lux-product-card p {
  max-width: 580px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.65;
}
.lux-product-card .lux-text-link {
  margin-top: 22px;
}

.lux-editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 84px;
  align-items: center;
}
.lux-editorial-split.is-reverse > :first-child {
  order: 2;
}
.lux-editorial-split.is-reverse > :last-child {
  order: 1;
}
.lux-editorial-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 26px;
  background: #e5e1d8;
  box-shadow: 0 0 0 1px rgba(67, 59, 47, 0.08);
}
.lux-editorial-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.lux-editorial-copy h2 {
  max-width: 660px;
  font-size: clamp(42px, 4.1vw, 60px);
  line-height: 1.08;
}
.lux-editorial-copy > p:not(.lux-eyebrow) {
  max-width: 590px;
  margin-top: 23px;
  font-size: 16px;
  line-height: 1.72;
}
.lux-detail-list {
  margin-top: 32px;
  border-top: 1px solid var(--lux-line);
}
.lux-detail-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid var(--lux-line);
}
.lux-detail-item strong {
  color: var(--lux-ink);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lux-detail-item span {
  color: var(--lux-copy);
  font-size: 13px;
  line-height: 1.55;
}

.lux-dark-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.lux-dark-grid h2 {
  max-width: 610px;
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1.06;
}
.lux-dark-grid > div:first-child > p:not(.lux-eyebrow) {
  max-width: 540px;
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.7;
}
.lux-dark-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.lux-dark-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid #3a3a36;
  border-radius: 16px;
  background: #222320;
}
.lux-dark-card strong {
  color: #d47c58;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.lux-dark-card h3 {
  margin-top: 20px;
  color: #f8f5ed;
  font-size: 25px;
  line-height: 1.14;
}
.lux-dark-card p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
}

.lux-capability-stack {
  display: grid;
  gap: 26px;
}
.lux-capability-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  overflow: hidden;
  border-radius: 22px;
  background: var(--lux-ivory);
  box-shadow: 0 0 0 1px rgba(68, 61, 49, 0.08);
}
.lux-capability-row.is-reverse {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
}
.lux-capability-row.is-reverse .lux-capability-media {
  order: 2;
}
.lux-capability-media {
  min-height: 440px;
  overflow: hidden;
  background: #e5e1d8;
}
.lux-capability-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lux-capability-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}
.lux-capability-copy h3 {
  max-width: 480px;
  font-size: 40px;
  line-height: 1.08;
}
.lux-capability-copy p:not(.lux-eyebrow) {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.68;
}
.lux-capability-copy .lux-text-link {
  margin-top: 26px;
}

.lux-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--lux-line);
  border-bottom: 1px solid var(--lux-line);
}
.lux-process-step {
  min-height: 176px;
  padding: 25px 22px;
  border-right: 1px solid var(--lux-line);
}
.lux-process-step:last-child {
  border-right: 0;
}
.lux-process-step strong {
  color: var(--lux-copper);
  font-size: 10px;
  letter-spacing: 0.13em;
}
.lux-process-step h3 {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.12;
}
.lux-process-step p {
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.5;
}

.lux-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lux-fact-card {
  min-height: 190px;
  padding: 28px;
  border-radius: 16px;
  background: var(--lux-ivory);
  box-shadow: 0 0 0 1px rgba(68, 61, 49, 0.08);
}
.lux-fact-card strong {
  color: var(--lux-copper);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.lux-fact-card b {
  display: block;
  margin-top: 27px;
  font-family: var(--lux-serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}
.lux-fact-card span {
  display: block;
  margin-top: 12px;
  color: var(--lux-copy);
  font-size: 12px;
  line-height: 1.55;
}
.lux-source-note {
  margin-top: 20px;
  padding: 15px 18px;
  border-left: 2px solid var(--lux-copper);
  background: rgba(251, 250, 246, 0.68);
  color: var(--lux-muted) !important;
  font-size: 11px;
  line-height: 1.55;
}

.lux-quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.lux-quality-card {
  min-height: 255px;
  padding: 32px;
  border-radius: 18px;
  background: var(--lux-ivory);
  box-shadow: 0 0 0 1px rgba(68, 61, 49, 0.08);
}
.lux-quality-card strong {
  color: var(--lux-copper);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.lux-quality-card h3 {
  margin-top: 28px;
  font-size: 31px;
  line-height: 1.1;
}
.lux-quality-card p {
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.65;
}
.lux-accordion {
  margin-top: 38px;
  border-top: 1px solid var(--lux-line);
}
.lux-page .accordion {
  border-top: 1px solid var(--lux-line);
}
.lux-page .accordion-item {
  border-bottom-color: var(--lux-line);
}
.lux-page .accordion-trigger {
  padding: 23px 0;
  color: var(--lux-ink);
  font-family: var(--lux-serif);
  font-size: 22px;
  font-weight: 500;
}
.lux-page .accordion-trigger span:last-child {
  color: var(--lux-copper);
  font-family: var(--lux-sans);
  font-size: 14px;
}
.lux-page .accordion-panel > div {
  padding: 0 0 24px;
  color: var(--lux-copy);
  font-size: 14px;
  line-height: 1.65;
}

.lux-cta-wrap {
  padding: 0 0 110px;
  background: var(--lux-paper);
}
.lux-cta {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 56px;
  align-items: center;
  padding: 70px;
  border-radius: 30px;
  background: var(--lux-ink);
  color: #f9f5ed;
}
.lux-cta h2 {
  max-width: 780px;
  font-size: clamp(44px, 4.7vw, 66px);
  line-height: 1.04;
}
.lux-cta p {
  max-width: 600px;
  margin-top: 18px;
  color: #bdb8ae;
  font-size: 15px;
  line-height: 1.65;
}
.lux-cta .lux-button-primary {
  min-width: 170px;
}

.lux-page .site-footer {
  padding: 72px 0 28px;
  background: var(--lux-ink);
  color: #fff;
}
.lux-page .footer-grid {
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
  border-bottom-color: #393a36;
}
.lux-page .footer-brand p,
.lux-page .footer-links,
.lux-page .footer-contact {
  color: #aaa69d;
}
.lux-page .footer-title {
  color: #d47c58;
}
.lux-page .footer-bottom {
  color: #77766f;
}

@media (max-width: 1060px) {
  .lux-page .site-nav {
    gap: 17px;
  }
  .lux-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
  .lux-dark-grid,
  .lux-editorial-split {
    gap: 55px;
  }
  .lux-capability-copy {
    padding: 40px;
  }
}

@media (max-width: 900px) {
  .lux-hero-grid,
  .lux-section-head,
  .lux-editorial-split,
  .lux-dark-grid {
    grid-template-columns: 1fr;
  }
  .lux-hero-copy {
    max-width: 760px;
  }
  .lux-hero-media {
    min-height: 470px;
  }
  .lux-hero-media img {
    height: 470px;
  }
  .lux-section-head {
    gap: 24px;
  }
  .lux-section-head > p {
    justify-self: start;
  }
  .lux-product-card,
  .lux-product-card.is-wide,
  .lux-product-card.is-narrow {
    grid-column: span 6;
  }
  .lux-editorial-split.is-reverse > :first-child,
  .lux-editorial-split.is-reverse > :last-child {
    order: initial;
  }
  .lux-dark-grid {
    gap: 48px;
  }
  .lux-capability-row,
  .lux-capability-row.is-reverse {
    grid-template-columns: 1fr 1fr;
  }
  .lux-capability-row.is-reverse .lux-capability-media {
    order: 0;
  }
  .lux-process {
    grid-template-columns: repeat(3, 1fr);
  }
  .lux-process-step:nth-child(3) {
    border-right: 0;
  }
  .lux-process-step:nth-child(-n + 3) {
    border-bottom: 1px solid var(--lux-line);
  }
  .lux-page .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .lux-page .container,
  .lux-shell,
  .lux-page .topbar-inner,
  .lux-page .nav-inner {
    width: calc(100% - 36px);
  }
  .lux-page .topbar {
    min-height: 28px;
  }
  .lux-page .topbar-inner {
    justify-content: flex-end;
  }
  .lux-page .nav-inner {
    min-height: 68px;
  }
  .lux-page .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    display: none;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--lux-line);
    border-radius: 0 0 16px 16px;
    background: var(--lux-ivory);
    box-shadow: 0 20px 50px rgba(25, 26, 24, 0.12);
  }
  .lux-page .site-nav.is-open {
    display: flex;
  }
  .lux-page .site-nav a {
    padding: 12px 10px;
  }
  .lux-page .site-nav a[aria-current="page"]::after {
    bottom: 6px;
  }
  .lux-page .nav-cta {
    margin: 10px 0 2px;
  }
  .lux-hero {
    padding: 56px 0 28px;
  }
  .lux-hero-grid {
    gap: 42px;
  }
  .lux-hero h1 {
    font-size: clamp(43px, 13vw, 58px);
    line-height: 1.02;
  }
  .lux-hero-copy > p:not(.lux-eyebrow):not(.lux-caption) {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.65;
  }
  .lux-actions {
    margin-top: 27px;
  }
  .lux-button {
    width: 100%;
  }
  .lux-caption {
    margin-top: 22px;
    font-size: 8px;
  }
  .lux-hero-media,
  .lux-hero-media img {
    min-height: 350px;
    height: 350px;
  }
  .lux-hero-media {
    border-radius: 20px;
  }
  .lux-hero-media.is-contain img {
    padding: 20px;
  }
  .lux-media-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 16px 18px;
  }
  .lux-media-card strong {
    font-size: 18px;
  }
  .lux-proof-row {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }
  .lux-proof-intro,
  .lux-proof-item {
    min-height: 0;
    padding: 21px 0;
  }
  .lux-proof-item {
    border-top: 1px solid var(--lux-line);
    border-left: 0;
  }
  .lux-section {
    padding: 78px 0;
  }
  .lux-section-head,
  .lux-section-intro {
    margin-bottom: 36px;
  }
  .lux-section-head h2,
  .lux-section-intro h2,
  .lux-editorial-copy h2,
  .lux-dark-grid h2 {
    font-size: 41px;
  }
  .lux-section-head > p,
  .lux-section-intro > p:not(.lux-eyebrow),
  .lux-editorial-copy > p:not(.lux-eyebrow) {
    font-size: 14px;
  }
  .lux-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lux-product-card,
  .lux-product-card.is-wide,
  .lux-product-card.is-narrow {
    grid-column: auto;
  }
  .lux-product-card,
  .lux-product-card.is-wide,
  .lux-product-card.is-narrow {
    border-radius: 16px;
  }
  .lux-product-card-media,
  .lux-product-card.is-wide .lux-product-card-media {
    height: 250px;
  }
  .lux-product-card-body {
    padding: 23px;
  }
  .lux-product-card h3 {
    font-size: 27px;
  }
  .lux-editorial-media,
  .lux-editorial-media img {
    min-height: 340px;
    height: 340px;
  }
  .lux-editorial-media {
    border-radius: 18px;
  }
  .lux-editorial-split {
    gap: 38px;
  }
  .lux-detail-item {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .lux-dark-columns {
    grid-template-columns: 1fr;
  }
  .lux-capability-stack {
    gap: 16px;
  }
  .lux-capability-row,
  .lux-capability-row.is-reverse {
    grid-template-columns: 1fr;
    border-radius: 17px;
  }
  .lux-capability-row.is-reverse .lux-capability-media {
    order: 0;
  }
  .lux-capability-media {
    min-height: 285px;
    height: 285px;
  }
  .lux-capability-copy {
    padding: 28px 24px 31px;
  }
  .lux-capability-copy h3 {
    font-size: 33px;
  }
  .lux-process {
    grid-template-columns: 1fr;
  }
  .lux-process-step {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--lux-line);
  }
  .lux-process-step:nth-child(-n + 3) {
    border-bottom: 1px solid var(--lux-line);
  }
  .lux-process-step:last-child {
    border-bottom: 0;
  }
  .lux-process-step h3 {
    margin-top: 14px;
  }
  .lux-fact-grid,
  .lux-quality-grid {
    grid-template-columns: 1fr;
  }
  .lux-fact-card,
  .lux-quality-card {
    min-height: 0;
    padding: 24px;
  }
  .lux-page .accordion-trigger {
    font-size: 19px;
  }
  .lux-cta-wrap {
    padding: 0 0 70px;
  }
  .lux-cta {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 26px;
    border-radius: 20px;
  }
  .lux-cta h2 {
    font-size: 40px;
  }
  .lux-page .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* SRRP industrial direction — modern, technical and conversion-led. */
:root {
  --ind-ink: #171c20;
  --ind-deep: #0f1316;
  --ind-steel: #2b3339;
  --ind-copy: #59636a;
  --ind-muted: #59636a;
  --ind-paper: #f2f3f1;
  --ind-white: #ffffff;
  --ind-line: #d8dcdd;
  --ind-orange: #bd3e15;
  --ind-orange-dark: #962d0d;
  --ind-orange-display: #e85223;
  --ind-orange-bright: #ff8a63;
  --ind-shell: 1320px;
}

body,
.lux-page,
.reference-page {
  background: var(--ind-paper);
  color: var(--ind-ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
body h1,
body h2,
body h3,
body h4,
.lux-page h1,
.lux-page h2,
.lux-page h3,
.lux-page h4,
.reference-page h1,
.reference-page h2,
.reference-page h3,
.reference-page h4 {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 730;
  letter-spacing: -0.045em;
}

.topbar,
.lux-page .topbar,
.reference-page .topbar {
  min-height: 32px;
  background: var(--ind-deep);
  color: #aeb7bb;
}
.topbar-inner,
.nav-inner,
.container,
.lux-page .container,
.lux-page .topbar-inner,
.lux-page .nav-inner {
  width: min(var(--ind-shell), calc(100% - 64px));
}
.topbar a,
.lux-page .topbar a {
  color: #e9eded;
  border-bottom: 0;
}
.site-header,
.lux-page .site-header,
.reference-page .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(23, 28, 32, 0.12);
  backdrop-filter: blur(16px);
}
.nav-inner,
.lux-page .nav-inner {
  min-height: 76px;
}
.brand-mark,
.lux-page .brand-mark {
  width: 31px;
  height: 31px;
  border-radius: 4px;
  background: var(--ind-orange-display);
  transform: rotate(45deg);
}
.brand-mark::after,
.lux-page .brand-mark::after {
  width: 25px;
  height: 12px;
  left: 12px;
  top: 15px;
  background: var(--ind-ink);
  transform: rotate(0);
}
.brand-name strong,
.lux-page .brand-name strong {
  color: var(--ind-ink);
  font-size: 20px;
  letter-spacing: 0.18em;
}
.brand-name span,
.lux-page .brand-name span {
  margin-top: 5px;
  color: var(--ind-muted);
  font-size: 8px;
  letter-spacing: 0.18em;
}
.site-nav,
.lux-page .site-nav {
  gap: 26px;
  color: #4d565b;
  font-size: 12px;
  font-weight: 620;
}
.site-nav a,
.lux-page .site-nav a {
  padding: 27px 0;
}
.site-nav a[aria-current="page"]::after,
.lux-page .site-nav a[aria-current="page"]::after {
  bottom: 18px;
  height: 2px;
  background: var(--ind-orange);
}
.nav-cta,
.lux-page .nav-cta,
.reference-page .nav-cta {
  min-height: 44px;
  margin-left: 4px;
  padding: 0 18px !important;
  border-radius: 3px;
  background: var(--ind-ink);
  color: #fff !important;
  box-shadow: none;
}
.nav-cta:hover,
.lux-page .nav-cta:hover,
.reference-page .nav-cta:hover {
  background: var(--ind-orange);
}
.nav-toggle span,
.lux-page .nav-toggle span {
  background: var(--ind-ink);
}
.reference-search {
  display: none;
}

.site-search-panel {
  padding: 64px 0;
  background: var(--ind-orange);
  color: #fff;
}
.site-search-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.site-search-panel .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}
.site-search-panel h2 {
  max-width: 450px;
  margin: 13px 0 0;
  color: #fff;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.site-search-workspace form label {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-search-workspace form > div {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}
.site-search-workspace input {
  min-width: 0;
  flex: 1;
  padding: 14px 4px 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(17px, 2vw, 22px);
}
.site-search-workspace input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.site-search-workspace button {
  padding: 0 4px 0 22px;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.site-search-summary {
  min-height: 20px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}
.site-search-results {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.28);
}
.site-search-result {
  display: grid;
  gap: 6px;
  padding: 19px 22px;
  background: #fff;
  color: var(--ind-ink);
  transition: transform 180ms ease, background 180ms ease;
}
.site-search-result:hover {
  position: relative;
  z-index: 1;
  transform: translateX(5px);
  background: #f6f6f3;
}
.site-search-result > span {
  color: var(--ind-orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-search-result h3,
.site-search-result p {
  margin: 0;
}
.site-search-result h3 {
  font-size: 19px;
}
.site-search-result p {
  color: var(--ind-muted);
  font-size: 13px;
  line-height: 1.5;
}
.site-search-empty {
  margin: 0;
  padding: 22px;
  background: rgba(25, 30, 33, 0.16);
  color: #fff;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .site-search-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .site-search-workspace form > div {
    align-items: stretch;
  }
  .site-search-workspace input {
    font-size: 16px;
  }
}

.page-hero,
.ref-hero,
.section-dark {
  background: var(--ind-steel);
}
.page-hero {
  padding: 88px 0 82px;
}
.page-hero h1,
.ref-hero h1 {
  max-width: 800px;
  font-size: clamp(48px, 5.3vw, 72px);
  line-height: 1.02;
}
.quote-band {
  background: var(--ind-orange);
}
.button,
.nav-cta {
  border-radius: 3px;
}
.button-primary {
  background: var(--ind-orange);
}
.button-primary:hover {
  background: var(--ind-orange-dark);
}
.card,
.image-panel,
.rfq-form,
.article-card,
.lux-product-card,
.lux-quality-card,
.lux-fact-card {
  border-radius: 4px;
}
.lux-source-note {
  display: none;
}
.product-filter {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.5fr auto;
  gap: 26px;
  align-items: end;
  margin: -12px 0 38px;
  padding: 22px 24px;
  border: 1px solid var(--ind-line);
  background: #fff;
}
.product-filter-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--ind-muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.product-filter-search input {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  border: 1px solid var(--ind-line);
  border-radius: 0;
  background: var(--ind-paper);
  color: var(--ind-ink);
  outline: 0;
}
.product-filter-search input:focus {
  border-color: var(--ind-orange);
  box-shadow: 0 0 0 2px rgba(189, 62, 21, 0.12);
}
.product-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.product-filter-buttons button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--ind-line);
  background: #fff;
  color: var(--ind-copy);
  font-size: 10px;
  font-weight: 700;
}
.product-filter-buttons button:hover,
.product-filter-buttons button.is-active {
  border-color: var(--ind-ink);
  background: var(--ind-ink);
  color: #fff;
}
.product-filter-count {
  min-width: 98px;
  padding-bottom: 10px;
  color: var(--ind-muted);
  font-size: 10px;
  text-align: right;
}
.product-filter-count strong {
  color: var(--ind-orange);
  font-size: 14px;
}
.lux-product-card[hidden] {
  display: none;
}

.lux-page {
  --lux-paper: var(--ind-paper);
  --lux-ivory: #fff;
  --lux-ink: var(--ind-ink);
  --lux-graphite: var(--ind-steel);
  --lux-copy: var(--ind-copy);
  --lux-muted: var(--ind-muted);
  --lux-line: var(--ind-line);
  --lux-copper: var(--ind-orange);
  --lux-copper-dark: var(--ind-orange-dark);
}
.lux-page h1,
.lux-page h2,
.lux-page h3,
.lux-page h4 {
  font-weight: 730;
}
.lux-page .lux-hero h1 {
  font-size: clamp(48px, 5.2vw, 68px);
}
.lux-page .lux-section {
  padding: 92px 0;
}
.lux-page .lux-section-head h2,
.lux-page .lux-section-intro h2,
.lux-page .lux-editorial-copy h2,
.lux-page .lux-dark-grid h2 {
  font-size: clamp(38px, 4vw, 56px);
}
.lux-page .lux-product-card,
.lux-page .lux-capability-row,
.lux-page .lux-dark-card,
.lux-page .lux-cta,
.lux-page .lux-editorial-media,
.lux-page .lux-hero-media {
  border-radius: 4px;
}

.ind-shell {
  width: min(var(--ind-shell), calc(100% - 64px));
  margin-inline: auto;
}
.ind-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--ind-orange);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.ind-kicker span {
  width: 28px;
  height: 2px;
  background: currentColor;
}
.ind-section {
  padding: 110px 0;
}
.ind-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 54px;
}
.ind-heading h2 {
  max-width: 850px;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.04;
}
.ind-heading h2 em,
.ind-hero h1 em,
.ind-capability-copy h2 em {
  color: var(--ind-orange-display);
  font-style: normal;
}
.ind-heading > p {
  max-width: 560px;
  justify-self: end;
  color: var(--ind-copy);
  font-size: 16px;
  line-height: 1.72;
}

.ind-hero {
  overflow: hidden;
  padding: 84px 0 0;
  background: var(--ind-white);
}
.ind-hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.68fr) minmax(620px, 1.32fr);
  gap: 40px;
  align-items: center;
}
.ind-hero-copy {
  padding: 28px 0 54px;
}
.ind-hero h1 {
  max-width: 720px;
  font-size: clamp(54px, 5.65vw, 78px);
  line-height: 0.98;
}
.ind-hero h1 em {
  display: inline-block;
}
.ind-hero-lede {
  max-width: 650px;
  margin-top: 28px;
  color: var(--ind-copy);
  font-size: 18px;
  line-height: 1.68;
}
.ind-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.ind-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 720;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.ind-button:hover {
  transform: translateY(-2px);
}
.ind-button-accent {
  background: var(--ind-orange);
  color: #fff;
}
.ind-button-accent:hover {
  background: var(--ind-orange-dark);
}
.ind-button-ghost {
  border-color: #cfd4d6;
  background: #fff;
  color: var(--ind-ink);
}
.ind-button-ghost:hover {
  border-color: var(--ind-ink);
}
.ind-button-dark {
  background: var(--ind-ink);
  color: #fff;
}
.ind-button-dark:hover {
  background: var(--ind-orange);
}
.ind-hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 29px;
  color: var(--ind-muted);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.ind-hero-mini span {
  position: relative;
}
.ind-hero-mini span + span::before {
  content: "/";
  position: absolute;
  left: -15px;
  color: #bdc3c5;
}
.ind-hero-visual {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: var(--ind-deep);
}
.ind-hero-visual img {
  width: 100%;
  height: 670px;
  object-fit: cover;
}
.ind-hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 10, 12, 0.6), transparent 42%);
  pointer-events: none;
}
.ind-visual-badge {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: start;
  max-width: 360px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 19, 22, 0.83);
  color: #fff;
  backdrop-filter: blur(12px);
}
.ind-visual-badge > span {
  color: var(--ind-orange-bright);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.ind-visual-badge p {
  color: #aab3b6;
  font-size: 11px;
  line-height: 1.55;
}
.ind-visual-badge strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
}
.ind-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--ind-line);
}
.ind-proof-strip > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
  border-right: 1px solid var(--ind-line);
}
.ind-proof-strip > div:first-child {
  padding-left: 0;
}
.ind-proof-strip > div:last-child {
  border-right: 0;
}
.ind-proof-strip small {
  color: var(--ind-orange);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.ind-proof-strip strong {
  margin-top: 11px;
  color: #30383d;
  font-size: 13px;
  line-height: 1.45;
}

.ind-logo-section {
  padding: 32px 0 36px;
  border-top: 1px solid var(--ind-line);
  border-bottom: 1px solid var(--ind-line);
  background: #eceeec;
}
.ind-logo-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.ind-logo-heading p {
  color: #383f43;
  font-size: 12px;
  font-weight: 700;
}
.ind-logo-heading span {
  color: var(--ind-muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ind-logo-rail {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  gap: 22px;
}
.ind-logo-rail img {
  width: 100%;
  height: 38px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.58;
  mix-blend-mode: multiply;
}

.ind-products {
  background: var(--ind-paper);
}
.ind-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 32px;
  align-items: stretch;
}
.ind-product-feature {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--ind-deep);
  color: #fff;
}
.ind-product-feature > img,
.ind-product-feature > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ind-product-feature > img,
.ind-product-feature > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-product-feature > picture {
  display: block;
}
.ind-product-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 13, 15, 0.93),
    rgba(10, 13, 15, 0.02) 70%
  );
}
.ind-product-feature > div {
  position: absolute;
  z-index: 1;
  left: 38px;
  right: 38px;
  bottom: 36px;
}
.ind-product-feature span,
.ind-product-list small {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ind-product-feature span {
  color: var(--ind-orange-bright);
}
.ind-product-list small {
  color: var(--ind-orange);
}
.ind-product-feature h3 {
  max-width: 620px;
  margin-top: 15px;
  font-size: 40px;
  line-height: 1.06;
}
.ind-product-feature p {
  max-width: 590px;
  margin-top: 14px;
  color: #b8c0c3;
  font-size: 14px;
  line-height: 1.65;
}
.ind-product-feature a {
  display: inline-flex;
  margin-top: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.ind-product-list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-top: 1px solid var(--ind-line);
}
.ind-product-list > a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px 8px 28px 0;
  border-bottom: 1px solid var(--ind-line);
  transition:
    padding 0.22s ease,
    background 0.22s ease;
}
.ind-product-list > a:hover {
  padding-left: 18px;
  background: #fff;
}
.ind-product-list > a > span {
  align-self: start;
  color: var(--ind-orange);
  font-size: 11px;
  font-weight: 750;
}
.ind-product-list h3 {
  margin-top: 7px;
  font-size: 28px;
  line-height: 1.05;
}
.ind-product-list p {
  margin-top: 8px;
  color: var(--ind-copy);
  font-size: 12px;
  line-height: 1.55;
}
.ind-product-list b {
  color: var(--ind-orange);
  font-size: 19px;
  font-weight: 500;
}

.ind-capability {
  background: #fff;
}
.ind-capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  gap: 88px;
  align-items: center;
}
.ind-factory-collage {
  position: relative;
  min-height: 690px;
  padding: 0 86px 76px 0;
}
.ind-factory-main {
  display: block;
  width: 100%;
  height: 614px;
  overflow: hidden;
}
.ind-factory-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-factory-detail {
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 300px;
  overflow: hidden;
  border: 10px solid #fff;
}
.ind-factory-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-factory-label {
  position: absolute;
  left: 0;
  bottom: 27px;
  display: grid;
  gap: 3px;
  padding: 17px 22px;
  background: var(--ind-orange);
  color: #fff;
}
.ind-factory-label small {
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ind-factory-label strong {
  font-size: 12px;
}
.ind-capability-copy h2 {
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1.04;
}
.ind-capability-copy > p:not(.ind-kicker):not(.ind-commercial-note) {
  max-width: 600px;
  margin-top: 24px;
  color: var(--ind-copy);
  font-size: 16px;
  line-height: 1.72;
}
.ind-check-list {
  margin-top: 32px;
  border-top: 1px solid var(--ind-line);
}
.ind-check-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ind-line);
}
.ind-check-list span {
  color: var(--ind-orange);
  font-size: 10px;
  font-weight: 750;
}
.ind-check-list p {
  color: var(--ind-copy);
  font-size: 13px;
  line-height: 1.55;
}
.ind-check-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ind-ink);
  font-size: 14px;
}
.ind-commercial-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border: 1px solid var(--ind-line);
}
.ind-commercial-proof > div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 14px;
  border-right: 1px solid var(--ind-line);
}
.ind-commercial-proof > div:last-child {
  border-right: 0;
}
.ind-commercial-proof small {
  color: var(--ind-orange);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}
.ind-commercial-proof strong {
  margin-top: 8px;
  color: var(--ind-ink);
  font-size: 11px;
  line-height: 1.42;
}
.ind-capability-copy > .ind-commercial-note {
  margin-top: 10px;
  color: var(--ind-copy);
  font-size: 9px;
  line-height: 1.5;
}
.ind-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 29px;
  color: var(--ind-ink);
  font-size: 12px;
  font-weight: 750;
}
.ind-text-link span {
  color: var(--ind-orange);
  font-size: 17px;
}

.ind-process-section {
  background: var(--ind-steel);
  color: #fff;
}
.ind-heading-light > p {
  color: #aeb7bb;
}
.ind-heading-light h2 {
  color: #fff;
}
.ind-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #505b61;
  border-bottom: 1px solid #505b61;
}
.ind-process article {
  min-height: 300px;
  padding: 28px 26px;
  border-right: 1px solid #505b61;
}
.ind-process article:last-child {
  border-right: 0;
}
.ind-process article > span {
  color: var(--ind-orange-bright);
  font-size: 12px;
  font-weight: 760;
}
.ind-process small {
  display: block;
  margin-top: 72px;
  color: #aeb7bb;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ind-process h3 {
  margin-top: 12px;
  color: #fff;
  font-size: 25px;
  line-height: 1.08;
}
.ind-process p {
  margin-top: 12px;
  color: #aeb7bb;
  font-size: 12px;
  line-height: 1.6;
}

.ind-quality {
  background: var(--ind-paper);
}
.ind-quality-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  gap: 84px;
  align-items: center;
}
.ind-quality-copy h2 {
  max-width: 610px;
  font-size: clamp(42px, 4.1vw, 60px);
  line-height: 1.04;
}
.ind-quality-copy > p:not(.ind-kicker) {
  max-width: 570px;
  margin-top: 24px;
  color: var(--ind-copy);
  font-size: 16px;
  line-height: 1.72;
}
.ind-quality-points {
  margin: 32px 0;
  border-top: 1px solid var(--ind-line);
}
.ind-quality-points > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--ind-line);
}
.ind-quality-points strong {
  font-size: 12px;
}
.ind-quality-points span {
  color: var(--ind-copy);
  font-size: 12px;
  line-height: 1.55;
}
.ind-quality-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #d8d8d3;
}
.ind-quality-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.ind-quality-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-quality-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 13, 15, 0.74), transparent 48%);
}
.ind-quality-note {
  position: absolute;
  z-index: 1;
  left: 31px;
  right: 31px;
  bottom: 29px;
  padding-left: 18px;
  border-left: 3px solid var(--ind-orange);
}
.ind-quality-note small {
  display: block;
  color: #c5ccce;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.ind-quality-note strong {
  display: block;
  max-width: 520px;
  margin-top: 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.ind-industries {
  background: #fff;
}
.ind-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ind-line);
}
.ind-industry-grid > a {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border-right: 1px solid var(--ind-line);
  border-bottom: 1px solid var(--ind-line);
  transition:
    color 0.22s ease,
    background 0.22s ease;
}
.ind-industry-grid > a:nth-child(3n) {
  border-right: 0;
}
.ind-industry-grid > a:nth-child(n + 4) {
  border-bottom: 0;
}
.ind-industry-grid > a:hover {
  background: var(--ind-steel);
  color: #fff;
}
.ind-industry-grid span {
  color: var(--ind-orange);
  font-size: 10px;
  font-weight: 750;
}
.ind-industry-grid h3 {
  max-width: 300px;
  margin-top: 56px;
  font-size: 29px;
  line-height: 1.05;
}
.ind-industry-grid p {
  margin-top: 12px;
  color: var(--ind-copy);
  font-size: 13px;
  line-height: 1.6;
}
.ind-industry-grid a:hover p {
  color: #b6bec1;
}
.ind-industry-grid a:hover span,
.ind-industry-grid a:hover b {
  color: var(--ind-orange-bright);
}
.ind-industry-grid b {
  margin-top: auto;
  padding-top: 18px;
  color: var(--ind-orange);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ind-brief {
  background: #e9ebea;
}
.ind-brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: 100px;
  align-items: start;
}
.ind-brief-grid h2 {
  max-width: 620px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.05;
}
.ind-brief-grid > div:first-child > p:not(.ind-kicker) {
  max-width: 560px;
  margin-top: 22px;
  color: var(--ind-copy);
  font-size: 15px;
  line-height: 1.7;
}
.ind-brief-list {
  border-top: 1px solid #cbd0d1;
}
.ind-brief-list > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #cbd0d1;
}
.ind-brief-list span {
  color: var(--ind-orange);
  font-size: 10px;
  font-weight: 750;
}
.ind-brief-list p {
  color: var(--ind-copy);
  font-size: 13px;
  line-height: 1.58;
}
.ind-brief-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ind-ink);
  font-size: 15px;
}

.ind-cta-wrap {
  padding: 0 0 104px;
  background: #e9ebea;
}
.ind-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
  padding: 68px 72px;
  background: var(--ind-deep);
  color: #fff;
}
.ind-cta h2 {
  max-width: 850px;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.03;
}
.ind-cta p:not(.ind-kicker) {
  max-width: 640px;
  margin-top: 20px;
  color: #aeb7bb;
  font-size: 15px;
  line-height: 1.68;
}
.ind-cta-actions {
  min-width: 190px;
  display: grid;
  gap: 12px;
}
.ind-cta-actions > a:not(.ind-button) {
  color: #b6bec1;
  font-size: 11px;
  text-align: center;
}

.ind-process-section .ind-kicker,
.ind-cta .ind-kicker {
  color: var(--ind-orange-bright);
}

.site-footer,
.lux-page .site-footer {
  background: var(--ind-deep);
}
.lux-page .footer-title,
.footer-title {
  color: var(--ind-orange-bright);
}
.lux-page .footer-bottom,
.footer-bottom {
  color: #9ba4a7;
}

@media (max-width: 1120px) {
  .nav-toggle,
  .lux-page .nav-toggle {
    display: block;
  }
  .site-nav,
  .lux-page .site-nav {
    position: absolute;
    left: 32px;
    right: 32px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 13px;
    border: 1px solid var(--ind-line);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 22px 45px rgba(17, 23, 27, 0.13);
  }
  .site-nav.is-open,
  .lux-page .site-nav.is-open {
    display: flex;
  }
  .site-nav a,
  .lux-page .site-nav a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--ind-line);
  }
  .site-nav a[aria-current="page"]::after,
  .lux-page .site-nav a[aria-current="page"]::after {
    left: 10px;
    right: auto;
    bottom: 5px;
    width: 20px;
  }
  .nav-cta,
  .lux-page .nav-cta {
    margin: 10px 0 0;
  }
  .ind-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .ind-hero-copy {
    max-width: 760px;
    padding-bottom: 0;
  }
  .ind-hero-visual {
    min-height: 620px;
  }
  .ind-hero-visual img {
    height: 620px;
  }
  .ind-hero h1 {
    font-size: clamp(50px, 6vw, 66px);
  }
  .ind-product-layout {
    grid-template-columns: 1fr 1fr;
  }
  .ind-capability-grid,
  .ind-quality-grid {
    gap: 52px;
  }
  .ind-logo-rail {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 34px;
  }
  .ind-process article {
    padding-inline: 18px;
  }
}

@media (max-width: 900px) {
  .ind-hero {
    padding-top: 64px;
  }
  .ind-hero-grid,
  .ind-heading,
  .ind-product-layout,
  .ind-capability-grid,
  .ind-quality-grid,
  .ind-brief-grid {
    grid-template-columns: 1fr;
  }
  .ind-hero-copy {
    max-width: 760px;
    padding-bottom: 10px;
  }
  .ind-hero-visual {
    min-height: 540px;
  }
  .ind-hero-visual img {
    height: 540px;
  }
  .ind-heading {
    gap: 22px;
  }
  .ind-heading > p {
    justify-self: start;
  }
  .ind-product-feature {
    min-height: 620px;
  }
  .ind-product-list > a {
    min-height: 160px;
  }
  .ind-capability-grid,
  .ind-quality-grid,
  .ind-brief-grid {
    gap: 54px;
  }
  .ind-factory-collage {
    max-width: 720px;
  }
  .ind-process {
    grid-template-columns: repeat(3, 1fr);
  }
  .ind-process article:nth-child(3) {
    border-right: 0;
  }
  .ind-process article:nth-child(-n + 3) {
    border-bottom: 1px solid #505b61;
  }
  .ind-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ind-industry-grid > a,
  .ind-industry-grid > a:nth-child(3n),
  .ind-industry-grid > a:nth-child(n + 4) {
    border-right: 1px solid var(--ind-line);
    border-bottom: 1px solid var(--ind-line);
  }
  .ind-industry-grid > a:nth-child(2n) {
    border-right: 0;
  }
  .ind-industry-grid > a:nth-child(n + 5) {
    border-bottom: 0;
  }
  .ind-brief-grid {
    gap: 45px;
  }
  .ind-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .ind-cta-actions {
    max-width: 250px;
  }
  .lux-page .lux-section {
    padding: 78px 0;
  }
  .product-filter {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .product-filter-count {
    padding-bottom: 0;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .nav-inner,
  .container,
  .lux-page .container,
  .lux-shell,
  .lux-page .topbar-inner,
  .lux-page .nav-inner,
  .ind-shell {
    width: calc(100% - 36px);
  }
  .topbar-inner > span {
    display: none;
  }
  .topbar-inner {
    justify-content: flex-end;
  }
  .nav-inner,
  .lux-page .nav-inner {
    min-height: 68px;
  }
  .site-nav,
  .lux-page .site-nav {
    left: 18px;
    right: 18px;
    top: 68px;
  }
  .ind-section {
    padding: 66px 0;
  }
  .ind-heading {
    margin-bottom: 34px;
  }
  .ind-heading h2 {
    font-size: 39px;
  }
  .ind-heading > p {
    font-size: 14px;
  }
  .ind-hero {
    padding-top: 50px;
  }
  .ind-hero h1 {
    font-size: clamp(42px, 12.6vw, 55px);
  }
  .ind-hero-lede {
    margin-top: 22px;
    font-size: 15px;
  }
  .ind-actions {
    display: grid;
  }
  .ind-button {
    width: 100%;
  }
  .ind-hero-mini {
    gap: 8px 18px;
  }
  .ind-hero-mini span + span::before {
    left: -11px;
  }
  .ind-hero-visual,
  .ind-hero-visual img {
    min-height: 430px;
    height: 430px;
  }
  .ind-hero-visual {
    width: calc(100% + 36px);
    margin-inline: -18px;
  }
  .ind-visual-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .ind-proof-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
  }
  .ind-proof-strip > div,
  .ind-proof-strip > div:first-child {
    min-height: 104px;
    padding: 16px 12px;
    border-right: 1px solid var(--ind-line);
    border-bottom: 1px solid var(--ind-line);
  }
  .ind-proof-strip > div:nth-child(2n) {
    border-right: 0;
  }
  .ind-logo-heading {
    display: grid;
    gap: 5px;
  }
  .ind-logo-rail {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 14px;
  }
  .ind-logo-rail img {
    height: 34px;
  }
  .ind-product-feature {
    min-height: 510px;
  }
  .ind-product-feature > div {
    left: 22px;
    right: 22px;
    bottom: 23px;
  }
  .ind-product-feature h3 {
    font-size: 31px;
  }
  .ind-product-feature p {
    font-size: 12px;
  }
  .ind-product-feature > picture {
    background: #fff;
  }
  .ind-product-feature > picture img {
    object-fit: contain;
    object-position: center top;
  }
  .ind-product-list > a {
    min-height: 0;
    grid-template-columns: 30px 1fr auto;
    gap: 12px;
    padding: 22px 3px 22px 0;
  }
  .ind-product-list h3 {
    font-size: 24px;
  }
  .ind-factory-collage {
    min-height: 485px;
    padding: 0 40px 54px 0;
  }
  .ind-factory-main {
    height: 430px;
  }
  .ind-factory-detail {
    width: 47%;
    height: 190px;
    border-width: 6px;
  }
  .ind-commercial-proof {
    grid-template-columns: 1fr;
  }
  .ind-commercial-proof > div {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--ind-line);
  }
  .ind-commercial-proof > div:last-child {
    border-bottom: 0;
  }
  .ind-factory-label {
    bottom: 15px;
    padding: 13px 15px;
  }
  .ind-capability-copy h2,
  .ind-quality-copy h2,
  .ind-brief-grid h2 {
    font-size: 39px;
  }
  .ind-capability-copy > p:not(.ind-kicker):not(.ind-commercial-note),
  .ind-quality-copy > p:not(.ind-kicker) {
    font-size: 14px;
  }
  .ind-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .ind-process article,
  .ind-process article:nth-child(3) {
    min-height: 235px;
    padding: 20px 15px;
    border-right: 1px solid #505b61;
    border-bottom: 1px solid #505b61;
  }
  .ind-process article:nth-child(2n) {
    border-right: 0;
  }
  .ind-process article:last-child {
    grid-column: 1 / -1;
    min-height: 190px;
    border-right: 0;
    border-bottom: 0;
  }
  .ind-process small {
    margin-top: 28px;
  }
  .ind-quality-media,
  .ind-quality-media img {
    min-height: 420px;
    height: 420px;
  }
  .ind-quality-points > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .ind-quality-note {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .ind-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ind-industry-grid > a,
  .ind-industry-grid > a:nth-child(2n),
  .ind-industry-grid > a:nth-child(3n),
  .ind-industry-grid > a:nth-child(n + 4),
  .ind-industry-grid > a:nth-child(n + 5) {
    min-height: 250px;
    padding: 20px 16px;
    border-right: 1px solid var(--ind-line);
    border-bottom: 1px solid var(--ind-line);
  }
  .ind-industry-grid > a:nth-child(2n) {
    border-right: 0;
  }
  .ind-industry-grid > a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .ind-industry-grid h3 {
    margin-top: 30px;
    font-size: 22px;
  }
  .ind-industry-grid p {
    font-size: 11px;
  }
  .ind-brief-list > div {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }
  .ind-cta-wrap {
    padding-bottom: 70px;
  }
  .ind-cta {
    gap: 34px;
    padding: 38px 24px;
  }
  .ind-cta h2 {
    font-size: 39px;
  }
  .ind-cta p:not(.ind-kicker) {
    font-size: 13px;
  }
  .lux-page .lux-section-head h2,
  .lux-page .lux-section-intro h2,
  .lux-page .lux-editorial-copy h2,
  .lux-page .lux-dark-grid h2 {
    font-size: 38px;
  }
}

/* Final identity overrides must follow the legacy theme layers above. */
.brand-mark,
.lux-page .brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  overflow: visible;
  border-radius: 0;
  background: url("/assets/srrp-mark.svg") center / contain no-repeat;
  transform: none;
}
.brand-mark::after,
.lux-page .brand-mark::after {
  display: none;
}
.brand-name strong,
.lux-page .brand-name strong {
  font-size: 18px;
  letter-spacing: 0.11em;
}
.brand-name span,
.lux-page .brand-name span {
  max-width: 150px;
  color: #626a6e;
  font-size: 6px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.ind-commercial-proof {
  grid-template-columns: repeat(2, 1fr);
}
.ind-commercial-proof > div:nth-child(2) {
  border-right: 0;
}
.ind-commercial-proof > div:nth-child(-n + 2) {
  border-bottom: 1px solid var(--ind-line);
}
.lux-evidence-card::after {
  background: linear-gradient(0deg, rgba(8, 11, 13, 0.84), transparent 64%);
}
.lux-page .lux-evidence-card h3 {
  color: #fff;
}
.lux-page .lux-evidence-card span {
  color: #ff8a63;
}

@media (max-width: 640px) {
  .brand-mark,
  .lux-page .brand-mark {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }
  .brand-name strong,
  .lux-page .brand-name strong {
    font-size: 16px;
  }
  .brand-name span,
  .lux-page .brand-name span {
    max-width: 127px;
    font-size: 5px;
  }
  .ind-commercial-proof {
    grid-template-columns: 1fr;
  }
  .ind-commercial-proof > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--ind-line);
  }
}

/* Industries — application-led editorial page. */
.industries-page main {
  overflow: clip;
}

.industries-hero {
  padding: 58px 0 0;
  background: var(--ind-white);
}
.industries-hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(400px, 0.82fr);
  gap: 82px;
  align-items: end;
  margin-bottom: 42px;
}
.industries-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--ind-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.industries-breadcrumb a {
  transition: color 0.2s ease;
}
.industries-breadcrumb a:hover {
  color: var(--ind-orange);
}
.industries-hero h1 {
  max-width: 790px;
  font-size: clamp(54px, 4.9vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.industries-hero h1 em {
  display: block;
  color: var(--ind-orange-display);
  font-style: normal;
}
.industries-hero-brief {
  padding-bottom: 4px;
}
.industries-hero-brief > p {
  max-width: 560px;
  color: var(--ind-copy);
  font-size: 16px;
  line-height: 1.72;
}
.industries-hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1823 / 863;
  background: var(--ind-deep);
}
.industries-hero-media picture,
.industries-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}
.industries-hero-media img {
  object-fit: cover;
}
.industries-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8, 11, 13, 0.64),
    transparent 45%
  );
  pointer-events: none;
}
.industries-visual-note {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  width: min(370px, calc(100% - 56px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 17, 20, 0.84);
  color: #fff;
  backdrop-filter: blur(12px);
}
.industries-visual-note > span {
  color: var(--ind-orange-bright);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.industries-visual-note p {
  color: #aeb7ba;
  font-size: 11px;
  line-height: 1.55;
}
.industries-visual-note strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
}
.industries-context-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  border-bottom: 1px solid var(--ind-line);
}
.industries-context-strip > div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 32px;
  border-right: 1px solid var(--ind-line);
}
.industries-context-strip > div:first-child {
  padding-left: 0;
}
.industries-context-strip > div:last-child {
  border-right: 0;
}
.industries-context-strip small {
  color: var(--ind-orange);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.industries-context-strip strong {
  margin-top: 10px;
  color: #30383d;
  font-size: 14px;
}

.industries-portfolio {
  background: var(--ind-paper);
}
.industries-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 310px);
  gap: 18px;
}
.industries-story {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: var(--ind-deep);
  color: #fff;
}
.industries-story-primary {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}
.industries-story-machinery,
.industries-story-industrial {
  grid-column: 8 / -1;
}
.industries-story-machinery {
  grid-row: 1;
}
.industries-story-industrial {
  grid-row: 2;
}
.industries-story picture,
.industries-story > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.industries-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.industries-story-primary img {
  object-position: 58% center;
}
.industries-story-machinery img {
  object-position: center 47%;
}
.industries-story-industrial img {
  object-position: center 68%;
}
.industries-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8, 11, 13, 0.92),
    rgba(8, 11, 13, 0.02) 72%
  );
}
.industries-story:hover img {
  transform: scale(1.035);
}
.industries-story-copy {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 31px;
  left: 34px;
}
.industries-story-copy > span {
  color: var(--ind-orange-bright);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.industries-story-copy h3 {
  max-width: 640px;
  margin-top: 14px;
  color: #fff;
  font-size: 29px;
  line-height: 1.08;
}
.industries-story-primary .industries-story-copy {
  right: 45px;
  bottom: 43px;
  left: 45px;
}
.industries-story-primary .industries-story-copy h3 {
  max-width: 670px;
  font-size: clamp(38px, 4vw, 54px);
}
.industries-story-copy p {
  max-width: 590px;
  margin-top: 14px;
  color: #c0c7c9;
  font-size: 13px;
  line-height: 1.62;
}
.industries-story-copy b {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.industries-route-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--ind-line);
  border-bottom: 1px solid var(--ind-line);
}
.industries-route-rail a {
  min-height: 98px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 20px 24px;
  border-right: 1px solid var(--ind-line);
  transition:
    color 0.22s ease,
    background 0.22s ease;
}
.industries-route-rail a:first-child {
  padding-left: 0;
}
.industries-route-rail a:last-child {
  border-right: 0;
}
.industries-route-rail a:hover {
  background: var(--ind-ink);
  color: #fff;
}
.industries-route-rail span {
  color: var(--ind-orange);
  font-size: 10px;
  font-weight: 750;
}
.industries-route-rail strong {
  font-size: 13px;
  line-height: 1.35;
}
.industries-route-rail b {
  color: var(--ind-orange);
  font-size: 14px;
}

.industries-programs {
  background: #fff;
}
.industries-program-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 96px;
  align-items: center;
}
.industries-program-row + .industries-program-row {
  margin-top: 140px;
}
.industries-program-row-reverse {
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
}
.industries-program-row-reverse .industries-program-media {
  order: 2;
}
.industries-program-row-reverse .industries-program-copy {
  order: 1;
}
.industries-program-media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #d9d9d4;
}
.industries-program-media picture,
.industries-program-media img {
  display: block;
  width: 100%;
  height: 100%;
}
.industries-program-media img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.industries-program-row:first-child .industries-program-media img {
  object-position: 66% center;
}
.industries-program-media > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 13px;
  background: rgba(15, 19, 22, 0.88);
  color: #d3d8da;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.industries-program-copy h2 {
  max-width: 600px;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.03;
}
.industries-program-copy > p:not(.ind-kicker) {
  max-width: 620px;
  margin-top: 24px;
  color: var(--ind-copy);
  font-size: 16px;
  line-height: 1.75;
}
.industries-spec-list {
  margin: 34px 0 26px;
  border-top: 1px solid var(--ind-line);
}
.industries-spec-list > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ind-line);
}
.industries-spec-list dt {
  color: var(--ind-orange);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.industries-spec-list dd {
  color: var(--ind-copy);
  font-size: 13px;
  line-height: 1.55;
}

.industries-lens {
  background: var(--ind-deep);
  color: #fff;
}
.industries-lens .ind-heading > p {
  color: #aeb7ba;
}
.industries-lens-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #465056;
}
.industries-lens-list > div {
  min-height: 154px;
  display: grid;
  grid-template-columns: 42px minmax(210px, 0.82fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 32px 28px 0;
  border-right: 1px solid #465056;
  border-bottom: 1px solid #465056;
}
.industries-lens-list > div:nth-child(2n) {
  padding-left: 32px;
  border-right: 0;
}
.industries-lens-list span {
  align-self: start;
  padding-top: 5px;
  color: var(--ind-orange-bright);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.industries-lens-list h3 {
  color: #fff;
  font-size: 23px;
  line-height: 1.12;
}
.industries-lens-list p {
  color: #aeb7ba;
  font-size: 12px;
  line-height: 1.6;
}

.industries-materials {
  background: #e8eae8;
}
.industries-material-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  gap: 96px;
  align-items: start;
}
.industries-material-media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ind-deep);
}
.industries-material-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industries-material-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 11, 13, 0.86), transparent 52%);
}
.industries-material-media > div {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
  padding-left: 18px;
  border-left: 3px solid var(--ind-orange-display);
}
.industries-material-media small {
  display: block;
  color: var(--ind-orange-bright);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.industries-material-media strong {
  display: block;
  max-width: 520px;
  margin-top: 8px;
  color: #fff;
  font-size: 23px;
  line-height: 1.25;
}
.industries-material-copy {
  padding-top: 16px;
}
.industries-material-copy h2 {
  max-width: 670px;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.03;
}
.industries-material-copy > p:not(.ind-kicker) {
  max-width: 630px;
  margin-top: 23px;
  color: var(--ind-copy);
  font-size: 15px;
  line-height: 1.72;
}
.industries-material-list {
  margin-top: 34px;
  border-top: 1px solid #c8cdce;
}
.industries-material-list a {
  display: grid;
  grid-template-columns: 38px minmax(180px, 0.9fr) 1.1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid #c8cdce;
  transition:
    padding 0.22s ease,
    color 0.22s ease,
    background 0.22s ease;
}
.industries-material-list a:hover {
  padding-inline: 15px;
  background: var(--ind-ink);
  color: #fff;
}
.industries-material-list span,
.industries-material-list b {
  color: var(--ind-orange);
  font-size: 10px;
  font-weight: 750;
}
.industries-material-list strong {
  font-size: 16px;
}
.industries-material-list small {
  color: var(--ind-copy);
  font-size: 11px;
  line-height: 1.45;
}
.industries-material-list a:hover small {
  color: #b8c0c3;
}

.industries-evidence {
  background: #fff;
}
.industries-evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: 94px;
  align-items: center;
}
.industries-evidence-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #d8d8d3;
}
.industries-evidence-media picture,
.industries-evidence-media img {
  display: block;
  width: 100%;
  height: 100%;
}
.industries-evidence-media img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.industries-evidence-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 11, 13, 0.82), transparent 52%);
}
.industries-evidence-media figcaption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
  padding-left: 18px;
  border-left: 3px solid var(--ind-orange-display);
}
.industries-evidence-media small {
  display: block;
  color: var(--ind-orange-bright);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.industries-evidence-media strong {
  display: block;
  max-width: 540px;
  margin-top: 8px;
  color: #fff;
  font-size: 23px;
  line-height: 1.23;
}
.industries-evidence-copy h2 {
  max-width: 650px;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.03;
}
.industries-evidence-copy > p:not(.ind-kicker) {
  max-width: 620px;
  margin-top: 24px;
  color: var(--ind-copy);
  font-size: 15px;
  line-height: 1.72;
}
.industries-brief-list {
  margin: 33px 0 26px;
  border-top: 1px solid var(--ind-line);
}
.industries-brief-list > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 17px;
  padding: 17px 0;
  border-bottom: 1px solid var(--ind-line);
}
.industries-brief-list span {
  color: var(--ind-orange);
  font-size: 10px;
  font-weight: 750;
}
.industries-brief-list p {
  color: var(--ind-copy);
  font-size: 12px;
  line-height: 1.55;
}
.industries-brief-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ind-ink);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .industries-hero-intro {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 42px;
  }
  .industries-mosaic {
    grid-template-rows: repeat(2, 270px);
  }
  .industries-program-row,
  .industries-program-row-reverse {
    gap: 54px;
  }
  .industries-material-grid,
  .industries-evidence-grid {
    gap: 52px;
  }
  .industries-lens-list > div {
    grid-template-columns: 38px 1fr;
    gap: 12px 18px;
  }
  .industries-lens-list p {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .industries-hero {
    padding-top: 58px;
  }
  .industries-hero-intro,
  .industries-program-row,
  .industries-program-row-reverse,
  .industries-material-grid,
  .industries-evidence-grid {
    grid-template-columns: 1fr;
  }
  .industries-hero-intro {
    gap: 32px;
    margin-bottom: 40px;
  }
  .industries-hero h1 {
    max-width: 760px;
    font-size: clamp(50px, 9vw, 70px);
  }
  .industries-hero-brief {
    max-width: 680px;
  }
  .industries-context-strip > div {
    padding-inline: 20px;
  }
  .industries-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 520px 370px;
  }
  .industries-story-primary {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .industries-story-machinery {
    grid-column: 1;
    grid-row: 2;
  }
  .industries-story-industrial {
    grid-column: 2;
    grid-row: 2;
  }
  .industries-story-copy {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }
  .industries-route-rail {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-route-rail a:nth-child(2) {
    border-right: 0;
  }
  .industries-route-rail a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ind-line);
  }
  .industries-program-row-reverse .industries-program-media,
  .industries-program-row-reverse .industries-program-copy {
    order: initial;
  }
  .industries-program-row + .industries-program-row {
    margin-top: 100px;
  }
  .industries-program-media {
    min-height: 560px;
  }
  .industries-lens-list {
    grid-template-columns: 1fr;
  }
  .industries-lens-list > div,
  .industries-lens-list > div:nth-child(2n) {
    padding: 26px 0;
    border-right: 0;
  }
  .industries-material-media {
    min-height: 600px;
  }
  .industries-evidence-media {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .industries-hero {
    padding-top: 42px;
  }
  .industries-breadcrumb {
    margin-bottom: 28px;
  }
  .industries-hero h1 {
    font-size: clamp(43px, 13.2vw, 55px);
  }
  .industries-hero-brief > p {
    font-size: 14px;
  }
  .industries-hero-media {
    width: 100vw;
    max-width: 100vw;
    height: 300px;
    margin-inline: calc(50% - 50vw);
    aspect-ratio: auto;
  }
  .industries-hero-media img {
    object-position: 45% center;
  }
  .industries-visual-note {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 32px 1fr;
    padding: 13px 14px;
  }
  .industries-visual-note p {
    font-size: 9px;
  }
  .industries-visual-note strong {
    font-size: 11px;
  }
  .industries-context-strip {
    grid-template-columns: 1fr;
  }
  .industries-context-strip > div,
  .industries-context-strip > div:first-child {
    min-height: 82px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ind-line);
  }
  .industries-context-strip > div:last-child {
    border-bottom: 0;
  }
  .industries-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }
  .industries-story-primary,
  .industries-story-machinery,
  .industries-story-industrial {
    grid-column: 1;
    grid-row: auto;
    min-height: 370px;
  }
  .industries-story-primary {
    min-height: 500px;
  }
  .industries-story-primary .industries-story-copy {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }
  .industries-story-primary .industries-story-copy h3,
  .industries-story-copy h3 {
    font-size: 29px;
  }
  .industries-story-copy p {
    font-size: 11px;
  }
  .industries-route-rail {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .industries-route-rail a,
  .industries-route-rail a:first-child {
    min-height: 72px;
    padding: 14px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--ind-line);
  }
  .industries-route-rail a:last-child {
    border-bottom: 0;
  }
  .industries-program-row + .industries-program-row {
    margin-top: 82px;
  }
  .industries-program-media {
    min-height: 340px;
  }
  .industries-program-copy h2,
  .industries-material-copy h2,
  .industries-evidence-copy h2 {
    font-size: 39px;
  }
  .industries-program-copy > p:not(.ind-kicker),
  .industries-material-copy > p:not(.ind-kicker),
  .industries-evidence-copy > p:not(.ind-kicker) {
    font-size: 14px;
  }
  .industries-spec-list > div {
    grid-template-columns: 84px 1fr;
    gap: 12px;
  }
  .industries-lens-list > div,
  .industries-lens-list > div:nth-child(2n) {
    grid-template-columns: 30px 1fr;
    min-height: 0;
    gap: 8px 12px;
    padding: 22px 0;
  }
  .industries-lens-list h3 {
    font-size: 20px;
  }
  .industries-lens-list p {
    font-size: 11px;
  }
  .industries-material-media {
    min-height: 390px;
  }
  .industries-material-media > div {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }
  .industries-material-media strong {
    font-size: 18px;
  }
  .industries-material-list a {
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    min-height: 82px;
  }
  .industries-material-list small {
    grid-column: 2;
    margin-top: -16px;
  }
  .industries-material-list b {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
  .industries-evidence-media {
    min-height: 350px;
  }
  .industries-evidence-media figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }
  .industries-evidence-media strong {
    font-size: 18px;
  }
}

/* Resources — engineering review hero. */
.resources-hero {
  padding: 58px 0 0;
  background: var(--ind-white);
}
.resources-hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
  gap: 82px;
  align-items: end;
  margin-bottom: 42px;
}
.resources-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--ind-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.resources-breadcrumb a {
  transition: color 0.2s ease;
}
.resources-breadcrumb a:hover {
  color: var(--ind-orange);
}
.resources-hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.resources-hero-brief {
  padding-bottom: 4px;
}
.resources-hero-brief > p {
  max-width: 550px;
  color: var(--ind-copy);
  font-size: 16px;
  line-height: 1.72;
}
.resources-hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1820 / 864;
  background: var(--ind-deep);
}
.resources-hero-media picture,
.resources-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}
.resources-hero-media img {
  object-fit: cover;
}
.resources-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8, 11, 13, 0.62),
    transparent 44%
  );
  pointer-events: none;
}
.resources-visual-note {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  width: min(390px, calc(100% - 56px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 17, 20, 0.84);
  color: #fff;
  backdrop-filter: blur(12px);
}
.resources-visual-note > span {
  color: var(--ind-orange-bright);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.resources-visual-note p {
  color: #aeb7ba;
  font-size: 11px;
  line-height: 1.55;
}
.resources-visual-note strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
}
.resources-context-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--ind-line);
}
.resources-context-strip > div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 32px;
  border-right: 1px solid var(--ind-line);
}
.resources-context-strip > div:first-child {
  padding-left: 0;
}
.resources-context-strip > div:last-child {
  border-right: 0;
}
.resources-context-strip small {
  color: var(--ind-orange);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.resources-context-strip strong {
  margin-top: 10px;
  color: #30383d;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .resources-hero-intro {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .resources-hero {
    padding-top: 50px;
  }
  .resources-hero-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 38px;
  }
  .resources-hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 8.8vw, 66px);
  }
  .resources-hero-brief {
    max-width: 680px;
  }
  .resources-context-strip > div {
    padding-inline: 20px;
  }
}

@media (max-width: 640px) {
  .resources-hero {
    padding-top: 42px;
  }
  .resources-breadcrumb {
    margin-bottom: 28px;
  }
  .resources-hero h1 {
    font-size: clamp(43px, 13vw, 54px);
  }
  .resources-hero-brief > p {
    font-size: 14px;
  }
  .resources-hero-media {
    width: 100vw;
    max-width: 100vw;
    height: 300px;
    margin-inline: calc(50% - 50vw);
    aspect-ratio: auto;
  }
  .resources-hero-media img {
    object-position: 45% center;
  }
  .resources-visual-note {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 32px 1fr;
    padding: 13px 14px;
  }
  .resources-visual-note p {
    font-size: 9px;
  }
  .resources-visual-note strong {
    font-size: 11px;
  }
  .resources-context-strip {
    grid-template-columns: 1fr;
  }
  .resources-context-strip > div,
  .resources-context-strip > div:first-child {
    min-height: 82px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ind-line);
  }
  .resources-context-strip > div:last-child {
    border-bottom: 0;
  }
}

/* Primary menu pages — homepage-scale cinematic hero system. */
.cinematic-menu-hero {
  overflow: visible;
  padding: 0;
  background: var(--ind-white);
}
.cinematic-menu-hero .lux-hero-grid,
.cinematic-menu-hero.ref-hero .ref-hero-grid,
.cinematic-menu-hero .menu-hero-stage {
  position: relative;
  width: 100vw;
  max-width: none;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--ind-deep);
  color: #fff;
}
.cinematic-menu-hero .lux-hero-copy,
.cinematic-menu-hero.ref-hero .ref-hero-copy,
.cinematic-menu-hero .industries-hero-intro,
.cinematic-menu-hero .resources-hero-intro {
  position: relative;
  z-index: 2;
  width: min(var(--ind-shell), calc(100% - 64px));
  max-width: none;
  min-height: 0;
  display: block;
  margin: 0 auto;
  padding: 82px 0 104px;
  color: #fff;
}
.cinematic-menu-hero .lux-hero-copy > *,
.cinematic-menu-hero.ref-hero .ref-hero-copy > *,
.cinematic-menu-hero .industries-hero-intro > *,
.cinematic-menu-hero .resources-hero-intro > * {
  max-width: 620px;
}
.cinematic-menu-hero.lux-hero h1,
.cinematic-menu-hero.ref-hero h1,
.cinematic-menu-hero.industries-hero h1,
.cinematic-menu-hero.resources-hero h1 {
  max-width: 680px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}
.cinematic-menu-hero .lux-hero-copy > p:not(.lux-eyebrow):not(.lux-caption),
.cinematic-menu-hero.ref-hero
  .ref-hero-copy
  > p:not(.ref-kicker):not(.ref-meta),
.cinematic-menu-hero .industries-hero-brief > p,
.cinematic-menu-hero .resources-hero-brief > p {
  max-width: 620px;
  color: #d4dcdf;
}
.cinematic-menu-hero .industries-hero-brief,
.cinematic-menu-hero .resources-hero-brief {
  max-width: 620px;
  margin-top: 28px;
  padding: 0;
}
.cinematic-menu-hero .industries-breadcrumb,
.cinematic-menu-hero .resources-breadcrumb {
  color: #aeb8bc;
}
.cinematic-menu-hero .industries-breadcrumb a:hover,
.cinematic-menu-hero .resources-breadcrumb a:hover {
  color: #fff;
}
.cinematic-menu-hero .ind-kicker,
.cinematic-menu-hero .lux-eyebrow,
.cinematic-menu-hero .ref-kicker {
  color: var(--ind-orange-bright) !important;
}
.cinematic-menu-hero.industries-hero h1 em {
  color: #ff6940;
}
.cinematic-menu-hero .lux-caption,
.cinematic-menu-hero .ref-meta,
.cinematic-menu-hero .ind-hero-mini {
  color: #c7d0d3 !important;
}
.cinematic-menu-hero .ind-hero-mini span + span::before {
  color: #7f898e;
}
.cinematic-menu-hero .lux-button-secondary,
.cinematic-menu-hero .ind-button-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(10, 14, 17, 0.24);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.cinematic-menu-hero .lux-button-secondary:hover,
.cinematic-menu-hero .ind-button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.cinematic-menu-hero .lux-hero-media,
.cinematic-menu-hero.ref-hero .ref-hero-media,
.cinematic-menu-hero .industries-hero-media,
.cinematic-menu-hero .resources-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--ind-deep);
  box-shadow: none;
}
.cinematic-menu-hero .lux-hero-media picture,
.cinematic-menu-hero .lux-hero-media img,
.cinematic-menu-hero.ref-hero .ref-hero-media picture,
.cinematic-menu-hero.ref-hero .ref-hero-media img,
.cinematic-menu-hero .industries-hero-media picture,
.cinematic-menu-hero .industries-hero-media img,
.cinematic-menu-hero .resources-hero-media picture,
.cinematic-menu-hero .resources-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  object-fit: cover;
  object-position: 60% 52%;
}
.cinematic-menu-hero .lux-hero-media::after,
.cinematic-menu-hero.ref-hero .ref-hero-media::after,
.cinematic-menu-hero .industries-hero-media::after,
.cinematic-menu-hero .resources-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 10, 12, 0.97) 0%,
      rgba(7, 10, 12, 0.9) 31%,
      rgba(7, 10, 12, 0.48) 55%,
      rgba(7, 10, 12, 0.1) 79%
    ),
    linear-gradient(0deg, rgba(7, 10, 12, 0.58), transparent 46%);
  pointer-events: none;
}
.cinematic-menu-hero .lux-hero-index,
.cinematic-menu-hero .lux-media-card,
.cinematic-menu-hero .ref-media-label,
.cinematic-menu-hero .industries-visual-note,
.cinematic-menu-hero .resources-visual-note {
  z-index: 1;
}
.cinematic-menu-hero .lux-hero-index {
  top: 32px;
  right: max(32px, calc((100vw - var(--ind-shell)) / 2));
  left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: rgba(13, 17, 20, 0.78);
}
.cinematic-menu-hero .lux-media-card {
  right: max(32px, calc((100vw - var(--ind-shell)) / 2));
  bottom: 32px;
  max-width: 360px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(13, 17, 20, 0.84);
  color: #fff;
  box-shadow: none;
}
.cinematic-menu-hero .lux-media-card strong {
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 750;
}
.cinematic-menu-hero .lux-media-card span {
  color: #aeb7ba;
  font-size: 11px;
}
.cinematic-menu-hero .ref-media-label {
  right: max(32px, calc((100vw - var(--ind-shell)) / 2));
  bottom: 32px;
  left: auto;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 17, 20, 0.8);
}
.cinematic-menu-hero .industries-visual-note,
.cinematic-menu-hero .resources-visual-note {
  right: max(32px, calc((100vw - var(--ind-shell)) / 2));
  bottom: 32px;
}
.cinematic-menu-hero .lux-proof-row,
.cinematic-menu-hero .industries-context-strip,
.cinematic-menu-hero .resources-context-strip {
  position: relative;
  z-index: 2;
  margin-top: 0;
  background: var(--ind-white);
}
.menu-hero--products .lux-hero-media img {
  object-position: 58% 52%;
}
.menu-hero--applications .ref-hero-media img {
  object-position: 60% 52%;
}
.menu-hero--quality .lux-hero-media img {
  object-position: 56% 52%;
}
.menu-hero--company .lux-hero-media img {
  object-position: 57% 52%;
}
.menu-hero--industries .industries-hero-media img {
  object-position: 55% 52%;
}
.menu-hero--resources .resources-hero-media img {
  object-position: 54% 52%;
}

@media (max-width: 1120px) {
  .cinematic-menu-hero .lux-hero-grid,
  .cinematic-menu-hero.ref-hero .ref-hero-grid,
  .cinematic-menu-hero .menu-hero-stage {
    min-height: 790px;
  }
  .cinematic-menu-hero .lux-hero-copy,
  .cinematic-menu-hero.ref-hero .ref-hero-copy,
  .cinematic-menu-hero .industries-hero-intro,
  .cinematic-menu-hero .resources-hero-intro {
    width: calc(100% - 64px);
  }
}

@media (max-width: 900px) {
  .cinematic-menu-hero .lux-hero-grid,
  .cinematic-menu-hero.ref-hero .ref-hero-grid,
  .cinematic-menu-hero .menu-hero-stage {
    min-height: 840px;
  }
  .cinematic-menu-hero .lux-hero-copy,
  .cinematic-menu-hero.ref-hero .ref-hero-copy,
  .cinematic-menu-hero .industries-hero-intro,
  .cinematic-menu-hero .resources-hero-intro {
    max-width: none;
  }
  .cinematic-menu-hero.menu-hero--company .lux-hero-media::after,
  .cinematic-menu-hero.menu-hero--quality .lux-hero-media::after {
    background:
      linear-gradient(
        90deg,
        rgba(7, 10, 12, 0.96) 0%,
        rgba(7, 10, 12, 0.86) 52%,
        rgba(7, 10, 12, 0.48) 100%
      ),
      linear-gradient(0deg, rgba(7, 10, 12, 0.56), transparent 48%);
  }
}

@media (max-width: 640px) {
  .cinematic-menu-hero .lux-hero-grid,
  .cinematic-menu-hero.ref-hero .ref-hero-grid,
  .cinematic-menu-hero .menu-hero-stage {
    min-height: 880px;
  }
  .cinematic-menu-hero.menu-hero--capabilities .lux-hero-grid {
    min-height: 920px;
  }
  .cinematic-menu-hero.menu-hero--quality .lux-hero-grid,
  .cinematic-menu-hero.menu-hero--industries .menu-hero-stage {
    min-height: 900px;
  }
  .cinematic-menu-hero.menu-hero--resources .menu-hero-stage {
    min-height: 860px;
  }
  .cinematic-menu-hero .lux-hero-copy,
  .cinematic-menu-hero.ref-hero .ref-hero-copy,
  .cinematic-menu-hero .industries-hero-intro,
  .cinematic-menu-hero .resources-hero-intro {
    width: calc(100% - 36px);
    padding: 56px 0 180px;
  }
  .cinematic-menu-hero .lux-hero-copy > *,
  .cinematic-menu-hero.ref-hero .ref-hero-copy > *,
  .cinematic-menu-hero .industries-hero-intro > *,
  .cinematic-menu-hero .resources-hero-intro > * {
    max-width: none;
  }
  .cinematic-menu-hero .industries-hero-brief,
  .cinematic-menu-hero .resources-hero-brief {
    margin-top: 24px;
  }
  .cinematic-menu-hero .lux-hero-media,
  .cinematic-menu-hero.ref-hero .ref-hero-media,
  .cinematic-menu-hero .industries-hero-media,
  .cinematic-menu-hero .resources-hero-media {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .cinematic-menu-hero .lux-hero-media img,
  .cinematic-menu-hero.ref-hero .ref-hero-media img,
  .cinematic-menu-hero .industries-hero-media img,
  .cinematic-menu-hero .resources-hero-media img {
    height: 100%;
    object-position: 66% 52%;
  }
  .menu-hero--capabilities .lux-hero-media img {
    object-position: 70% 52%;
  }
  .menu-hero--products .lux-hero-media img {
    object-position: 64% 52%;
  }
  .menu-hero--applications .ref-hero-media img {
    object-position: 66% 52%;
  }
  .menu-hero--quality .lux-hero-media img {
    object-position: 72% 52%;
  }
  .menu-hero--company .lux-hero-media img {
    object-position: 64% 50%;
  }
  .menu-hero--industries .industries-hero-media img {
    object-position: 62% 52%;
  }
  .menu-hero--resources .resources-hero-media img {
    object-position: 62% 52%;
  }
  .cinematic-menu-hero .lux-hero-media::after,
  .cinematic-menu-hero.ref-hero .ref-hero-media::after,
  .cinematic-menu-hero .industries-hero-media::after,
  .cinematic-menu-hero .resources-hero-media::after {
    background:
      linear-gradient(
        180deg,
        rgba(7, 10, 12, 0.94) 0%,
        rgba(7, 10, 12, 0.84) 64%,
        rgba(7, 10, 12, 0.54) 100%
      ),
      linear-gradient(90deg, rgba(7, 10, 12, 0.42), transparent 88%);
  }
  .cinematic-menu-hero.menu-hero--quality .lux-hero-media::after,
  .cinematic-menu-hero.menu-hero--company .lux-hero-media::after {
    background:
      linear-gradient(
        180deg,
        rgba(7, 10, 12, 0.97) 0%,
        rgba(7, 10, 12, 0.88) 62%,
        rgba(7, 10, 12, 0.58) 100%
      ),
      linear-gradient(90deg, rgba(7, 10, 12, 0.54), transparent 92%);
  }
  .cinematic-menu-hero .lux-hero-index {
    top: 18px;
    right: 18px;
  }
  .cinematic-menu-hero .lux-media-card,
  .cinematic-menu-hero .ref-media-label,
  .cinematic-menu-hero .industries-visual-note,
  .cinematic-menu-hero .resources-visual-note {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    max-width: none;
  }
  .cinematic-menu-hero .lux-media-card {
    padding: 16px 18px;
  }
  .cinematic-menu-hero .lux-media-card strong {
    font-size: 12px;
  }
  .cinematic-menu-hero .lux-media-card span {
    font-size: 10px;
  }
  .cinematic-menu-hero .ref-media-label {
    padding: 13px 14px;
  }
}

/* Homepage scroll storytelling — progressive, GPU-friendly and reduced-motion safe. */
.home-scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}
.home-scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #d83b15, #ff7045 58%, #ffad78);
  box-shadow: 0 0 18px rgba(255, 92, 45, 0.62);
  transform: scaleX(0);
  transform-origin: left center;
}
html.home-motion-ready,
html.home-motion-ready body[data-page="home"] {
  overflow-x: hidden;
}

@keyframes home-motion-item-in {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.home-motion-ready body[data-page="home"] [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 52px, 0);
    transition:
      opacity 760ms ease,
      transform 960ms cubic-bezier(0.2, 0.75, 0.25, 1),
      clip-path 1100ms cubic-bezier(0.2, 0.75, 0.25, 1),
      filter 900ms ease;
  }
  html.home-motion-ready body[data-page="home"] [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  html.home-motion-ready
    body[data-page="home"]
    [data-motion="copy-left"] {
    transform: translate3d(-62px, 0, 0);
  }
  html.home-motion-ready
    body[data-page="home"]
    [data-motion="copy-right"] {
    transform: translate3d(62px, 0, 0);
  }
  html.home-motion-ready
    body[data-page="home"]
    :is(
      [data-motion="copy-left"],
      [data-motion="copy-right"]
    ).is-visible {
    transform: translate3d(0, 0, 0);
  }

  html.home-motion-ready
    body[data-page="home"]
    :is(
      [data-motion="hero-copy"],
      [data-motion="section-heading"],
      [data-motion="stagger"],
      [data-motion="product-system"],
      [data-motion="process-track"],
      [data-motion="card-grid"]
    ) {
    opacity: 1;
    transform: none;
  }
  html.home-motion-ready
    body[data-page="home"]
    :is(
      [data-motion="hero-copy"],
      [data-motion="section-heading"],
      [data-motion="stagger"],
      [data-motion="product-system"],
      [data-motion="process-track"],
      [data-motion="card-grid"]
    )
    .home-motion-item {
    opacity: 0;
  }
  html.home-motion-ready
    body[data-page="home"]
    :is(
      [data-motion="hero-copy"],
      [data-motion="section-heading"],
      [data-motion="stagger"],
      [data-motion="product-system"],
      [data-motion="process-track"],
      [data-motion="card-grid"]
    ).is-visible
    .home-motion-item {
    animation: home-motion-item-in 820ms cubic-bezier(0.2, 0.75, 0.25, 1)
      both;
    animation-delay: calc(90ms + var(--motion-index, 0) * 72ms);
  }

  html.home-motion-ready
    body[data-page="home"]
    [data-motion="hero-copy"].is-visible
    .home-motion-item {
    animation-duration: 920ms;
    animation-delay: calc(120ms + var(--motion-index, 0) * 105ms);
  }

  html.home-motion-ready
    body[data-page="home"]
    [data-motion="hero-media"] {
    opacity: 1;
    transform: none;
  }
  html.home-motion-ready
    body[data-page="home"]
    [data-motion="hero-media"]
    picture {
    clip-path: inset(0 0 0 100%);
    filter: saturate(0.72) brightness(0.78);
    transition:
      clip-path 1250ms cubic-bezier(0.16, 0.84, 0.24, 1),
      filter 1400ms ease;
  }
  html.home-motion-ready
    body[data-page="home"]
    [data-motion="hero-media"].is-visible
    picture {
    clip-path: inset(0);
    filter: saturate(1) brightness(1);
  }
  html.home-motion-ready
    body[data-page="home"]
    [data-motion="hero-media"]
    .ind-visual-badge {
    opacity: 0;
    transform: translate3d(28px, 0, 0);
    transition:
      opacity 680ms ease 760ms,
      transform 820ms cubic-bezier(0.2, 0.75, 0.25, 1) 760ms;
  }
  html.home-motion-ready
    body[data-page="home"]
    [data-motion="hero-media"].is-visible
    .ind-visual-badge {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  html.home-motion-ready
    body[data-page="home"]
    :is([data-motion="image-left"], [data-motion="image-right"]) {
    position: relative;
    opacity: 1;
    filter: saturate(0.76) brightness(0.82);
    transform: none;
  }
  html.home-motion-ready
    body[data-page="home"]
    :is([data-motion="image-left"], [data-motion="image-right"])::before {
    content: "";
    position: absolute;
    z-index: 5;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, #11171a 0%, #20282c 97%, #ff633c 97%);
    transform: scaleX(1);
    transition: transform 1100ms cubic-bezier(0.16, 0.84, 0.24, 1);
  }
  html.home-motion-ready
    body[data-page="home"]
    [data-motion="image-left"]::before {
    transform-origin: right center;
  }
  html.home-motion-ready
    body[data-page="home"]
    [data-motion="image-right"]::before {
    background: linear-gradient(90deg, #ff633c 0 3%, #20282c 3%, #11171a 100%);
    transform-origin: left center;
  }
  html.home-motion-ready
    body[data-page="home"]
    :is(
      [data-motion="image-left"],
      [data-motion="image-right"]
    ).is-visible {
    filter: saturate(1) brightness(1);
  }
  html.home-motion-ready
    body[data-page="home"]
    :is(
      [data-motion="image-left"],
      [data-motion="image-right"]
    ).is-visible::before {
    transform: scaleX(0);
  }

  html.home-motion-ready
    body[data-page="home"]
    .ind-process[data-motion="process-track"] {
    position: relative;
  }
  html.home-motion-ready
    body[data-page="home"]
    .ind-process[data-motion="process-track"]::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -1px;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #f04b22, #ff8a60 72%, transparent);
    box-shadow: 0 0 18px rgba(255, 94, 48, 0.42);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1400ms cubic-bezier(0.18, 0.82, 0.24, 1) 120ms;
  }
  html.home-motion-ready
    body[data-page="home"]
    .ind-process[data-motion="process-track"].is-visible::before {
    transform: scaleX(1);
  }

  html.home-motion-ready body[data-page="home"] .ind-cta[data-motion="cta"] {
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 64px, 0) scale(0.985);
  }
  html.home-motion-ready
    body[data-page="home"]
    .ind-cta[data-motion="cta"].is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }
  html.home-motion-ready
    body[data-page="home"]
    .ind-cta[data-motion="cta"]::before {
    content: "";
    position: absolute;
    inset: -70%;
    pointer-events: none;
    background: radial-gradient(
      circle,
      rgba(239, 74, 32, 0.22),
      rgba(239, 74, 32, 0) 58%
    );
    opacity: 0;
    transform: translate3d(-24%, 0, 0);
    transition:
      opacity 1100ms ease 260ms,
      transform 1800ms cubic-bezier(0.2, 0.75, 0.25, 1) 260ms;
  }
  html.home-motion-ready
    body[data-page="home"]
    .ind-cta[data-motion="cta"].is-visible::before {
    opacity: 1;
    transform: translate3d(24%, 0, 0);
  }
  html.home-motion-ready
    body[data-page="home"]
    .ind-cta[data-motion="cta"]
    > * {
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
  html.home-motion-ready body[data-page="home"] .home-motion-parallax {
    transform: translate3d(0, var(--motion-parallax-y, 0), 0)
      scale(var(--motion-parallax-scale, 1.06));
    transform-origin: center center;
    will-change: transform;
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: no-preference) {
  html.home-motion-ready body[data-page="home"] [data-reveal] {
    transform: translate3d(0, 34px, 0);
  }
  html.home-motion-ready
    body[data-page="home"]
    :is(
      [data-motion="hero-copy"],
      [data-motion="section-heading"],
      [data-motion="stagger"],
      [data-motion="product-system"],
      [data-motion="process-track"],
      [data-motion="card-grid"],
      [data-motion="hero-media"],
      [data-motion="image-left"],
      [data-motion="image-right"]
    ) {
    transform: none;
  }
  html.home-motion-ready
    body[data-page="home"]
    :is(
      [data-motion="copy-left"],
      [data-motion="copy-right"]
    ) {
    transform: translate3d(0, 34px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-scroll-progress {
    display: none;
  }
}
