:root {
  --bg: #111315;
  --panel: #1b1f22;
  --panel-strong: #15191c;
  --ink: #f5f3ef;
  --muted: #9ca3aa;
  --line: #2f353a;
  --glow: #ff8c1c;
  --hot: #ff4d4d;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-industrial: "Montserrat", sans-serif;
  --signal: #ff8c1c;
  --signal-soft: #ffb347;
  --steel: #c8ced4;
  --shadow-deep: 0 20px 48px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(255, 140, 28, 0.09), transparent 30%),
    linear-gradient(180deg, #111315, #15181b 42%, #101214 100%);
  color: var(--ink);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
}

body.nav-open-lock {
  overflow: hidden;
}

.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 140, 28, 0.02) 1px, transparent 1px);
  background-size: 100% 3px, 32px 100%;
  opacity: 0.12;
  z-index: 2;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  background: rgba(17, 19, 21, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 140, 28, 0.18);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 140, 28, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong,
.brand-copy em {
  font-style: normal;
  text-transform: uppercase;
}

.brand-copy strong {
  font: 900 18px var(--font-industrial);
  color: #fff;
  letter-spacing: 0.08em;
}

.brand-copy em {
  font: 700 11px var(--font-body);
  color: var(--signal-soft);
  letter-spacing: 0.18em;
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: linear-gradient(180deg, rgba(255, 140, 28, 0.12), rgba(255, 140, 28, 0.03));
  border: 1px solid rgba(255, 140, 28, 0.26);
  color: #fff;
  cursor: pointer;
  border-radius: 14px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
}

.nav-link {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(245, 243, 239, 0.86);
  font: 600 13px var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 11px 14px;
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  border-color: rgba(255, 140, 28, 0.28);
  background: rgba(255, 140, 28, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 140, 28, 0.1);
  transform: translateY(-1px);
}

#app {
  position: relative;
  z-index: 5;
}

.view {
  display: none;
  min-height: calc(100vh - 76px);
}

.view.active {
  display: block;
}

.hero-shell {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 48px 6vw;
  overflow: hidden;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.32) contrast(1.15);
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 140, 28, 0.18), transparent 36%),
    linear-gradient(90deg, rgba(17, 19, 21, 0.9), rgba(17, 19, 21, 0.56));
}

.hero-inner {
  position: relative;
  width: min(1180px, 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 30px;
  align-items: end;
}

.hero-copy-column {
  display: grid;
  gap: 0;
}

.hero-kicker,
.section-kicker,
.value-tag,
.drawer-label {
  color: var(--signal-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

h1, h2, h3, strong, th {
  font-family: var(--font-industrial);
}

h1 {
  margin: 14px 0 18px;
  font-size: clamp(46px, 8vw, 80px);
  line-height: 0.94;
  color: #fff;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-shadow: none;
}

.hero-copy {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hero-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.hero-terms span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 140, 28, 0.24);
  background: rgba(255, 140, 28, 0.08);
  color: var(--steel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

.hero-actions,
.story-photos,
.customer-photos,
.stepbar,
.pricing-table-wrap {
  display: flex;
  gap: 14px;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-proof-card,
.hero-dealer-card,
.hero-ops-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(29, 33, 36, 0.94), rgba(18, 21, 24, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-deep);
}

.hero-proof-card,
.hero-ops-item {
  padding: 16px 18px;
  border-radius: 20px;
}

.hero-proof-card span,
.hero-ops-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--signal-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-proof-card strong,
.hero-ops-item strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.3;
}

.hero-proof-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-dealer-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  border-color: rgba(255, 140, 28, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 140, 28, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(29, 33, 36, 0.97), rgba(18, 21, 24, 0.97));
}

.hero-dealer-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-dealer-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-fitment-grid,
.hero-ops-grid {
  display: grid;
  gap: 12px;
}

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

.hero-fitment-chip {
  appearance: none;
  width: 100%;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 140, 28, 0.18);
  background: rgba(255, 140, 28, 0.06);
  color: #fff;
  font: 800 13px var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
}

.hero-fitment-chip:hover {
  background: rgba(255, 140, 28, 0.12);
  border-color: rgba(255, 179, 71, 0.42);
}

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

.hero-quote-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-quote-actions .edge-button {
  width: 100%;
  text-align: center;
}

.hero-quote-note {
  margin: 0;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.7;
}

.edge-button {
  appearance: none;
  border: 1px solid rgba(255, 140, 28, 0.34);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 140, 28, 0.14), rgba(255, 140, 28, 0.05));
  color: #fff;
  font: 700 15px var(--font-body);
  text-transform: uppercase;
  padding: 15px 24px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.edge-button:hover {
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 140, 28, 0.24), rgba(255, 140, 28, 0.08));
  border-color: rgba(255, 179, 71, 0.55);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  transform: translateY(-1px);
}

.pwa-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: min(420px, calc(100vw - 24px));
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 140, 28, 0.18);
  background: rgba(17, 19, 21, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
  border-radius: 22px;
}

.pwa-banner[hidden] {
  display: none;
}

.pwa-banner__eyebrow {
  margin: 0 0 8px;
  color: var(--signal-soft);
  font: 700 11px var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pwa-banner__title {
  margin: 0 0 8px;
  font: 800 28px/1 var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pwa-banner__message {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pwa-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pwa-banner__primary {
  min-width: 126px;
}

.pwa-banner__secondary {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 600 14px var(--font-body);
  cursor: pointer;
  padding: 0 4px;
}

.pwa-banner__secondary:hover {
  color: #fff;
}

.banner-strip,
.value-grid,
.cards-grid,
.spec-grid,
.terms-grid {
  display: grid;
  gap: 20px;
}

.banner-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 28px 6vw;
}

.proof-band-section,
.home-ops-section,
.proof-lab,
.rfq-dock {
  padding: 0 6vw 36px;
}

.proof-band-head,
.home-ops-head,
.proof-lab-head,
.rfq-dock-shell {
  display: grid;
  gap: 24px;
}

.proof-band-head,
.home-ops-head,
.proof-lab-head {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: end;
  margin-bottom: 22px;
}

.proof-banner-strip {
  padding: 0;
}

.install-video-strip {
  padding: 0 6vw 36px;
}

.proof-lab-shell {
  padding: 24px;
  background: linear-gradient(180deg, rgba(29, 33, 36, 0.96), rgba(18, 21, 24, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-deep);
}

.proof-lab-intro {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.proof-lab-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.install-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 24px;
  background: linear-gradient(180deg, rgba(29, 33, 36, 0.96), rgba(18, 21, 24, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  align-items: center;
  border-radius: 26px;
  box-shadow: var(--shadow-deep);
}

.install-video-media {
  position: relative;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-lab-media {
  min-height: 100%;
  border-radius: 24px;
}

.proof-lab-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 140, 28, 0.18);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.94));
  backdrop-filter: blur(10px);
}

.proof-lab-overlay span,
.banner-copy p,
.proof-lab-card span,
.rfq-proof-item span,
.rfq-checklist span,
.rfq-note {
  color: var(--muted);
}

.proof-lab-overlay span,
.proof-lab-card span,
.rfq-proof-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--signal-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-lab-overlay strong {
  display: block;
  color: #fff;
  font: 800 18px/1.4 var(--font-industrial);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.install-inline-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 540px;
  object-fit: contain;
  display: block;
  background: #020617;
}

.install-video-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 4vw, 46px);
}

.proof-lab-panel,
.rfq-dock-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0.92), rgba(15, 23, 42, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.proof-lab-copy h3,
.rfq-dock-copy h2 {
  margin: 10px 0 0;
  color: #fff;
  font-family: var(--font-industrial);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.proof-lab-copy h3 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
}

.video-points {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.75;
}

.proof-lab-points {
  margin-bottom: 0;
}

.proof-lab-grid,
.home-ops-grid,
.rfq-proof-strip {
  display: grid;
  gap: 16px;
}

.proof-lab-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-lab-card,
.rfq-proof-item {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.035);
}

.proof-lab-card strong,
.rfq-proof-item strong,
.rfq-checklist strong {
  display: block;
  color: #fff;
}

.proof-lab-card strong {
  font: 800 17px/1.4 var(--font-industrial);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.proof-lab-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.proof-lab-actions,
.rfq-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rfq-actions .edge-button:last-child {
  grid-column: 1 / -1;
}

.banner-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: #101214;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-deep);
}

.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.62);
}

.banner-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
}

.banner-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--signal-soft);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.banner-copy strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.banner-copy p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.home-ops-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 8px 6vw 44px;
}

.terms-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 6vw 48px;
}

.value-card,
.product-card,
.story-card,
.map-frame,
.region-drawer,
.build-panel,
.preview-shell,
.pricing-table-wrap,
.term-card {
  background: linear-gradient(180deg, rgba(29, 33, 36, 0.96), rgba(18, 21, 24, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-deep);
}

.value-card,
.region-drawer,
.build-panel,
.story-card,
.term-card {
  padding: 24px;
}

.value-card h3,
.term-card h3 {
  margin: 12px 0;
  font-size: 26px;
}

.home-ops-card h3 {
  font-size: 24px;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.value-card p,
.section-head p,
.drawer-label,
.region-drawer li,
.table-label,
.human-lines p,
.product-card caption,
.story-card p,
.pricing-table td,
.pricing-table th {
  color: var(--muted);
}

.term-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-head {
  padding: 38px 6vw 24px;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-copy {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.b2b-section {
  padding: 0 6vw 40px;
}

.b2b-head,
.b2b-split {
  display: grid;
  gap: 24px;
}

.b2b-head {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: end;
  margin-bottom: 22px;
}

.b2b-title {
  margin: 10px 0 0;
  font: 900 clamp(34px, 4.6vw, 54px)/0.95 var(--font-industrial);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}

.b2b-intro {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.b2b-grid,
.b2b-support-grid,
.b2b-steps {
  display: grid;
  gap: 20px;
}

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

.b2b-split {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.b2b-panel,
.b2b-card,
.b2b-callout {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0.92), rgba(15, 23, 42, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.b2b-panel,
.b2b-card {
  padding: 24px;
}

.b2b-section--accent .b2b-panel:first-child {
  border-color: rgba(255, 140, 28, 0.22);
}

.b2b-card {
  position: relative;
  overflow: hidden;
}

.b2b-card::before,
.b2b-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 140, 28, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 45%);
  pointer-events: none;
}

.b2b-card > *,
.b2b-panel > *,
.b2b-callout > * {
  position: relative;
  z-index: 1;
}

.b2b-card h3,
.b2b-panel h3,
.b2b-step strong {
  font-family: var(--font-industrial);
}

.b2b-card h3,
.b2b-panel h3 {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
}

.b2b-card p,
.b2b-panel p,
.b2b-callout p,
.b2b-list li,
.b2b-step p {
  color: var(--muted);
  line-height: 1.75;
}

.b2b-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 140, 28, 0.22);
  background: linear-gradient(180deg, rgba(255, 140, 28, 0.14), rgba(255, 140, 28, 0.04));
  color: var(--signal);
  border-radius: 16px;
}

.b2b-icon svg {
  width: 28px;
  height: 28px;
}

.b2b-icon-image {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.b2b-label {
  margin: 18px 0 0;
  color: var(--signal-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.b2b-list {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.b2b-card-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.b2b-card-foot span {
  display: block;
  margin-bottom: 8px;
  color: var(--signal-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.b2b-card-foot strong {
  display: block;
  font-size: 15px;
  line-height: 1.55;
}

.b2b-proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.b2b-proof-pill {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 140, 28, 0.16);
  background: rgba(255, 140, 28, 0.06);
}

.b2b-proof-pill span {
  display: block;
  margin-bottom: 8px;
  color: var(--signal-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.b2b-proof-pill strong {
  display: block;
  font-size: 15px;
  line-height: 1.55;
}

.b2b-callout {
  margin-top: 20px;
  padding: 18px 20px;
  border-color: rgba(255, 140, 28, 0.24);
  background: linear-gradient(180deg, rgba(255, 140, 28, 0.1), rgba(255, 140, 28, 0.03));
}

.b2b-callout strong {
  display: block;
  color: #fff;
  font: 800 12px/1 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.b2b-callout p {
  margin: 10px 0 0;
}

.b2b-callout--soft {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

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

.b2b-card--wide {
  grid-column: 1 / -1;
}

.b2b-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.b2b-step {
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.b2b-step span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 28, 0.14);
  color: var(--signal-soft);
  font: 800 12px/1 var(--font-body);
  letter-spacing: 0.1em;
}

.b2b-step strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.b2b-step p {
  margin: 10px 0 0;
}

.b2b-panel--stack {
  display: grid;
  gap: 20px;
}

.rfq-dock-shell {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 140, 28, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(20, 24, 27, 0.96), rgba(14, 18, 22, 0.98));
  border: 1px solid rgba(255, 140, 28, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow-deep);
  align-items: start;
}

.rfq-dock-copy h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 0.96;
}

.rfq-proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.rfq-proof-item strong {
  font-size: 15px;
  line-height: 1.55;
}

.rfq-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.rfq-checklist li {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.rfq-checklist strong {
  margin-bottom: 6px;
  font: 800 15px/1.4 var(--font-industrial);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.rfq-checklist span,
.rfq-note {
  display: block;
  font-size: 14px;
  line-height: 1.7;
}

.rfq-note {
  margin: 0;
}

.b2b-steps--stack {
  grid-template-columns: 1fr;
}

.products-layout,
.build-layout,
.dealer-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 24px;
  padding: 0 6vw 44px;
}

.dealer-layout {
  grid-template-columns: 1fr;
}

.dealer-summary-grid,
.dealer-criteria-grid {
  display: grid;
  gap: 20px;
}

.dealer-routing-grid,
.dealer-entry-grid {
  display: grid;
  gap: 20px;
}

.dealer-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.catalog-intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  margin-bottom: 18px;
}

.program-inspector,
.program-matrix-wrap,
.build-spec-panel {
  background: linear-gradient(180deg, rgba(29, 33, 36, 0.96), rgba(18, 21, 24, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-deep);
}

.program-inspector,
.program-matrix-wrap {
  padding: 20px;
}

.mobile-section-toggle {
  display: none;
  width: 100%;
  margin: 10px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 140, 28, 0.18);
  border-radius: 14px;
  background: rgba(255, 140, 28, 0.08);
  color: #fff;
  font: 800 12px/1 var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-inspector h3 {
  margin: 10px 0 10px;
  font-size: 30px;
}

.program-inspector p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

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

.inspector-cell {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--signal);
  border-radius: 14px;
}

.inspector-cell span {
  display: block;
  margin-bottom: 6px;
  color: var(--signal-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inspector-cell strong {
  font-size: 15px;
  line-height: 1.5;
}

.program-matrix {
  width: 100%;
  border-collapse: collapse;
}

.program-matrix th,
.program-matrix td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.program-matrix th {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-matrix td {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.map-panel,
.cards-panel,
.build-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.map-frame {
  padding: 18px;
}

.market-map {
  width: 100%;
  height: auto;
}

.outline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 4;
}

.region {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 2;
  cursor: pointer;
  transition: 180ms ease;
}

.region:hover,
.region.active {
  fill: rgba(255, 140, 28, 0.16);
  stroke: var(--signal);
}

.hotspot {
  fill: var(--signal);
  filter: drop-shadow(0 0 10px rgba(255, 140, 28, 0.65));
}

.region-drawer h3 {
  margin: 10px 0 16px;
  font-size: 28px;
}

.region-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.region-drawer li {
  padding: 0;
  background: transparent;
  border-left: 0;
}

.region-model-button {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-left: 3px solid var(--signal);
  color: var(--muted);
  cursor: pointer;
  font: 600 14px var(--font-body);
  border-radius: 14px;
}

.region-model-button:hover,
.region-model-button.is-active {
  color: #fff;
  border-color: rgba(255, 140, 28, 0.2);
  background: rgba(255, 140, 28, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 140, 28, 0.1);
}

.mobile-models {
  display: none;
}

#market-select {
  width: 100%;
  background: #0f1214;
  border: 1px solid rgba(255, 140, 28, 0.24);
  color: var(--ink);
  padding: 12px;
  border-radius: 14px;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card.is-selected {
  border-color: rgba(255, 140, 28, 0.32);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.34);
}

.product-carousel {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.product-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms linear;
}

.product-carousel img.active {
  opacity: 1;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  margin: 0 0 12px;
  font-size: 30px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
}

.spec-table td {
  padding: 10px 0;
  border-bottom: 1px solid #333;
  font-size: 14px;
}

.spec-table td:last-child {
  text-align: right;
  color: #fff;
  font-weight: 700;
}

.human-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.human-lines p {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.card-actions .edge-button {
  text-align: center;
  width: 100%;
  text-decoration: none;
}

.customer-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.customer-photos figure,
.story-photos figure {
  margin: 0;
}

.customer-photos img,
.story-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.customer-photos figcaption,
.story-photos figcaption {
  padding: 8px 0 0;
  color: #d1d5db;
  font-size: 12px;
}

.stepbar {
  flex-wrap: wrap;
}

.step {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--muted);
  padding: 10px 14px;
  cursor: pointer;
}

.step.active {
  color: #fff;
  border-color: var(--signal);
  background: rgba(255, 140, 28, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 140, 28, 0.12);
}

.preview-shell {
  min-height: 560px;
  padding: 18px;
}

#builder-canvas {
  width: 100%;
  height: 520px;
  display: block;
}

.mobile-build-preview {
  display: none;
  gap: 16px;
}

.mobile-build-preview__media {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 140, 28, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-build-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mobile-build-preview__body {
  display: grid;
  gap: 12px;
}

.mobile-build-preview__body h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
}

.mobile-build-preview__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.mobile-build-preview__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-build-preview__chips span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 28, 0.18);
  background: rgba(255, 140, 28, 0.08);
  color: var(--steel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-build-preview__specs {
  display: grid;
  gap: 10px;
}

.mobile-build-preview__specs div {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--signal);
  border-radius: 14px;
}

.mobile-build-preview__specs span {
  display: block;
  margin-bottom: 6px;
  color: var(--signal-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-build-preview__specs strong {
  font-size: 14px;
  line-height: 1.55;
}

.build-panel {
  display: flex;
  align-items: stretch;
}

#build-form {
  display: grid;
  gap: 16px;
  width: 100%;
}

.option-group {
  display: grid;
  gap: 10px;
}

.option-group h3 {
  margin: 0;
  font-size: 22px;
}

.option-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.option-group select,
.option-group input[type="text"],
.option-group input[type="email"] {
  width: 100%;
  background: #0f1214;
  border: 1px solid rgba(255, 140, 28, 0.18);
  color: #fff;
  padding: 13px 14px;
  font: 500 14px var(--font-body);
  border-radius: 14px;
}

.quote-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px;
  background: rgba(255, 140, 28, 0.08);
  border: 1px solid rgba(255, 140, 28, 0.18);
  border-radius: 18px;
}

.quote-total strong {
  color: #fff;
  font-size: 28px;
  text-align: right;
}

.build-spec-panel {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
}

.build-spec-panel h4 {
  margin: 0;
  font-size: 18px;
}

.build-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.build-spec-item {
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--signal);
  border-radius: 14px;
}

.build-spec-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--signal-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.build-spec-item strong {
  font-size: 14px;
  line-height: 1.5;
}

.build-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.contact-direct {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 140, 28, 0.16);
  background: rgba(255, 140, 28, 0.06);
  border-radius: 18px;
}

.contact-direct span {
  color: var(--signal-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-direct a {
  color: #fff;
  text-decoration: none;
  word-break: break-all;
}

.contact-direct a:hover {
  color: var(--signal-soft);
}

.plain-contact {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  word-break: break-all;
}

.contact-direct p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.stories-grid {
  display: grid;
  gap: 22px;
  padding: 0 6vw 44px;
}

.seo-copy-section,
.blog-draft-section {
  padding: 0 6vw 56px;
}

.seo-copy-head,
.blog-draft-head {
  padding-left: 0;
  padding-right: 0;
}

.seo-copy-grid,
.blog-draft-grid {
  display: grid;
  gap: 22px;
}

.seo-copy-article,
.blog-draft-article {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 140, 28, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(17, 19, 21, 0.92), rgba(21, 25, 28, 0.94));
  box-shadow: var(--shadow-deep);
}

.seo-copy-article h3,
.blog-draft-article h3 {
  margin: 12px 0 16px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.seo-copy-article p,
.blog-draft-article p {
  margin: 0 0 18px;
  color: rgba(245, 243, 239, 0.86);
  font-size: 16px;
  line-height: 1.92;
}

.seo-copy-article p:last-child,
.blog-draft-article p:last-child {
  margin-bottom: 0;
}

.blog-draft-meta {
  margin: 0;
  color: var(--signal-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  align-items: start;
}

.story-meta {
  display: grid;
  gap: 12px;
}

.story-region {
  color: var(--signal-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-focus {
  color: var(--steel);
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-map {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 140, 28, 0.14);
  border-radius: 18px;
}

.story-body h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.15;
}

.story-body p {
  margin: 0 0 18px;
  line-height: 1.85;
}

.story-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pricing-table-wrap {
  display: block;
  padding: 0;
  overflow: auto;
  margin: 0 6vw 48px;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.pricing-table th {
  color: #fff;
  background: rgba(255, 140, 28, 0.08);
}

.stock-alert {
  color: var(--hot);
  font-weight: 900;
}

.stock-warm {
  color: #f59e0b;
  font-weight: 900;
}

.stock-ok {
  color: var(--signal-soft);
  font-weight: 900;
}

.contact-route-stack {
  display: grid;
  gap: 14px;
}

.contact-route-card,
.dual-contact-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  position: relative;
  overflow: visible;
}

.contact-route-body {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.contact-scope {
  margin-bottom: 14px;
}

.contact-scope-center {
  display: flex;
  justify-content: center;
}

.contact-route-body img {
  width: 136px;
  height: 136px;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 140, 28, 0.16);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
}

.contact-route-body img.qr-plain {
  background: #ededed;
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  width: 160px;
  height: 160px;
}

.contact-brandline {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.contact-brandline-center {
  justify-content: center;
  text-align: left;
}

.wa-id-card {
  position: relative;
  margin-top: 10px;
  margin-bottom: 16px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.wa-id-card-modal {
  margin-top: 0;
}

.wa-id-top {
  min-height: 150px;
}

.wa-id-avatar {
  position: absolute;
  top: 78px;
  left: 50%;
  width: 92px;
  height: 92px;
  transform: translateX(-50%);
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #ececec;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
}

.wa-id-shell {
  padding: 64px 24px 28px;
  text-align: center;
}

.wa-id-name {
  display: block;
  color: #101114;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wa-id-role {
  display: block;
  margin-top: 8px;
  color: #6a7079;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wa-id-qr {
  margin: 26px auto 0;
  width: min(100%, 300px);
  background: transparent;
}

.wa-id-card-qr-only {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.wa-id-qr.wa-id-qr-only {
  margin: 0 auto;
  width: min(100%, 260px);
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.wa-id-qr img.qr-plain {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.qr-only-card {
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.qr-standalone {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.qr-details {
  display: none;
}

.wa-id-note {
  margin: 22px auto 0;
  max-width: 320px;
  color: #6a7079;
  font-size: 13px;
  line-height: 1.7;
}

.contact-brandmark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
}

.qr-spotlight {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 140, 28, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 140, 28, 0.14);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
  min-height: 250px;
}

.qr-spotlight img {
  width: 100%;
  max-width: 190px;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center center;
  display: block;
  border-radius: 14px;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.qr-spotlight::after {
  content: "SCAN OR TAP DIRECT CONTACT";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.qr-spotlight-large {
  margin-bottom: 20px;
  padding-bottom: 40px;
}

.qr-spotlight-large img {
  max-width: 220px;
}

.qr-spotlight.qr-plain-spotlight {
  background: #ededed;
  border: 0;
  box-shadow: none;
  padding: 0;
  min-height: auto;
  border-radius: 0;
}

.qr-spotlight.qr-plain-spotlight::after {
  display: none;
}

.qr-spotlight img.qr-plain {
  max-width: 300px;
  background: #ededed;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-mini-label {
  color: var(--signal-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.modal-actions,
.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.modal-actions .edge-button,
.inquiry-actions .edge-button {
  flex: 1 1 0;
  text-align: center;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.82);
  z-index: 50;
  overflow-y: auto;
}

.modal.open {
  display: flex;
}

.modal-dialog {
  position: relative;
  width: min(960px, 100%);
  background: linear-gradient(180deg, rgba(21, 25, 28, 0.98), rgba(14, 16, 18, 0.98));
  border: 1px solid rgba(255, 140, 28, 0.18);
  padding: 18px;
  border-radius: 22px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.46);
  max-height: calc(100dvh - 56px);
  overflow-y: auto;
}

.video-shell {
  aspect-ratio: 16 / 9;
}

.video-shell iframe,
.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  border: 0;
}

.qr-dialog {
  width: min(940px, 100%);
  text-align: center;
}

.qr-dialog p {
  line-height: 1.8;
  color: #d1d5db;
}

.modal-link {
  margin-top: 8px;
}

.qr-details {
  display: grid;
  gap: 12px;
  margin-bottom: 10px;
}

.qr-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: start;
  margin: 14px 0 8px;
}

.dual-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 14px 0 8px;
}

.qr-detail-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  border-radius: 14px;
}

.qr-detail-item strong {
  color: #fff;
  font-size: 15px;
  word-break: break-all;
}

.dealer-entry-grid-cta {
  grid-template-columns: 1fr;
}

.dealer-entry-card {
  padding-bottom: 24px;
}

.dealer-checklist {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  line-height: 1.7;
}

.inquiry-dialog {
  width: min(1120px, 100%);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 18px;
}

.inquiry-form-grid,
.inquiry-preview {
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.inquiry-row {
  display: grid;
  gap: 8px;
}

.inquiry-row-full {
  grid-column: 1 / -1;
}

.inquiry-row label {
  color: var(--signal-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inquiry-row input,
.inquiry-row select,
.inquiry-row textarea,
#inquiry-output {
  width: 100%;
  background: #0f1214;
  border: 1px solid rgba(255, 140, 28, 0.18);
  color: #fff;
  padding: 13px 14px;
  font: 500 14px var(--font-body);
  border-radius: 14px;
}

#inquiry-output {
  min-height: 360px;
  resize: vertical;
  line-height: 1.7;
  white-space: pre-wrap;
}

.modal-close {
  position: absolute;
  right: 8px;
  top: 8px;
  border: 0;
  background: transparent;
  color: var(--signal-soft);
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .hero-layout,
  .hero-proof-strip,
  .b2b-proof-band,
  .proof-band-head,
  .home-ops-head,
  .proof-lab-head,
  .proof-lab-layout,
  .rfq-dock-shell {
    grid-template-columns: 1fr;
  }

  .banner-strip,
  .value-grid,
  .home-ops-grid,
  .terms-grid,
  .dealer-summary-grid,
  .dealer-criteria-grid,
  .dealer-routing-grid,
  .dealer-entry-grid,
  .dual-contact-grid,
  .proof-lab-grid,
  .rfq-proof-strip {
    grid-template-columns: 1fr;
  }

  .b2b-grid,
  .b2b-head,
  .b2b-split,
  .b2b-support-grid,
  .b2b-steps {
    grid-template-columns: 1fr;
  }

  .install-video-card {
    grid-template-columns: 1fr;
  }

  .catalog-intro-grid {
    grid-template-columns: 1fr;
  }

  .products-layout,
  .build-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .topbar {
    gap: 10px;
    padding: 10px 12px;
    align-items: center;
    flex-wrap: wrap;
  }

  .brand {
    width: auto;
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 15px;
    letter-spacing: 0.1em;
  }

  .brand-copy em {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    gap: 10px;
    padding-top: 10px;
    order: 3;
  }

  .topbar.nav-open .nav {
    display: grid;
    grid-template-columns: 1fr;
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    padding: 12px;
    background: rgba(21, 25, 28, 0.98);
    border: 1px solid rgba(255, 140, 28, 0.16);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    z-index: 70;
  }

  .nav-link {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-align: left;
  }

  .hero-shell {
    min-height: auto;
    padding: 28px 18px 18px;
  }

  .hero-layout {
    gap: 18px;
  }

  .hero-video {
    display: none;
  }

  .hero-shell {
    background:
      linear-gradient(180deg, rgba(13, 17, 23, 0.76), rgba(13, 17, 23, 0.94)),
      url("/assets/brand-hero-new.png") center/cover;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-copy {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-proof-strip {
    margin-top: 18px;
  }

  .hero-proof-card {
    padding: 14px 16px;
  }

  .hero-proof-card strong,
  .hero-ops-item strong {
    font-size: 15px;
  }

  .hero-dealer-card {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-dealer-card h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .hero-fitment-grid,
  .hero-quote-actions {
    grid-template-columns: 1fr;
  }

  .hero-fitment-chip {
    text-align: center;
  }

  h1 {
    margin: 10px 0 14px;
    font-size: clamp(34px, 10vw, 52px);
  }

  .hero-terms {
    flex-direction: column;
    margin: 18px 0 20px;
  }

  .hero-terms span {
    padding: 9px 10px;
    font-size: 10px;
  }

  .banner-strip,
  .value-grid,
  .b2b-section,
  .proof-band-section,
  .proof-lab,
  .home-ops-section,
  .rfq-dock,
  .section-head,
  .seo-copy-section,
  .blog-draft-section,
  .pricing-table-wrap,
  .stories-grid,
  .products-layout,
  .build-layout,
  .dealer-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-head {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .section-head h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .section-copy,
  .section-head p {
    font-size: 14px;
    line-height: 1.7;
  }

  .banner-card {
    min-height: 220px;
  }

  .proof-band-head,
  .home-ops-head,
  .proof-lab-head {
    margin-bottom: 18px;
  }

  .proof-lab-shell,
  .rfq-dock-shell {
    padding: 18px;
    border-radius: 22px;
  }

  .proof-lab-overlay {
    inset: auto 12px 12px 12px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .proof-lab-overlay strong {
    font-size: 15px;
    line-height: 1.5;
  }

  .proof-lab-panel,
  .rfq-dock-card {
    padding: 18px;
    border-radius: 20px;
  }

  .proof-lab-copy h3,
  .rfq-dock-copy h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.02;
  }

  .proof-lab-actions,
  .rfq-actions {
    grid-template-columns: 1fr;
  }

  .rfq-actions .edge-button:last-child {
    grid-column: auto;
  }

  .proof-lab-card strong,
  .rfq-checklist strong,
  .rfq-proof-item strong {
    font-size: 14px;
  }

  .banner-copy strong {
    font-size: 18px;
  }

  .banner-copy p,
  .proof-lab-card p,
  .rfq-checklist span,
  .rfq-note {
    font-size: 13px;
  }

  .value-card,
  .product-card,
  .story-card,
  .map-frame,
  .region-drawer,
  .build-panel,
  .preview-shell,
  .pricing-table-wrap,
  .term-card,
  .program-inspector,
  .program-matrix-wrap,
  .build-spec-panel {
    border-radius: 20px;
  }

  .desktop-map {
    display: none;
  }

  .mobile-models {
    display: block;
  }

  .customer-photos {
    grid-template-columns: 1fr;
  }

  .inspector-grid,
  .build-spec-grid {
    grid-template-columns: 1fr;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .product-content {
    padding: 18px 16px;
  }

  .product-content h3,
  .program-inspector h3,
  .region-drawer h3 {
    font-size: 24px;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .spec-table td {
    display: block;
    padding: 0;
    border: 0;
  }

  .spec-table td:first-child {
    margin-bottom: 6px;
    color: var(--signal-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .spec-table td:last-child {
    text-align: left;
    line-height: 1.55;
  }

  .human-lines p {
    font-size: 14px;
    font-weight: 600;
    color: var(--steel);
  }

  .b2b-card,
  .b2b-panel {
    padding: 18px;
  }

  .b2b-title {
    font-size: clamp(28px, 8vw, 42px);
  }

  .b2b-card h3,
  .b2b-panel h3,
  .b2b-step strong {
    font-size: 22px;
  }

  .b2b-proof-band {
    grid-template-columns: 1fr;
  }

  .home-ops-grid,
  .rfq-proof-strip {
    grid-template-columns: 1fr;
  }

  .story-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .story-body h3 {
    font-size: 24px;
  }

  .seo-copy-article,
  .blog-draft-article {
    padding: 18px;
    border-radius: 20px;
  }

  .seo-copy-article h3,
  .blog-draft-article h3 {
    font-size: 24px;
  }

  .seo-copy-article p,
  .blog-draft-article p {
    font-size: 14px;
    line-height: 1.78;
  }

  .story-photos {
    grid-template-columns: 1fr;
  }

  .inquiry-layout,
  .inquiry-form-grid {
    grid-template-columns: 1fr;
  }

  .qr-contact-grid {
    grid-template-columns: 1fr;
  }

  .dual-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-route-body {
    grid-template-columns: 1fr;
  }

  .wa-id-top {
    min-height: 132px;
  }

  .wa-id-avatar {
    top: 60px;
    width: 82px;
    height: 82px;
  }

  .wa-id-shell {
    padding: 54px 18px 20px;
  }

  .wa-id-note {
    font-size: 12px;
  }

  .preview-shell {
    min-height: 0;
    padding: 14px;
  }

  #builder-canvas {
    display: none;
  }

  .mobile-build-preview {
    display: grid;
  }

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

  .step {
    min-height: 44px;
    padding: 12px 10px;
    justify-content: center;
    text-align: center;
  }

  .option-group h3 {
    font-size: 18px;
  }

  .quote-total {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .quote-total strong {
    font-size: 22px;
    text-align: left;
  }

  .modal {
    align-items: flex-start;
    padding: 12px;
  }

  .modal-dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
    margin: 0 auto;
    padding: 14px;
    border-radius: 18px;
  }

  .qr-dialog h3 {
    font-size: 22px;
    line-height: 1.25;
  }

  .wa-id-card-qr-only {
    padding: 0;
    border-radius: 0;
  }

  .wa-id-qr.wa-id-qr-only {
    width: min(100%, 220px);
    border-radius: 0;
  }

  .qr-standalone {
    width: min(100%, 240px);
  }

  .modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .program-inspector,
  .program-matrix-wrap {
    padding: 16px;
  }

  .program-matrix-wrap.is-mobile .mobile-section-toggle {
    display: block;
  }

  .program-matrix-wrap.is-mobile.is-collapsed .program-matrix {
    display: none;
  }

  .pricing-table-wrap {
    margin-bottom: 34px;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .pricing-table,
  .program-matrix {
    min-width: 0;
    width: 100%;
  }

  .pricing-table thead,
  .program-matrix thead {
    display: none;
  }

  .pricing-table tbody,
  .program-matrix tbody {
    display: grid;
    gap: 12px;
  }

  .pricing-table tr,
  .program-matrix tr {
    display: block;
    padding: 16px;
    border: 1px solid rgba(255, 140, 28, 0.14);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(29, 33, 36, 0.96), rgba(18, 21, 24, 0.96));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  }

  .pricing-table td,
  .program-matrix td {
    display: grid;
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }

  .pricing-table td::before,
  .program-matrix td::before {
    content: attr(data-label);
    color: var(--signal-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .pricing-table td:last-child,
  .program-matrix td:last-child {
    border-bottom: 0;
  }

  .pwa-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .pwa-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* 2026-03-30 Alu-Cab-inspired brand refresh */
:root {
  --bg: #f4ebdf;
  --panel: #f8f1e7;
  --panel-strong: #fffaf4;
  --ink: #121510;
  --muted: #5f5b53;
  --line: rgba(24, 39, 31, 0.12);
  --glow: #c57f3a;
  --signal: #c57f3a;
  --signal-soft: #b77435;
  --steel: #223126;
  --shadow-deep: 0 18px 44px rgba(17, 20, 16, 0.08);
  --font-industrial: "Barlow Condensed", sans-serif;
}

html,
body {
  background:
    radial-gradient(circle at 10% 0%, rgba(197, 127, 58, 0.12), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(24, 39, 31, 0.1), transparent 22%),
    linear-gradient(180deg, #f5ecde 0%, #eadfcf 100%);
  color: var(--ink);
}

.scanline {
  display: none;
}

.topbar {
  background: rgba(251, 246, 238, 0.82);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 20, 16, 0.08);
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(24, 39, 31, 0.1);
  box-shadow: 0 10px 24px rgba(17, 20, 16, 0.1);
}

.brand-copy strong {
  color: var(--ink);
  font: 900 30px/0.92 var(--font-industrial);
  letter-spacing: 0.06em;
}

.brand-copy em {
  color: var(--signal);
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.18em;
}

.nav-link {
  color: var(--muted);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
  border-color: rgba(24, 39, 31, 0.14);
  background: rgba(24, 39, 31, 0.06);
  box-shadow: none;
}

.hero-shell {
  padding: 72px 6vw 44px;
}

.hero-video {
  filter: saturate(0.82) sepia(0.08) brightness(0.56) contrast(1.02);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(245, 236, 222, 0.96) 0%, rgba(245, 236, 222, 0.8) 42%, rgba(18, 21, 16, 0.18) 100%),
    radial-gradient(circle at 16% 18%, rgba(197, 127, 58, 0.16), transparent 34%);
}

h1 {
  color: var(--ink);
  font-family: var(--font-industrial);
  font-size: clamp(58px, 8vw, 96px);
  letter-spacing: 0;
  text-shadow: none;
}

.hero-kicker,
.section-kicker,
.value-tag,
.drawer-label {
  color: var(--signal);
}

.hero-copy {
  max-width: 640px;
  font-size: 19px;
  line-height: 1.7;
  color: #3f433e;
}

.hero-terms span {
  background: rgba(255, 250, 244, 0.72);
  border-color: rgba(24, 39, 31, 0.12);
  color: var(--steel);
}

.edge-button {
  border-radius: 999px;
  border-color: #18271f;
  background: #18271f;
  color: #fff;
  box-shadow: 0 12px 30px rgba(17, 20, 16, 0.1);
}

.edge-button:hover {
  background: #22362c;
  border-color: #22362c;
  box-shadow: 0 16px 34px rgba(17, 20, 16, 0.14);
}

.hero-proof-card,
.hero-ops-item,
.hero-dealer-card,
.proof-lab-shell,
.proof-lab-panel,
.rfq-dock-card,
.value-card,
.product-card,
.story-card,
.map-frame,
.region-drawer,
.build-panel,
.preview-shell,
.term-card,
.b2b-panel,
.b2b-card,
.b2b-callout,
.program-inspector,
.pricing-table-wrap {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(246, 239, 229, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-deep);
}

.hero-proof-card strong,
.hero-ops-item strong,
.hero-dealer-card h2,
.section-head h2,
.proof-lab-copy h3,
.home-ops-card h3,
.value-card h3,
.term-card h3,
.b2b-title,
.b2b-card h3,
.b2b-panel h3,
.rfq-dock-copy h2,
.program-inspector h3,
.seo-copy-article h3,
.blog-draft-article h3,
.product-copy h3,
.story-card h3 {
  color: var(--ink);
}

.hero-proof-card p,
.hero-dealer-card > p,
.hero-quote-note,
.section-copy,
.value-card p,
.term-card p,
.proof-lab-card p,
.b2b-card p,
.b2b-panel p,
.b2b-callout p,
.b2b-list li,
.b2b-step p,
.rfq-checklist span,
.rfq-note,
.region-drawer li,
.product-copy p,
.story-card p,
.seo-copy-article p,
.blog-draft-article p,
.section-head p,
.pricing-table td,
.pricing-table th {
  color: var(--muted);
}

.hero-fitment-chip {
  border-color: rgba(24, 39, 31, 0.12);
  background: rgba(255, 250, 244, 0.86);
  color: var(--ink);
}

.hero-fitment-chip:hover {
  background: rgba(24, 39, 31, 0.08);
  border-color: rgba(24, 39, 31, 0.2);
}

.banner-card {
  background: rgba(255, 250, 244, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-deep);
}

.banner-card img {
  filter: none;
}

.banner-copy {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0) 0%, rgba(255, 250, 244, 0.98) 38%);
}

.banner-copy span,
.proof-lab-overlay span,
.proof-lab-card span,
.rfq-proof-item span,
.b2b-proof-pill span,
.b2b-card-foot span,
.b2b-label {
  color: var(--signal);
}

.banner-copy strong,
.proof-lab-card strong,
.rfq-proof-item strong,
.rfq-checklist strong,
.b2b-proof-pill strong,
.b2b-card-foot strong,
.b2b-step strong,
.b2b-callout strong {
  color: var(--ink);
}

.proof-lab-overlay {
  border-color: rgba(197, 127, 58, 0.22);
  background: linear-gradient(180deg, rgba(24, 39, 31, 0.7), rgba(24, 39, 31, 0.88));
}

.proof-lab-overlay strong {
  color: #fff;
}

.proof-lab-card,
.rfq-proof-item,
.rfq-checklist li,
.b2b-proof-pill,
.b2b-step {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(24, 39, 31, 0.1);
}

.b2b-card::before,
.b2b-panel::before {
  background:
    linear-gradient(135deg, rgba(197, 127, 58, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 48%);
}

.b2b-icon {
  border-color: rgba(197, 127, 58, 0.2);
  background: linear-gradient(180deg, rgba(197, 127, 58, 0.14), rgba(197, 127, 58, 0.04));
}

.b2b-callout {
  border-color: rgba(197, 127, 58, 0.22);
  background: linear-gradient(180deg, rgba(197, 127, 58, 0.12), rgba(197, 127, 58, 0.04));
}

.b2b-callout--soft {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(24, 39, 31, 0.1);
}

.rfq-dock-shell {
  background:
    linear-gradient(135deg, rgba(197, 127, 58, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(243, 233, 220, 0.96));
  border: 1px solid rgba(24, 39, 31, 0.12);
  box-shadow: var(--shadow-deep);
}

.pricing-table {
  background: transparent;
}

.pricing-table th {
  color: #fff;
  background: #18271f;
}

.pricing-table td,
.pricing-table th {
  border-color: rgba(24, 39, 31, 0.12);
}

.stock-ok {
  color: #1f6b45;
}

.map-panel,
.program-matrix-wrap,
.product-card,
.story-card,
.seo-copy-article,
.blog-draft-article,
.dealer-routing-grid .value-card {
  box-shadow: var(--shadow-deep);
}

.seo-copy-article,
.blog-draft-article,
.map-panel {
  background: rgba(255, 250, 244, 0.64);
  border: 1px solid rgba(24, 39, 31, 0.08);
  border-radius: 24px;
}

.program-matrix th,
.program-matrix td {
  border-color: rgba(24, 39, 31, 0.1);
}

.program-matrix td::before,
.pricing-table td::before {
  color: var(--signal);
}

.pwa-banner {
  background: rgba(255, 250, 244, 0.96);
  border: 1px solid rgba(24, 39, 31, 0.12);
  box-shadow: var(--shadow-deep);
}

.pwa-banner__title {
  color: var(--ink);
}

.pwa-banner__message,
.pwa-banner__secondary {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(245, 236, 222, 0.9) 0%, rgba(245, 236, 222, 0.7) 42%, rgba(18, 21, 16, 0.18) 100%),
      radial-gradient(circle at 16% 18%, rgba(197, 127, 58, 0.14), transparent 34%);
  }
}

@media (max-width: 800px) {
  .brand-copy strong {
    font-size: 24px;
  }

  .hero-shell {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 72px);
  }

  .hero-proof-card,
  .hero-ops-item,
  .hero-dealer-card,
  .proof-lab-shell,
  .proof-lab-panel,
  .rfq-dock-card,
  .value-card,
  .product-card,
  .story-card,
  .map-frame,
  .region-drawer,
  .build-panel,
  .preview-shell,
  .term-card,
  .b2b-panel,
  .b2b-card,
  .program-inspector,
  .pricing-table-wrap {
    border-radius: 20px;
  }
}

/* 2026-03-30 Alu-Cab-inspired v2 refinements */
.topbar {
  background: rgba(251, 246, 238, 0.9);
}

.topbar .brand img {
  display: none;
}

.brand-copy {
  gap: 4px;
}

.brand-copy strong {
  letter-spacing: 0.05em;
}

.brand-copy em {
  color: #69665d;
  letter-spacing: 0.14em;
}

.hero-shell {
  min-height: clamp(700px, 84vh, 960px);
}

.hero-video {
  filter: saturate(0.76) sepia(0.08) brightness(0.68) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 239, 228, 0.97) 0%, rgba(247, 239, 228, 0.82) 44%, rgba(18, 21, 16, 0.12) 100%),
    radial-gradient(circle at 18% 18%, rgba(197, 127, 58, 0.16), transparent 34%);
}

.hero-inner {
  width: min(1220px, 100%);
}

.hero-layout {
  align-items: center;
}

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

.hero-terms span {
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(17, 20, 16, 0.06);
}

.hero-actions .edge-button:not(:first-child) {
  background: rgba(255, 250, 244, 0.72);
  color: var(--ink);
  border-color: rgba(24, 39, 31, 0.12);
}

.hero-actions .edge-button:not(:first-child):hover {
  background: rgba(255, 250, 244, 0.9);
  border-color: rgba(24, 39, 31, 0.2);
}

.banner-card,
.install-video-card,
.map-panel,
.program-matrix-wrap,
.pricing-table-wrap {
  border-radius: 28px;
}

.banner-card img,
.install-video-media,
.proof-lab-media img,
.story-card img,
.product-card img {
  border-radius: 24px 24px 0 0;
}

.program-matrix th,
.pricing-table th {
  background: #223429;
}

.program-matrix-wrap,
.pricing-table-wrap,
.install-video-card {
  border: 1px solid rgba(24, 39, 31, 0.1);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(244, 236, 225, 0.96));
}

@media (max-width: 1080px) {
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 239, 228, 0.94) 0%, rgba(247, 239, 228, 0.76) 42%, rgba(18, 21, 16, 0.14) 100%),
      radial-gradient(circle at 18% 18%, rgba(197, 127, 58, 0.14), transparent 34%);
  }
}

/* 2026-03-30 Homepage simplification */
.hero-shell--static {
  min-height: auto;
  padding: 74px 6vw 32px;
}

.hero-layout--simple {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 28px;
  align-items: start;
}

.hero-copy-column--simple {
  display: grid;
  align-content: start;
}

.hero-shell--static h1 {
  max-width: 700px;
  font-size: clamp(56px, 7vw, 90px);
  margin-bottom: 16px;
}

.hero-shell--static .hero-copy {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: 18px;
}

.hero-shell--static .hero-actions {
  margin-bottom: 22px;
}

.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-hero-stat,
.hero-showcase-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(24, 39, 31, 0.1);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(244, 236, 225, 0.96));
  box-shadow: var(--shadow-deep);
}

.home-hero-stat span,
.hero-showcase-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero-stat strong,
.hero-showcase-card strong {
  display: block;
  color: var(--ink);
  font: 800 26px/1.06 var(--font-industrial);
  text-transform: uppercase;
}

.home-hero-stat strong {
  font-size: 24px;
}

.hero-showcase {
  display: grid;
  gap: 16px;
}

.hero-showcase-main {
  margin: 0;
  overflow: hidden;
  min-height: 430px;
  border-radius: 28px;
  border: 1px solid rgba(24, 39, 31, 0.1);
  background: #d8cfbf;
  box-shadow: var(--shadow-deep);
}

.hero-showcase-main img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-showcase-card {
  appearance: none;
  text-align: left;
  color: inherit;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  min-height: 188px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-showcase-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.hero-showcase-card:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 39, 31, 0.16);
  box-shadow: 0 22px 42px rgba(17, 20, 16, 0.12);
}

.home-simple-section,
.proof-band-section--simple,
.proof-lab--simple,
.rfq-dock--simple {
  padding-inline: 6vw;
}

.section-head--compact {
  padding: 12px 0 22px;
}

.section-head--compact h2 {
  max-width: 760px;
}

.section-head--compact .section-copy {
  max-width: 740px;
}

.home-shortcuts {
  padding: 0 0 24px;
}

.home-shortcut-card .banner-copy {
  padding: 22px;
}

.home-shortcut-card .edge-button {
  margin-top: 18px;
}

.proof-band-section--simple {
  padding-bottom: 28px;
}

.value-grid--simple {
  padding: 0 0 36px;
}

.home-proof-simple-card h3 {
  font-size: 28px;
}

.proof-lab--simple {
  padding-bottom: 32px;
}

.proof-lab-layout--simple {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.proof-lab-layout--simple .proof-lab-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-lab-layout--simple .proof-lab-intro {
  margin-top: 12px;
}

.rfq-dock--simple {
  padding-bottom: 44px;
}

.rfq-dock--simple .rfq-dock-shell {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

@media (max-width: 1180px) {
  .hero-layout--simple,
  .proof-lab-layout--simple,
  .rfq-dock--simple .rfq-dock-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .hero-shell--static {
    padding-top: 42px;
  }

  .home-hero-stats,
  .hero-showcase-grid,
  .banner-strip.home-shortcuts,
  .value-grid--simple {
    grid-template-columns: 1fr;
  }

  .hero-showcase-main,
  .hero-showcase-main img {
    min-height: 300px;
  }
}
