:root {
  --ink: #091014;
  --panel: #10181d;
  --panel-soft: #17232a;
  --line: #d7dee2;
  --muted: #61717a;
  --paper: #f5f7f8;
  --white: #ffffff;
  --red: #e31b23;
  --red-dark: #a20f15;
  --steel: #8fa0a9;
  --shadow: 0 24px 80px rgba(7, 13, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 13, 16, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 13, 16, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.brand img {
  width: 214px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.header-cta {
  padding: 11px 15px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 82% 12%, rgba(227, 27, 35, 0.2), transparent 26%),
    linear-gradient(135deg, #050809 0%, #0f191e 48%, #050809 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 4.5vw, 70px);
  width: min(1180px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 98px 0 52px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #ffb6ba;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 38px rgba(227, 27, 35, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 30px 0 0;
  max-width: 620px;
}

.hero-metrics div {
  width: auto;
  min-height: 108px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metrics dt {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.hero-visual {
  position: relative;
}

.scan-panel {
  position: relative;
  min-height: 430px;
  padding: 26px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.hero-photo-panel {
  min-height: 0;
  height: clamp(350px, 35vw, 450px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 0;
  background: #eef0f2;
}

.hero-photo-panel::before,
.hero-photo-panel::after {
  display: none;
}

.scan-panel::before,
.scan-panel::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.scan-panel::before {
  inset: 16px;
}

.scan-panel::after {
  width: 160px;
  height: 160px;
  right: -40px;
  bottom: -40px;
  border-radius: 50%;
}

.scan-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 30px 52px rgba(0, 0, 0, 0.36));
}

.hero-photo-panel img {
  min-height: 0;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.03);
}

.hero-photo-panel .scan-line,
.hero-photo-panel .spec-card {
  display: none;
}

.hero-photo-panel .visual-caption {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(7, 13, 16, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.scan-line {
  position: absolute;
  z-index: 2;
  top: 20%;
  right: 22px;
  left: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(227, 27, 35, 0.95), transparent);
  box-shadow: 0 0 26px rgba(227, 27, 35, 0.76);
  animation: scan 4.8s ease-in-out infinite;
}

.spec-card {
  position: absolute;
  z-index: 3;
  width: 176px;
  padding: 13px 15px;
  color: var(--white);
  background: rgba(7, 13, 16, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.spec-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--steel);
  font-size: 0.74rem;
}

.spec-card strong {
  font-size: 1rem;
}

.spec-card-one {
  top: 52px;
  right: 36px;
}

.spec-card-two {
  bottom: 82px;
  left: 30px;
}

.visual-caption {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-caption span {
  color: var(--steel);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-caption strong {
  color: var(--white);
  font-size: 0.86rem;
  text-align: right;
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(260px);
  }
}

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  color: var(--white);
  background: rgba(7, 13, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.proof-strip div {
  min-height: 96px;
  padding: 19px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip span {
  display: block;
  margin-bottom: 9px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.25;
}

.section {
  padding: clamp(70px, 9vw, 128px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.intro-grid,
.industries-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.intro-grid p:last-child,
.industries-grid p {
  max-width: 690px;
  margin-top: clamp(44px, 7vw, 92px);
  color: var(--muted);
  font-size: 1.12rem;
}

.intro-grid h2 {
  max-width: 680px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

.section-heading.compact {
  max-width: 840px;
}

.capabilities {
  background: var(--white);
}

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

.capability-card {
  min-height: 460px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.capability-card:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(7, 13, 16, 0.16);
}

.capability-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.capability-card div {
  padding: 26px;
}

.capability-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
}

.capability-card p,
.process-grid p {
  color: var(--muted);
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  color: #39474f;
  font-size: 0.84rem;
  list-style: none;
  border-top: 1px solid var(--line);
}

.spec-list li {
  position: relative;
  padding-left: 18px;
}

.spec-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--red);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  min-height: 0;
  color: var(--white);
  background: var(--ink);
}

.feature-copy {
  align-self: center;
  padding: clamp(44px, 7vw, 96px);
}

.feature-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.feature-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  align-self: center;
  aspect-ratio: 4 / 3;
  background: #050809;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.quality {
  color: var(--white);
  background: radial-gradient(circle at 12% 0, rgba(227, 27, 35, 0.18), transparent 26%),
    linear-gradient(135deg, #071014, #122128);
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.quality-copy {
  position: sticky;
  top: 110px;
}

.quality-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.quality-copy .button.secondary {
  margin-top: 16px;
}

.quality-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.quality-panel article {
  min-height: 250px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.quality-panel span {
  display: inline-flex;
  margin-bottom: 46px;
  color: #ffb6ba;
  font-size: 0.76rem;
  font-weight: 800;
}

.quality-panel h3 {
  color: var(--white);
}

.quality-panel p {
  color: rgba(255, 255, 255, 0.68);
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid article {
  min-height: 270px;
  padding: 30px;
  background: var(--paper);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.industries {
  color: var(--white);
  background: var(--panel);
}

.industries .eyebrow {
  color: #ffb6ba;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-list li {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact {
  padding: clamp(70px, 9vw, 128px) 20px;
  background: linear-gradient(135deg, #070d10, #152228);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 66px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.contact-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.rfq-notes {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  list-style: none;
}

.rfq-notes li {
  position: relative;
  padding-left: 22px;
}

.rfq-notes li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--red);
}

.quote-form {
  display: grid;
  gap: 16px;
}

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

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--white);
  font: inherit;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.file-drop {
  position: relative;
  padding: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(227, 27, 35, 0.72)) border-box;
  border: 1px dashed transparent;
}

.file-drop span {
  color: var(--white);
  font-size: 1rem;
}

.file-drop input {
  min-height: auto;
  padding: 12px 0 2px;
  background: transparent;
  border: 0;
}

.file-drop small {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 500;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form select option {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: 42px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #050809;
}

.site-footer img {
  width: 230px;
  margin-bottom: 16px;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer address {
  display: grid;
  gap: 8px;
  font-style: normal;
  text-align: right;
}

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

.simple-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: radial-gradient(circle at 75% 18%, rgba(227, 27, 35, 0.22), transparent 28%),
    linear-gradient(135deg, #050809, #132026);
}

.thank-you {
  width: min(760px, 100%);
  padding: clamp(30px, 6vw, 70px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.thank-you img {
  width: 250px;
  margin-bottom: 52px;
}

.thank-you h1 {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
}

.thank-you p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 210px;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
    width: 46px;
    height: 42px;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    grid-column: 1 / -1;
    padding: 18px;
    background: rgba(7, 13, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: grid;
    justify-content: stretch;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .section-heading,
  .feature-band,
  .quality-grid,
  .industries-grid,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-grid p:last-child,
  .industries-grid p {
    margin-top: 0;
  }

  .hero-grid {
    padding-top: 118px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .scan-panel {
    min-height: 360px;
  }

  .hero-photo-panel {
    min-height: 0;
  }

  .scan-panel img {
    height: 330px;
  }

  .hero-photo-panel img {
    height: 100%;
  }

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

  .proof-strip,
  .quality-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .quality-copy {
    position: static;
  }

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

  .site-footer address {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 186px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .hero-grid,
  .section-inner,
  .proof-strip {
    width: min(100% - 28px, 1180px);
  }

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

  .hero-metrics div {
    width: 100%;
  }

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

  .capability-grid,
  .proof-strip,
  .quality-panel,
  .process-grid,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: -34px;
  }

  .proof-strip div,
  .proof-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .capability-card {
    min-height: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-copy,
  .contact-panel {
    padding: 30px 20px;
  }
}

/* Stitch alignment: dark technical-readout direction */
:root {
  --ink: #091014;
  --panel: #10181d;
  --panel-soft: #17232a;
  --line: #2a373e;
  --muted: #8fa0a9;
  --paper: #0d1418;
  --white: #dce3e9;
  --red: #e31b23;
  --red-dark: #a20f15;
  --steel: #8fa0a9;
  --shadow: none;
}

body {
  background: var(--ink);
  color: var(--white);
}

.site-header {
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(9, 16, 20, 0.96);
  border-bottom-color: var(--line);
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(9, 16, 20, 0.98);
  box-shadow: none;
}

.brand img {
  width: 170px;
}

.site-nav {
  gap: clamp(16px, 2.5vw, 32px);
  font-size: 0.68rem;
}

.site-nav a {
  color: var(--steel);
}

.site-nav a:hover,
.site-nav a:last-child {
  color: var(--red);
}

.header-cta {
  background: var(--panel);
  border-color: var(--line);
  font-size: 0.68rem;
}

.hero {
  min-height: 720px;
  background:
    linear-gradient(135deg, #070d10 0%, #091014 46%, #111c21 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 16, 20, 1) 0%, rgba(9, 16, 20, 0.94) 38%, rgba(9, 16, 20, 0.3) 70%, rgba(9, 16, 20, 0.04) 100%),
    linear-gradient(180deg, rgba(9, 16, 20, 0.02), rgba(9, 16, 20, 0.46)),
    url("assets/hero-equipment-composite.png") 58% center / cover no-repeat;
  opacity: 0.98;
}

.hero::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--red);
  opacity: 0.96;
}

.hero-bg {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 640px);
  align-content: center;
  width: min(1280px, calc(100% - 64px));
  min-height: 720px;
  padding: 84px 0 48px;
}

.hero-visual {
  display: none;
}

.eyebrow {
  color: var(--red);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

h1 {
  max-width: 640px;
  font-size: clamp(2.6rem, 4.4vw, 4.9rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.6rem);
  line-height: 1.08;
}

.hero-lede {
  color: var(--steel);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.button {
  min-height: 46px;
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.button.primary {
  background: var(--red);
  box-shadow: none;
}

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

.button.secondary {
  border-color: var(--steel);
  background: transparent;
}

.button.secondary:hover {
  background: var(--panel-soft);
}

.hero-metrics {
  max-width: 620px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-metrics div {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
}

.hero-metrics dt {
  font-size: 1.25rem;
}

.hero-metrics dd {
  color: var(--steel);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-strip {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--panel-soft);
  border-width: 0 0 1px;
  border-color: var(--line);
  box-shadow: none;
}

.proof-strip div {
  min-height: 68px;
  padding: 20px clamp(18px, 4vw, 56px);
  border-color: var(--line);
}

.proof-strip span {
  color: var(--red);
}

.proof-strip strong {
  color: var(--steel);
  font-weight: 500;
}

.section {
  padding: clamp(76px, 9vw, 128px) 0;
  background: var(--ink);
}

.section-inner {
  width: min(1280px, calc(100% - 64px));
}

.intro,
.capabilities,
.process {
  background: var(--ink);
}

.intro {
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  grid-template-columns: 0.34fr 0.66fr;
  align-items: start;
}

.intro-grid p:last-child,
.industries-grid p {
  margin-top: 0;
  color: var(--steel);
}

.intro-grid h2 {
  max-width: 760px;
}

.capabilities {
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: block;
  max-width: 900px;
}

.section-heading .eyebrow {
  display: none;
}

.capability-grid {
  gap: 24px;
  background: transparent;
  border: 0;
}

.capability-card {
  min-height: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: none;
}

.capability-card:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: none;
}

.capability-card img {
  aspect-ratio: 16 / 9;
  filter: grayscale(1) saturate(0.9) contrast(1.08);
}

.capability-card:hover img {
  filter: grayscale(0) saturate(0.95) contrast(1.05);
}

.capability-card img.product-card-image {
  height: 360px;
  object-fit: contain;
  object-position: center;
  padding: 8px 18px 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.92), rgba(226, 231, 234, 0.92) 48%, rgba(16, 24, 29, 0.18) 49%, rgba(16, 24, 29, 0.02) 68%),
    linear-gradient(135deg, #eef2f4, #d9e0e4);
  filter: grayscale(0.35) saturate(0.9) contrast(1.05);
}

.capability-card:hover img.product-card-image {
  filter: grayscale(0) saturate(1) contrast(1.04);
}

.capability-card div {
  padding: 24px;
}

.capability-card span {
  display: none;
}

.capability-card h3 {
  color: var(--white);
}

.capability-card p,
.process-grid p {
  color: var(--steel);
}

.spec-list {
  color: var(--white);
  border-top-color: var(--line);
}

.spec-list li::before {
  width: 4px;
  height: 4px;
}

.feature-band {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.feature-copy {
  padding: clamp(54px, 8vw, 104px) clamp(24px, 7vw, 96px);
}

.feature-copy h2 {
  max-width: 560px;
}

.feature-copy p:not(.eyebrow) {
  color: var(--steel);
}

.feature-copy .button.primary {
  background: transparent;
  border: 2px solid var(--red);
}

.feature-copy .button.primary:hover {
  background: var(--red);
}

.feature-image {
  align-self: stretch;
  aspect-ratio: auto;
}

.feature-image img {
  object-fit: cover;
}

.quality {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.quality::before {
  position: absolute;
  top: 34px;
  right: max(24px, calc((100vw - 1280px) / 2));
  bottom: 34px;
  width: min(34vw, 430px);
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 16, 20, 0.92), rgba(9, 16, 20, 0.28)),
    url("assets/quality-cnc-component.png") center / contain no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.quality-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.quality-copy {
  position: static;
  max-width: 760px;
  margin-bottom: 48px;
}

.quality-copy p:not(.eyebrow),
.quality-panel p {
  color: var(--steel);
}

.quality-panel {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  background: transparent;
  border: 0;
}

.quality-panel article {
  min-height: auto;
  padding: 28px;
  background: var(--panel);
  border-left: 2px solid var(--line);
}

.quality-panel article:first-child,
.quality-panel article:hover {
  border-left-color: var(--red);
}

.quality-panel span {
  display: none;
}

.process {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.process .section-heading {
  max-width: none;
  text-align: center;
  margin-bottom: 64px;
}

.process-grid {
  gap: 0;
  background: transparent;
  border: 0;
}

.process-grid article {
  position: relative;
  min-height: auto;
  padding: 42px 32px 32px;
  background: transparent;
  border-right: 1px solid var(--line);
}

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

.process-grid article::before {
  position: absolute;
  top: -18px;
  left: 24px;
  color: var(--panel-soft);
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1;
}

.process-grid article:nth-child(1)::before {
  content: "01";
}

.process-grid article:nth-child(2)::before {
  content: "02";
}

.process-grid article:nth-child(3)::before {
  content: "03";
}

.process-grid article:nth-child(4)::before {
  content: "04";
}

.process-grid span {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.process-grid h3 {
  position: relative;
  z-index: 1;
}

.industries {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.industries-grid {
  display: block;
  text-align: center;
}

.industries-grid h2 {
  margin-bottom: 48px;
}

.industry-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.industry-list li {
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 18px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--panel);
  border-color: var(--line);
}

.industry-list li:hover {
  border-color: var(--red);
}

.contact {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.contact-panel {
  width: min(1280px, 100%);
  grid-template-columns: 0.42fr 0.58fr;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-panel > div:first-child {
  align-self: start;
}

.contact-panel p:not(.eyebrow) {
  color: var(--steel);
}

.rfq-notes li {
  padding: 16px 16px 16px 46px;
  background: var(--ink);
  border: 1px solid var(--line);
}

.rfq-notes li::before {
  top: 24px;
  left: 20px;
}

.quote-form {
  padding: clamp(24px, 4vw, 48px);
  background: var(--ink);
  border: 1px solid var(--line);
}

.quote-form label {
  color: var(--steel);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  background: var(--panel);
  border-color: var(--line);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 0;
  border-color: var(--red);
}

.file-drop {
  background: transparent;
  border-color: var(--line);
}

.file-drop:hover {
  border-color: var(--red);
}

.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(9, 16, 20, 0.99) 0%, rgba(9, 16, 20, 0.9) 62%, rgba(9, 16, 20, 0.5) 100%),
      linear-gradient(180deg, rgba(9, 16, 20, 0.18), rgba(9, 16, 20, 0.72)),
      url("assets/hero-equipment-composite.png") 66% center / cover no-repeat;
  }

  .hero-grid {
    width: min(100% - 40px, 1280px);
    padding: 128px 0 72px;
  }

  .proof-strip,
  .quality-panel,
  .industry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality::before {
    display: none;
  }

  .feature-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 420px;
  }

  .process-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-card img.product-card-image {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .hero-grid,
  .section-inner {
    width: min(100% - 28px, 1280px);
  }

  .intro-grid,
  .industries-grid {
    display: block;
  }

  .intro-grid h2 {
    margin-bottom: 22px;
  }

  .intro-grid p:last-child,
  .industries-grid p {
    max-width: none;
    font-size: 1rem;
  }

  .proof-strip,
  .quality-panel,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .capability-card img.product-card-image {
    height: 280px;
  }
}
