/* ========================================================================
   SHOCKED SOLAR & ELECTRICAL — v2 EDITORIAL VOLTAGE
   Real brand palette (sampled from SSE logo): black + cream + amber #F0A800.
   No cyan. Editorial serif italic for emotional weight. Heavy restraint.
   ======================================================================== */

/* ---------- Tokens (v2 — Editorial Voltage) ---------- */
:root {
  /* Palette — sampled from his actual logo */
  --amber: #F0A800;          /* his exact amber from the SSE wordmark */
  --amber-warm: #FFB81C;     /* slightly warmer for hovers + glows */
  --amber-deep: #B27500;     /* shadow/depth */
  --cream: #F4F0E8;          /* warm cream primary text (Goldy-style) */
  --cream-muted: #B5AEA0;    /* warmer muted secondary */
  --cream-subtle: #8A8478;   /* warmer subtle tertiary */
  --bg: #0A0A08;             /* warm-tinted near-black (not pure black) */
  --surface: #131210;        /* warm-tinted surface */
  --surface-raised: #1A1916; /* card surface */
  --lines: rgba(244, 240, 232, 0.08);
  --lines-strong: rgba(244, 240, 232, 0.18);
  --lines-amber: rgba(240, 168, 0, 0.22);
  --success: #6BCF7F;
  --danger: #E08A2A;  /* Amber-tinted warning. Reads as caution without breaking the cyan-free palette. */
  --glow-amber: 0 0 40px -6px rgba(240, 168, 0, 0.55);
  --glow-amber-soft: 0 0 28px -10px rgba(240, 168, 0, 0.32);
  --shadow-card: 0 24px 50px -30px rgba(0, 0, 0, 0.8);
  --grad-text-warm: linear-gradient(92deg, #F0A800 0%, #FFB81C 50%, #F0A800 100%);

  /* Type scale — Goldy-tier headlines */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.4rem, 1.2rem + 0.8vw, 1.625rem);
  --text-3xl: clamp(1.75rem, 1.4rem + 1.4vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 1.8rem + 2vw, 3rem);
  --text-5xl: clamp(2.75rem, 2.2rem + 2.6vw, 3.75rem);
  --text-6xl: clamp(3.25rem, 2.6rem + 3.4vw, 4.75rem);
  --text-7xl: clamp(3.75rem, 2.8rem + 4.6vw, 5.75rem);
  --text-hero: clamp(2.75rem, 2.3rem + 4.4vw, 5.75rem);   /* huge editorial hero, 3-line safe */

  /* Spacing */
  --container: 1240px;
  --container-narrow: 880px;
  --container-wide: 1440px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-pad-y: clamp(96px, 12vw, 160px);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --t-fast: 180ms;
  --t-base: 280ms;
  --t-slow: 520ms;

  --z-nav: 60;
  --z-mobile-bar: 70;
  --z-lightbox: 90;
  --z-cursor: 100;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: auto; }
body { margin: 0; }
img, svg, video, canvas { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
fieldset { border: 0; margin: 0; padding: 0; }

/* ---------- Base ---------- */
html { background: var(--bg); }
body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--cream);
  background: var(--bg);
  letter-spacing: -0.005em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  hyphens: none;
  text-wrap: pretty;
}
::selection { background: var(--amber); color: var(--bg); }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Typography ---------- */
.section-h2, .hero-h1, .readout-value, .stat-value, .nav-word {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 0.98;
  text-wrap: balance;
}
.italic-serif {
  font-family: 'IBM Plex Serif', 'Times New Roman', serif;
  font-weight: 600;
  font-style: italic;
  font-feature-settings: 'kern', 'liga', 'dlig';
  letter-spacing: -0.015em;
  color: var(--amber);
}
/* Mono utility for spec/numeric callouts — "multimeter readout" register */
.mono-num {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-weight: 500;
  font-feature-settings: 'tnum' 1, 'zero' 1;
  letter-spacing: 0.005em;
}
.eyebrow {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 22px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
  flex-shrink: 0;
}
.eyebrow .dot-amber { background: var(--amber); box-shadow: 0 0 12px var(--amber); }
.eyebrow--centre { justify-content: center; }
.section-h2 {
  font-size: var(--text-6xl);
  margin: 0 0 22px;
}
.section-h2--centre { text-align: center; }
.section-lead {
  font-size: var(--text-lg);
  color: var(--cream-muted);
  max-width: 56ch;
  margin: 0;
  line-height: 1.55;
}
.section-lead--centre { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }
.section { padding-block: var(--section-pad-y); position: relative; }
.section-head { margin-bottom: 64px; }
.section-head--split { display: grid; grid-template-columns: 7fr 5fr; gap: 56px; align-items: end; margin-bottom: 64px; }
.section-head--centre { text-align: center; margin-bottom: 64px; }
@media (max-width: 800px) {
  .section-head--split { grid-template-columns: 1fr; gap: 18px; align-items: start; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--t-fast) var(--ease-out),
    color var(--t-fast) var(--ease-out),
    border-color var(--t-fast) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    transform var(--t-fast) var(--ease-out);
  white-space: nowrap;
  position: relative;
}
.btn-lg { padding: 16px 28px; font-size: 1.0625rem; }
.btn-xl { padding: 18px 32px; font-size: 1.125rem; }
.btn-primary {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
  box-shadow: var(--glow-amber-soft);
}
.btn-primary:hover {
  background: var(--amber-warm);
  border-color: var(--amber-warm);
  box-shadow: var(--glow-amber);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: transparent; color: var(--cream);
  border: 1px solid var(--lines-strong);
}
.btn-secondary:hover { border-color: var(--amber); color: var(--amber); background: rgba(240, 168, 0, 0.06); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid transparent;
  padding-left: 18px; padding-right: 18px;
}
.btn-ghost:hover { color: var(--amber); }
.btn .btn-arrow { transition: transform var(--t-fast) var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(3px); }
.magnetic { will-change: transform; }

/* ---------- Cursor spotlight ---------- */
.cursor-spot {
  position: fixed; inset: 0; z-index: var(--z-cursor);
  pointer-events: none;
  background: radial-gradient(circle 520px at var(--mx, 50vw) var(--my, 50vh),
    rgba(240, 168, 0, 0.045), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  body.cursor-ready .cursor-spot { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .cursor-spot { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(10, 10, 8, 0.4);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background-color var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.nav.scrolled { background: rgba(10, 10, 8, 0.85); border-bottom-color: var(--lines); }
.nav-inner {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--gutter); height: 76px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 14px; }
.nav-mark {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.nav-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-brand:hover .nav-mark { transform: translateY(-1px); box-shadow: var(--glow-amber-soft); }
.nav-logo { display: inline-flex; align-items: center; height: 40px; transition: transform var(--t-fast) var(--ease-out); }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-brand:hover .nav-logo { transform: translateY(-1px); }
@media (max-width: 980px) { .nav-logo, .nav-logo img { height: 34px; } }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-word {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.nav-word-sub {
  font-size: 0.6875rem;
  color: var(--cream-subtle);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}
.nav-links ul { display: flex; gap: 30px; justify-content: center; }
.nav-links a {
  font-size: 0.9375rem;
  color: var(--cream-muted);
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast) var(--ease-out);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--amber);
  transition: right var(--t-base) var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cream-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--t-fast) var(--ease-out);
}
.nav-phone:hover { color: var(--amber); }
.nav-phone svg { color: var(--amber); }
@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .nav-word-sub { display: none; }
}

/* Mobile call bar — bottom thumb zone (easier reach + matches platform convention) */
.mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-mobile-bar);
  min-height: 56px;
  align-items: center; justify-content: center; gap: 10px;
  background: rgba(10, 10, 8, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--amber);
  box-shadow: 0 -8px 32px -12px rgba(0, 0, 0, 0.7);
  color: var(--amber);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  padding-top: 8px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 280ms var(--ease-out);
}
@media (max-width: 900px) {
  .mobile-call-bar { display: flex; }
  .mobile-call-bar.visible { transform: translateY(0); }
}

/* ============================================================
   HERO — editorial, photo-led
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  padding-top: 96px;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.hero-plate {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: contrast(1.05) saturate(1.1) brightness(0.85);
  will-change: transform, opacity;
}
/* Full-bleed autoplay install footage; sits over the static plate (its fallback). */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: contrast(1.04) saturate(1.06) brightness(0.74);
}
/* Honour reduced-motion: drop the video, fall back to the static plate underneath. */
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 110% 90% at 50% 60%, transparent 25%, rgba(10,10,8,0.65) 70%, rgba(10,10,8,0.95) 100%),
    linear-gradient(180deg, rgba(10,10,8,0.7) 0%, rgba(10,10,8,0.2) 20%, rgba(10,10,8,0.2) 55%, rgba(10,10,8,0.92) 95%);
}
.hero-sun {
  position: absolute;
  top: 8%; right: 6%;
  width: 520px; height: 520px;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 184, 28, 0.25) 0%, rgba(240, 168, 0, 0.10) 30%, transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
  mix-blend-mode: screen;
}
@media (max-width: 900px) { .hero-sun { width: 320px; height: 320px; top: 5%; right: -10%; } }

.hero-inner {
  position: relative; z-index: 3;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  max-width: var(--container-wide); width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  padding-block: clamp(40px, 8vh, 80px);
}
.hero-eyebrow {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
  padding: 0;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 14px var(--amber);
}
.hero-h1 {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 36px;
  display: flex; flex-direction: column;
  gap: 0;
  color: var(--cream);
}
.hero-line {
  display: block;
  font-size: var(--text-hero);
  line-height: 1.0;
  padding: 0;
  white-space: nowrap;
  will-change: transform, opacity;
}
@media (max-width: 520px) {
  .hero-line { white-space: normal; }
}
.hero-line--italic {
  font-family: 'IBM Plex Serif', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: -0.02em;
  padding-left: 0.5ch;
  font-feature-settings: 'kern', 'liga', 'dlig';
  text-shadow: 0 0 60px rgba(240, 168, 0, 0.25);
}
.hero-subhead {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.25rem);
  line-height: 1.5;
  color: var(--cream-muted);
  max-width: 56ch;
  margin: 0 0 40px;
}
.hero-actions {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.hero-suburb-band {
  position: relative; z-index: 3;
  width: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,8,0.6) 100%);
  border-top: 1px solid var(--lines);
  padding: 22px 0;
}
.hero-suburb-inner {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center;
}
.hero-suburb-prelude {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  font-weight: 600;
}
.hero-suburb-prelude .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 10px var(--amber); }
@media (max-width: 760px) {
  .hero-suburb-inner { grid-template-columns: 1fr; gap: 14px; }
  .hero-suburb-prelude { padding: 0 4px; }
}

.suburb-form {
  display: flex; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--lines-strong);
  border-radius: 999px;
  padding: 6px;
  position: relative;
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.suburb-form:focus-within { border-color: var(--amber); box-shadow: var(--glow-amber-soft); }
.suburb-input-wrap {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
  padding: 0 18px;
  position: relative;
}
.suburb-input-wrap input {
  flex: 1;
  background: transparent;
  border: none; outline: none;
  font-size: 16px;
  color: var(--cream);
  padding: 12px 0;
}
.suburb-input-wrap input::placeholder { color: var(--cream-subtle); }
.suburb-listbox {
  position: absolute; top: calc(100% + 14px); left: -6px; right: -6px;
  background: var(--surface-raised);
  border: 1px solid var(--lines-strong);
  border-radius: 14px;
  padding: 6px;
  max-height: 40vh; overflow-y: auto;
  z-index: 30;
  box-shadow: 0 24px 50px -16px rgba(0,0,0,0.7);
}
.suburb-listbox[hidden] { display: none; }
.suburb-listbox li {
  padding: 11px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9375rem;
  color: var(--cream-muted);
  transition: background-color 120ms var(--ease-out), color 120ms var(--ease-out);
}
.suburb-listbox li[aria-selected="true"],
.suburb-listbox li:hover { background: rgba(240, 168, 0, 0.10); color: var(--amber); }
.suburb-listbox li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--cream-subtle); flex-shrink: 0;
}
.suburb-listbox li[aria-selected="true"]::before,
.suburb-listbox li:hover::before { background: var(--amber); box-shadow: 0 0 8px var(--amber); }

.suburb-result { margin-top: 14px; display: none; }
.suburb-result.is-shown { display: block; animation: fadeUp 320ms var(--ease-out) both; }
.suburb-result-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--surface-raised);
  border: 1px solid var(--lines);
  border-radius: 14px;
  flex-wrap: wrap;
}
.suburb-result-card.success { border-color: rgba(107, 207, 127, 0.4); }
.suburb-result-card.softno { border-color: rgba(240, 168, 0, 0.4); }
.suburb-result-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
}
.success .suburb-result-icon { background: rgba(107, 207, 127, 0.15); color: var(--success); }
.softno .suburb-result-icon { background: rgba(240, 168, 0, 0.15); color: var(--amber); }
.suburb-result-text { flex: 1; min-width: 220px; font-size: 0.9375rem; color: var(--cream); }
.suburb-result .btn { padding: 10px 18px; font-size: 0.9375rem; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.hero-scroll-hint {
  position: absolute; bottom: 0; left: var(--gutter); right: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream-subtle);
  padding: 18px 0;
  pointer-events: none;
  z-index: 4;
  border-top: 1px solid var(--lines);
}
/* (removed hero-scroll-hint::after — it injected an orphan em-dash) */
.hero-scroll-line {
  display: inline-block;
  width: 60px; height: 1px;
  background: var(--amber);
  margin-right: 14px;
  animation: scroll-line 2400ms ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleX(0.4); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}
@media (prefers-reduced-motion: reduce) { .hero-scroll-line { animation: none; } }

@media (max-width: 700px) {
  .hero { padding-top: calc(96px + env(safe-area-inset-top)); }
  .hero-inner { padding-block: 40px; }
  .hero-h1 { gap: 0; max-width: none; }
  .hero-line { letter-spacing: -0.045em; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .suburb-form { flex-direction: column; padding: 8px; border-radius: 18px; }
  .suburb-input-wrap { width: 100%; padding: 4px 14px; }
  .suburb-form .btn { width: 100%; }
  .suburb-listbox { left: 0; right: 0; }
  .hero-scroll-hint { font-size: 0.625rem; }
}

/* ============================================================
   TRUST STRIP (marquee)
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--lines);
  border-bottom: 1px solid var(--lines);
  overflow: hidden;
  padding: 28px 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}
.trust-strip-track {
  display: flex; gap: 36px;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.trust-strip:hover .trust-strip-track { animation-play-state: paused; }
.trust-strip-pill {
  display: inline-flex; align-items: center; gap: 12px;
  height: 42px; padding: 0 22px;
  background: var(--surface-raised);
  border: 1px solid var(--lines-strong);
  border-radius: 999px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-strip-pill::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trust-strip-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; } }
@media (max-width: 700px) { .trust-strip-track { gap: 18px; animation-duration: 35s; } .trust-strip-pill { font-size: 0.75rem; height: 36px; padding: 0 16px; } }

/* ============================================================
   THREE PILLARS
   ============================================================ */
/* H2 renders inline (no per-sentence split); step the size down so it reads as one line on desktop. */
.three-pillars .section-h2 { font-size: var(--text-5xl); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--lines);
  border-radius: var(--radius-lg);
  padding: 38px;
  overflow: hidden;
  isolation: isolate;
  display: flex; flex-direction: column;
  min-height: 500px;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.pillar-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle 360px at var(--card-mx, 50%) var(--card-my, 50%), rgba(240, 168, 0, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
  pointer-events: none; z-index: 0;
}
.pillar-card > * { position: relative; z-index: 1; }
@media (hover: hover) {
  .pillar-card:hover { transform: translateY(-6px); border-color: var(--lines-strong); box-shadow: var(--glow-amber-soft), var(--shadow-card); }
  .pillar-card:hover::before { opacity: 1; }
}
.pillar-num {
  /* Multimeter / spec-sheet readout register — mono numerics */
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--amber);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
  font-feature-settings: 'tnum' 1, 'zero' 1;
  text-transform: uppercase;
}
.pillar-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 1px solid var(--lines-amber);
  border-radius: 14px;
  color: var(--amber);
  background: rgba(240, 168, 0, 0.06);
  margin-bottom: 24px;
}
.pillar-title {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 0 16px;
  color: var(--cream);
}
.pillar-body {
  color: var(--cream-muted);
  margin: 0 0 26px;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.pillar-bullets {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px dashed var(--lines);
}
.pillar-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem;
  color: var(--cream);
}
.pillar-bullets li::before {
  content: '';
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F0A800' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ============================================================
   SAVINGS CALCULATOR
   ============================================================ */
.savings-calc { background: var(--surface); }
.savings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 960px) { .savings-grid { grid-template-columns: 1fr; gap: 48px; } }
.control-block { margin-top: 40px; }
.control-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.control-label {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.control-value {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--amber);
  letter-spacing: -0.01em;
}
.range {
  width: 100%; height: 6px;
  -webkit-appearance: none; appearance: none;
  background: linear-gradient(to right, var(--amber) var(--fillPct, 30%), var(--lines-strong) var(--fillPct, 30%));
  border-radius: 999px;
  outline: none;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  background: var(--amber);
  border: 3px solid var(--bg);
  border-radius: 50%;
  cursor: grab;
  box-shadow: var(--glow-amber);
  transition: transform var(--t-fast) var(--ease-out);
}
.range::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.1); }
.range::-moz-range-thumb {
  width: 28px; height: 28px;
  background: var(--amber);
  border: 3px solid var(--bg);
  border-radius: 50%;
  box-shadow: var(--glow-amber);
}
.range-ticks { display: flex; justify-content: space-between; margin-top: 12px; font-size: 0.75rem; color: var(--cream-subtle); font-family: 'IBM Plex Sans', system-ui, sans-serif; }
.seg {
  display: inline-flex;
  background: var(--surface-raised);
  border: 1px solid var(--lines);
  border-radius: 999px;
  padding: 4px; gap: 2px;
}
.seg button {
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cream-muted);
  transition: background-color var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.seg button[aria-checked="true"] {
  background: var(--amber);
  color: var(--bg);
  box-shadow: var(--glow-amber-soft);
}
.disclaimer { font-size: 0.8125rem; color: var(--cream-subtle); margin: 30px 0 0; line-height: 1.55; max-width: 44ch; }
.savings-right {
  background: var(--surface-raised);
  border: 1px solid var(--lines);
  border-radius: var(--radius-xl);
  padding: 44px 38px;
  display: flex; flex-direction: column; gap: 28px;
  position: relative;
  overflow: hidden;
}
.savings-right::before {
  content: '';
  position: absolute; top: -30%; right: -15%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(240, 168, 0, 0.20), transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}
.readout { position: relative; }
.readout-label {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin: 0 0 8px;
}
.readout-value {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  font-size: var(--text-4xl);
  margin: 0;
  color: var(--cream);
}
.readout-value--big { font-size: var(--text-7xl); }
.readout-value.amber { color: var(--amber); }
.readout-value.cream { color: var(--cream); }
.readout-hint { font-size: 0.875rem; color: var(--cream-subtle); margin: 8px 0 0; }
.readout-cta { margin-top: 10px; align-self: flex-start; }

/* ============================================================
   RECENT WORK
   ============================================================ */
.recent-work { background: var(--bg); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.work-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--lines);
  background: var(--surface);
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.work-tile.is-collapsed { display: none; }
@media (max-width: 1024px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
.work-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease-out); }
.work-tile:hover img { transform: scale(1.06); }
.work-tile:hover { border-color: var(--lines-amber); }
.work-tile--video .work-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-video-badge {
  position: absolute; right: 10px; bottom: 10px;
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 999px; color: var(--cream);
  background: rgba(10, 10, 8, 0.5); backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none; transition: opacity var(--t-base) var(--ease-out);
}
.work-tile--video.is-playing .work-video-badge { opacity: 0; }
.work-more-wrap { text-align: center; margin-top: 28px; }
.work-more[hidden] { display: none; }

/* ============================================================
   BRANDS & KIT
   ============================================================ */
.brands { background: var(--bg); border-top: 1px solid var(--lines); }
.brands-footnote { font-size: 0.8125rem; color: var(--cream-subtle); margin: 26px 0 0; max-width: 64ch; line-height: 1.55; }

/* (1) Logo ribbon — masked monochrome marks, seamless marquee */
.brand-banner { overflow: hidden; margin: 6px 0 40px; border-block: 1px solid var(--lines); padding: 20px 0; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.brand-banner-track { display: flex; align-items: center; gap: 52px; width: max-content; animation: marquee 52s linear infinite; }
.brand-banner:hover .brand-banner-track { animation-play-state: paused; }
.brand-banner-item { display: flex; align-items: center; flex-shrink: 0; }
.brand-banner-mark { display: block; height: 22px; width: 120px; background: var(--cream); opacity: 0.5; -webkit-mask: var(--logo) center/contain no-repeat; mask: var(--logo) center/contain no-repeat; transition: background-color var(--t-fast) var(--ease-out), opacity var(--t-fast) var(--ease-out); }
.brand-banner-item:hover .brand-banner-mark { background: var(--amber); opacity: 1; }
.brand-banner-item--text { font-family: 'IBM Plex Sans', system-ui, sans-serif; font-weight: 800; font-size: 1.0625rem; letter-spacing: -0.01em; color: var(--cream-muted); opacity: 0.55; white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { .brand-banner-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; } }
@media (max-width: 700px) { .brand-banner-track { gap: 36px; animation-duration: 38s; } .brand-banner-mark { height: 20px; width: 104px; } }

/* (2) Segmented control — pill track with a sliding amber indicator */
.brand-tabs { position: relative; display: inline-flex; gap: 2px; padding: 4px; margin: 0 0 28px; max-width: 100%; background: var(--surface-raised); border: 1px solid var(--lines); border-radius: 999px; }
.brand-tab { position: relative; z-index: 1; flex-shrink: 0; padding: 9px 18px; border: 0; background: transparent; border-radius: 999px; font-family: 'IBM Plex Sans', system-ui, sans-serif; font-weight: 600; font-size: 0.9375rem; letter-spacing: -0.01em; color: var(--cream-muted); white-space: nowrap; cursor: pointer; transition: color var(--t-fast) var(--ease-out); }
.brand-tab:hover { color: var(--cream); }
.brand-tab.is-active { color: var(--bg); }
.brand-tab-indicator { position: absolute; z-index: 0; top: 4px; bottom: 4px; left: 0; width: var(--ind-w, 0); transform: translateX(var(--ind-x, 0)); background: var(--amber); border-radius: 999px; box-shadow: var(--glow-amber-soft); pointer-events: none; transition: transform var(--t-base) var(--ease-out), width var(--t-base) var(--ease-out); }
@media (prefers-reduced-motion: reduce) { .brand-tab-indicator { transition: none; } }
@media (max-width: 720px) { .brand-tabs { display: flex; overflow-x: auto; scrollbar-width: none; scroll-padding-inline: var(--gutter); padding-inline: var(--gutter); margin-inline: calc(-1 * var(--gutter)); -webkit-mask-image: linear-gradient(to right, #000 88%, transparent); mask-image: linear-gradient(to right, #000 88%, transparent); } .brand-tabs::-webkit-scrollbar { display: none; } }

/* (3) Hairline-lattice wall — every mark normalised to one optical band */
.brand-panel[hidden] { display: none; }
.brand-panel.is-active { animation: fadeUp 360ms var(--ease-out) both; }
@media (prefers-reduced-motion: reduce) { .brand-panel.is-active { animation: none; } }
.brand-wall { display: grid; grid-template-columns: repeat(var(--cols, 4), minmax(170px, 240px)); gap: 1px; width: fit-content; max-width: 100%; margin-inline: auto; background: var(--lines); border: 1px solid var(--lines); border-radius: var(--radius-lg); overflow: hidden; }
.brand-cell { display: grid; place-items: center; min-height: 96px; padding: clamp(20px, 3vw, 34px); background: var(--surface); transition: background-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out); }
@media (hover: hover) { .brand-cell:hover { background: var(--surface-raised); box-shadow: inset 0 0 0 1px var(--lines-amber), var(--glow-amber-soft); } }
.brand-mark { display: block; height: var(--logo-h, 28px); width: 140px; max-width: 78%; background: var(--cream); opacity: 0.7; -webkit-mask: var(--logo) center/contain no-repeat; mask: var(--logo) center/contain no-repeat; transition: background-color var(--t-fast) var(--ease-out), opacity var(--t-fast) var(--ease-out), transform var(--t-base) var(--ease-out); }
@media (hover: hover) { .brand-cell:hover .brand-mark { background: var(--amber); opacity: 1; transform: translateY(-2px); } }
.brand-cell-word { font-family: 'IBM Plex Sans', system-ui, sans-serif; font-weight: 800; font-size: 1.0625rem; line-height: 28px; letter-spacing: -0.02em; color: var(--cream); opacity: 0.72; transition: color var(--t-fast) var(--ease-out), opacity var(--t-fast) var(--ease-out); }
@media (hover: hover) { .brand-cell:hover .brand-cell-word { color: var(--amber); opacity: 1; } }
@media (max-width: 680px) { .brand-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); width: auto; } }
@media (max-width: 480px) { .brand-cell { min-height: 84px; padding: 18px; } .brand-mark { height: 20px; } .brand-cell-word { font-size: 1rem; line-height: 20px; } }

/* (4) Verified credential chips — facts + real serials, not an official seal */
.brand-creds { display: flex; flex-wrap: wrap; gap: 14px; margin: 36px 0 0; padding: 0; list-style: none; }
.brand-cred { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--surface-raised); border: 1px solid var(--lines-strong); border-radius: var(--radius); }
.brand-cred-icon { flex-shrink: 0; display: grid; place-items: center; width: 32px; height: 32px; border-radius: var(--radius-sm); background: rgba(240, 168, 0, 0.12); border: 1px solid var(--lines-amber); color: var(--amber); }
.brand-cred-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.brand-cred-label { font-weight: 700; font-size: 0.9375rem; color: var(--cream); letter-spacing: -0.01em; }
.brand-cred-meta { font-size: 0.75rem; color: var(--cream-subtle); }
.brand-cred-id { margin-left: auto; padding-left: 14px; font-family: 'IBM Plex Mono', ui-monospace, monospace; font-feature-settings: 'tnum' 1, 'zero' 1; font-size: 0.8125rem; letter-spacing: 0.02em; color: var(--amber); }
@media (max-width: 560px) { .brand-creds { flex-direction: column; align-items: stretch; } .brand-cred-id { margin-left: 0; padding-left: 0; } }

/* ============================================================
   SERVICE AREA MAP
   ============================================================ */
.service-area { background: var(--bg); }
.area-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: start; }
@media (max-width: 960px) { .area-grid { grid-template-columns: 1fr; gap: 40px; } }
.area-clusters { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 24px; }
.area-clusters li {
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--lines);
  border-radius: 12px;
}
.area-cluster-name {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--amber);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.area-cluster-items { font-size: 0.875rem; color: var(--cream-muted); margin: 0; line-height: 1.55; }
.area-softno {
  font-size: 0.9375rem; color: var(--cream-subtle); margin: 0;
  padding: 16px 22px; border: 1px dashed var(--lines-strong); border-radius: 12px;
}
.area-map-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--lines-strong); background: #0c121a; }
.area-map { width: 100%; height: 560px; }
@media (max-width: 700px) { .area-map { height: 380px; } }
.area-map-hint {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(10, 10, 8, 0.9);
  border: 1px solid var(--lines-strong);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.75rem; color: var(--cream-muted);
  pointer-events: none; z-index: 500;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}
.area-map-wrap.show-hint .area-map-hint { opacity: 1; }
.leaflet-container { background: #0e1116 !important; outline: none !important; font-family: 'IBM Plex Sans', system-ui, sans-serif; }
/* Tint the CARTO Voyager tiles toward warm-dark so they sit in the brand palette */
.shocked-tiles {
  filter: invert(0.92) hue-rotate(180deg) brightness(0.92) contrast(0.95) sepia(0.18) saturate(0.85);
}
/* Real map pins (drop-pin shape) */
.shocked-pin {
  position: relative;
  width: 100%; height: 100%;
  display: grid; place-items: center;
  pointer-events: auto;
  transform-origin: bottom center;
  animation: pin-drop 420ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@media (prefers-reduced-motion: reduce) { .shocked-pin { animation: none; } }
@keyframes pin-drop {
  0% { transform: translateY(-22px) scale(0.85); opacity: 0; }
  60% { transform: translateY(2px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.shocked-pin--base {
  background: var(--amber);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5), 0 0 20px rgba(240, 168, 0, 0.55);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 2px solid #1A1916;
}
.shocked-pin--base svg { transform: rotate(45deg); }
.shocked-pin--base:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.55), 0 0 28px rgba(240, 168, 0, 0.75); }
.shocked-pin--cluster {
  width: 22px; height: 22px;
  position: relative;
}
.shocked-pin--cluster .shocked-pin-dot {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 20px; height: 20px;
  background: var(--amber);
  border-radius: 50% 50% 50% 0;
  transform-origin: center;
  transform: translateX(-50%) rotate(-45deg);
  border: 2px solid #1A1916;
  box-shadow: 0 3px 10px rgba(0,0,0,0.5), 0 0 14px rgba(240, 168, 0, 0.5);
}
.shocked-pin--cluster .shocked-pin-dot::after {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 7px; height: 7px;
  background: #1A1916;
  border-radius: 50%;
}
/* Custom tooltip styling — actual map-quality labels */
.shocked-tt {
  background: rgba(10, 10, 8, 0.94) !important;
  color: var(--cream) !important;
  border: 1px solid rgba(240, 168, 0, 0.35) !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
  font-family: 'IBM Plex Sans', system-ui, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4) !important;
  white-space: nowrap !important;
}
.shocked-tt::before { border-color: transparent rgba(240, 168, 0, 0.4) !important; }
.shocked-tt strong { color: var(--amber); font-weight: 700; }
.shocked-tt--perm {
  background: rgba(10, 10, 8, 0.85) !important;
  border-color: rgba(244, 240, 232, 0.18) !important;
  padding: 4px 9px !important;
  font-size: 11px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--cream) !important;
}
.shocked-tt--perm strong { color: var(--cream); }
/* Leaflet popup re-skin */
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background: rgba(10, 10, 8, 0.96) !important;
  color: var(--cream) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6) !important;
}
.leaflet-popup-content { font-family: 'IBM Plex Sans', sans-serif !important; font-size: 13px !important; line-height: 1.5 !important; margin: 12px 14px !important; }
.leaflet-popup-content strong { color: var(--amber); font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; }
.leaflet-popup-close-button { color: var(--cream-subtle) !important; padding: 8px 8px 0 0 !important; }
.leaflet-control-attribution { background: rgba(10, 10, 8, 0.7) !important; color: var(--cream-subtle) !important; font-size: 10px !important; }
.leaflet-control-attribution a { color: var(--cream-muted) !important; }
.leaflet-control-zoom a {
  background: rgba(10, 10, 8, 0.88) !important;
  color: var(--cream) !important;
  border: 1px solid rgba(244, 240, 232, 0.12) !important;
}
.leaflet-control-zoom a:hover { background: var(--amber) !important; color: var(--bg) !important; border-color: var(--amber) !important; }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote { background: var(--surface); }
.quote-card {
  background: var(--surface-raised);
  border: 1px solid var(--lines);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative; overflow: hidden;
}
.quote-card::before {
  content: '';
  position: absolute; top: -40%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240, 168, 0, 0.14), transparent 65%);
  filter: blur(60px);
  pointer-events: none; z-index: 0;
}
.quote-card > * { position: relative; z-index: 1; }
@media (max-width: 600px) { .quote-card { padding: 32px 24px; } }
.quote-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field label, .field legend {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding: 0;
}
.field input, .field textarea {
  background: var(--bg);
  border: 1px solid var(--lines);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--cream);
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
  width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: var(--glow-amber-soft); }
.field input::placeholder, .field textarea::placeholder { color: var(--cream-subtle); }
.field.has-error input, .field.has-error textarea { border-color: var(--danger); }
.field-error { font-size: 0.75rem; color: var(--danger); min-height: 1em; }
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--lines-strong);
  border-radius: 999px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream-muted);
  cursor: pointer;
  transition: background-color var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.chip[aria-pressed="true"] { background: var(--amber); color: var(--bg); border-color: var(--amber); box-shadow: var(--glow-amber-soft); }
.consent { font-size: 0.75rem; color: var(--cream-subtle); line-height: 1.55; margin: 0; }
.quote-submit { align-self: flex-start; }
.quote-submit-spinner { display: none; width: 16px; height: 16px; border: 2px solid rgba(10, 10, 8, 0.3); border-top-color: var(--bg); border-radius: 50%; animation: spin 800ms linear infinite; }
.quote-submit.is-loading .quote-submit-label, .quote-submit.is-loading .btn-arrow { display: none; }
.quote-submit.is-loading .quote-submit-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.quote-success { text-align: center; padding: 36px 8px; animation: fadeUp 400ms var(--ease-out) both; }
.quote-success-tick { width: 64px; height: 64px; border-radius: 50%; background: rgba(107, 207, 127, 0.15); color: var(--success); display: grid; place-items: center; margin: 0 auto 20px; }
.quote-success h3 { font-family: 'IBM Plex Sans', system-ui, sans-serif; font-weight: 800; font-size: 2rem; margin: 0 0 12px; letter-spacing: -0.025em; color: var(--cream); }
.quote-success p { color: var(--cream-muted); margin: 0 0 24px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 4fr 8fr; gap: 72px; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
.faq-side-cta { color: var(--cream-muted); font-size: 0.9375rem; margin-top: 22px; }
.faq-side-cta a { color: var(--amber); border-bottom: 1px solid currentColor; }
.faq-list details { border-top: 1px solid var(--lines); padding: 0; overflow: hidden; }
.faq-list details:last-child { border-bottom: 1px solid var(--lines); }
.faq-list summary {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1875rem;
  letter-spacing: -0.02em;
  color: var(--cream);
  padding: 28px 28px 28px 4px;
  cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  list-style: none;
  position: relative;
  transition: color var(--t-fast) var(--ease-out);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--amber); }
.faq-list summary::after {
  content: '';
  width: 14px; height: 14px;
  margin-left: auto; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F0A800' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform var(--t-base) var(--ease-out);
}
.faq-list details[open] summary::after { transform: rotate(90deg); }
.faq-list details[open] summary { color: var(--amber); }
.faq-answer { padding: 0 28px 32px 4px; color: var(--cream-muted); line-height: 1.7; font-size: 0.9375rem; max-width: 64ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  padding: 88px 0 40px;
  border-top: 1px solid var(--lines);
}
.footer-grid { display: grid; grid-template-columns: 4fr 2fr 2fr 3fr; gap: 56px; margin-bottom: 64px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-mark {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 22px;
}
.footer-mark picture { display: inline-grid; width: 64px; height: 64px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.footer-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-mark .footer-logo { width: auto; height: auto; border-radius: 0; overflow: visible; }
.footer-mark .footer-logo img { width: auto; height: 56px; object-fit: contain; }
.footer-mark:hover { color: var(--amber); }
.footer-tag { color: var(--cream-muted); max-width: 34ch; font-size: 0.9375rem; line-height: 1.55; }
.footer-h {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin: 0 0 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col li, .footer-col a { color: var(--cream); font-size: 0.9375rem; transition: color var(--t-fast) var(--ease-out); }
.footer-col a:hover { color: var(--amber); }
.footer-contact a { color: var(--cream); }
.footer-legal { display: flex; flex-direction: column; gap: 8px; padding-top: 36px; border-top: 1px solid var(--lines); font-size: 0.8125rem; color: var(--cream-subtle); }
.footer-meta { margin: 0; }
.footer-legal p { margin: 0; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-lightbox);
  background: rgba(10, 10, 8, 0.96);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  padding: clamp(40px, 6vw, 80px);
}
.lightbox[hidden] { display: none; }
.lightbox-fig { margin: 0; max-width: 92vw; max-height: 85vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox-img { max-width: 100%; max-height: 75vh; object-fit: contain; border-radius: var(--radius-lg); border: 1px solid var(--lines-strong); }
.lightbox-cap { color: var(--cream-muted); font-size: 0.875rem; max-width: 64ch; text-align: center; margin: 0; }
.lightbox-close, .lightbox-nav {
  position: fixed;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 1px solid var(--lines-strong);
  color: var(--cream);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background-color var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.lightbox-close { top: 28px; right: 28px; }
.lightbox-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--amber); color: var(--bg); border-color: var(--amber); }
@media (max-width: 700px) {
  .lightbox-prev, .lightbox-next { top: auto; bottom: 28px; transform: none; }
  .lightbox-prev { left: 28px; }
  .lightbox-next { right: 28px; }
}

/* ============================================================
   Reveal helpers
   ============================================================ */
[data-reveal] { will-change: opacity, transform; }
.no-js [data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-h1 .hero-line { transform: none !important; opacity: 1 !important; }
}

/* H2 sentence-per-line reveal (replaces word-stagger that produced orphan wraps) */
.sent { display: inline; }
.sent--block { display: block; overflow: hidden; padding: 0.04em 0; }
.sent .inner { display: inline-block; will-change: transform, opacity; }
.sent--block .inner { display: block; }
@media (prefers-reduced-motion: reduce) {
  .sent .inner { transform: none !important; opacity: 1 !important; }
}

/* Divider */
.divider { display: block; width: 100%; height: 60px; color: var(--amber); opacity: 0.4; margin-top: 100px; filter: drop-shadow(0 0 8px currentColor); }
.divider-volt path { stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   PHASE 2 — product photos, service photos, process, offers,
   callback, upgrade, slim call band
   ============================================================ */

/* Service photos on the three pillar cards */
.pillar-photo-wrap { position: relative; margin: -38px -38px 26px; height: 200px; overflow: hidden; }
.pillar-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 700ms var(--ease-out); }
.pillar-card:hover .pillar-photo { transform: scale(1.05); }
.pillar-photo-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,18,16,0) 42%, rgba(19,18,16,0.92) 100%); }
.pillar-photo-wrap .pillar-num {
  position: absolute; left: 16px; bottom: 14px; margin: 0; z-index: 2;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(10,10,8,0.72); border: 1px solid var(--lines-amber);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
@media (max-width: 980px) { .pillar-photo-wrap { height: 220px; } }

/* Callback mini-form */
.callback { background: var(--surface); }
.callback-card {
  background: var(--surface-raised); border: 1px solid var(--lines); border-radius: var(--radius-xl);
  padding: 40px 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.callback-card .section-h2 { font-size: var(--text-4xl); margin-bottom: 14px; }
.callback-card .eyebrow { margin-bottom: 16px; }
.callback-card .section-lead { font-size: var(--text-base); }
.callback-form { display: flex; flex-direction: column; gap: 12px; }
.callback-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.callback-form input, .callback-form select {
  background: var(--bg); border: 1px solid var(--lines); border-radius: 10px;
  padding: 14px 16px; font-size: 16px; color: var(--cream); width: 100%;
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.callback-form input:focus, .callback-form select:focus { outline: none; border-color: var(--amber); box-shadow: var(--glow-amber-soft); }
.callback-form input::placeholder { color: var(--cream-subtle); }
.callback-form .btn { width: 100%; }
.cb-honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.callback-result { font-size: 0.875rem; margin: 4px 0 0; line-height: 1.5; }
.callback-result.ok { color: var(--success); }
.callback-result.err { color: var(--cream); }
.callback-result a { color: var(--amber); border-bottom: 1px solid currentColor; }
@media (max-width: 860px) { .callback-card { grid-template-columns: 1fr; gap: 26px; padding: 32px 26px; } }
@media (max-width: 520px) { .callback-row { grid-template-columns: 1fr; } }

/* Upgrade your existing system */
.upgrade { background: var(--bg); }
.upgrade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .upgrade-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .upgrade-grid { grid-template-columns: 1fr; } }
.upgrade-item {
  background: var(--surface); border: 1px solid var(--lines); border-radius: var(--radius);
  padding: 26px 26px 28px 30px; position: relative;
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
.upgrade-item::before { content: ''; position: absolute; left: 0; top: 26px; bottom: 26px; width: 3px; border-radius: 2px; background: var(--amber); box-shadow: 0 0 12px var(--amber); }
@media (hover: hover) { .upgrade-item:hover { border-color: var(--lines-amber); transform: translateY(-3px); } }
.upgrade-item-title { font-family: 'IBM Plex Sans', system-ui, sans-serif; font-weight: 700; font-size: 1.0625rem; color: var(--cream); margin: 0 0 8px; letter-spacing: -0.01em; }
.upgrade-item-body { font-size: 0.875rem; color: var(--cream-muted); margin: 0; line-height: 1.55; }
.upgrade-cta { margin-top: 32px; }

/* Offers / incentives */
.incentives { background: var(--surface); }
.incentives-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .incentives-grid { grid-template-columns: 1fr; } }
.incentive-tile {
  background: var(--surface-raised); border: 1px solid var(--lines); border-radius: var(--radius-lg);
  padding: 32px 30px; position: relative; overflow: hidden; isolation: isolate;
}
.incentive-tile::before { content: ''; position: absolute; top: -30%; right: -15%; width: 220px; height: 220px; background: radial-gradient(circle, rgba(240,168,0,0.14), transparent 60%); filter: blur(34px); z-index: 0; }
.incentive-name { position: relative; z-index: 1; font-family: 'IBM Plex Sans', system-ui, sans-serif; font-weight: 800; font-size: 1.1875rem; letter-spacing: -0.02em; color: var(--amber); margin: 0 0 12px; }
.incentive-body { position: relative; z-index: 1; font-size: 0.9375rem; color: var(--cream-muted); margin: 0; line-height: 1.6; }
.incentives-warranty {
  margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
  background: linear-gradient(120deg, rgba(240,168,0,0.10), rgba(240,168,0,0.02));
  border: 1px solid var(--lines-amber); border-radius: var(--radius-lg); padding: 30px 34px;
}
.incentives-warranty-copy h3 { font-family: 'IBM Plex Sans', system-ui, sans-serif; font-weight: 800; font-size: 1.375rem; letter-spacing: -0.02em; color: var(--cream); margin: 0 0 8px; }
.incentives-warranty-copy p { font-size: 0.9375rem; color: var(--cream-muted); margin: 0; line-height: 1.6; max-width: 70ch; }
.incentives-warranty .btn { flex-shrink: 0; }
.incentives-finance { margin: 22px 0 0; font-size: 0.9375rem; color: var(--cream); font-weight: 600; }
.incentives-disclaimer { margin-top: 12px; max-width: 72ch; }
@media (max-width: 760px) { .incentives-warranty { flex-direction: column; align-items: flex-start; gap: 18px; padding: 26px 24px; } .incentives-warranty .btn { width: 100%; } }

/* Slim call band */
.call-band { background: var(--bg); border-top: 1px solid var(--lines); border-bottom: 1px solid var(--lines); padding: 40px 0; }
.call-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.call-band-line { font-family: 'IBM Plex Sans', system-ui, sans-serif; font-weight: 800; font-size: var(--text-2xl); letter-spacing: -0.02em; color: var(--cream); margin: 0; }
.call-band-sub { font-size: 0.9375rem; color: var(--cream-muted); margin: 6px 0 0; }
@media (max-width: 600px) { .call-band-inner { flex-direction: column; align-items: flex-start; } .call-band-inner .btn { width: 100%; } }

/* Our process */
.process { background: var(--bg); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  background: var(--surface); border: 1px solid var(--lines); border-radius: var(--radius-lg);
  padding: 32px 28px 30px; position: relative;
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
@media (hover: hover) { .process-step:hover { border-color: var(--lines-amber); transform: translateY(-4px); } }
.process-step-num {
  display: block; font-family: 'IBM Plex Mono', ui-monospace, monospace; font-weight: 500;
  font-size: 0.8125rem; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 18px;
  font-feature-settings: 'tnum' 1, 'zero' 1; padding-bottom: 14px; border-bottom: 1px solid var(--lines);
}
.process-step-title { font-family: 'IBM Plex Sans', system-ui, sans-serif; font-weight: 700; font-size: 1.125rem; letter-spacing: -0.015em; color: var(--cream); margin: 0 0 10px; line-height: 1.15; }
.process-step-body { font-size: 0.875rem; color: var(--cream-muted); margin: 0; line-height: 1.6; }

/* Quote SLA line */
.quote-sla { text-align: center; font-size: 0.875rem; color: var(--amber); font-weight: 600; margin: 14px 0 0; }

/* Nav Instagram link */
.nav-ig { display: inline-flex; align-items: center; color: var(--cream-muted); transition: color var(--t-fast) var(--ease-out); }
.nav-ig:hover { color: var(--amber); }
@media (max-width: 980px) { .nav-ig { display: none; } }
