/* ============================================================
   NXT LEVEL ENERGY — nxtlevel.energy
   Brand tokens + futuristic "path of energy" effects.
   Layout is Tailwind (CDN); this file owns the look:
   tokens, glows, the glowing path, glass, motion, reduced-motion.
   ============================================================ */

:root {
  /* Brand accent — electric cyan (from dashboard solar palette) */
  --cyan:        #00B4E6;
  --cyan-bright: #3fd2ff;
  --cyan-deep:   #0090ba;
  --cyan-soft:   #b3ecff;
  --cyan-faint:  #e0f7ff;

  /* Deep-space base */
  --ink:    #060a16;   /* darkest void */
  --bg:     #0a0f1f;   /* page background */
  --bg-2:   #0f172a;   /* slate-950 — surfaces */
  --bg-3:   #131c33;   /* raised surface */
  --border: rgba(148, 184, 224, 0.14);

  /* Text */
  --text:   #e9f1fb;
  --muted:  #9fb1c9;
  --faint:  #61708a;

  /* Glows */
  --glow-cyan:   0 0 24px rgba(0, 180, 230, 0.55), 0 0 64px rgba(0, 180, 230, 0.25);
  --glow-soft:   0 0 40px rgba(0, 180, 230, 0.18);
  --glow-text:   0 0 18px rgba(63, 210, 255, 0.55);

  /* Type */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------- base ----------------------------- */
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Deep-space animated aurora backdrop (fixed, behind everything) */
.aurora {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 6%,  rgba(0,180,230,0.10), transparent 60%),
    radial-gradient(55% 45% at 10% 28%, rgba(0,144,186,0.07), transparent 60%),
    radial-gradient(70% 60% at 50% 108%, rgba(0,180,230,0.06), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--bg) 22%, var(--bg) 78%, var(--ink));
}
.aurora::after {
  content: ""; position: absolute; inset: -20%;
  background: radial-gradient(40% 40% at 30% 30%, rgba(0,180,230,0.10), transparent 70%);
  animation: aurora-drift 22s var(--ease) infinite alternate;
}
@keyframes aurora-drift {
  0%   { transform: translate3d(-6%, -4%, 0) scale(1.05); }
  100% { transform: translate3d(8%, 6%, 0)   scale(1.15); }
}

/* Faint engineering grid overlay */
.grid-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.4;
  background-image:
    linear-gradient(rgba(120,160,210,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,160,210,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
}

/* hero particle canvas */
#particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

/* --------------------------- typography ------------------------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.34em; font-size: 0.72rem; font-weight: 600;
  color: var(--cyan); display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan)); }
.text-gradient {
  background: linear-gradient(120deg, #fff 10%, var(--cyan-bright) 55%, var(--cyan-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.tnum { font-variant-numeric: tabular-nums; }

/* ----------------------------- buttons -------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.6rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  cursor: pointer; border: 1px solid transparent; text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--cyan); color: #04121b; box-shadow: var(--glow-cyan); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(0,180,230,.75), 0 0 90px rgba(0,180,230,.35); }
.btn-ghost { background: rgba(255,255,255,0.03); color: var(--text); border-color: var(--border); backdrop-filter: blur(6px); }
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(0,180,230,0.6); color: #fff; box-shadow: var(--glow-soft); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* sticky quote button */
#sticky-cta {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60;
  opacity: 0; transform: translateY(20px) scale(0.96); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
#sticky-cta.show { opacity: 1; transform: none; pointer-events: auto; }

/* ------------------------------ nav ----------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,10,22,0.72); backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border); padding-top: 0.7rem; padding-bottom: 0.7rem;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.92rem; font-weight: 500;
  position: relative; transition: color .2s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--cyan); box-shadow: var(--glow-cyan); transition: width .25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

/* logo lockup */
.logo { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.logo .mark { width: 34px; height: 34px; filter: drop-shadow(0 0 8px rgba(0,180,230,.6)); }
.logo .word { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.18em; font-size: 0.95rem; color: #fff; }
.logo .word b { color: var(--cyan); font-weight: 700; }
.logo .sub { display: block; font-size: 0.55rem; letter-spacing: 0.5em; color: var(--muted); margin-top: 2px; }

/* ---------------------------- sections -------------------------- */
.section { position: relative; padding: clamp(5rem, 12vh, 9rem) clamp(1.25rem, 6vw, 3rem); }
.wrap { max-width: 1180px; margin: 0 auto; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.25rem); max-width: 60ch; }

/* scroll-reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* glass card */
.glass {
  background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  border: 1px solid var(--border); border-radius: 20px;
  backdrop-filter: blur(12px); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(0,180,230,0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s var(--ease);
}
.card-tilt:hover { transform: translateY(-8px); border-color: rgba(0,180,230,0.45); box-shadow: var(--glow-soft); }
.card-tilt:hover::before { opacity: 1; }

/* ------------------------ the path of energy -------------------- */
/* Vertical scroll-fill timeline: the light fills the conduit downward
   and ignites each stage as it passes. Smooth, responsive, great fallback. */
.path-track { position: relative; --nodew: clamp(64px, 8vw, 94px); }
.conduit { position: absolute; left: calc(var(--nodew) / 2); top: 6px; bottom: 6px; width: 3px;
  background: rgba(120,160,210,0.16); border-radius: 3px; transform: translateX(-50%); }
.conduit-fill { position: absolute; left: 0; top: 0; width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--cyan-bright), var(--cyan)); border-radius: 3px;
  box-shadow: var(--glow-cyan); }
.conduit-pulse { position: absolute; left: 50%; top: 0%; width: 14px; height: 14px; margin: -7px 0 0 -7px;
  border-radius: 50%; background: #eafaff; box-shadow: 0 0 14px 4px rgba(0,180,230,.9), 0 0 40px rgba(0,180,230,.6); opacity: 0; }
.path-step { position: relative; display: flex; gap: clamp(1rem, 3vw, 2rem); align-items: flex-start;
  padding: clamp(1.4rem, 4vh, 2.8rem) 0; }
.path-step .node { flex: 0 0 var(--nodew); position: relative; z-index: 1;
  width: var(--nodew); background: radial-gradient(circle at 50% 40%, rgba(0,180,230,0.08), var(--bg-2)); }
.path-step .p-body h3 { font-size: clamp(1.25rem, 2.4vw, 1.9rem); margin: 0.2rem 0 0.5rem; }
.path-step .p-body p { color: var(--muted); margin: 0; max-width: 46ch; }
.path-step .p-kicker { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--faint); transition: color .5s var(--ease); }
.path-step.lit .p-kicker { color: var(--cyan); }
.path-step .p-body { transition: opacity .5s var(--ease), transform .5s var(--ease); opacity: 0.45; }
.path-step.lit .p-body { opacity: 1; }

/* nodes on the path (sun/panel/battery/home/grid) */
.node {
  position: relative; display: grid; place-items: center;
  width: clamp(78px, 11vw, 120px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(0,180,230,0.10), rgba(10,15,31,0.9));
  border: 1px solid var(--border); color: var(--muted);
  transition: color .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease);
}
.node svg { width: 46%; height: 46%; }
.node.lit { color: #eafaff; border-color: var(--cyan); box-shadow: var(--glow-cyan); transform: scale(1.06); }
.node.lit::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(0,180,230,0.4); animation: ring-pulse 2.4s var(--ease) infinite;
}
@keyframes ring-pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.node-label { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.04em; color: var(--faint); margin-top: 0.85rem; transition: color .5s var(--ease); text-align: center; }
.node-step.lit .node-label { color: var(--cyan-soft); }

/* ---------------------- storm / outage demo --------------------- */
.skyline { display: flex; align-items: flex-end; justify-content: center; gap: clamp(6px, 1.4vw, 16px); }
.house {
  position: relative; width: clamp(34px, 5vw, 56px);
  border-radius: 4px 4px 2px 2px;
  background: #16213b; border: 1px solid rgba(120,160,210,0.16);
  transition: background .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
}
.house .roof { position: absolute; top: -10px; left: -4px; right: -4px; height: 14px;
  background: #1c2a47; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.house .win { position: absolute; width: 22%; height: 16%; border-radius: 1px; background: #243352; transition: background .6s var(--ease), box-shadow .6s var(--ease); }
/* outage: everything goes dark... */
.skyline.outage .house { background: #0c1322; }
.skyline.outage .house .win { background: #0c1322; box-shadow: none; }
/* ...except the protected NXT home (higher specificity than the .outage rules
   above so it KEEPS its lights when the grid goes down) */
.house.protected .win { background: var(--cyan-soft); box-shadow: 0 0 8px rgba(0,180,230,0.8); }
.house.protected {
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(0,180,230,0.55), 0 0 60px rgba(0,180,230,0.25);
  background: #112138;
}
.skyline.outage .house.protected { background: #112138; border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(0,180,230,0.7), 0 0 70px rgba(0,180,230,0.35); }
.skyline.outage .house.protected .win { background: var(--cyan-soft); box-shadow: 0 0 10px rgba(0,180,230,0.9); }
.house.protected .panel { position: absolute; top: -9px; left: 18%; width: 64%; height: 7px;
  background: linear-gradient(90deg, var(--cyan-deep), var(--cyan)); border-radius: 2px; transform: skewX(-18deg);
  box-shadow: 0 0 10px rgba(0,180,230,0.7); }
.outage-tag {
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display);
  font-size: 0.8rem; letter-spacing: 0.1em; padding: 0.35rem 0.85rem; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted); transition: all .5s var(--ease);
}
.outage-tag.live { color: #ff8da1; border-color: rgba(255,90,120,0.5); box-shadow: 0 0 18px rgba(255,90,120,0.25); }

/* ----------------------------- stats ---------------------------- */
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1; background: linear-gradient(180deg, #fff, var(--cyan)); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent; }
/* Problem stat cards: center content vertically + horizontally so every box is balanced */
.stat-grid > div { display: flex; flex-direction: column; justify-content: center; text-align: center; }
/* Why-NXT stat row: equal-height cells, content vertically centered so each stat
   lines up with its neighbors even when a number wraps (e.g. "9.32 MW+"). */
.why-stats > div { display: flex; flex-direction: column; justify-content: center; }

/* TX service-area glow */
.tx-map { filter: drop-shadow(0 0 22px rgba(0,180,230,0.45)); }
.tx-map path { fill: rgba(0,180,230,0.07); stroke: var(--cyan); stroke-width: 2; }

/* scroll cue */
.scroll-cue { width: 26px; height: 42px; border: 2px solid var(--faint); border-radius: 14px; position: relative; }
.scroll-cue::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
  background: var(--cyan); border-radius: 2px; animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* divider line */
.hairline { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* footer */
.footer a { color: var(--muted); text-decoration: none; transition: color .2s var(--ease); }
.footer a:hover { color: var(--cyan); }

/* form */
.field { width: 100%; padding: 0.85rem 1rem; border-radius: 12px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); color: var(--text); font-family: var(--font-body); font-size: 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,180,230,0.18); }
.field::placeholder { color: var(--faint); }
label.lab { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.4rem; font-weight: 500; }
.req { color: var(--cyan); }

/* accessibility: clear focus ring everywhere */
a:focus-visible, button:focus-visible, .btn:focus-visible, .field:focus-visible {
  outline: 2px solid var(--cyan-bright); outline-offset: 3px;
}

/* ============================================================
   SIGNATURE EXPERIENTIAL ELEMENTS
   (intro loader · custom cursor · kinetic type · marquee ·
    pinned horizontal scroll) — the "reminiscent of the reel" layer
   ============================================================ */

/* ---- intro loader: 0 → 100 counter + chevron draw + curtain wipe ---- */
#loader {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: var(--ink); transition: opacity .6s var(--ease);
}
#loader .l-mark { width: 92px; height: 92px; filter: drop-shadow(0 0 14px rgba(0,180,230,.7)); }
#loader .l-mark circle { stroke-dasharray: 264; stroke-dashoffset: 264; animation: draw-mark 1.1s var(--ease) forwards; }
#loader .l-mark path { stroke-dasharray: 120; stroke-dashoffset: 120; animation: draw-mark 1s var(--ease) .3s forwards; }
#loader .l-mark path:last-child { animation-delay: .48s; }
@keyframes draw-mark { to { stroke-dashoffset: 0; } }
#loader .l-count {
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.3em;
  color: var(--muted); margin-top: 1.4rem;
}
#loader .l-count b { color: var(--cyan); }
#loader .l-bar { width: min(240px, 60vw); height: 2px; background: rgba(120,160,210,0.16); margin-top: 1rem; overflow: hidden; border-radius: 2px; }
#loader .l-bar i { display: block; height: 100%; width: 0; background: var(--cyan); box-shadow: var(--glow-cyan); }
body.loading { overflow: hidden; }
/* curtain wipe out */
#loader.done { opacity: 0; pointer-events: none; }

/* ---- custom magnetic cursor (desktop, fine-pointer only) ---- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 300; pointer-events: none;
  border-radius: 50%; mix-blend-mode: screen; transform: translate(-50%, -50%); will-change: transform; }
.cursor-dot  { width: 7px; height: 7px; background: var(--cyan-bright); box-shadow: var(--glow-cyan); }
.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(0,180,230,0.55);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease); }
.cursor-ring.hot { width: 64px; height: 64px; background: rgba(0,180,230,0.10); border-color: var(--cyan); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---- kinetic typography: mask reveal (lines slide up behind a clip) ---- */
.kinetic { overflow: hidden; }
.kinetic > .line { display: block; transform: translateY(110%); }
.kinetic.in > .line { transition: transform 1s var(--ease); transform: none; }
.kinetic.in > .line:nth-child(2) { transition-delay: .09s; }
.kinetic.in > .line:nth-child(3) { transition-delay: .18s; }

/* word-by-word fade for sub-copy */
.words .w { opacity: 0; transform: translateY(14px); display: inline-block; }
.words.in .w { animation: word-in .6s var(--ease) forwards; }
@keyframes word-in { to { opacity: 1; transform: none; } }

/* ---- infinite marquee strip ---- */
.marquee { overflow: hidden; white-space: nowrap; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.1rem 0; background: linear-gradient(180deg, rgba(0,180,230,0.04), transparent); }
.marquee .track { display: inline-flex; gap: 3rem; animation: marq 28s linear infinite; will-change: transform; }
.marquee:hover .track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  letter-spacing: 0.02em; color: transparent; -webkit-text-stroke: 1px rgba(159,177,201,0.5); text-transform: uppercase; }
.marquee span.fill { color: var(--cyan); -webkit-text-stroke: 0; }
.marquee .dot { color: var(--cyan); -webkit-text-stroke: 0; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---- pinned horizontal scroll (Solutions) ---- */
#solutions-pin { height: 100vh; overflow: hidden; position: relative; }
#solutions-track { display: flex; height: 100%; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); padding: 0 8vw; width: max-content; }
.sol-card { flex: 0 0 min(78vw, 480px); height: min(70vh, 600px); padding: 0; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-start; border-radius: 24px; }
.sol-media { position: relative; flex: 0 0 40%; min-height: 168px; display: grid; place-items: center; overflow: hidden;
  border-bottom: 1px solid var(--border); }
.sol-media.has-img { background-image: var(--img, none); background-size: cover; background-position: center; }
.sol-media.has-img .sol-ico { display: none; }   /* a real photo replaces the placeholder icon */
.sol-media::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 -44px 50px -22px rgba(4,6,10,.92); }
.sol-media .sol-ico { position: relative; z-index: 1; width: 62px; height: 62px; color: var(--cyan-soft);
  opacity: .95; filter: drop-shadow(0 0 16px rgba(0,180,230,.55)); }
.sol-media-energy { background:
    radial-gradient(95% 85% at 76% 6%, rgba(120,225,255,.5), transparent 56%),
    repeating-linear-gradient(118deg, transparent 0 15px, rgba(0,180,230,.06) 15px 16px),
    linear-gradient(160deg, #0c2230, #050b13); }
.sol-media-storage { background:
    radial-gradient(70% 70% at 50% 58%, rgba(0,180,230,.45), transparent 60%),
    linear-gradient(160deg, #0a1830, #050a14); }
.sol-media-roof { background:
    radial-gradient(60% 55% at 82% 0%, rgba(0,180,230,.32), transparent 58%),
    linear-gradient(135deg, #16273a 0 38%, #0d1a29 38% 62%, #0a1422 62% 100%); }
.sol-body { flex: 1; min-height: 0; display: flex; flex-direction: column; padding: clamp(1.4rem, 3vw, 2rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.sol-card-cta { background: linear-gradient(160deg, rgba(0,180,230,.14), rgba(0,180,230,.03)); }
.sol-card-cta .sol-body { justify-content: flex-start; }
.sol-card h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.sol-index { font-family: var(--font-display); color: var(--faint); font-size: 0.85rem; letter-spacing: 0.2em; }
/* equalise the text blocks so every "Get a quote" button lines up across cards */
.sol-card h3 { min-height: 2.3em; }
.sol-body p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; min-height: 4.5em; }
.sol-body .btn { margin-top: auto; }   /* pin every card's CTA to the bottom so they all line up */

/* battery showcase — cross-fades REAL product renders: Tesla / Franklin / SolarEdge / Enphase */
.batt-cycler { display: block; }
.batt-slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .8s var(--ease);
  background-image: radial-gradient(72% 72% at 50% 42%, rgba(0,180,230,.22), transparent 68%), linear-gradient(160deg, #0c1a2b, #05080f); }
.batt-slide.on { opacity: 1; }
.batt-img { max-height: 82%; max-width: 62%; width: auto; object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.6)); animation: batt-float 6s ease-in-out infinite; }
@keyframes batt-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.batt-tag { position: absolute; left: 0; right: 0; bottom: .8rem; display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .02em; color: var(--text); font-size: .9rem; text-shadow: 0 2px 10px rgba(0,0,0,.7); }
.batt-led { width: 10px; height: 10px; border-radius: 50%; background: #39e0a0; box-shadow: 0 0 12px 2px rgba(57,224,160,.85); flex: none; }
.batt-led.blink { animation: led-blink 1.7s steps(1, end) infinite; }
.batt-led.blink.slow { animation-duration: 2.6s; }
@keyframes led-blink { 0%, 62% { opacity: 1; } 63%, 100% { opacity: .14; } }
/* on touch / no-pin, horizontal track becomes a swipe row */
@media (max-width: 760px) {
  #solutions-pin { height: auto; overflow: visible; }
  #solutions-track { width: auto; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 0 6vw 1rem; }
  .sol-card { scroll-snap-align: center; height: 70vh; }
}

/* progress bar at very top of viewport */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 80;
  background: linear-gradient(90deg, var(--cyan-deep), var(--cyan-bright)); box-shadow: var(--glow-cyan); }

/* ============================================================
   ART DIRECTION (from the owner's reel notes):
   clean image hero + engineering blueprint draw-on · neon "strings"
   warp transition · hexagonal transition line
   ============================================================ */

/* ---- hero: clean image stage + blueprint overlay ---- */
.hero-stage { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; --hero-img: none;
  background:
    radial-gradient(58% 48% at 80% 20%, rgba(120,220,255,0.22), transparent 60%),   /* sun glow */
    radial-gradient(120% 90% at 78% 12%, rgba(0,180,230,0.16), transparent 55%),
    linear-gradient(180deg, #07101f 0%, #0a1426 48%, #0a0f1f 100%); }
.hero-bg.has-img { background-image: var(--hero-img); background-size: cover; background-position: center; }
.hero-bg::after { content: ""; position: absolute; left: 0; right: 0; bottom: 24%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,180,230,0.45), transparent); }   /* horizon */
.hero-vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(110% 90% at 50% 60%, transparent 55%, rgba(6,10,22,0.55) 100%); }

/* engineering blueprint that draws itself onto the clean scene */
.hero-blueprint { position: absolute; right: 3vw; bottom: 0; width: min(46vw, 600px); z-index: 1;
  opacity: 0.92; pointer-events: none; }
.hero-blueprint svg { width: 100%; height: auto; filter: drop-shadow(0 0 10px rgba(0,180,230,0.45)); }
.bp { fill: none; stroke: var(--cyan); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  vector-effect: non-scaling-stroke; stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: bp-draw 1.8s var(--ease) forwards; animation-delay: calc(0.35s + var(--d, 0s)); }
.bp.soft { stroke: var(--cyan-soft); opacity: 0.7; }
.bp-fill { fill: rgba(0,180,230,0.10); stroke: none; opacity: 0; animation: bp-glow 0.8s var(--ease) forwards;
  animation-delay: 2.2s; }
@keyframes bp-draw { to { stroke-dashoffset: 0; } }
@keyframes bp-glow { to { opacity: 1; } }
.hero-content { position: relative; z-index: 2; }
@media (max-width: 880px) {
  .hero-blueprint { width: 86vw; right: 50%; transform: translateX(50%); opacity: 0.16; bottom: 6vh; }
}

/* ---- neon "strings" warp transition ---- */
.warp { position: relative; height: 78vh; overflow: hidden; display: grid; place-items: center;
  background: #05070e;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.warp-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.warp::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(55% 70% at 50% 50%, transparent 44%, rgba(5,8,16,0.55) 100%); }
.warp-label { position: relative; z-index: 2; text-align: center; }
.warp-label .wl-k { font-family: var(--font-display); letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cyan); font-size: 0.78rem; }
.warp-label .wl-h { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin: 0.6rem 0 0; }

/* ---- hexagonal transition line ---- */
.hexrow { display: flex; justify-content: center; padding: 0 1rem; }
.hexrow svg { width: 100%; max-width: 1100px; height: auto; overflow: visible; }
.hexrow .hx { fill: none; stroke: rgba(120,160,210,0.25); stroke-width: 1.4; vector-effect: non-scaling-stroke;
  stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 0.7s var(--ease), stroke 0.7s var(--ease); }
.hexrow.in .hx { stroke-dashoffset: 0; }
.hexrow.in .hx.glow { stroke: var(--cyan); filter: drop-shadow(0 0 6px rgba(0,180,230,0.7)); }

/* ============================================================
   REVAMP (owner feedback — "more premium, less kiddish"):
   sleek tilted black mono panel · partner-logo strip ·
   lightning warp · hex break into solid black
   ============================================================ */

/* ---- tilted monocrystalline array: two framed modules on UniRack-style rails ---- */
.panel-3d { position: absolute; right: -6vw; top: 52%; width: min(56vw, 700px); aspect-ratio: 16/10;
  transform: translateY(-50%); perspective: 1500px; z-index: 1; pointer-events: none; }
.array { position: absolute; inset: 0; transform-style: preserve-3d;
  transform: rotateX(58deg) rotateZ(-40deg) scale(1.02); }
/* racking rails under the modules — stick out past the ends, with end caps */
.rails { position: absolute; left: -7%; right: -7%; top: 20%; bottom: 18%; z-index: 0; }
.rails i { position: absolute; left: 0; right: 0; height: clamp(7px,1vw,11px); border-radius: 3px;
  background: linear-gradient(180deg,#46525f,#222a34 60%,#161c24);
  box-shadow: 0 7px 14px rgba(0,0,0,.55), inset 0 1px 0 rgba(180,205,230,.35); }
.rails i:first-child { top: 6%; } .rails i:last-child { bottom: 6%; }
.rails i::before, .rails i::after { content: ""; position: absolute; top: -2px; bottom: -2px;
  width: clamp(7px,.9vw,11px); border-radius: 3px; background: linear-gradient(180deg,#2a333d,#11161d); }
.rails i::before { left: -3px; } .rails i::after { right: -3px; }
/* the two glass modules, lifted above the rails (translateZ) for real depth */
.modules { position: absolute; inset: 0; z-index: 1; display: flex; gap: clamp(7px,1vw,12px);
  transform: translateZ(clamp(8px,1.4vw,16px)); }
.solar-panel { position: relative; flex: 1; border-radius: 7px; padding: clamp(5px,.7vw,9px); background: #0a0d13;
  box-shadow: 0 0 0 2px #11161f, 0 0 0 3px #2c3744,
              0 42px 95px rgba(0,0,0,.6), 0 0 60px rgba(0,180,230,.14); }
.solar-panel::before { content: ""; position: absolute; inset: 0; border-radius: 7px; z-index: -1;
  transform: translate(7px, 11px); background: #04060a; box-shadow: 0 0 0 1px #11161f; }
.solar-panel .glass { position: absolute; inset: clamp(5px,.7vw,9px); border-radius: 3px; overflow: hidden;
  background-image:
    linear-gradient(150deg, #1b2734 0%, #0b1018 46%, #05070b 100%),
    repeating-linear-gradient(to right,  rgba(86,112,150,.5) 0 1px, transparent 1px calc(100%/6)),
    repeating-linear-gradient(to bottom, rgba(86,112,150,.5) 0 1px, transparent 1px calc(100%/10)); }
.solar-panel .glass::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(108deg, transparent 38%, rgba(170,220,255,.30) 50%, transparent 62%);
  transform: translateX(-120%); animation: sheen 16s linear infinite; }   /* slow glare sweep across the glass */
@keyframes sheen { from { transform: translateX(-120%); } to { transform: translateX(120%); } }
.solar-panel .rim { position: absolute; inset: -1px; border-radius: 7px; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(150,210,255,.28), 0 0 0 1px rgba(0,180,230,.18); }
@media (max-width: 880px) { .panel-3d { opacity: .3; right: -20vw; width: 96vw; } }

/* ---- partner / equipment logo strip (real logos on light chips · Texas-outline dividers) ---- */
.logo-strip { overflow: hidden; padding: 2.1rem 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logo-strip .track { display: inline-flex; align-items: center; gap: clamp(1.85rem,3.6vw,3.4rem);
  white-space: nowrap; animation: marq 52s linear infinite; will-change: transform; }
.logo-strip:hover .track { animation-play-state: paused; }
/* every partner sits on a clean light chip so real brand colors read on the dark strip */
.logo-strip .lg { flex: none; display: inline-flex; align-items: center; justify-content: center;
  height: 58px; min-width: 128px; padding: 0 1.35rem; border-radius: 13px;
  background: linear-gradient(180deg, #ffffff, #e8edf4);
  box-shadow: 0 7px 20px rgba(0,0,0,.42), inset 0 0 0 1px rgba(255,255,255,.7);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.logo-strip .lg:hover { transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,180,230,.32), inset 0 0 0 1px rgba(0,180,230,.55); }
.logo-strip .lg img { max-height: 30px; max-width: 142px; width: auto; height: auto; display: block; }
.logo-strip .lg img.mono-dark { filter: brightness(0); }   /* white/light logos → black on the light chip */
.logo-strip .wm { font-family: var(--font-display); font-weight: 700; letter-spacing: .01em;
  color: #0c1a2c; font-size: 1.02rem; white-space: nowrap; }
/* stacked chip: a real logo + the consumer-facing sub-brand it powers */
.logo-strip .lg-stack { flex-direction: column; gap: 3px; padding: 0 1.45rem; }
.logo-strip .lg-stack img { max-height: 18px; }
.logo-strip .lg-sub { font-family: var(--font-display); font-size: .52rem; letter-spacing: .17em;
  text-transform: uppercase; color: #5a6b80; font-weight: 700; white-space: nowrap; }
/* Texas-outline divider between partners */
.logo-strip .tex-sep { flex: none; width: 26px; height: 26px; opacity: .7;
  filter: drop-shadow(0 0 6px rgba(0,180,230,.55)); }
.logo-strip .tex-sep img { width: 100%; height: 100%; display: block; }

/* ---- inline claim markers → consolidated bottom disclaimers ---- */
.disc-ref { font-size: .58em; vertical-align: super; line-height: 0; color: var(--cyan); text-decoration: none; font-weight: 700; margin-left: 1px; }
.disc-ref:hover { text-decoration: underline; }
.disclaimers { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.disclaimers h4 { font-family: var(--font-display); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin: 0 0 .75rem; }
.disclaimers ol { margin: 0; padding-left: 1.2rem; display: grid; gap: .5rem; max-width: 80ch; }
.disclaimers li { color: var(--faint); font-size: .76rem; line-height: 1.5; }
.disclaimers li::marker { color: var(--cyan); font-weight: 700; }

/* ---- FAQ (chat-styled accordion + filter + search) ---- */
.faq-controls { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin: 0 0 1.5rem; }
.faq-chips { display: flex; gap: .5rem; }
.faq-chip { font-family: var(--font-display); font-size: .82rem; padding: .5rem .95rem; border-radius: 999px; border: 1px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; white-space: nowrap; transition: all .25s var(--ease); }
.faq-chip:hover { color: var(--text); border-color: var(--cyan); }
.faq-chip.active { background: var(--cyan); color: #05070e; border-color: var(--cyan); font-weight: 600; }
.faq-search { flex: 1; min-width: 200px; max-width: 320px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 999px; padding: .6rem 1.1rem; color: var(--text); font-size: .9rem; font-family: var(--font-body); }
.faq-search:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,180,230,.15); }
.faq-list { display: grid; gap: .8rem; }
.faq-item { border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.02); overflow: hidden; transition: border-color .25s var(--ease), background .25s var(--ease); }
.faq-item.open { border-color: rgba(0,180,230,.4); background: rgba(0,180,230,.03); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 1rem; justify-content: space-between; padding: 1.1rem 1.3rem; background: none; border: 0; cursor: pointer; text-align: left; color: var(--text); font-family: var(--font-display); font-weight: 500; font-size: clamp(1rem, 2.2vw, 1.12rem); line-height: 1.35; transition: color .2s var(--ease); }
.faq-q:hover { color: var(--cyan); }
.faq-toggle { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--cyan); color: var(--cyan); display: grid; place-items: center; font-size: 1.15rem; line-height: 1; transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--cyan); color: #05070e; }
.faq-a { display: none; padding: 0 1.3rem 1.3rem; }
.faq-item.open .faq-a { display: block; animation: faqIn .35s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq-bubble-a { background: linear-gradient(180deg, rgba(0,180,230,.10), rgba(0,180,230,.035)); border: 1px solid rgba(0,180,230,.22); border-radius: 14px; border-top-left-radius: 4px; padding: 1rem 1.15rem; color: var(--muted); line-height: 1.6; font-size: .95rem; }
.faq-bubble-a strong, .faq-bubble-a b { color: var(--text); }
.faq-bubble-a a { color: var(--cyan); font-weight: 600; }
.faq-aimark { display: block; font-family: var(--font-display); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); margin-bottom: .5rem; }
.faq-empty { color: var(--muted); margin-top: 1.5rem; }
.faq-empty a, .faq-foot a { color: var(--cyan); font-weight: 600; }
.faq-foot { margin-top: 1.8rem; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .faq-item.open .faq-a { animation: none; } }

/* ---- legal pages (privacy / terms) ---- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3rem); margin: 0 0 .4rem; }
.legal .legal-meta { color: var(--faint); font-size: .85rem; margin-bottom: 1.5rem; }
.legal h2 { font-family: var(--font-display); font-size: 1.25rem; color: var(--text); margin: 2.2rem 0 .6rem; }
.legal h3 { font-family: var(--font-display); font-size: 1rem; color: var(--text); margin: 1.4rem 0 .4rem; }
.legal p, .legal li { color: var(--muted); line-height: 1.7; font-size: .95rem; }
.legal ul { padding-left: 1.2rem; display: grid; gap: .4rem; margin: .6rem 0; }
.legal a { color: var(--cyan); }
.legal strong { color: var(--text); }
.legal .legal-note { background: rgba(0,180,230,.06); border: 1px solid rgba(0,180,230,.2); border-radius: 12px; padding: 1rem 1.15rem; color: var(--muted); font-size: .9rem; margin: 1.5rem 0; }

/* ---- footer columns: even horizontal distribution (content-sized + equal gaps) ---- */
.footer-cols { display: grid; grid-template-columns: auto auto auto auto auto; justify-content: space-between; gap: 2.5rem 2rem; align-items: start; }
.footer-cols > div:first-child { max-width: 280px; }
@media (max-width: 960px) {
  .footer-cols { grid-template-columns: 1fr 1fr; justify-content: start; gap: 2.25rem 2.5rem; }
  .footer-cols > div:first-child { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 520px) { .footer-cols { grid-template-columns: 1fr; } }

/* ---- angular hexagonal-cutout break → solid black Solutions ---- */
.hex-break { position: relative; line-height: 0; margin-top: clamp(2rem, 6vh, 5rem); }   /* breathing room above the transition */
.hex-break svg { display: block; width: 100%; height: clamp(120px, 16vw, 200px); }       /* ~2/3 taller → more space into "What we build" */
.hex-break .hb-fill { fill: #04060a; }
.hex-break .hb-edge { fill: none; stroke: var(--cyan); stroke-width: 2; vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 6px rgba(0,180,230,.85)); opacity: .85; }
#solutions { background: #04060a; margin-top: -1px; }
#solutions .sol-card { background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); }

/* ---- "under new management" band (Why NXT) ---- */
.nm-band { display: flex; gap: 1.25rem; align-items: flex-start; padding: clamp(1.25rem,3vw,1.9rem);
  margin-bottom: 3rem; border-left: 3px solid var(--cyan); }
.nm-tag { flex: 0 0 auto; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .22em;
  font-size: .72rem; font-weight: 600; color: var(--cyan); white-space: nowrap; padding-top: .25rem; }
@media (max-width: 640px) { .nm-band { flex-direction: column; gap: .65rem; } }

/* ------------------- responsive / mobile degrade ---------------- */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .node { width: 64px; }
  #particles { opacity: 0.5; }
}

/* ---- mobile layout refinements (2026-06-09) — desktop unchanged ----
   tighter warp media, resilience reorder (visual above CTA),
   stretched street, balanced Solutions heading, swipe affordance */
.res-rfq-mobile { display: none; }
.swipe-hint { display: none; }
@keyframes swipe-nudge { 0%, 100% { transform: translateX(0); opacity: .35; } 50% { transform: translateX(7px); opacity: 1; } }

/* desktop "keep scrolling → cards move right" cue for the pinned Solutions row
   (fades out as you scroll into the section, via path.js). mobile uses .swipe-hint */
.scroll-hint { position: absolute; left: 50%; bottom: clamp(4rem, 12vh, 8rem); transform: translateX(-50%);
  z-index: 5; pointer-events: none; display: flex; align-items: center; gap: .7rem; white-space: nowrap;
  color: var(--cyan); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .26em;
  font-size: .76rem; text-shadow: 0 2px 16px rgba(0,0,0,.65); transition: opacity .3s var(--ease); }
.scroll-hint .sa { display: inline-flex; font-size: 1.2rem; letter-spacing: 0;
  animation: swipe-nudge 1.4s var(--ease) infinite; }

@media (max-width: 760px) {
  /* 1 · warp: remove the dead black band above/below the wire media */
  .warp { height: 52vh; }
  #problem { padding-bottom: 2.5rem; }
  #path { padding-top: 3rem; }

  /* 2 · resilience: street visual sits ABOVE the CTA on mobile */
  .res-rfq-desktop { display: none; }
  .res-rfq-mobile { display: inline-flex; width: 100%; justify-content: center; margin-top: 1.5rem; }

  /* 3 · street: stretch the homes across the full width, evenly spaced */
  .skyline { justify-content: space-evenly; gap: 4px; }

  /* 4 · solutions: balance the "Three ways to own your energy" heading */
  #solutions > .section { padding-top: 2.5rem; padding-bottom: 1.5rem !important; }

  /* 5 · solutions: swipe affordance for the horizontal card row */
  .swipe-hint { display: flex; align-items: center; justify-content: center; gap: .55rem;
    margin: 1.4rem 0 0; color: var(--cyan); font-family: var(--font-display);
    text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; }
  .swipe-hint .sa { display: inline-flex; font-size: 1.15rem; letter-spacing: 0;
    animation: swipe-nudge 1.4s var(--ease) infinite; }

  /* 6 · contain ALL stray horizontal scroll/drag (the only intended
     horizontal swipe is #solutions-track). clip = no scroll container,
     so vertical scroll, Lenis, and the carousel are unaffected. */
  html, body { overflow-x: clip; max-width: 100%; }

  /* 7 · Why-NXT stats: center the whole stat list horizontally on mobile */
  .why-stats > div { text-align: center; align-items: center; }

  /* 8 · desktop-only scroll cue off on mobile (mobile uses .swipe-hint) */
  .scroll-hint { display: none; }
}

/* honor reduced motion: kill all the choreography, show end-state */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .aurora::after { display: none; }
  #particles { display: none; }
  #path-spine .flow { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
  /* signature-element fallbacks: show end-state, no motion */
  #loader { display: none; }                 /* JS also force-removes it */
  .cursor-dot, .cursor-ring { display: none; }
  .kinetic > .line { transform: none !important; }
  .words .w { opacity: 1 !important; transform: none !important; }
  #solutions-pin { height: auto !important; overflow: visible !important; }
  #solutions-track { width: auto !important; flex-wrap: wrap !important; justify-content: center; }
  .sol-card { flex-basis: min(90vw, 460px) !important; height: auto !important; min-height: 320px; }
  /* art-direction fallbacks: show end-state, no motion */
  .bp { stroke-dashoffset: 0 !important; animation: none !important; }
  .bp-fill { opacity: 1 !important; animation: none !important; }
  .hexrow .hx { stroke-dashoffset: 0 !important; }
  .warp-canvas { display: none; }
  .warp { height: 36vh; }
  .solar-panel .glass::after { animation: none !important; }
  .batt-led, .batt-img { animation: none !important; }
  .logo-strip .track { animation: none !important; }
}
