:root {
  --bg: #0d1117;
  --panel: #1f2937;
  --ink: #ffffff;
  --muted: #94a3b8;
  --line: #2d3748;
  --glow: #00ff9d;
  --hot: #ff4d4d;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  background: rgba(13, 17, 23, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 255, 157, 0.22);
}

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

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 157, 0.3);
}

.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-display);
  color: var(--glow);
  letter-spacing: 0.14em;
}

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

.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: transparent;
  border: 1px solid rgba(0, 255, 157, 0.22);
  color: var(--glow);
  cursor: pointer;
}

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

.nav-link {
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink);
  font: 600 13px var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 12px;
}

.nav-link:hover,
.nav-link.is-active {
  border-color: var(--glow);
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
}

#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(0, 255, 157, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(13, 17, 23, 0.84), rgba(13, 17, 23, 0.58));
}

.hero-inner {
  position: relative;
  max-width: 780px;
}

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

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

h1 {
  margin: 14px 0 18px;
  font-size: clamp(46px, 8vw, 80px);
  line-height: 0.92;
  color: #fff;
  text-shadow:
    0 0 0 transparent,
    0 0 6px rgba(0, 255, 157, 0.18),
    1px 1px 0 rgba(0, 255, 157, 0.8),
    -1px -1px 0 rgba(0, 255, 157, 0.5);
}

.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(0, 255, 157, 0.26);
  background: rgba(0, 255, 157, 0.06);
  color: #d7ffe9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.edge-button {
  appearance: none;
  border: 2px solid var(--glow);
  border-radius: 0;
  background: transparent;
  color: var(--glow);
  font: 700 15px var(--font-body);
  text-transform: uppercase;
  padding: 15px 24px;
  cursor: pointer;
  transition: 180ms ease;
}

.edge-button:hover {
  color: #fff;
  background: rgba(0, 255, 157, 0.08);
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.8);
}

.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;
}

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

.install-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 24px;
  background: rgba(31, 41, 55, 0.88);
  border: 1px solid rgba(0, 255, 157, 0.15);
  padding: 20px;
  align-items: center;
}

.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;
}

.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);
}

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

.banner-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(0, 255, 157, 0.15);
}

.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(--glow);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.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: rgba(31, 41, 55, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.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);
}

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

.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: rgba(31, 41, 55, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.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(--glow);
}

.inspector-cell span {
  display: block;
  margin-bottom: 6px;
  color: var(--glow);
  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(0, 255, 157, 0.18);
  stroke: var(--glow);
}

.hotspot {
  fill: var(--glow);
  filter: drop-shadow(0 0 8px rgba(0, 255, 157, 0.9));
}

.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(--glow);
  color: var(--muted);
  cursor: pointer;
  font: 600 14px var(--font-body);
}

.region-model-button:hover,
.region-model-button.is-active {
  color: #fff;
  border-color: rgba(0, 255, 157, 0.2);
  box-shadow: 0 0 14px rgba(0, 255, 157, 0.2);
}

.mobile-models {
  display: none;
}

#market-select {
  width: 100%;
  background: #0b1017;
  border: 1px solid rgba(0, 255, 157, 0.25);
  color: var(--ink);
  padding: 12px;
}

.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(0, 255, 157, 0.34);
  box-shadow: 0 0 18px rgba(0, 255, 157, 0.14);
}

.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: var(--glow);
  border-color: var(--glow);
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
}

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

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

.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: #0b1017;
  border: 1px solid rgba(0, 255, 157, 0.18);
  color: #fff;
  padding: 13px 14px;
  font: 500 14px var(--font-body);
}

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

.quote-total strong {
  color: var(--glow);
  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(--glow);
}

.build-spec-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--glow);
  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(0, 255, 157, 0.16);
  background: rgba(0, 255, 157, 0.04);
}

.contact-direct span {
  color: var(--glow);
  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(--glow);
}

.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;
}

.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(--glow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-focus {
  color: #d7ffe9;
  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(0, 255, 157, 0.14);
}

.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 {
  padding: 0;
  overflow: auto;
  margin: 0 6vw 48px;
}

.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(0, 255, 157, 0.05);
}

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

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

.stock-ok {
  color: var(--glow);
  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(0, 255, 157, 0.2);
  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(0, 255, 157, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(0, 255, 157, 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(--glow);
  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: #05080e;
  border: 1px solid rgba(0, 255, 157, 0.25);
  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(--glow);
  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: #0b1017;
  border: 1px solid rgba(0, 255, 157, 0.18);
  color: #fff;
  padding: 13px 14px;
  font: 500 14px var(--font-body);
}

#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(--glow);
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .banner-strip,
  .value-grid,
  .terms-grid,
  .dealer-summary-grid,
  .dealer-criteria-grid,
  .dealer-routing-grid,
  .dealer-entry-grid,
  .dual-contact-grid {
    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: 12px;
    padding: 10px 14px;
    align-items: center;
  }

  .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: 8px;
    padding-top: 8px;
  }

  .topbar.nav-open .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav-link {
    width: 100%;
    min-height: 42px;
    padding: 10px 8px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .hero-shell {
    min-height: auto;
    padding: 24px 18px 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-poster.jpg") center/cover;
  }

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

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

  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,
  .section-head,
  .pricing-table-wrap,
  .stories-grid,
  .products-layout,
  .build-layout,
  .dealer-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .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;
  }

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

  .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: 420px;
  }

  #builder-canvas {
    height: 360px;
  }

  .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;
  }
}
