/* =========================================================
   J.W. SPEAKER v2 lead-generation demo
   Brand palette from the live site: red #E30613, black, white.
   Montserrat body (their real face), IBM Plex Mono spec labels,
   Saira wide italic for display (closest match to the wordmark).
   ========================================================= */

:root {
  --carbon:    #0B0E12;
  --graphite:  #141A21;
  --graphite-2:#1B222C;
  --red:       #E30613;
  --red-bright:#FF2233;
  --white:     #F5F7FA;
  --steel:     #97A0AF;
  --steel-dim: #6A7280;
  --hairline:  #232B36;
  --light-bg:  #EEF1F5;
  --light-panel:#FFFFFF;
  --light-ink: #141920;
  --light-steel:#4A5361;
  --light-hairline:#D7DCE3;
  --red-on-light:#CC0511;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 60px);
  --radius: 12px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--carbon);
  color: var(--white);
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section-pad { padding: clamp(64px, 9vw, 120px) 0; }

/* ---------- Type ---------- */
h1,h2,h3 { font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.12rem, 2vw, 1.45rem); letter-spacing: -0.01em; }
p  { color: var(--steel); }
.lead { font-size: clamp(1.04rem, 1.55vw, 1.26rem); color: #C6CDD7; }
.display {
  font-family: 'Saira', 'Montserrat', sans-serif;
  font-style: italic; font-weight: 800;
  text-transform: uppercase; letter-spacing: .01em;
}
.mono { font-family: 'IBM Plex Mono', monospace; letter-spacing: .04em; }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .98rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--red-bright); display: inline-block; margin-bottom: 16px;
}
body.light .eyebrow { color: var(--red-on-light); }

.section-head { max-width: 780px; margin-bottom: clamp(30px, 5vw, 56px); }
.section-head p { margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 8px;
  font-weight: 700; font-size: .98rem; line-height: 1.2;
  border: 1px solid transparent;
  transition: transform .18s var(--ease), background .18s, border-color .18s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-bright); }
.btn-ghost { background: transparent; color: var(--white); border-color: #39424f; }
.btn-ghost:hover { border-color: var(--white); }
body.light .btn-ghost { color: var(--light-ink); border-color: #B8BFC9; }
body.light .btn-ghost:hover { border-color: var(--light-ink); }
.btn-text { font-weight: 700; color: var(--white); border-bottom: 2px solid var(--red); padding-bottom: 2px; }
body.light .btn-text { color: var(--light-ink); }
.arrow { color: var(--red-bright); }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,14,18,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
body.light .site-head { background: rgba(255,255,255,.9); border-bottom-color: var(--light-hairline); }
.head-bar {
  display: flex; align-items: center; gap: 28px;
  padding: 14px var(--pad); max-width: none;
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }
.brand .tagline {
  font-family: 'IBM Plex Mono', monospace; font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red-bright); white-space: nowrap;
}
body.light .brand .tagline { color: var(--red-on-light); }
.head-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.head-nav a { font-weight: 600; font-size: .95rem; color: #C6CDD7; }
body.light .head-nav a { color: var(--light-steel); }
.head-nav a:hover { color: var(--white); }
body.light .head-nav a:hover { color: var(--light-ink); }
.head-nav a.active { color: var(--white); border-bottom: 2px solid var(--red); padding-bottom: 3px; }
body.light .head-nav a.active { color: var(--light-ink); }
.head-cta { margin-left: 6px; padding: 11px 20px; }
.menu-btn { display: none; background: none; border: 0; color: inherit; margin-left: auto; }
.menu-btn svg { display: block; }

@media (max-width: 880px) {
  .head-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--carbon); border-bottom: 1px solid var(--hairline);
    padding: 10px var(--pad) 20px;
  }
  body.light .head-nav { background: var(--light-panel); border-bottom-color: var(--light-hairline); }
  .head-nav.open { display: flex; }
  .head-nav a { padding: 13px 4px; border-bottom: 1px solid var(--hairline); }
  body.light .head-nav a { border-bottom-color: var(--light-hairline); }
  .head-nav a.active { border-bottom: 1px solid var(--hairline); color: var(--red-bright); }
  .head-cta { margin: 14px 0 0; }
  .menu-btn { display: block; }
  .brand .tagline { display: none; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero video, .hero .hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(11,14,18,.96) 0%, rgba(11,14,18,.55) 45%, rgba(11,14,18,.35) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 6vw, 84px); }
.hero h1 { max-width: 880px; }
.hero .lead { max-width: 640px; margin-top: 18px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-proofline {
  margin-top: 26px; font-family: 'IBM Plex Mono', monospace;
  font-size: .85rem; letter-spacing: .06em; color: #AEB7C4;
}
.hero-proofline b { color: var(--white); font-weight: 600; }

/* ---------- Markets strip ---------- */
.markets { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--graphite); }
.markets-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 0; padding: 18px var(--pad); max-width: var(--maxw); margin: 0 auto; }
.markets-label {
  font-family: 'IBM Plex Mono', monospace; font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red-bright);
  margin-right: 22px; white-space: nowrap;
}
.markets-list { display: flex; flex-wrap: wrap; gap: 6px 0; }
.markets-list span {
  font-size: .92rem; font-weight: 600; color: #C6CDD7; white-space: nowrap;
}
.markets-list span + span::before { content: "·"; color: var(--red); margin: 0 12px; }

/* ---------- Path cards (three legs) ---------- */
.paths .section-head { max-width: 860px; }
.path-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 18px; align-items: stretch; }
.path-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--graphite); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 30px 28px; overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s;
}
.path-card:hover { transform: translateY(-3px); border-color: #3A4451; }
.path-card.primary { border-color: rgba(227,6,19,.55); background: linear-gradient(160deg, #171015 0%, var(--graphite) 55%); }
.path-card.primary:hover { border-color: var(--red); }
.path-kicker {
  font-family: 'IBM Plex Mono', monospace; font-size: .8rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 14px;
}
.path-card h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 10px; }
.path-card p { font-size: .97rem; }
.path-spec { margin: 16px 0 22px; display: grid; gap: 8px; }
.path-spec span {
  font-family: 'IBM Plex Mono', monospace; font-size: .82rem; letter-spacing: .03em;
  color: #AEB7C4; padding-left: 18px; position: relative;
}
.path-spec span::before { content: ">"; position: absolute; left: 0; color: var(--red); }
.path-card .btn { margin-top: auto; align-self: flex-start; }
.path-media { margin: -30px -28px 22px; aspect-ratio: 16/8; overflow: hidden; border-bottom: 1px solid var(--hairline); }
.path-media img, .path-media video { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1000px) { .path-grid { grid-template-columns: 1fr; } .path-card.primary { order: -1; } }

/* ---------- Cert row ---------- */
.cert-row { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 34px; margin-top: 34px; }
.cert-row img { height: 46px; width: auto; filter: grayscale(0); }
.cert-note { font-family: 'IBM Plex Mono', monospace; font-size: .8rem; color: var(--steel); letter-spacing: .05em; width: 100%; margin-top: 4px; }

/* ---------- Brands marquee ---------- */
.brands-band { background: var(--light-panel); padding: 34px 0 30px; }
.brands-band .band-label {
  text-align: center; font-family: 'IBM Plex Mono', monospace; font-size: .8rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: #7A8290; margin-bottom: 18px;
}
.marquee { overflow: hidden; position: relative; }
.marquee-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: marquee 36s linear infinite; }
.marquee-track img { height: 34px; width: auto; opacity: .85; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* ---------- Stats / USA band ---------- */
.usa-band { background: var(--graphite); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.usa-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.usa-grid figure { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.stat {
  background: var(--carbon); border: 1px solid var(--hairline); border-radius: 10px;
  padding: 18px 16px;
}
.stat b { display: block; font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; }
.stat span { font-family: 'IBM Plex Mono', monospace; font-size: .78rem; letter-spacing: .05em; color: var(--steel); }
@media (max-width: 900px) { .usa-grid { grid-template-columns: 1fr; } }

/* ---------- Lead band / forms ---------- */
.lead-band { position: relative; overflow: hidden; }
.lead-band::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.lead-copy .promise {
  display: flex; gap: 14px; align-items: flex-start; margin-top: 26px;
  background: var(--graphite); border: 1px solid var(--hairline); border-radius: 10px; padding: 18px 20px;
}
.promise-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red-bright); margin-top: 7px; flex-shrink: 0; animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,34,51,.5); } 55% { box-shadow: 0 0 0 9px rgba(255,34,51,0); } }
.promise p { font-size: .95rem; color: #C6CDD7; }
.promise b { color: var(--white); }
.alt-contact { margin-top: 14px; font-size: .84rem; color: var(--steel); }
.alt-contact a { color: var(--red-bright); font-weight: 600; text-decoration: underline; }
body.light .alt-contact { color: var(--light-steel); }
body.light .alt-contact a { color: var(--red-on-light); }
body.light .semi-band .alt-contact { color: var(--steel); }
body.light .semi-band .alt-contact a { color: var(--red-bright); }

form.lead-form { display: grid; gap: 14px; background: var(--graphite); border: 1px solid var(--hairline); border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); }
body.light form.lead-form { background: var(--light-panel); border-color: var(--light-hairline); }
.field label { display: block; font-family: 'IBM Plex Mono', monospace; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); margin-bottom: 7px; }
body.light .field label { color: var(--light-steel); }
.field input, .field textarea, .field select {
  width: 100%; background: var(--carbon); color: var(--white);
  border: 1px solid #2A3340; border-radius: 8px; padding: 13px 14px;
  font: inherit; font-size: .98rem;
}
body.light .field input, body.light .field textarea, body.light .field select { background: #F4F6F9; color: var(--light-ink); border-color: #C9D0DA; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--red); outline-offset: 1px; border-color: var(--red); }
.field textarea { min-height: 108px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.optional-note { font-family: 'IBM Plex Mono', monospace; font-size: .74rem; color: var(--steel-dim); letter-spacing: .05em; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--steel); }
.consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--red); flex-shrink: 0; }
.consent a { text-decoration: underline; }
.form-success { display: none; text-align: center; padding: 34px 10px; }
.form-success h3 { margin-bottom: 10px; }
.form-success .mono { color: var(--red-bright); font-size: .85rem; }
form.lead-form.sent .form-fields { display: none; }
form.lead-form.sent .form-success { display: block; }
@media (max-width: 900px) { .lead-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-foot { border-top: 1px solid var(--hairline); background: var(--graphite); padding: 44px 0 34px; }
body.light .site-foot { background: var(--light-panel); border-top-color: var(--light-hairline); }
.foot-grid { display: flex; flex-wrap: wrap; gap: 26px 60px; align-items: flex-start; justify-content: space-between; }
.foot-brand img { height: 28px; margin-bottom: 12px; }
.foot-brand p { font-size: .85rem; max-width: 320px; }
.foot-links { display: flex; gap: 44px; flex-wrap: wrap; }
.foot-links div { display: grid; gap: 9px; align-content: start; }
.foot-links b { font-family: 'IBM Plex Mono', monospace; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); font-weight: 600; }
.foot-links a { font-size: .92rem; font-weight: 600; color: #C6CDD7; }
body.light .foot-links a { color: var(--light-steel); }
.foot-links a:hover { color: var(--red-bright); }
.foot-meta { width: 100%; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--hairline); font-family: 'IBM Plex Mono', monospace; font-size: .76rem; color: var(--steel-dim); display: flex; flex-wrap: wrap; gap: 8px 30px; }
body.light .foot-meta { border-top-color: var(--light-hairline); }

/* ---------- Custom page: sim band ---------- */
.sim-band { position: relative; min-height: 86vh; display: flex; align-items: flex-end; overflow: hidden; }
.sim-band img.sim-frame { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .7s var(--ease); }
.sim-band img.sim-frame.on { opacity: 1; }
.sim-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,14,18,.94) 0%, rgba(11,14,18,.25) 55%, rgba(11,14,18,.35) 100%); }
.sim-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(34px, 5vw, 64px); }
.sim-rail { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.sim-chip {
  background: rgba(20,26,33,.82); border: 1px solid #39424F; border-radius: 9px;
  padding: 12px 16px; text-align: left; color: var(--white); backdrop-filter: blur(6px);
}
.sim-chip .mono { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); margin-bottom: 3px; }
.sim-chip.on { border-color: var(--red); }
.sim-chip.on .mono { color: var(--red-bright); }
.sim-offer { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }

/* ---------- Custom page: phases ---------- */
.phase { border-top: 1px solid var(--hairline); }
.phase-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.phase-grid.flip { direction: rtl; }
.phase-grid.flip > * { direction: ltr; }
.phase-num {
  font-family: 'IBM Plex Mono', monospace; font-size: .85rem; font-weight: 600;
  letter-spacing: .16em; color: var(--red-bright); display: block; margin-bottom: 12px;
}
.phase figure { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); }
.phase ul { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.phase ul li { padding-left: 20px; position: relative; color: var(--steel); font-size: .96rem; }
.phase ul li::before { content: ">"; position: absolute; left: 0; color: var(--red); font-family: 'IBM Plex Mono', monospace; }
.phase ul li b { color: var(--white); font-weight: 700; }
@media (max-width: 900px) { .phase-grid, .phase-grid.flip { grid-template-columns: 1fr; direction: ltr; } }

.usa-seal { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
.usa-seal svg { flex-shrink: 0; }
.usa-seal p { font-size: .92rem; }

/* ---------- Catalog (light) ---------- */
body.light { background: var(--light-bg); color: var(--light-ink); }
body.light p { color: var(--light-steel); }
body.light .lead { color: #39414D; }
body.light h1, body.light h2, body.light h3 { color: var(--light-ink); }

.finder-head { padding: clamp(46px, 7vw, 80px) 0 8px; }
.step-label {
  font-family: 'IBM Plex Mono', monospace; font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red-on-light); margin: 30px 0 12px; display: block;
}
.fn-tiles { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.fn-btn {
  background: var(--light-panel); border: 1px solid var(--light-hairline); border-radius: 10px;
  padding: 14px 12px; text-align: left; position: relative; transition: border-color .15s, transform .15s;
}
.fn-btn:hover { transform: translateY(-2px); border-color: #AAB2BE; }
.fn-btn b { display: block; font-size: .94rem; font-weight: 800; color: var(--light-ink); }
.fn-btn small { font-family: 'IBM Plex Mono', monospace; font-size: .7rem; color: var(--light-steel); letter-spacing: .03em; }
.fn-btn .count {
  position: absolute; top: 10px; right: 10px;
  font-family: 'IBM Plex Mono', monospace; font-size: .72rem; font-weight: 600;
  color: var(--light-steel); border: 1px solid var(--light-hairline); border-radius: 20px; padding: 1px 8px;
}
.fn-btn.active { border-color: var(--red-on-light); }
.fn-btn.active b, .fn-btn.active .count { color: var(--red-on-light); }
.fn-btn.active .count { border-color: var(--red-on-light); }
@media (max-width: 1000px) { .fn-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .fn-tiles { grid-template-columns: repeat(2, 1fr); } }

.cert-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.cert-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light-panel); border: 1px solid var(--light-hairline); border-radius: 30px;
  padding: 9px 16px; font-family: 'IBM Plex Mono', monospace; font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  color: var(--light-ink);
}
.cert-pill input { width: 15px; height: 15px; accent-color: var(--red-on-light); }
.cert-pill.on { border-color: var(--red-on-light); color: var(--red-on-light); }

.search-row { margin: 22px 0 8px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.search-row input {
  flex: 1; min-width: 240px; background: var(--light-panel); border: 1px solid var(--light-hairline);
  border-radius: 8px; padding: 13px 16px; font: inherit; font-size: .98rem; color: var(--light-ink);
}
.search-row input:focus { outline: 2px solid var(--red-on-light); border-color: var(--red-on-light); }
.result-count { font-family: 'IBM Plex Mono', monospace; font-size: .8rem; color: var(--light-steel); }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 26px 0 10px; }
@media (max-width: 1000px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .prod-grid { grid-template-columns: 1fr; } }
.prod-card {
  background: var(--light-panel); border: 1px solid var(--light-hairline); border-radius: var(--radius);
  overflow: hidden; transition: border-color .15s, transform .15s;
}
.prod-card:hover { transform: translateY(-2px); border-color: #AAB2BE; }
.prod-card[open] { border-color: var(--red-on-light); }
.prod-card summary { list-style: none; cursor: pointer; padding: 18px; }
.prod-card summary::-webkit-details-marker { display: none; }
.prod-card .thumb { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 8px; overflow: hidden; margin-bottom: 14px; }
.prod-card .thumb img { max-height: 100%; object-fit: contain; }
.p-cat { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red-on-light); font-weight: 600; }
.prod-card h3 { font-size: 1.08rem; margin: 4px 0 10px; }
.spec-rows { display: grid; gap: 4px; }
.spec-rows span { font-size: .76rem; color: var(--light-steel); letter-spacing: .02em; }
.p-more { padding: 0 18px 18px; border-top: 1px solid var(--light-hairline); }
.p-more p { font-size: .9rem; padding-top: 14px; }
.p-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 16px; }
.p-actions .btn { padding: 11px 18px; font-size: .88rem; }
.spec-link { font-size: .78rem; color: var(--light-steel); text-decoration: underline; }
.spec-link:hover { color: var(--red-on-light); }

.finder-empty { text-align: center; padding: 50px 20px; }
.finder-empty h3 { margin-bottom: 10px; }
.finder-empty p { max-width: 560px; margin: 0 auto 22px; }
.empty-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }

/* Dealer band on catalog */
.dealer-band { background: var(--light-panel); border-top: 1px solid var(--light-hairline); }
.dealer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 5vw, 70px); align-items: center; }
@media (max-width: 860px) { .dealer-grid { grid-template-columns: 1fr; } }

/* Semi band (dark band reused on catalog + semi page) */
.semi-band { background: var(--carbon); color: var(--white); }
.semi-band h2, .semi-band h3,
body.light .semi-band h2, body.light .semi-band h3 { color: var(--white); }
.semi-band p, body.light .semi-band p { color: var(--steel); }
.semi-band .lead, body.light .semi-band .lead { color: #C6CDD7; }
body.light .semi-band .promise p { color: #C6CDD7; }
body.light .semi-band .promise b { color: var(--white); }
.semi-band .eyebrow, body.light .semi-band .eyebrow { color: var(--red-bright); }
.semi-band .field label { color: var(--steel); }
.semi-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
@media (max-width: 900px) { .semi-grid { grid-template-columns: 1fr; } }
.mod-list { list-style: none; margin: 20px 0; display: grid; gap: 10px; }
.mod-list li { padding-left: 20px; position: relative; color: #C6CDD7; font-size: .97rem; }
.mod-list li::before { content: ">"; position: absolute; left: 0; color: var(--red); font-family: 'IBM Plex Mono', monospace; }
.range-card {
  background: var(--graphite); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 26px; text-align: center;
}
.range-card .big { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; }
.range-card .mono { font-size: .8rem; color: var(--steel); }

/* How-it-works steps (semi page) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { background: var(--graphite); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 26px 24px; }
.step-card .phase-num { margin-bottom: 10px; }
.step-card p { font-size: .94rem; margin-top: 8px; }
@media (max-width: 860px) { .steps-grid { grid-template-columns: 1fr; } }

/* Compare row (semi page) */
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.compare-card { border: 1px solid var(--hairline); border-radius: var(--radius); padding: 24px; background: var(--carbon); }
.compare-card.mid { border-color: rgba(227,6,19,.6); background: linear-gradient(160deg, #171015 0%, var(--graphite) 60%); }
.compare-card b { display: block; font-size: 1.05rem; margin-bottom: 6px; }
.compare-card p { font-size: .88rem; }
.compare-card .mono { display: block; margin-top: 12px; font-size: .74rem; color: var(--steel); }
@media (max-width: 860px) { .compare { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero video { display: none; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  padding: 12px var(--pad);
  background: rgba(11,14,18,.92); backdrop-filter: blur(8px); border-top: 1px solid var(--hairline);
}
.sticky-cta .btn { width: 100%; }
@media (max-width: 720px) { .sticky-cta { display: block; } body { padding-bottom: 74px; } }
