
:root {
  --ink: #080b0d;
  --ink-soft: #101519;
  --paper: #f1f1ec;
  --paper-bright: #fafaf7;
  --steel: #aeb6bc;
  --steel-dark: #323b41;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(8,11,13,.14);
  --orange: #ff5200;
  --orange-hot: #ff6b16;
  --radius: 24px;
  --max: 1320px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* V10 — RAPID campaign story module */
.rapid-story {
  min-height: 0;
  padding: 110px clamp(18px, 4vw, 72px) 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 80, 0, .12), transparent 30%),
    #07090a;
}
.rapid-story-header {
  width: min(1400px, 100%);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
  gap: 60px;
  align-items: end;
}
.rapid-story-header h2 {
  margin: 0;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.5rem, 7vw, 7.4rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.rapid-story-header h2 em { color: var(--orange); font-style: normal; }
.rapid-story-header > p { margin: 0 0 8px; color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.7; }
.rapid-story-shell { width: min(1400px, 100%); margin: 0 auto; }
.rapid-story-viewport {
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2vw, 28px);
  border: 1px solid rgba(255,255,255,.12);
  background: #020303;
  box-shadow: 0 36px 100px rgba(0,0,0,.42);
}
.rapid-story-slide { width: 100%; height: 100%; min-height: 700px; animation: rapid-panel-in .42s ease both; }
.rapid-story-slide[hidden] { display: none; }
.rapid-story-slide img { width: 100%; height: 700px; display: block; object-fit: contain; }
.rapid-story-slide-wide a { height: 100%; display: grid; place-items: center; }
@keyframes rapid-panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.rapid-story-controls {
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  gap: 12px;
  align-items: stretch;
  margin-top: 14px;
}
.rapid-arrow,
.rapid-story-steps button {
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.035);
  cursor: pointer;
}
.rapid-arrow { min-height: 64px; font-size: 1.6rem; }
.rapid-arrow:hover, .rapid-arrow:focus-visible { color: #fff; border-color: var(--orange); }
.rapid-story-steps { display: grid; grid-template-columns: repeat(5, 1fr); }
.rapid-story-steps button { min-height: 64px; padding: 10px 12px; border-right: 0; font: inherit; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }
.rapid-story-steps button:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.rapid-story-steps button span { display: block; margin-bottom: 3px; color: var(--orange); font-weight: 800; }
.rapid-story-steps button.is-active { color: #fff; background: var(--orange); }
.rapid-story-steps button.is-active span { color: #111; }
.rapid-story-action {
  width: min(1400px, 100%);
  margin: 24px auto 0;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(255, 80, 0, .4);
  background: rgba(255,255,255,.035);
}
.rapid-story-action > div strong, .rapid-story-action > div span { display: block; }
.rapid-story-action > div strong { color: #fff; font-size: 1.25rem; text-transform: uppercase; }
.rapid-story-action > div span { margin-top: 5px; color: rgba(255,255,255,.62); }
.rapid-story-action .button { min-width: 220px; justify-content: center; }
.rapid-call-link { color: #fff; text-decoration: none; }
.rapid-call-link small { display: block; margin-bottom: 3px; color: rgba(255,255,255,.54); letter-spacing: .08em; text-transform: uppercase; }
.rapid-call-link strong { font-size: 1.2rem; }

@media (max-width: 900px) {
  .rapid-story { padding-top: 82px; }
  .rapid-story-header { grid-template-columns: 1fr; gap: 24px; }
  .rapid-story-viewport { min-height: 620px; }
  .rapid-story-slide { min-height: 560px; }
  .rapid-story-slide img { height: 560px; }
  .rapid-story-action { grid-template-columns: 1fr 1fr; }
  .rapid-story-action > div { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .rapid-story { padding: 72px 14px 62px; }
  .rapid-story-header { margin-bottom: 30px; }
  .rapid-story-header h2 { font-size: clamp(3.25rem, 16vw, 5rem); }
  .rapid-story-viewport { min-height: 510px; padding: 8px; }
  .rapid-story-slide { min-height: 490px; }
  .rapid-story-slide img { height: 490px; }
  .rapid-story-controls { grid-template-columns: 48px 1fr 48px; }
  .rapid-story-steps button { padding: 8px 3px; font-size: 0; }
  .rapid-story-steps button span { margin: 0; font-size: .72rem; }
  .rapid-story-action { grid-template-columns: 1fr; padding: 24px 20px; }
  .rapid-story-action > div { grid-column: auto; }
  .rapid-story-action .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .rapid-story-slide { animation: none; }
}

* { box-sizing: border-box; }
html { scroll-behaviour: smooth; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open, body.panel-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--ink); background: var(--orange); }

.skip-link {
  position: fixed; left: 18px; top: 18px; z-index: 9999;
  transform: translateY(-160%); background: white; color: black; padding: 10px 14px;
  border-radius: 10px; transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 120; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg,var(--orange),var(--orange)); }
.cursor-glow {
  position: fixed; width: 560px; height: 560px; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(255,91,34,.09), transparent 68%);
  transform: translate(-50%,-50%); transition: opacity .3s; opacity: 0;
}

.site-header {
  position: fixed; z-index: 100; top: 14px; left: 50%; transform: translateX(-50%);
  width: min(calc(100% - 28px), 1480px); height: 72px; padding: 0 12px 0 22px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  color: white; border: 1px solid rgba(255,255,255,.13); border-radius: 18px;
  background: rgba(8,11,13,.62); backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 12px 40px rgba(0,0,0,.18); transition: .35s var(--ease);
}
.site-header.scrolled { top: 8px; height: 64px; background: rgba(8,11,13,.88); }
.brand { width: 220px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav a { padding: 10px 13px; border-radius: 12px; font-size: .84rem; color: rgba(255,255,255,.74); transition: .2s; }
.desktop-nav a:hover { color: white; background: rgba(255,255,255,.08); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.phone-link { display: flex; gap: 8px; align-items: center; font-weight: 700; font-size: .85rem; white-space: nowrap; }
.availability-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,82,0,.12); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: rgba(255,255,255,.1); }
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; background: white; transition: .25s; }
.mobile-menu { display: none; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 22px; border: 1px solid transparent; border-radius: 14px;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: .86rem; letter-spacing: -.01em;
  transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 42px; padding: 0 16px; border-radius: 11px; color: var(--ink); background: var(--orange); }
.button-primary { color: white; background: var(--orange); box-shadow: 0 12px 35px rgba(255,91,34,.22); }
.button-primary:hover { background: var(--orange-hot); }
.button-ghost { color: white; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.button-dark { color: white; background: var(--ink); }
.button-light { color: var(--ink); background: white; }

.hero {
  position: relative; min-height: 100svh; color: white; background: var(--ink); overflow: hidden;
  display: grid; grid-template-columns: minmax(0,1.12fr) minmax(420px,.88fr); align-items: center;
  padding: 145px max(5vw,40px) 95px;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 160px; pointer-events: none;
  background: linear-gradient(transparent,rgba(0,0,0,.34));
}
.hero-grid {
  position: absolute; inset: 0; opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: linear-gradient(to right, black, transparent 76%);
}
.hero-noise { position: absolute; inset: 0; opacity: .08; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }
.hero-copy { position: relative; z-index: 4; max-width: 830px; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.66); font-family: "Space Grotesk",sans-serif; font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 2px; background: var(--orange); }
.eyebrow.dark { color: rgba(8,11,13,.56); }
.hero h1, h2, h3 { font-family: "Space Grotesk", sans-serif; }
.hero h1 { max-width: 900px; margin: 0; font-size: clamp(4.2rem,8.5vw,9rem); line-height: .84; letter-spacing: -.075em; font-weight: 600; }
.hero h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-subhead { max-width: 700px; margin: 32px 0 0; color: rgba(255,255,255,.72); font-size: clamp(1rem,1.45vw,1.25rem); line-height: 1.65; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 30px; color: rgba(255,255,255,.56); font-size: .78rem; }
.hero-proof span::before { content: "✦"; margin-right: 8px; color: var(--orange); }
.hero-visual { position: relative; z-index: 2; height: min(74vh,790px); min-height: 580px; perspective: 1000px; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.orbit-one { width: 650px; height: 650px; right: -90px; top: 40px; }
.orbit-two { width: 420px; height: 420px; right: 25px; top: 160px; border-color: rgba(255,91,34,.2); }
.product-object { position: absolute; filter: drop-shadow(0 35px 40px rgba(0,0,0,.55)); transform-style: preserve-3d; transition: transform .15s linear; }
.product-object img { width: 100%; }
.product-object span { position: absolute; right: 0; bottom: 0; padding: 7px 10px; color: var(--ink); background: var(--orange); border-radius: 7px; font-family: "Space Grotesk",sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .08em; }
.object-shs { width: 380px; right: 4%; top: 10%; transform: rotate(-8deg); }
.object-beam { width: 320px; right: 30%; top: 43%; transform: rotate(9deg); }
.object-pipe { width: 250px; right: -1%; top: 58%; transform: rotate(-14deg); }
.hero-stamp { position: absolute; right: 8%; bottom: 9%; width: 140px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; border-radius: 50%; color: var(--ink); background: var(--orange); transform: rotate(8deg); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.hero-stamp::before { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(8,11,13,.45); border-radius: 50%; }
.hero-stamp strong { position: relative; font-family: "Space Grotesk",sans-serif; font-size: .9rem; }
.hero-stamp span { position: relative; font-size: .58rem; line-height: 1.3; letter-spacing: .08em; }
.scroll-cue { position: absolute; z-index: 5; bottom: 28px; left: max(5vw,40px); display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.5); font-size: .72rem; text-transform: uppercase; letter-spacing: .11em; }
.scroll-cue i { position: relative; width: 46px; height: 1px; background: rgba(255,255,255,.25); overflow: hidden; }
.scroll-cue i::after { content:""; position:absolute; width: 16px; height:1px; background:white; animation: scrollLine 1.6s infinite; }
@keyframes scrollLine { from { transform: translateX(-18px); } to { transform: translateX(52px); } }

.proof-strip { position: relative; z-index: 3; overflow: hidden; background: var(--orange); color: var(--ink); border-block: 1px solid var(--ink); }
.marquee-track { display: flex; align-items: center; gap: 28px; width: max-content; padding: 15px 0; animation: marquee 28s linear infinite; font-family: "Space Grotesk",sans-serif; font-size: .82rem; font-weight: 800; letter-spacing: .13em; }
.marquee-track i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 130px max(5vw,40px); }
.section-intro { max-width: 970px; }
.section-intro.centred { margin-inline: auto; text-align: center; }
.section-intro.centred .eyebrow { justify-content: center; }
.section h2, .delivery-band h2, .fabrication h2, .process h2, .quote-section h2 { margin: 0; font-size: clamp(3rem,6vw,6.7rem); line-height: .94; letter-spacing: -.06em; font-weight: 600; }
.section-intro > p:last-child { max-width: 760px; margin-top: 28px; color: rgba(8,11,13,.62); font-size: 1.12rem; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 72px; }
.benefit-card { position: relative; min-height: 380px; padding: 30px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.42); overflow: hidden; transform-style: preserve-3d; }
.benefit-card::after { content: ""; position: absolute; width: 230px; height: 230px; right: -95px; bottom: -105px; border-radius: 50%; background: var(--orange); opacity: .09; transition: .35s var(--ease); }
.benefit-card:hover::after { transform: scale(1.25); opacity: .14; }
.card-number { color: rgba(8,11,13,.34); font-family: "Space Grotesk",sans-serif; font-size: .72rem; }
.icon-box { width: 62px; height: 62px; display: grid; place-items: center; margin-top: 70px; border: 1px solid var(--line-dark); border-radius: 17px; background: var(--paper-bright); }
.icon-box svg { width: 28px; fill: none; stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { margin: 25px 0 10px; font-size: 1.55rem; letter-spacing: -.04em; }
.benefit-card p { max-width: 330px; margin: 0; color: rgba(8,11,13,.6); }

.steel-universe { position: relative; color: white; background: var(--ink); }
.steel-sticky { position: sticky; top: 0; min-height: 100svh; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 40px; padding: 120px max(5vw,40px); overflow: hidden; }
.steel-copy { position: relative; z-index: 3; max-width: 600px; }
.steel-copy h2 { margin: 0; font-family: "Space Grotesk",sans-serif; font-size: clamp(3.2rem,6vw,6.8rem); line-height: .91; letter-spacing: -.065em; }
.steel-copy > p:not(.eyebrow) { max-width: 560px; color: rgba(255,255,255,.62); font-size: 1.08rem; }
.text-link { display: inline-flex; gap: 8px; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.35); font-weight: 700; }
.text-link span { color: var(--orange); }
.steel-stage { position: relative; height: 700px; perspective: 1200px; }
.stage-ring { position: absolute; inset: 50% auto auto 50%; width: 540px; height: 540px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: inset 0 0 80px rgba(255,82,0,.04); }
.stage-ring::before, .stage-ring::after { content:""; position:absolute; inset: 12%; border:1px solid rgba(255,255,255,.07); border-radius:50%; }
.stage-ring::after { inset: 30%; border-color: rgba(255,91,34,.18); }
.stage-product { position: absolute; width: 260px; left: 50%; top: 50%; filter: drop-shadow(0 30px 45px rgba(0,0,0,.7)); transform-origin: center; will-change: transform; }
.stage-shs { transform: translate(-160%,-150%) rotate(-12deg); }
.stage-rhs { transform: translate(10%,-185%) rotate(15deg); }
.stage-pipe { transform: translate(42%,-28%) rotate(-18deg); }
.stage-beam { transform: translate(-156%,25%) rotate(8deg); }
.stage-channel { transform: translate(-35%,50%) rotate(-8deg); }
.stage-round { transform: translate(-45%,-40%) scale(.88) rotate(10deg); }
.product-list { position: relative; z-index: 5; margin-top: 35vh; padding: 0 max(5vw,40px) 140px; background: linear-gradient(transparent 0, var(--ink) 10%); }
.product-row { display: grid; grid-template-columns: 70px 1fr auto; gap: 30px; align-items: start; padding: 34px 0; border-top: 1px solid var(--line); }
.product-row:last-child { border-bottom: 1px solid var(--line); }
.product-index { color: var(--orange); font-family: "Space Grotesk",sans-serif; font-size: .7rem; }
.product-row h3 { margin: 0 0 7px; font-size: clamp(1.7rem,3vw,3.4rem); letter-spacing: -.04em; }
.product-row p { max-width: 700px; margin: 0; color: rgba(255,255,255,.52); }
.product-tags { align-self: center; color: rgba(255,255,255,.42); font-family: "Space Grotesk",sans-serif; font-size: .68rem; letter-spacing: .1em; }

.cut-deliver { background: var(--paper-bright); }
.split-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px,8vw,130px); align-items: center; }
.media-panel { min-width: 0; }
.video-placeholder { position: relative; min-height: 620px; border-radius: 30px; overflow: hidden; color: white; background: #171d21; box-shadow: 0 35px 80px rgba(0,0,0,.14); }
.video-placeholder::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 25% 30%, rgba(255,82,0,.22), transparent 35%), linear-gradient(135deg,transparent 40%,rgba(255,91,34,.17)); }
.video-grid { position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px); background-size: 54px 54px; }
.play-button { position: absolute; left: 50%; top: 50%; z-index: 3; transform: translate(-50%,-50%); width: 96px; height: 96px; border: 0; border-radius: 50%; color: var(--ink); background: var(--orange); box-shadow: 0 0 0 18px rgba(255,82,0,.08); transition: .25s var(--ease); }
.play-button:hover { transform: translate(-50%,-50%) scale(1.07); }
.play-button svg { width: 36px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.video-caption { position: absolute; z-index: 3; left: 30px; right: 30px; bottom: 30px; display:flex; justify-content:space-between; align-items:end; gap:20px; }
.video-caption span { font-size: .66rem; letter-spacing: .12em; color: rgba(255,255,255,.55); }
.video-caption strong { max-width: 280px; font-family: "Space Grotesk",sans-serif; font-size: 1.35rem; text-align: right; }
.measurement-line { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 8px; padding: 18px 22px; font-family: "Space Grotesk",sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.measurement-line i { height: 1px; background: var(--line-dark); }
.split-copy h2 { margin: 0; font-family: "Space Grotesk",sans-serif; font-size: clamp(3rem,5.5vw,6.2rem); line-height: .93; letter-spacing: -.06em; }
.split-copy > p:not(.eyebrow) { color: rgba(8,11,13,.62); font-size: 1.08rem; }
.check-list { list-style: none; margin: 35px 0; padding: 0; border-top: 1px solid var(--line-dark); }
.check-list li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 19px 0; border-bottom: 1px solid var(--line-dark); }
.check-list li > span { width: 28px; height: 28px; display:grid; place-items:center; border-radius:50%; color: var(--ink); background: var(--orange); font-weight:800; }
.check-list strong, .check-list small { display:block; }
.check-list small { margin-top:3px; color: rgba(8,11,13,.5); font-size:.85rem; }

.delivery-band { position: relative; min-height: 760px; padding: 140px max(5vw,40px); color: white; background: #13191d; overflow: hidden; display:flex; flex-direction:column; justify-content:center; }
.delivery-background { position:absolute; inset:0; display:grid; align-content:center; opacity:.04; font-family:"Space Grotesk",sans-serif; font-size: clamp(9rem,23vw,25rem); font-weight:700; line-height:.72; letter-spacing:-.09em; white-space:nowrap; transform:translateX(-3%); }
.delivery-content { position:relative; z-index:2; max-width:1000px; }
.delivery-content p:not(.eyebrow) { max-width:760px; color:rgba(255,255,255,.63); font-size:1.12rem; }
.delivery-actions { display:flex; flex-wrap:wrap; align-items:center; gap:25px; margin-top:35px; }
.map-link { padding-bottom:4px; border-bottom:1px solid rgba(255,255,255,.3); }
.route-line { position:absolute; right:4vw; bottom:85px; width:min(650px,46vw); display:grid; grid-template-columns:auto 1fr auto 1fr auto; align-items:center; gap:0; }
.route-line i { height:1px; background:linear-gradient(90deg,var(--orange),rgba(255,255,255,.2)); }
.route-dot { width:13px; height:13px; border:3px solid var(--ink-soft); border-radius:50%; background:var(--orange); box-shadow:0 0 0 1px var(--orange); }
.route-dot.end { background:var(--orange); box-shadow:0 0 0 1px var(--orange); }
.route-truck { color:var(--orange); animation:truckBob 1.2s ease-in-out infinite alternate; }
@keyframes truckBob { to { transform:translateY(-5px); } }

.fabrication { position: relative; min-height: 980px; padding: 150px max(5vw,40px); color: white; background: #050607; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; }
.fabrication-image { position:absolute; inset:0; }
.fabrication-image img { width:100%; height:100%; object-fit:cover; filter:saturate(.65) contrast(1.08); }
.fabrication-overlay { position:absolute; inset:0; background: linear-gradient(90deg,rgba(5,6,7,.97) 0%,rgba(5,6,7,.82) 46%,rgba(5,6,7,.22) 100%), linear-gradient(0deg,rgba(5,6,7,.82),transparent 42%); }
.fabrication-content { position:relative; z-index:2; max-width:830px; }
.fabrication-content p:not(.eyebrow) { max-width:700px; color:rgba(255,255,255,.67); font-size:1.1rem; }
.fabrication-services { display:flex; flex-wrap:wrap; gap:9px; margin:32px 0; }
.fabrication-services span { padding:10px 14px; border:1px solid rgba(255,255,255,.18); border-radius:999px; background:rgba(0,0,0,.24); backdrop-filter:blur(10px); font-size:.77rem; }
.fabrication-video.compact { position:absolute; z-index:3; right:max(5vw,40px); bottom:70px; width:360px; min-height:230px; border:1px solid rgba(255,255,255,.2); border-radius:22px; background:rgba(8,11,13,.55); backdrop-filter:blur(16px); box-shadow:none; }
.fabrication-video.compact .play-button { width:66px; height:66px; }
.fabrication-video.compact .play-button svg { width:26px; }
.fabrication-video.compact .video-caption { left:20px; right:20px; bottom:18px; display:block; }
.fabrication-video.compact .video-caption strong { display:block; margin-top:3px; text-align:left; font-size:1rem; }

.audience-section { background:var(--paper); }
.audience-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:70px; }
.audience-card { min-height:320px; padding:30px; border:1px solid var(--line-dark); border-radius:var(--radius); background:rgba(255,255,255,.42); transition:.3s var(--ease); }
.audience-card:hover { transform:translateY(-6px); background:var(--paper-bright); box-shadow:0 25px 55px rgba(8,11,13,.08); }
.audience-card > span { color:var(--orange); font-family:"Space Grotesk",sans-serif; font-size:.68rem; }
.audience-card h3 { margin:70px 0 10px; font-size:clamp(1.8rem,3vw,3rem); letter-spacing:-.045em; }
.audience-card p { max-width:520px; color:rgba(8,11,13,.6); }
.audience-card a { display:inline-block; margin-top:16px; font-weight:700; border-bottom:1px solid var(--line-dark); }

.process { padding:140px max(5vw,40px) 54px; color:white; background:var(--ink); }
.process-header { display:grid; grid-template-columns:.6fr 1.4fr; gap:40px; align-items:start; }
.process-header .eyebrow { margin-top:12px; }
.process-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:0; margin-top:90px; border-top:1px solid var(--line); }
.process-step { padding:35px 35px 15px 0; border-right:1px solid var(--line); }
.process-step + .process-step { padding-left:35px; }
.process-step:last-child { border-right:0; }
.step-marker { display:flex; align-items:center; }
.step-marker span { width:52px; height:52px; flex:0 0 auto; display:grid; place-items:center; border-radius:50%; color:var(--ink); background:var(--orange); font-family:"Space Grotesk",sans-serif; font-weight:800; }
.step-marker i { height:1px; flex:1; margin-left:15px; background:var(--line); }
.process-step h3 { margin:80px 0 12px; font-size:1.9rem; }
.process-step p { color:rgba(255,255,255,.54); }

.quote-section { display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(50px,8vw,130px); padding:150px max(5vw,40px); color:white; background:var(--ink-soft); }
.quote-copy { align-self:start; position:sticky; top:120px; }
.quote-copy > p:not(.eyebrow) { max-width:580px; color:rgba(255,255,255,.62); font-size:1.08rem; }
.direct-contact { margin-top:45px; border-top:1px solid var(--line); }
.direct-contact a { display:block; padding:18px 0; border-bottom:1px solid var(--line); }
.direct-contact small, .direct-contact strong { display:block; }
.direct-contact small { color:rgba(255,255,255,.4); font-size:.68rem; text-transform:uppercase; letter-spacing:.12em; }
.direct-contact strong { margin-top:4px; font-family:"Space Grotesk",sans-serif; font-size:clamp(.95rem,1.6vw,1.25rem); word-break:break-word; }
.quote-form { padding:38px; border:1px solid var(--line); border-radius:28px; background:rgba(255,255,255,.055); }
.quote-form label { display:block; margin-bottom:18px; }
.quote-form label > span:first-child { display:block; margin-bottom:8px; color:rgba(255,255,255,.58); font-size:.73rem; font-weight:700; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.quote-form input, .quote-form select, .quote-form textarea { width:100%; color:white; border:1px solid rgba(255,255,255,.15); border-radius:12px; outline:0; background:rgba(255,255,255,.055); transition:.2s; }
.quote-form input, .quote-form select { height:56px; padding:0 15px; }
.quote-form textarea { padding:15px; resize:vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color:var(--orange); box-shadow:0 0 0 4px rgba(255,82,0,.08); }
.quote-form select option { color:black; }
.honeypot { position:absolute !important; left:-9999px !important; }
.file-upload { display:flex !important; align-items:center; gap:14px; min-height:86px; padding:14px; border:1px dashed rgba(255,255,255,.22); border-radius:14px; cursor:pointer; }
.file-upload input { display:none; }
.upload-icon { width:48px; height:48px; flex:0 0 auto; display:grid !important; place-items:center; margin:0 !important; border-radius:11px; color:var(--ink) !important; background:var(--orange); font-size:1.6rem !important; }
.file-upload strong, .file-upload small { display:block; }
.file-upload small { color:rgba(255,255,255,.43); }
.form-submit { width:100%; border:0; }
.form-note { margin:13px 0 0; color:rgba(255,255,255,.42); font-size:.73rem; text-align:center; }

.site-footer { padding:80px max(5vw,40px) 30px; color:white; background:#050607; }
.footer-brand { display:flex; justify-content:space-between; align-items:end; gap:30px; padding-bottom:60px; border-bottom:1px solid var(--line); }
.footer-brand img { width:min(360px,55vw); }
.footer-brand p { max-width:400px; margin:0; color:rgba(255,255,255,.48); text-align:right; }
.footer-links { display:grid; grid-template-columns:repeat(2,220px); justify-content:end; gap:50px; padding:55px 0; }
.footer-links small { display:block; margin-bottom:13px; color:rgba(255,255,255,.35); text-transform:uppercase; letter-spacing:.12em; }
.footer-links a { display:block; padding:6px 0; color:rgba(255,255,255,.73); }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding-top:24px; border-top:1px solid var(--line); color:rgba(255,255,255,.35); font-size:.75rem; }

.voice-fab { position:fixed; z-index:90; right:22px; bottom:22px; min-height:68px; display:flex; align-items:center; gap:13px; padding:9px 16px 9px 9px; color:white; border:1px solid rgba(255,255,255,.2); border-radius:18px; background:rgba(8,11,13,.91); backdrop-filter:blur(14px); box-shadow:0 20px 50px rgba(0,0,0,.28); transition:.25s var(--ease); }
.voice-fab:hover { transform:translateY(-4px); border-color:rgba(255,82,0,.5); }
.voice-icon { width:50px; height:50px; display:flex; align-items:center; justify-content:center; gap:3px; border-radius:13px; background:var(--orange); }
.voice-icon i { width:3px; border-radius:3px; background:var(--ink); animation:voiceBars .9s ease-in-out infinite alternate; }
.voice-icon i:nth-child(1) { height:13px; }
.voice-icon i:nth-child(2) { height:26px; animation-delay:.14s; }
.voice-icon i:nth-child(3) { height:19px; animation-delay:.28s; }
.voice-icon i:nth-child(4) { height:9px; animation-delay:.4s; }
@keyframes voiceBars { to { height:8px; } }
.voice-label { text-align:left; line-height:1.05; }
.voice-label small, .voice-label strong { display:block; }
.voice-label small { color:var(--orange); font-size:.54rem; letter-spacing:.13em; }
.voice-label strong { margin-top:5px; font-family:"Space Grotesk",sans-serif; font-size:.78rem; letter-spacing:.03em; }
.voice-panel { position:fixed; z-index:110; right:22px; bottom:104px; width:min(390px,calc(100vw - 32px)); padding:28px; color:var(--ink); border:1px solid var(--line-dark); border-radius:24px; background:var(--paper-bright); box-shadow:0 35px 80px rgba(0,0,0,.35); transform:translateY(20px) scale(.96); opacity:0; visibility:hidden; transition:.28s var(--ease); }
.voice-panel.open { transform:none; opacity:1; visibility:visible; }
.voice-close { position:absolute; right:14px; top:12px; width:36px; height:36px; border:0; border-radius:50%; background:rgba(8,11,13,.07); font-size:1.4rem; }
.voice-avatar { position:relative; width:64px; height:64px; display:grid; place-items:center; margin-bottom:24px; border-radius:18px; color:white; background:var(--ink); }
.voice-avatar svg { width:32px; fill:none; stroke:currentColor; stroke-width:1.5; }
.voice-avatar .availability-dot { position:absolute; right:-2px; bottom:-2px; border:4px solid var(--paper-bright); }
.voice-panel h3 { margin:0; font-size:2rem; letter-spacing:-.05em; }
.voice-panel p:not(.eyebrow) { color:rgba(8,11,13,.58); }
.voice-panel .button { width:100%; margin-top:8px; }
.voice-secondary { display:block; margin-top:16px; font-size:.82rem; font-weight:700; text-align:center; }

.reveal { opacity:1; transform:none; }
.js .reveal { opacity:0; transform:translateY(30px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.visible { opacity:1; transform:none; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns:1fr auto; }
  .desktop-nav { display:none; }
  .phone-link { display:none; }
  .menu-toggle { display:block; }
  .mobile-menu { position:fixed; z-index:99; inset:0; padding:120px 30px 40px; color:white; background:rgba(8,11,13,.98); }
  .mobile-menu.open { display:flex; flex-direction:column; }
  .mobile-menu a { padding:18px 0; border-bottom:1px solid var(--line); font-family:"Space Grotesk",sans-serif; font-size:clamp(1.7rem,7vw,3.5rem); letter-spacing:-.04em; }
  .hero { grid-template-columns:1fr; padding-top:150px; }
  .hero-copy { max-width:1000px; }
  .hero-visual { position:absolute; inset:14% -15% auto auto; width:55vw; opacity:.5; }
  .hero h1 { max-width:1000px; }
  .benefit-grid { grid-template-columns:1fr; }
  .benefit-card { min-height:260px; }
  .icon-box { margin-top:40px; }
  .steel-sticky { grid-template-columns:1fr; align-content:center; }
  .steel-stage { position:absolute; right:-16%; width:60%; opacity:.5; }
  .steel-copy { max-width:730px; }
  .split-layout, .quote-section { grid-template-columns:1fr; }
  .quote-copy { position:static; }
  .fabrication { grid-template-columns:1fr; }
  .process-header { grid-template-columns:1fr; }
}

@media (max-width: 780px) {
  .cursor-glow { display:none; }
  .site-header { height:62px; top:8px; padding-left:14px; border-radius:15px; }
  .brand { width:170px; }
  .header-actions .button-small { display:none; }
  .hero { min-height:940px; padding:130px 22px 90px; align-content:start; }
  .hero h1 { font-size:clamp(3.45rem,17vw,6rem); }
  .hero-subhead { font-size:1rem; }
  .hero-cta-row { flex-direction:column; align-items:stretch; }
  .hero-proof { flex-direction:column; gap:8px; }
  .hero-visual { inset:auto -37% 30px auto; width:115vw; height:430px; min-height:0; opacity:.58; }
  .object-shs { width:250px; right:15%; top:2%; }
  .object-beam { width:220px; right:34%; top:42%; }
  .object-pipe { width:170px; right:7%; top:60%; }
  .hero-stamp { width:110px; right:42%; bottom:2%; }
  .orbit-one { width:430px; height:430px; }
  .orbit-two { width:290px; height:290px; }
  .scroll-cue { display:none; }
  .section { padding:95px 22px; }
  .section h2, .delivery-band h2, .fabrication h2, .process h2, .quote-section h2 { font-size:clamp(2.7rem,13vw,4.7rem); }
  .benefit-grid { margin-top:45px; }
  .benefit-card { padding:24px; }
  .steel-sticky { min-height:800px; padding:105px 22px; }
  .steel-stage { right:-55%; width:110%; height:590px; }
  .stage-product { width:190px; }
  .product-list { padding:0 22px 100px; margin-top:10vh; }
  .product-row { grid-template-columns:44px 1fr; gap:14px; }
  .product-tags { display:none; }
  .video-placeholder { min-height:440px; }
  .video-caption { display:block; }
  .video-caption strong { display:block; margin-top:5px; text-align:left; }
  .delivery-band { min-height:760px; padding:110px 22px; }
  .route-line { width:85vw; right:7vw; bottom:55px; }
  .fabrication { min-height:1050px; padding:100px 22px; align-items:start; }
  .fabrication-overlay { background:linear-gradient(0deg,rgba(5,6,7,.97) 0%,rgba(5,6,7,.87) 58%,rgba(5,6,7,.35) 100%); }
  .fabrication-video.compact { left:22px; right:22px; bottom:55px; width:auto; }
  .audience-grid, .process-steps { grid-template-columns:1fr; }
  .audience-card { min-height:280px; }
  .process { padding:100px 22px 58px; }
  .process-steps { border-top:0; }
  .process-step, .process-step + .process-step { padding:30px 0; border-right:0; border-top:1px solid var(--line); }
  .process-step h3 { margin-top:40px; }
  .quote-section { padding:100px 22px; }
  .quote-form { padding:22px; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .footer-brand { display:block; }
  .footer-brand p { margin-top:25px; text-align:left; }
  .footer-links { grid-template-columns:1fr 1fr; justify-content:start; gap:25px; }
  .voice-fab { right:12px; bottom:12px; min-height:58px; padding:7px; border-radius:16px; }
  .voice-icon { width:44px; height:44px; }
  .voice-label { display:none; }
  .voice-panel { right:16px; bottom:82px; }
}

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


/* --------------------------------------------------------------------------
   2026 charcoal + orange concept revision
   -------------------------------------------------------------------------- */

::selection { color: #fff; background: var(--orange); }
.scroll-progress span { background: linear-gradient(90deg, var(--orange), #fff); }
.availability-dot { background: var(--orange); box-shadow: 0 0 0 5px rgba(255,82,0,.14); }

.site-header {
  top: 0;
  width: 100%;
  height: 96px;
  padding: 0 max(5vw,40px);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  background: linear-gradient(180deg,rgba(3,4,5,.88),rgba(3,4,5,.38));
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.site-header.scrolled {
  top: 0;
  height: 74px;
  background: rgba(5,7,8,.94);
  border-bottom-color: rgba(255,255,255,.1);
}
.brand { width: 252px; }
.desktop-nav a { color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .06em; }
.button-small { color: #fff; background: var(--orange); }
.button-small:hover { background: var(--orange-hot); }

.hero {
  position: relative;
  display: block;
  min-height: max(100svh, 1020px);
  padding: 174px max(5vw,40px) 88px;
  color: #fff;
  background: #050708;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,rgba(3,5,6,.99) 0%,rgba(3,5,6,.96) 32%,rgba(3,5,6,.66) 55%,rgba(3,5,6,.12) 82%),
    linear-gradient(0deg,rgba(3,5,6,.98) 0%,transparent 32%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 36%;
  background: linear-gradient(0deg,#050708 0%,rgba(5,7,8,.9) 32%,transparent 100%);
  pointer-events: none;
}
.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-industrial-wide.webp");
  background-size: cover;
  background-position: center top;
  filter: saturate(.88) contrast(1.05);
  transform: scale(1.015);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift { to { transform: scale(1.045) translate3d(-10px,-5px,0); } }
.hero-grid {
  z-index: 2;
  opacity: .09;
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom,black,transparent 84%);
}
.hero-noise { z-index: 2; opacity: .055; }
.hero-inner {
  position: relative;
  z-index: 4;
  width: min(100%, 1480px);
  margin: 0 auto;
}
.hero-copy { max-width: 760px; }
.hero .eyebrow {
  margin-bottom: 30px;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  letter-spacing: .23em;
}
.hero .eyebrow span { width: 48px; background: var(--orange); }
.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: clamp(5.8rem, 8.6vw, 9rem);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 14px 42px rgba(0,0,0,.34);
}
.hero h1 span { color: #fff; }
.hero h1 em { color: var(--orange); }
.hero-subhead {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem,1.25vw,1.22rem);
  line-height: 1.7;
}
.hero-cta-row { margin-top: 34px; }
.hero .button { min-height: 62px; padding-inline: 27px; border-radius: 5px; text-transform: uppercase; letter-spacing: .025em; }
.hero .button-primary { min-width: 318px; box-shadow: 0 15px 44px rgba(255,82,0,.24); }
.hero .button-ghost { min-width: 198px; background: rgba(4,5,6,.46); border-color: rgba(255,255,255,.62); }
.hero .button-ghost:hover { border-color: var(--orange); background: rgba(255,82,0,.12); }
.hero-lower { margin-top: 68px; }
.hero-categories {
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 0 0 25px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-family: "Arial Narrow", "Space Grotesk", sans-serif;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-categories::-webkit-scrollbar { display:none; }
.hero-categories a { transition: color .2s; }
.hero-categories a:hover { color: var(--orange); }
.hero-categories i { width: 2px; height: 22px; flex: 0 0 auto; background: var(--orange); }
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 34px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 16px;
  background: linear-gradient(135deg,rgba(13,15,16,.94),rgba(8,10,11,.76));
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.hero-benefits article {
  min-height: 198px;
  padding: 31px 26px 26px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.16);
}
.hero-benefits article:last-child { border-right: 0; }
.hero-benefit-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 20px; color: var(--orange); }
.hero-benefit-icon svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.hero-benefits h3 {
  margin: 0;
  font-family: "Arial Narrow", "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.hero-benefits p { margin: 10px auto 0; color: rgba(255,255,255,.66); font-size: .89rem; }
.hero .scroll-cue {
  z-index: 6;
  left: 50%;
  bottom: 22px;
  flex-direction: column;
  transform: translateX(-50%);
  gap: 8px;
  letter-spacing: .22em;
}
.hero .scroll-cue i { width: 1px; height: 34px; background: rgba(255,255,255,.24); }
.hero .scroll-cue i::after { width: 1px; height: 14px; background: var(--orange); animation: scrollVertical 1.6s infinite; }
@keyframes scrollVertical { from { transform: translateY(-16px); } to { transform: translateY(40px); } }

.proof-strip { background: var(--orange); border-color: #050708; }
.marquee-track i { background: #050708; }
.text-link span { color: var(--orange); }
.stage-ring { box-shadow: inset 0 0 80px rgba(255,82,0,.055); }
.video-placeholder::before { background: radial-gradient(circle at 25% 30%,rgba(255,82,0,.17),transparent 35%),linear-gradient(135deg,transparent 40%,rgba(255,82,0,.22)); }
.play-button { color: #fff; background: var(--orange); box-shadow: 0 0 0 18px rgba(255,82,0,.1); }
.check-list li > span, .step-marker span, .upload-icon { color: #fff !important; background: var(--orange); }
.route-dot.end { background: #fff; box-shadow: 0 0 0 1px #fff; }
.route-truck { color: var(--orange); }
.fabrication-image img { filter: grayscale(1) contrast(1.15) brightness(.72); }
.fabrication-overlay { background: linear-gradient(90deg,rgba(5,6,7,.98) 0%,rgba(5,6,7,.88) 46%,rgba(5,6,7,.25) 100%),linear-gradient(0deg,rgba(5,6,7,.9),transparent 42%),linear-gradient(130deg,rgba(255,82,0,.11),transparent 58%); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,82,0,.11); }
.voice-fab:hover { border-color: rgba(255,82,0,.7); }
.voice-icon { background: var(--orange); }
.voice-icon i { background: #fff; }
.voice-label small { color: var(--orange); }
.voice-avatar .availability-dot { border-color: var(--paper-bright); }

@media (max-width: 1180px) {
  .site-header { padding-inline: 26px; }
  .hero { padding-top: 150px; min-height: auto; }
  .hero-copy { max-width: 690px; }
  .hero h1 { font-size: clamp(5.2rem,10.8vw,8rem); }
  .hero-benefits { grid-template-columns: repeat(2,1fr); }
  .hero-benefits article:nth-child(2) { border-right: 0; }
  .hero-benefits article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
}

@media (max-width: 780px) {
  .site-header { top: 0; height: 72px; padding-inline: 17px; border-radius: 0; }
  .site-header.scrolled { height: 66px; }
  .brand { width: 188px; }
  .hero {
    min-height: 1390px;
    padding: 124px 20px 82px;
    background: #050708;
  }
  .hero-background {
    background-image: url("assets/hero-industrial-mobile.webp");
    background-position: center top;
    animation: none;
    transform: none;
  }
  .hero::before {
    background: linear-gradient(180deg,rgba(3,5,6,.98) 0%,rgba(3,5,6,.94) 34%,rgba(3,5,6,.42) 58%,rgba(3,5,6,.75) 83%,rgba(3,5,6,.98) 100%);
  }
  .hero::after { height: 27%; }
  .hero .eyebrow { margin-bottom: 22px; font-size: .67rem; letter-spacing: .17em; }
  .hero .eyebrow span { width: 31px; }
  .hero h1 { max-width: 100%; font-size: clamp(4.1rem,20vw,6.1rem); line-height: .83; }
  .hero-subhead { max-width: 94%; margin-top: 25px; font-size: .98rem; line-height: 1.62; }
  .hero .button { width: 100%; min-width: 0; min-height: 58px; }
  .hero-lower { margin-top: 470px; }
  .hero-categories { gap: 16px; font-size: .78rem; }
  .hero-benefits { grid-template-columns: 1fr 1fr; border-radius: 12px; }
  .hero-benefits article { min-height: 170px; padding: 23px 14px 20px; }
  .hero-benefits article:nth-child(2) { border-right: 0; }
  .hero-benefits article:nth-child(3) { border-right: 1px solid rgba(255,255,255,.16); }
  .hero-benefit-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .hero-benefit-icon svg { width: 40px; height: 40px; }
  .hero-benefits h3 { font-size: .8rem; line-height: 1.25; }
  .hero-benefits p { font-size: .76rem; line-height: 1.4; }
  .hero .scroll-cue { display: none; }
  .proof-strip { margin-top: 0; }
}

@media (max-width: 430px) {
  .hero { min-height: 1480px; }
  .hero h1 { font-size: clamp(3.75rem,19vw,5.3rem); }
  .hero-lower { margin-top: 500px; }
}

/* Keep the V10 story surface authoritative over the retired RAPID module. */
.rapid-module.rapid-story {
  min-height: 0;
  padding: 110px clamp(18px, 4vw, 72px) 90px;
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 80, 0, .12), transparent 30%),
    #07090a;
}
@media (max-width: 900px) {
  .rapid-module.rapid-story { padding: 82px clamp(18px, 4vw, 72px) 76px; }
}
@media (max-width: 640px) {
  .rapid-module.rapid-story { padding: 72px 14px 62px; }
}

/* ========================================================================
   V3 HERO REFINEMENTS
   Rebalances the industrial scene and softens the headline without losing
   the strong, direct construction-industry character.
   ======================================================================== */
@media (min-width: 781px) {
  .hero-background {
    /* Enlarge and pull the suspended beam, truck and worker into the scene. */
    background-size: auto 112%;
    background-position: 76% 36%;
    filter: saturate(.9) contrast(1.06) brightness(1.05);
  }

  .hero::before {
    /* Keep clean reading space at left while revealing more detail mid-frame. */
    background:
      linear-gradient(90deg,
        rgba(3,5,6,.985) 0%,
        rgba(3,5,6,.93) 28%,
        rgba(3,5,6,.56) 50%,
        rgba(3,5,6,.16) 76%,
        rgba(3,5,6,.04) 100%),
      linear-gradient(0deg,rgba(3,5,6,.98) 0%,transparent 34%);
  }

  .hero-copy { max-width: 720px; }

  .hero h1 {
    max-width: 720px;
    font-family: "Arial Narrow", "Helvetica Neue Condensed", Haettenschweiler, Impact, sans-serif;
    font-size: clamp(5.25rem, 7.8vw, 8.15rem);
    font-weight: 800;
    line-height: .87;
    letter-spacing: -.045em;
  }

  .hero h1 > span,
  .hero h1 > em {
    display: inline-block;
  }

  .hero h1 > em {
    margin-top: .12em;
    font-size: .87em;
    line-height: .91;
    letter-spacing: -.025em;
  }

  .hero-subhead {
    max-width: 610px;
    margin-top: 37px;
  }
}

@media (min-width: 781px) and (max-width: 1180px) {
  .hero-background {
    background-size: auto 108%;
    background-position: 73% 32%;
  }

  .hero h1 {
    max-width: 670px;
    font-size: clamp(4.85rem, 9.5vw, 7.2rem);
  }
}

@media (max-width: 780px) {
  .hero h1 {
    font-family: "Arial Narrow", "Helvetica Neue Condensed", Haettenschweiler, Impact, sans-serif;
    line-height: .87;
    letter-spacing: -.04em;
  }

  .hero h1 > span,
  .hero h1 > em {
    display: inline-block;
  }

  .hero h1 > em {
    margin-top: .1em;
    font-size: .89em;
    line-height: .92;
    letter-spacing: -.02em;
  }
}

/* Cross-platform condensed treatment without requiring an external font file. */
@media (min-width: 781px) {
  .hero h1 {
    max-width: 760px;
    font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -.065em;
  }

  .hero h1 > br { display: none; }

  .hero h1 > span,
  .hero h1 > em {
    display: block;
    width: 119%;
    transform: scaleX(.84);
    transform-origin: left top;
  }

  .hero h1 > span { white-space: nowrap; }

  .hero h1 > em {
    margin-top: .1em;
    font-size: .88em;
    line-height: .93;
    letter-spacing: -.045em;
  }
}

/* Lock the orange promise to its intended two-line rhythm. */
.hero h1 em span { display: block; white-space: nowrap; }

@media (max-width: 780px) {
  .hero h1 {
    width: 119%;
    max-width: none;
    font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -.065em;
    transform: scaleX(.84);
    transform-origin: left top;
  }

  .hero h1 > span,
  .hero h1 > em {
    display: block;
    width: auto;
    transform: none;
  }

  .hero h1 > span { white-space: nowrap; }

  .hero h1 > em {
    margin-top: .09em;
    font-size: .84em;
    line-height: .94;
    letter-spacing: -.045em;
  }
}

.hero h1 em,
.hero h1 em span { color: var(--orange); }

@media (max-width: 780px) {
  .hero h1 {
    width: 128%;
    font-size: clamp(3.7rem,17.5vw,5.25rem);
    transform: scaleX(.76);
  }
}

/* ========================================================================
   V4 HERO PROTOTYPE ALIGNMENT
   Push the live site much closer to the approved prototype hero treatment.
   ======================================================================== */

.scroll-progress { height: 4px; }
.scroll-progress span { background: linear-gradient(90deg, #ff5b22, #ff7a22 40%, #c94a16 100%); }

.site-header {
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 86px;
  padding: 0 max(2.8vw, 20px);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(4,6,8,.9) 0%, rgba(4,6,8,.76) 100%);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: none;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #ff5b22 0%, #ff5b22 18%, rgba(255,91,34,.45) 52%, rgba(255,91,34,.08) 100%);
}
.site-header.scrolled {
  top: 0;
  height: 76px;
  background: linear-gradient(180deg, rgba(4,6,8,.95) 0%, rgba(4,6,8,.88) 100%);
}
.brand { width: 265px; }
.desktop-nav a {
  font-size: .96rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.desktop-nav a:hover { background: transparent; color: #fff; }
.header-actions { gap: 16px; }
.phone-link {
  font-size: 1rem;
  letter-spacing: .01em;
}
.button-small {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: .98rem;
}
.menu-toggle {
  background: transparent;
  border: 0;
}

.hero {
  min-height: 100svh;
  padding: 160px max(3.8vw, 30px) 92px;
  background: #040608;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(2,4,6,.975) 0%,
      rgba(2,4,6,.96) 20%,
      rgba(2,4,6,.86) 34%,
      rgba(2,4,6,.56) 49%,
      rgba(2,4,6,.18) 65%,
      rgba(2,4,6,.06) 80%,
      rgba(2,4,6,.02) 100%),
    linear-gradient(180deg,
      rgba(2,4,6,.1) 0%,
      rgba(2,4,6,.02) 24%,
      rgba(2,4,6,.16) 70%,
      rgba(2,4,6,.82) 100%);
}
.hero::after {
  height: 190px;
  background: linear-gradient(180deg, rgba(2,4,6,0) 0%, rgba(2,4,6,.62) 100%);
}
.hero-background {
  z-index: 0;
  background-image: url("assets/hero-prototype-wide.png");
  background-size: cover;
  background-position: 68% 52%;
  filter: saturate(.92) contrast(1.06) brightness(.93);
  animation: none;
  transform: none;
}
.hero-grid { opacity: .06; }
.hero-noise { opacity: .04; }
.hero-inner { position: relative; z-index: 3; }
.hero-copy { max-width: 640px; }
.hero .eyebrow {
  margin-bottom: 28px;
  font-size: .99rem;
  letter-spacing: .26em;
  color: rgba(255,255,255,.9);
}
.hero .eyebrow span { width: 52px; }
.hero h1 {
  width: auto;
  max-width: 640px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5.8rem, 8vw, 8.4rem);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.045em;
  transform: none;
}
.hero h1 > span,
.hero h1 > em {
  display: block;
  width: auto;
  transform: none;
}
.hero h1 > em {
  margin-top: .08em;
  font-size: .92em;
  line-height: .9;
  letter-spacing: -.03em;
}
.hero-subhead {
  max-width: 540px;
  margin-top: 38px;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.7;
}
.hero-cta-row { margin-top: 34px; gap: 18px; }
.hero .button {
  min-height: 68px;
  padding-inline: 28px;
  border-radius: 6px;
  font-size: 1rem;
}
.hero .button-primary {
  min-width: 320px;
  box-shadow: 0 22px 48px rgba(255,82,0,.28);
}
.hero .button-ghost {
  min-width: 205px;
  background: rgba(4,5,6,.2);
  border-color: rgba(255,255,255,.75);
}
.hero-lower { margin-top: 56px; }
.hero-categories {
  gap: 18px;
  color: rgba(255,255,255,.96);
  font-size: .94rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-categories i { height: 24px; }
.hero-benefits {
  margin-top: 34px;
  border-color: rgba(255,255,255,.15);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11,15,18,.76) 0%, rgba(8,11,13,.62) 100%);
  backdrop-filter: blur(14px);
}
.hero-benefits article {
  min-height: 190px;
  border-right-color: rgba(255,255,255,.15);
}
.hero-benefits h3 {
  font-size: 1.05rem;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.hero-benefits p {
  max-width: 190px;
  font-size: .98rem;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.hero .scroll-cue {
  bottom: 18px;
  z-index: 4;
  color: rgba(255,255,255,.85);
}
.hero .scroll-cue i { background: rgba(255,255,255,.22); }

@media (max-width: 1180px) {
  .site-header {
    height: 82px;
    padding-inline: 20px;
    grid-template-columns: 1fr auto;
  }
  .header-actions .button-small { display: none; }
  .hero {
    padding-top: 150px;
  }
  .hero-background {
    background-position: 72% 50%;
  }
  .hero h1 {
    font-size: clamp(5.05rem, 10.3vw, 7.2rem);
  }
}

@media (max-width: 780px) {
  .site-header {
    height: 86px;
    padding-inline: 18px;
    background: linear-gradient(180deg, rgba(4,6,8,.84) 0%, rgba(4,6,8,.7) 100%);
  }
  .site-header.scrolled { height: 78px; }
  .site-header::before { height: 5px; }
  .brand { width: 206px; }
  .menu-toggle { display: block; width: 48px; height: 48px; }
  .menu-toggle span { width: 24px; margin: 6px auto; }
  .hero {
    min-height: 1440px;
    padding: 140px 18px 84px;
  }
  .hero-background {
    background-image: url("assets/hero-prototype-mobile.png");
    background-position: center top;
    background-size: cover;
    filter: saturate(.94) contrast(1.05) brightness(.9);
  }
  .hero::before {
    background: linear-gradient(180deg,
      rgba(2,4,6,.86) 0%,
      rgba(2,4,6,.56) 18%,
      rgba(2,4,6,.26) 35%,
      rgba(2,4,6,.7) 66%,
      rgba(2,4,6,.96) 100%);
  }
  .hero .eyebrow {
    margin-bottom: 24px;
    font-size: .82rem;
    letter-spacing: .22em;
  }
  .hero .eyebrow span { width: 46px; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(5.1rem, 18vw, 6.9rem);
    line-height: .87;
    letter-spacing: -.04em;
    white-space: normal;
  }
  .hero h1 > span { white-space: nowrap; }
  .hero h1 > em {
    margin-top: .06em;
    font-size: .89em;
  }
  .hero-subhead {
    max-width: 340px;
    margin-top: 28px;
    font-size: .98rem;
    line-height: 1.62;
  }
  .hero .button {
    width: 100%;
    min-height: 60px;
    font-size: .95rem;
  }
  .hero-lower { margin-top: 430px; }
  .hero-categories {
    gap: 14px;
    font-size: .78rem;
    letter-spacing: .06em;
  }
  .hero-benefits {
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
    border-radius: 12px;
  }
  .hero-benefits article {
    min-height: 176px;
    padding: 22px 14px 18px;
  }
  .hero-benefits h3 {
    font-size: .8rem;
  }
  .hero-benefits p {
    font-size: .76rem;
    line-height: 1.45;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 1490px;
  }
  .hero h1 {
    font-size: clamp(4.7rem, 17.5vw, 6.2rem);
  }
  .hero-lower { margin-top: 455px; }
}

/* ========================================================================
   V5 MOBILE HERO GAP FIX
   Removes the oversized empty space between the CTA buttons and the
   category/benefit area on narrow screens.
   ======================================================================== */
@media (max-width: 780px) {
  .hero {
    min-height: 1220px;
    padding-bottom: 70px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-lower {
    margin-top: 34px;
  }

  .hero-categories {
    margin-top: 0;
  }

  .hero-benefits {
    margin-top: 22px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 1180px;
  }

  .hero-lower {
    margin-top: 28px;
  }
}

/* ========================================================================
   V6 RESPONSIVE HERO REBUILD
   Natural mobile flow, refined desktop proportions, and collision-free UI.
   ======================================================================== */

/* Desktop and large tablet refinement */
.hero-inner {
  width: min(100%, 1420px);
}
.hero-copy {
  max-width: 650px;
}
.hero h1 {
  max-width: 650px;
}
.hero-subhead {
  max-width: 550px;
}
.hero-lower {
  margin-top: 52px;
}
.hero-benefits article {
  min-width: 0;
}
.hero-benefits h3,
.hero-benefits p {
  overflow-wrap: anywhere;
}

@media (min-width: 1181px) {
  .hero {
    min-height: max(100svh, 1040px);
    padding-top: 154px;
    padding-bottom: 82px;
  }
  .hero-background {
    background-position: 68% 50%;
  }
}

@media (min-width: 781px) and (max-width: 1180px) {
  .hero {
    min-height: 1080px;
    padding: 146px 28px 76px;
  }
  .hero-lower {
    margin-top: 44px;
  }
  .hero-categories {
    gap: 17px;
    font-size: .84rem;
  }
  .hero-benefits article {
    min-height: 170px;
  }
}

/* Phone and narrow tablet: remove every fixed spacer and use real content flow. */
@media (max-width: 780px) {
  .site-header {
    height: 82px;
    padding-inline: 16px;
  }
  .site-header.scrolled {
    height: 74px;
  }
  .brand {
    width: min(205px, 58vw);
  }

  .hero {
    min-height: 0 !important;
    height: auto !important;
    padding: 128px 18px 52px !important;
    display: block !important;
    overflow: hidden;
  }
  .hero::after {
    height: 24%;
  }
  .hero-background {
    background-image: url("assets/hero-prototype-mobile.png");
    background-size: auto 100% !important;
    background-position: 63% top !important;
    animation: none !important;
    transform: none !important;
    filter: saturate(.92) contrast(1.06) brightness(.88);
  }
  .hero::before {
    background:
      linear-gradient(180deg,
        rgba(2,4,6,.9) 0%,
        rgba(2,4,6,.64) 18%,
        rgba(2,4,6,.39) 36%,
        rgba(2,4,6,.68) 67%,
        rgba(2,4,6,.95) 100%),
      linear-gradient(90deg,
        rgba(2,4,6,.72) 0%,
        rgba(2,4,6,.34) 58%,
        rgba(2,4,6,.08) 100%);
  }
  .hero-grid {
    opacity: .035;
  }

  .hero-inner {
    display: block !important;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
  }
  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-height: 0 !important;
    height: auto !important;
  }
  .hero .eyebrow {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(.67rem, 2.8vw, .82rem);
    letter-spacing: .19em;
    white-space: normal;
  }
  .hero .eyebrow span {
    width: 36px;
  }
  .hero h1 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    font-size: clamp(4.2rem, 18.2vw, 6.2rem);
    line-height: .87;
    letter-spacing: -.035em;
    transform: none !important;
  }
  .hero h1 > span,
  .hero h1 > em {
    display: block;
    width: auto !important;
    transform: none !important;
  }
  .hero h1 > span {
    white-space: nowrap;
  }
  .hero h1 > em {
    margin-top: .07em;
    font-size: .88em;
    line-height: .91;
  }
  .hero-subhead {
    max-width: 36rem;
    margin-top: 26px;
    font-size: clamp(.95rem, 4.1vw, 1.05rem);
    line-height: 1.6;
  }
  .hero-cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .hero .button,
  .hero .button-primary,
  .hero .button-ghost {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding-inline: 18px;
    font-size: clamp(.86rem, 4vw, 1rem);
  }

  .hero-lower {
    position: relative !important;
    inset: auto !important;
    min-height: 0 !important;
    height: auto !important;
    margin-top: 30px !important;
  }
  .hero-categories {
    gap: 15px;
    margin: 0 !important;
    padding: 4px 34px 20px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    font-size: .76rem;
    letter-spacing: .055em;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
  }
  .hero-categories a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .hero-categories i {
    height: 20px;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px !important;
    border-radius: 13px;
  }
  .hero-benefits article {
    min-width: 0;
    min-height: 162px;
    padding: 20px 12px 17px;
  }
  .hero-benefits article:nth-child(2) {
    border-right: 0;
  }
  .hero-benefits article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
  .hero-benefits article:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,.16);
  }
  .hero-benefit-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }
  .hero-benefit-icon svg {
    width: 37px;
    height: 37px;
  }
  .hero-benefits h3 {
    max-width: 100%;
    font-size: clamp(.71rem, 3.25vw, .82rem);
    line-height: 1.24;
    letter-spacing: .015em;
    overflow-wrap: normal;
  }
  .hero-benefits p {
    max-width: 100%;
    margin-top: 8px;
    font-size: clamp(.69rem, 3vw, .78rem);
    line-height: 1.4;
    overflow-wrap: normal;
  }

  .hero .scroll-cue {
    display: none;
  }

  /* Compact the floating voice action so it does not cover benefit content. */
  .voice-fab {
    right: 12px;
    bottom: 12px;
    width: 58px;
    height: 58px;
    padding: 5px;
    border-radius: 17px;
  }
  .voice-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }
  .voice-label {
    display: none;
  }
  .voice-panel {
    right: 12px;
    bottom: 82px;
    width: calc(100vw - 24px);
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 0 !important;
    padding-inline: 15px !important;
  }
  .hero h1 {
    font-size: clamp(3.9rem, 18vw, 5.35rem);
  }
  .hero .eyebrow {
    letter-spacing: .16em;
  }
  .hero-benefits article {
    min-height: 154px;
    padding-inline: 10px;
  }
}

@media (max-width: 350px) {
  .hero h1 {
    font-size: 3.55rem;
  }
  .hero-benefits {
    grid-template-columns: 1fr;
  }
  .hero-benefits article,
  .hero-benefits article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
  .hero-benefits article:last-child {
    border-bottom: 0;
  }
}

/* V7 mobile headline fit: retain the tall prototype character without clipping. */
@media (max-width: 780px) {
  .hero h1 {
    width: 126% !important;
    max-width: none !important;
    font-size: clamp(4.25rem, 18vw, 6.15rem);
    transform: scaleX(.79) !important;
    transform-origin: left top !important;
  }
  .hero h1 > span,
  .hero h1 > em {
    display: block;
    width: auto !important;
    transform: none !important;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    width: 128% !important;
    font-size: clamp(4rem, 18vw, 5.45rem);
    transform: scaleX(.78) !important;
  }
}

/* ========================================================================
   V8 — RAPID MODULAR FLOOR SYSTEM FEATURE MODULE
   ======================================================================== */
.rapid-module {
  position: relative;
  min-height: 1040px;
  padding: 130px max(4.5vw, 34px) 72px;
  color: #fff;
  background: #06090c;
  overflow: hidden;
  isolation: isolate;
}
.rapid-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/rapid-floor-wide.jpg");
  background-size: cover;
  background-position: 66% center;
  filter: saturate(.88) contrast(1.04) brightness(.9);
  transform: scale(1.015);
}
.rapid-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3,6,9,.98) 0%, rgba(3,6,9,.95) 28%, rgba(3,6,9,.67) 48%, rgba(3,6,9,.17) 71%, rgba(3,6,9,.07) 100%),
    linear-gradient(0deg, rgba(3,5,7,.98) 0%, rgba(3,5,7,.18) 48%, rgba(3,5,7,.14) 100%);
}
.rapid-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .07;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.16) 1px,transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}
.rapid-content { max-width: 1500px; margin: 0 auto; }
.rapid-copy { max-width: 670px; }
.rapid-copy .eyebrow { margin-bottom: 28px; color: rgba(255,255,255,.84); }
.rapid-copy h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5rem, 7.7vw, 8.8rem);
  font-weight: 700;
  line-height: .84;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.rapid-copy h2 span { color: var(--orange); }
.rapid-question {
  margin: 30px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.45rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.rapid-question em,
.rapid-question strong { color: var(--orange); font-style: normal; }
.rapid-intro { max-width: 620px; margin: 26px 0 0; color: rgba(255,255,255,.72); font-size: 1.06rem; line-height: 1.7; }
.rapid-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: rgba(3,6,9,.34);
  backdrop-filter: blur(9px);
}
.rapid-benefits article { min-height: 205px; padding: 28px 22px; border-right: 1px solid rgba(255,255,255,.17); }
.rapid-benefits article:last-child { border-right: 0; }
.rapid-icon { width: 48px; height: 48px; color: var(--orange); }
.rapid-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.rapid-benefits h3 { margin: 19px 0 8px; font-size: .92rem; line-height: 1.25; letter-spacing: .035em; text-transform: uppercase; }
.rapid-benefits p { margin: 0; color: rgba(255,255,255,.64); font-size: .86rem; line-height: 1.55; }
.rapid-conversion {
  display: grid;
  grid-template-columns: .9fr 1fr 1.05fr;
  gap: 42px;
  align-items: center;
  margin-top: 62px;
  padding: 36px 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(8,11,13,.92), rgba(8,11,13,.76));
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
}
.rapid-brandline { padding-right: 36px; border-right: 1px solid rgba(255,255,255,.18); }
.rapid-brandline span,
.rapid-brandline small { display: block; font-family: "Space Grotesk", sans-serif; text-transform: uppercase; }
.rapid-brandline span { font-size: 1.18rem; letter-spacing: .05em; }
.rapid-brandline strong { display: block; margin: 3px 0; color: var(--orange); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(3.7rem, 5vw, 5.8rem); line-height: .92; letter-spacing: -.025em; text-transform: uppercase; }
.rapid-brandline small { max-width: 330px; font-size: .82rem; line-height: 1.5; letter-spacing: .05em; }
.rapid-checks { list-style: none; margin: 0; padding: 0; }
.rapid-checks li { display: flex; align-items: center; gap: 12px; margin: 12px 0; color: rgba(255,255,255,.82); }
.rapid-checks span { width: 27px; height: 27px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--orange); border-radius: 50%; color: var(--orange); font-weight: 800; }
.rapid-action .button { width: 100%; min-height: 66px; border-radius: 7px; font-size: 1rem; text-transform: uppercase; }
.rapid-action p { margin: 18px 0 0; color: rgba(255,255,255,.68); line-height: 1.6; }

@media (max-width: 1100px) {
  .rapid-module { min-height: auto; }
  .rapid-image { background-position: 73% center; }
  .rapid-benefits { grid-template-columns: repeat(2,1fr); max-width: 720px; }
  .rapid-benefits article:nth-child(2) { border-right: 0; }
  .rapid-benefits article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.17); }
  .rapid-conversion { grid-template-columns: 1fr 1fr; }
  .rapid-brandline { grid-column: 1 / -1; padding: 0 0 26px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
}

@media (max-width: 780px) {
  .rapid-module { padding: 92px 18px 54px; }
  .rapid-image {
    background-image: url("assets/rapid-floor-mobile.jpg");
    background-position: center top;
    background-size: cover;
    opacity: .9;
  }
  .rapid-shade {
    background: linear-gradient(180deg, rgba(3,6,9,.9) 0%, rgba(3,6,9,.68) 24%, rgba(3,6,9,.26) 43%, rgba(3,6,9,.78) 66%, rgba(3,6,9,.98) 100%);
  }
  .rapid-grid { display: none; }
  .rapid-copy { max-width: 100%; }
  .rapid-copy h2 { font-size: clamp(4.25rem, 18vw, 6.1rem); line-height: .85; }
  .rapid-question { font-size: clamp(1.35rem, 6vw, 1.85rem); }
  .rapid-intro { max-width: 92%; font-size: .98rem; }
  .rapid-benefits { grid-template-columns: 1fr 1fr; width: 100%; margin-top: 390px; }
  .rapid-benefits article { min-height: 180px; padding: 23px 15px; }
  .rapid-benefits h3 { font-size: .78rem; }
  .rapid-benefits p { font-size: .75rem; }
  .rapid-conversion { grid-template-columns: 1fr; gap: 28px; margin-top: 28px; padding: 28px 22px; border-radius: 15px; }
  .rapid-brandline { grid-column: auto; padding-bottom: 24px; }
  .rapid-brandline strong { font-size: 4rem; }
  .rapid-action .button { min-height: 60px; }
}

@media (max-width: 430px) {
  .rapid-copy h2 { font-size: clamp(3.8rem, 17vw, 5.3rem); }
  .rapid-benefits { margin-top: 340px; }
  .rapid-brandline strong { font-size: 3.55rem; }
}

/* ========================================================================
   V9 — RAPID FULL-WIDTH PRODUCT SHOWCASE
   Displays the complete modular floor and support feet as the hero product.
   ======================================================================== */
.rapid-module {
  min-height: 0;
  padding: 0;
  background: #050709;
  overflow: hidden;
}

.rapid-showcase {
  position: relative;
  min-height: clamp(850px, 66.666vw, 1120px);
  padding: clamp(88px, 7vw, 122px) max(4vw, 34px) clamp(290px, 22vw, 350px);
  overflow: hidden;
  isolation: isolate;
}

.rapid-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/rapid-floor-wide.jpg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(.98) contrast(1.03) brightness(1.04);
  transform: none;
}

.rapid-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg,
      rgba(3,6,9,.91) 0%,
      rgba(3,6,9,.78) 21%,
      rgba(3,6,9,.38) 38%,
      rgba(3,6,9,.06) 58%,
      rgba(3,6,9,0) 78%),
    linear-gradient(180deg,
      rgba(3,6,9,.08) 0%,
      rgba(3,6,9,0) 53%,
      rgba(3,6,9,.18) 70%,
      rgba(3,6,9,.88) 100%);
}

.rapid-grid { display: none; }

.rapid-showcase .rapid-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.rapid-showcase .rapid-copy .eyebrow {
  margin-bottom: 26px;
  color: rgba(255,255,255,.92);
}

.rapid-showcase .rapid-copy h2 {
  font-size: clamp(5rem, 7.45vw, 8.45rem);
  text-shadow: 0 7px 28px rgba(0,0,0,.24);
}

.rapid-showcase .rapid-question {
  margin-top: 28px;
  text-shadow: 0 4px 18px rgba(0,0,0,.22);
}

.rapid-showcase .rapid-intro {
  max-width: 560px;
  color: rgba(255,255,255,.9);
  text-shadow: 0 3px 16px rgba(0,0,0,.34);
}

.rapid-showcase .rapid-benefits {
  position: absolute;
  z-index: 3;
  left: max(4vw, 34px);
  right: max(4vw, 34px);
  bottom: 30px;
  max-width: none;
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(5,8,11,.72), rgba(5,8,11,.9));
  backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  overflow: hidden;
}

.rapid-showcase .rapid-benefits article {
  min-height: 205px;
  padding: 28px 30px 26px;
}

.rapid-showcase .rapid-benefits h3 {
  font-size: .96rem;
}

.rapid-showcase .rapid-benefits p {
  max-width: 230px;
  color: rgba(255,255,255,.77);
  font-size: .9rem;
}

.rapid-conversion-wrap {
  position: relative;
  z-index: 5;
  padding: 34px max(4vw, 34px) 86px;
  background:
    radial-gradient(circle at 82% 0%, rgba(255,82,0,.09), transparent 30%),
    linear-gradient(180deg, #070a0c, #050607);
}

.rapid-conversion-wrap .rapid-conversion {
  max-width: 1500px;
  margin: 0 auto;
  padding: 38px 42px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(13,17,20,.98), rgba(7,10,12,.96));
}

@media (max-width: 1100px) {
  .rapid-showcase {
    min-height: 1060px;
    padding-bottom: 420px;
  }

  .rapid-image {
    background-size: cover;
    background-position: 61% center;
  }

  .rapid-showcase .rapid-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .rapid-showcase .rapid-benefits article:nth-child(2) {
    border-right: 0;
  }

  .rapid-showcase .rapid-benefits article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.17);
  }
}

@media (max-width: 780px) {
  .rapid-showcase {
    min-height: 0;
    padding: 84px 18px 0;
    background: #07111a;
  }

  .rapid-image {
    position: relative;
    inset: auto;
    z-index: -1;
    width: calc(100% + 36px);
    aspect-ratio: 3 / 2;
    margin: 30px -18px 0;
    background-image: url("assets/rapid-floor-wide.jpg");
    background-size: cover;
    background-position: 64% center;
    filter: saturate(1.02) contrast(1.02) brightness(1.02);
  }

  .rapid-shade {
    z-index: -2;
    background: linear-gradient(180deg, rgba(3,6,9,.92) 0%, rgba(3,6,9,.58) 25%, rgba(3,6,9,0) 57%);
  }

  .rapid-showcase .rapid-copy {
    max-width: 100%;
  }

  .rapid-showcase .rapid-copy h2 {
    font-size: clamp(4rem, 17vw, 5.6rem);
  }

  .rapid-showcase .rapid-intro {
    max-width: 100%;
  }

  .rapid-showcase .rapid-benefits {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin: -26px 0 0;
    border-radius: 14px;
  }

  .rapid-showcase .rapid-benefits article {
    min-height: 182px;
    padding: 22px 15px 20px;
  }

  .rapid-showcase .rapid-benefits h3 {
    font-size: .78rem;
  }

  .rapid-showcase .rapid-benefits p {
    font-size: .75rem;
  }

  .rapid-conversion-wrap {
    padding: 28px 18px 62px;
  }

  .rapid-conversion-wrap .rapid-conversion {
    padding: 28px 22px;
  }
}

@media (max-width: 430px) {
  .rapid-showcase {
    padding-top: 74px;
  }

  .rapid-image {
    aspect-ratio: 4 / 3;
    background-position: 66% center;
  }

  .rapid-showcase .rapid-copy h2 {
    font-size: clamp(3.7rem, 16.8vw, 5.05rem);
  }
}
