/* ============================================================================
   Energy 4 All — Premium Solar Experience
   Same architecture as AXIOM Vortex X1, retuned for solar with the brand's
   copper-on-ink palette and Inter + Instrument Serif + Space Grotesk type.
   ============================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand-honest ink palette (from existing Energy 4 All site) */
  --ink-000: #04060d;
  --ink-050: #060912;
  --ink-100: #080d1c;
  --ink-200: #0d1426;
  --ink-300: #131c33;
  --ink-400: #1c2640;
  --ink-500: #2a3454;

  --line:    rgba(255,255,255,.08);
  --line-2:  rgba(255,255,255,.16);
  --line-3:  rgba(255,255,255,.28);

  --fog-100: rgba(255,255,255,.04);
  --fog-200: rgba(255,255,255,.07);
  --fog-300: rgba(255,255,255,.10);

  --text:    #F4F5FA;
  --text-2:  rgba(244,245,250,.74);
  --text-3:  rgba(244,245,250,.52);
  --text-4:  rgba(244,245,250,.32);

  /* Copper + neon — the Energy 4 All signature */
  --copper:        #ff6200;
  --copper-bright: #ff8232;
  --copper-deep:   #cc4e00;
  --copper-glow:   rgba(255,98,0,.35);
  --copper-soft:   rgba(255,98,0,.10);
  --neon:          #7CE0FF;
  --leaf:          #6EE7B7;   /* sustainability accent */
  --sun:           #FFB547;   /* sunset highlight */

  /* Signature copper gradient (replaces AXIOM Vortex grad) */
  --grad-copper:  linear-gradient(120deg, #cc4e00 0%, #ff6200 35%, #ff8232 70%, #ffb280 100%);
  --grad-sunrise: linear-gradient(120deg, #FF7A45 0%, #ff6200 35%, #FFB547 65%, #7CE0FF 100%);
  --grad-aurora:  radial-gradient(60% 50% at 50% 40%, rgba(255,98,0,.55), transparent 70%),
                  radial-gradient(40% 35% at 70% 60%, rgba(124,224,255,.30), transparent 70%),
                  radial-gradient(35% 30% at 30% 70%, rgba(255,181,71,.35), transparent 70%);

  /* Type — single family: Poppins everywhere for one consistent design language.
     --f-serif / --f-mono kept as aliases (now Poppins) so existing rules unify. */
  --f-display: "Poppins", "Inter", system-ui, sans-serif;
  --f-body:    "Poppins", "Inter", system-ui, sans-serif;
  --f-serif:   "Poppins", "Inter", system-ui, sans-serif;
  --f-mono:    "Poppins", "Inter", system-ui, sans-serif;

  /* Motion */
  --ease-out:    cubic-bezier(.22, 1, .36, 1);
  --ease-soft:   cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  /* Layout */
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(96px, 14vw, 220px);
  --max: 1480px;
}

html, body {
  background: var(--ink-000);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background: var(--ink-000);
  background-image:
    radial-gradient(900px 600px at 80% -10%, rgba(255,98,0,.10), transparent 70%),
    radial-gradient(700px 500px at 0% 10%, rgba(124,224,255,.06), transparent 65%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* ---------- GLOBAL GRID / LINES — applied across the entire website -------- */
/* Subtle solar-cell grid that mirrors the hero, layered site-wide.
   pointer-events:none so it never blocks interaction; sits below the nav
   (z-index 100), modals and other UI chrome. */
body::before {
  content: "";
  position: fixed;
  inset: -64px;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,98,0,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,98,0,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center top;
  /* Subtle "alive" grid — slow diagonal drift + a gentle breathing pulse */
  animation: gridDrift 38s linear infinite, gridPulse 7s ease-in-out infinite;
  will-change: background-position, opacity;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 64px 64px; }
}
@keyframes gridPulse {
  0%, 100% { opacity: .85; }
  50%      { opacity: 1; }
}
/* A second, larger animated layer adds depth without clutter */
body::after {
  content: "";
  position: fixed;
  inset: -120px;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(124,224,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,224,255,.035) 1px, transparent 1px);
  background-size: 192px 192px;
  background-position: center top;
  animation: gridDriftSlow 70s linear infinite;
  will-change: background-position;
}
@keyframes gridDriftSlow {
  from { background-position: 0 0; }
  to   { background-position: -192px 96px; }
}
@media (max-width: 600px) {
  body::before { background-size: 44px 44px; }
  body::after  { background-size: 140px 140px; }
}
@media (prefers-reduced-motion: reduce) {
  body::before, body::after { animation: none; }
}

html.lenis { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto; }
html.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.gpu { transform: translateZ(0); will-change: transform, opacity; backface-visibility: hidden; }

::selection { background: var(--copper); color: var(--ink-000); }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: var(--fog-300); border-radius: 4px; }
::-webkit-scrollbar-track { background: transparent; }

/* ---------- PRELOADER ----------------------------------------------------- */
#preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink-000);
  display: grid; place-items: center;
  transition: opacity .8s var(--ease-out), visibility .8s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.pre-mark {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--f-display); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  font-size: 12px; color: var(--text-2);
}
.pre-mark .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-copper); background-size: 200% 200%;
  animation: dotPulse 1.6s var(--ease-soft) infinite, gradFlow 4s linear infinite;
}
.pre-bar {
  position: fixed; left: 50%; bottom: 14%; transform: translateX(-50%);
  width: min(420px, 70vw); height: 1px; background: var(--line);
  overflow: hidden;
}
.pre-bar::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-copper); background-size: 300% 300%;
  transform: translateX(-100%);
  animation: preFill 2.4s var(--ease-out) forwards, gradFlow 3s linear infinite;
}
@keyframes dotPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.4); } }
@keyframes gradFlow { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes preFill  { to { transform: translateX(0); } }

/* ---------- NAV ----------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px var(--gutter);
  background: #000;
  border-bottom: 1px solid var(--line);
  transition: padding .4s var(--ease-out), border-color .4s var(--ease-out);
}
.nav.scrolled {
  padding: 10px var(--gutter);
  border-bottom-color: var(--line-2);
}
.nav-inner {
  /* Full-width so the logo sits at the far left of the header (item 15) */
  max-width: none;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 40px);
}
.brand {
  display: flex; align-items: center;
  height: 52px;
  flex: none;
  transition: transform .5s var(--ease-spring);
}
.brand-logo {
  width: auto; height: 100%;
  max-height: 52px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 18px rgba(255,98,0,.22));
  transition: filter .6s var(--ease-out), transform .5s var(--ease-spring);
  animation: brandPulse 5.5s var(--ease-soft) infinite;
}
.brand:hover { transform: translateY(-1px); }
.brand:hover .brand-logo {
  filter: drop-shadow(0 0 24px rgba(255,130,50,.55)) drop-shadow(0 0 8px rgba(255,98,0,.45));
  transform: scale(1.03);
}
@keyframes brandPulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(255,98,0,.20)); }
  50%      { filter: drop-shadow(0 0 26px rgba(255,98,0,.40)); }
}
.foot-logo {
  max-height: 64px;
  margin-bottom: 4px;
  animation: none;
}
.nav-links {
  display: flex; gap: 30px;
  font-size: 15px; color: #fff;
  font-weight: 500;
  margin: 0 auto;
}
.nav-links a { position: relative; padding: 4px 0; transition: color .3s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--copper); transform: scaleX(0);
  transform-origin: left; transition: transform .4s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 11px 24px; border-radius: 999px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  background: var(--copper); color: #fff;
  border: 0;
  transition: background .3s var(--ease-out), color .3s var(--ease-out), transform .3s var(--ease-spring), box-shadow .35s var(--ease-out);
}
.nav-cta:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255,98,0,.5), 0 0 22px -4px rgba(255,98,0,.35);
}
.nav-toggle { display: none; }

/* ---------- HEADER CONTACT (phone + email) — item 14 ---------------------- */
.nav-contact {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  flex: none;
  font-family: "Poppins", var(--f-display);
  font-size: 12.5px;
  letter-spacing: .02em;
}
.nav-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  white-space: nowrap;
  transition: color .25s var(--ease-out);
}
.nav-contact-item svg {
  width: 15px; height: 15px;
  stroke: var(--copper);
  flex: none;
}
.nav-contact-item:hover { color: var(--copper); }
/* Hide email label first on tighter desktop widths, keep the phone */
@media (max-width: 1180px) {
  .nav-contact { font-size: 12px; gap: 14px; }
  .nav-contact-item.nav-contact-email span { display: none; }
}

/* ---------- UTIL ---------------------------------------------------------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--copper); font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: currentColor; opacity: .8;
}
.h-display {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(44px, 8.5vw, 144px); line-height: .92;
  letter-spacing: -0.04em;
}
/* ---------- HERO ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(620px, 84svh, 820px);
  padding: 0 var(--gutter);
  background: #000;
  display: grid;
  align-items: end;
  justify-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-video,
.hero-poster {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-poster { z-index: -2; }
.hero-video {
  z-index: -1;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
  /* GPU layer + isolate paint so page scroll / canvas animations don't force
     the video to repaint each frame (the cause of the visible glitch). */
  transform: translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  contain: paint;
  /* Prevent the browser from offering a context menu / picture-in-picture
     control that briefly overlays the frame. */
  pointer-events: none;
}
.hero-video.ready { opacity: 1; }
.hero-tint {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.6) 55%, rgba(0,0,0,1) 100%),
    radial-gradient(60% 60% at 50% 50%, transparent, rgba(0,0,0,.6) 80%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,98,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,98,0,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(70% 60% at 50% 50%, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative; z-index: 2;
  text-align: left;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 clamp(48px, 7vw, 84px) 0;
  /* Empty space within the hero content lets hover pass through to the
     solar-grid lines underneath. Only interactive children stay clickable. */
  pointer-events: none;
}
.hero-inner a,
.hero-inner button,
.hero-inner .btn { pointer-events: auto; }
/* Vertical accent line — anchored to the content block, not the viewport */
.hero-accent {
  display: none;
  position: absolute;
  left: 0; top: 18%; bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--copper) 35%, var(--copper) 65%, transparent);
  z-index: 2;
  opacity: 0;
  transform: scaleY(0); transform-origin: top;
  animation: heroAccentIn 1.4s var(--ease-out) .3s forwards;
  pointer-events: none;
}
.hero-accent::before {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 6px; height: 6px;
  background: var(--copper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px var(--copper);
}
@keyframes heroAccentIn {
  0%   { opacity: 0; transform: scaleY(0); }
  100% { opacity: 1; transform: scaleY(1); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .32em;
  text-transform: uppercase; color: var(--text-2);
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
}
.hero-eyebrow .live {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--copper); box-shadow: 0 0 12px var(--copper);
  animation: dotPulse 1.6s infinite;
}
.hero-title {
  font-family: "Poppins", var(--f-display);
  font-weight: 600;
  font-size: clamp(34px, 5.6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 16ch;
}
.hero-title .word { font-family: "Poppins", var(--f-display); }
.hero-title .word.ital { font-family: var(--f-serif); font-weight: 400; }
.hero-title .row { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; transform: translateY(110%); }
.hero-title .grad {
  background: var(--grad-copper); background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradFlow 10s linear infinite;
}
.hero-title .ital { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -.02em; }

.hero-sub {
  font-size: clamp(14px, 1.15vw, 17px);
  color: var(--text-2);
  max-width: 54ch;
  margin: 0 0 28px;
  line-height: 1.65;
}

.hero-ctas {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start;
  margin-bottom: 0;
}
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  font-family: var(--f-display); font-weight: 600;
  font-size: 14px; letter-spacing: .04em;
  border-radius: 999px;
  transition: transform .4s var(--ease-spring), background .3s, color .3s, border-color .3s, box-shadow .4s;
  overflow: hidden;
}
.btn-primary {
  background: var(--copper); color: #fff;
  box-shadow: 0 12px 40px -10px var(--copper-glow);
  transition: background .35s var(--ease-out), color .35s var(--ease-out), transform .35s var(--ease-spring), box-shadow .4s var(--ease-out);
}
.btn-primary:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(255,98,0,.5), 0 14px 50px -10px rgba(255,98,0,.45), 0 0 36px -6px rgba(255,98,0,.35);
}
.btn-ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--copper); color: var(--copper); transform: translateY(-2px); }
.btn .arrow { transition: transform .4s var(--ease-spring); }
.btn:hover .arrow { transform: translateX(4px); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 18px 0 0;
}
.hero-meta .m {
  text-align: left;
  padding: 0 18px 0 0;
  border-right: 1px solid var(--line);
}
.hero-meta .m:first-child { padding-left: 0; }
.hero-meta .m:not(:first-child) { padding-left: 18px; }
.hero-meta .m:last-child { border-right: 0; padding-right: 0; }
.hero-meta .k { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.hero-meta .v { font-family: var(--f-display); font-weight: 500; font-size: clamp(18px, 1.7vw, 22px); letter-spacing: -.02em; color: var(--copper); }
.hero-meta .v span { color: var(--text-3); font-size: .55em; vertical-align: super; margin-left: 3px; }

.scroll-cue {
  position: absolute;
  right: var(--gutter); bottom: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .3em; color: var(--text-3); text-transform: uppercase;
  z-index: 3;
}
.scroll-cue .line {
  width: 1px; height: 48px; background: linear-gradient(180deg, transparent, var(--text-2));
  position: relative; overflow: hidden;
}
.scroll-cue .line::after {
  content: ""; position: absolute; top: -50%; left: 0; right: 0;
  height: 50%; background: linear-gradient(180deg, transparent, var(--copper));
  animation: scrollLine 2.4s var(--ease-soft) infinite;
}
@keyframes scrollLine { 0% { top: -50%; } 100% { top: 110%; } }

/* ---------- TICKER ------------------------------------------------------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: rgba(4,6,13,.6);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex; gap: 60px;
  animation: tickerScroll 32s linear infinite;
  width: max-content;
}
.ticker-track > span {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(20px, 2.6vw, 36px);
  letter-spacing: -.02em; color: var(--text-3);
  white-space: nowrap;
}
.ticker-track > span .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--copper);
  box-shadow: 0 0 16px var(--copper-glow);
}
.ticker-track > span .grad {
  background: var(--grad-copper); background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* ---------- SECTION SCAFFOLD --------------------------------------------- */
.section { position: relative; padding: var(--section-y) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(20px, 4vw, 80px);
  margin-bottom: clamp(56px, 8vw, 120px);
}
.section-head .left .eyebrow { margin-bottom: 14px; }
.section-head .left h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 88px);
  line-height: .96;
  letter-spacing: -.045em;
}
.section-head .right { padding-top: 22px; }
.section-head .right p { font-size: clamp(15px, 1.4vw, 18px); color: var(--text-2); max-width: 56ch; }
.section-head .right .num {
  display: inline-block;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .3em; color: var(--text-3); margin-bottom: 18px;
}

/* ---------- SCALE SHOWCASE (sticky) -------------------------------------- */
.showcase { background: linear-gradient(180deg, var(--ink-000) 0%, var(--ink-100) 50%, var(--ink-000) 100%); }
.showcase-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 80px);
  align-items: start;
}
.showcase-sticky {
  position: sticky;
  top: 100px;
  height: 80svh;
  display: grid; place-items: center;
}
.showcase-stage {
  position: relative;
  width: 100%; height: 100%;
  display: grid; place-items: center;
}
.showcase-frame {
  position: relative;
  width: min(85%, 460px);
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 80px 140px -40px rgba(0,0,0,.9), 0 0 100px -20px rgba(255,98,0,.25);
}
.showcase-frame .img-layer {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s var(--ease-out), transform 1.6s var(--ease-out);
}
.showcase-frame .img-layer.active { opacity: 1; transform: scale(1); }
.showcase-frame .img-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4,6,13,.6) 100%);
  z-index: 2;
}
.showcase-frame .scale-tag {
  position: absolute; left: 22px; bottom: 22px; right: 22px; z-index: 3;
  display: flex; justify-content: space-between; align-items: end; gap: 14px;
}
.showcase-frame .scale-tag .left {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--text-2);
}
.showcase-frame .scale-tag .val {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(28px, 4vw, 44px); letter-spacing: -.03em; line-height: 1;
  color: var(--copper-bright);
}

.showcase-narrative {
  display: flex; flex-direction: column; gap: clamp(80px, 12vw, 200px);
  padding-top: 8svh;
}
.showcase-step h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}
.showcase-step .num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .3em; color: var(--copper); margin-bottom: 16px;
}
.showcase-step p { font-size: 16px; color: var(--text-2); max-width: 46ch; line-height: 1.6; }
.spec-row {
  margin-top: 22px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.spec-card {
  padding: 16px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}
.spec-card .label { font-family: var(--f-mono); font-size: 10px; letter-spacing: .26em; color: var(--text-3); margin-bottom: 8px; }
.spec-card .val { font-family: var(--f-display); font-weight: 500; font-size: 22px; letter-spacing: -.02em; color: var(--copper); }

/* ---------- SERVICES (bento) --------------------------------------------- */
.services {
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(255,98,0,.10), transparent 70%),
    radial-gradient(50% 40% at 20% 70%, rgba(124,224,255,.06), transparent 70%),
    var(--ink-000);
  overflow: hidden;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 60px;
}
.svc-card {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(20px);
  padding: 32px;
  overflow: hidden;
  min-height: 280px;
  transition: transform .6s var(--ease-out), border-color .4s;
}
.svc-card:hover { border-color: var(--copper); transform: translateY(-4px); }
.svc-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(40% 60% at var(--mx, 50%) var(--my, 50%), rgba(255,98,0,.12), transparent 70%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.svc-card:hover::before { opacity: 1; }
.svc-card .num { font-family: var(--f-mono); font-size: 10px; letter-spacing: .26em; color: var(--copper); text-transform: uppercase; margin-bottom: 22px; }
.svc-card h4 { font-family: var(--f-display); font-weight: 500; font-size: clamp(22px, 2.6vw, 32px); letter-spacing: -.03em; line-height: 1.05; margin-bottom: 14px; }
.svc-card p { color: var(--text-2); font-size: 15px; line-height: 1.6; max-width: 38ch; }
.svc-card ul { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.svc-card ul li { font-size: 13.5px; color: var(--text-2); display: flex; gap: 10px; align-items: center; }
.svc-card ul li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--copper); flex: none; }

.svc-card.big   { grid-column: span 8; min-height: 380px; }
.svc-card.small { grid-column: span 4; }
.svc-card.wide  { grid-column: span 12; min-height: 200px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center; }

.svc-orb {
  position: absolute;
  right: -15%; top: 50%; transform: translateY(-50%);
  width: 65%; aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--copper-deep), var(--copper), var(--copper-bright), var(--sun), var(--copper-deep));
  filter: blur(50px);
  opacity: .28;
  animation: orbSpin 22s linear infinite;
  z-index: 0;
}
@keyframes orbSpin { to { transform: translateY(-50%) rotate(360deg); } }

.svc-mega-stat {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(48px, 7vw, 88px); letter-spacing: -.04em; line-height: 1;
  background: var(--grad-copper); background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradFlow 8s linear infinite;
}

/* Icon system */
.svc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--copper-soft);
  color: var(--copper);
  margin-bottom: 22px;
  border: 1px solid var(--copper-soft);
}
.svc-icon svg { width: 22px; height: 22px; }

/* ---------- PERFORMANCE COMPARE ----------------------------------------- */
.perfsection {
  background: var(--ink-000);
  position: relative;
}
.cam-hero {
  position: relative;
  height: 80svh;
  overflow: hidden;
  isolation: isolate;
}
.cam-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 50% 30%, rgba(255,98,0,.18), transparent 70%),
    radial-gradient(60% 50% at 50% 80%, rgba(124,224,255,.12), transparent 70%),
    linear-gradient(180deg, #04060d 0%, #0a0a14 50%, #04060d 100%);
  transform: scale(1.12);
  will-change: transform;
}
.cam-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,98,0,.5), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255,98,0,.3), transparent),
    radial-gradient(2px 2px at 80% 20%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 40% 50%, rgba(124,224,255,.25), transparent),
    radial-gradient(1px 1px at 70% 90%, rgba(255,181,71,.35), transparent);
  background-size: 240px 240px;
  animation: twinkle 6s ease-in-out infinite;
  opacity: .6;
}
@keyframes twinkle { 0%,100% { opacity: .4; } 50% { opacity: .8; } }
.cam-hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: grid; place-items: center;
  text-align: center;
  padding: 0 var(--gutter);
}
.cam-hero-content .h-display { max-width: 14ch; margin-inline: auto; }
.cam-hero-content .sub { color: var(--text-2); margin-top: 24px; font-size: clamp(15px, 1.4vw, 19px); max-width: 580px; margin-inline: auto; }

.cam-lens-wrap {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: clamp(280px, 38vw, 560px);
  aspect-ratio: 1;
  z-index: 1;
  opacity: .55;
}
.cam-lens-wrap svg { width: 100%; height: 100%; }

.cam-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -80px;
  position: relative; z-index: 3;
}
.cam-spec {
  padding: 28px 24px;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border: 1px solid var(--line-2);
  border-radius: 18px;
  backdrop-filter: blur(20px);
}
.cam-spec .mp {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(36px, 4.8vw, 56px);
  letter-spacing: -.04em; line-height: 1;
  color: var(--copper);
}
.cam-spec .mp span { color: var(--text-3); font-size: .42em; font-family: var(--f-mono); vertical-align: super; margin-left: 4px; letter-spacing: .12em; }
.cam-spec .lbl { font-family: var(--f-mono); font-size: 11px; letter-spacing: .26em; color: var(--text-3); margin-top: 10px; text-transform: uppercase; }

.compare {
  margin-top: clamp(80px, 12vw, 160px);
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,.7);
  border: 1px solid var(--line);
}
.compare-pane {
  position: absolute; inset: 0;
  display: grid; place-items: end center;
  font-family: var(--f-display); font-weight: 500;
  padding: 30px;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: -.02em;
}
.compare-before {
  background:
    radial-gradient(70% 60% at 50% 50%, #0c0e16, #04060d),
    linear-gradient(180deg, #0a0d18 0%, #04060d 100%);
  color: rgba(244,245,250,.45);
}
.compare-before::before {
  content: "R 184,920 / month";
  display: block;
  position: absolute; top: 30px; left: 30px;
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(28px, 4.4vw, 56px);
  letter-spacing: -.04em;
  color: rgba(244,245,250,.45);
}
.compare-after {
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(255,98,0,.30), transparent 70%),
    radial-gradient(50% 50% at 70% 30%, rgba(255,181,71,.30), transparent 70%),
    radial-gradient(60% 60% at 50% 50%, #1a1408, #04060d);
  clip-path: inset(0 0 0 50%);
  transition: clip-path .1s linear;
  color: var(--copper-bright);
}
.compare-after::before {
  content: "R 21,640 / month";
  display: block;
  position: absolute; top: 30px; right: 30px;
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(28px, 4.4vw, 56px);
  letter-spacing: -.04em;
  color: var(--copper-bright);
}
.compare-pane span.tag {
  position: absolute; bottom: 30px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .28em; text-transform: uppercase;
  font-weight: 500;
}
.compare-pane.compare-before span.tag { left: 30px; color: rgba(244,245,250,.45); }
.compare-pane.compare-after span.tag  { right: 30px; color: var(--copper); }

.compare-label {
  position: absolute; top: 22px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--text-2);
  padding: 8px 14px;
  background: rgba(0,0,0,.5);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  z-index: 3;
}
.compare-slider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: var(--copper);
  transform: translateX(-50%);
  z-index: 4;
  cursor: ew-resize;
  box-shadow: 0 0 24px var(--copper-glow);
}
.compare-slider::after {
  content: "";
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 24px var(--copper-glow);
}
.compare-slider::before {
  content: "↔";
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 5;
  color: var(--ink-000);
  font-size: 18px; font-weight: 700;
}

/* ---------- ENGINEERING PROCESS / STATS --------------------------------- */
.engine {
  background:
    radial-gradient(40% 50% at 50% 50%, rgba(255,98,0,.10), transparent 70%),
    var(--ink-000);
  position: relative;
  overflow: hidden;
}
.engine::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,98,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,98,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(50% 60% at 50% 50%, #000, transparent 80%);
  opacity: .6;
}
.engine-stage {
  position: relative;
  height: 90svh;
  display: grid; place-items: center;
}
.engine-sun {
  position: relative;
  width: clamp(260px, 32vw, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--copper-bright) 0%, var(--copper) 35%, var(--copper-deep) 65%, #5a3a18 100%);
  box-shadow:
    0 0 80px -10px var(--copper),
    0 0 160px -20px var(--copper-glow),
    inset 0 0 60px rgba(255,255,255,.15);
  display: grid; place-items: center;
}
.engine-sun::after {
  /* solar cells texture overlay */
  content: "";
  position: absolute; inset: 12%;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(0,0,0,.18) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(0,0,0,.18) 50%, transparent 50.5%);
  background-size: 11% 11%;
  opacity: .35;
}
.engine-sun .label {
  position: relative; z-index: 2;
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(20px, 2.4vw, 32px); letter-spacing: -.02em;
  color: rgba(0,0,0,.6);
  text-align: center;
  line-height: 1;
}
.engine-sun .label small {
  display: block;
  font-family: var(--f-mono); font-weight: 400;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(0,0,0,.45); margin-top: 8px;
}
.engine-rays {
  position: absolute; inset: -15%;
  border: 1px dashed rgba(255,98,0,.18); border-radius: 50%;
  animation: orbSpin 50s linear infinite;
}
.engine-rays.r2 { inset: -32%; animation-duration: 80s; animation-direction: reverse; border-color: rgba(124,224,255,.12); }
.engine-rays .planet {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 24px var(--copper);
}
.engine-rays.r2 .planet { background: var(--neon); box-shadow: 0 0 24px var(--neon); }

.engine-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.engine-stat {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}
.engine-stat:last-child { border-right: 0; }
.engine-stat .v {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -.04em; line-height: 1;
  color: var(--copper);
}
.engine-stat .v span { color: var(--text-3); font-size: .35em; font-family: var(--f-mono); vertical-align: super; margin-left: 4px; }
.engine-stat .l { font-family: var(--f-mono); font-size: 11px; letter-spacing: .26em; color: var(--text-3); margin-top: 14px; text-transform: uppercase; }
.engine-stat .d { font-size: 13px; color: var(--text-3); margin-top: 8px; line-height: 1.5; }

/* ---------- STORAGE ------------------------------------------------------ */
.storage { background: var(--ink-000); position: relative; overflow: hidden; }
.storage-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 80px);
  align-items: center;
}
.battery-viz {
  position: relative;
  aspect-ratio: 1/1.4;
  max-width: 400px;
  margin: 0 auto;
}
.battery-cell {
  position: absolute; inset: 0;
  border-radius: 36px;
  background: linear-gradient(180deg, #0a0c14 0%, #0c1118 100%);
  border: 1px solid var(--line-2);
  overflow: hidden;
}
.battery-cell::after {
  content: ""; position: absolute; top: -8px; left: 35%; right: 35%; height: 14px;
  border-radius: 4px 4px 0 0;
  background: var(--ink-300);
  border: 1px solid var(--line-2); border-bottom: 0;
}
.battery-fill {
  position: absolute; left: 0; right: 0; bottom: 0; height: 0%;
  background: linear-gradient(180deg, var(--copper-bright) 0%, var(--copper) 60%, var(--copper-deep) 100%);
  box-shadow: 0 0 60px var(--copper-glow), inset 0 0 40px rgba(255,255,255,.2);
  border-radius: 0 0 32px 32px;
  transition: height 2s var(--ease-out);
}
.battery-fill::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 10px, rgba(255,255,255,.1) 10px 12px);
  opacity: .6;
  animation: shineMove 3s linear infinite;
}
@keyframes shineMove { to { background-position: 40px 40px; } }
.battery-pct {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(48px, 6vw, 92px); letter-spacing: -.04em;
  color: var(--text);
  z-index: 2;
  mix-blend-mode: difference;
}
.battery-pct span { font-size: .35em; font-family: var(--f-mono); color: var(--text-3); vertical-align: super; }

.storage-info h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: -.04em; line-height: 1; margin-bottom: 24px;
}
.storage-info p { color: var(--text-2); font-size: 16px; line-height: 1.7; max-width: 46ch; margin-bottom: 32px; }

.storage-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 14px;
}
.storage-card {
  padding: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.storage-card .icon {
  width: 36px; height: 36px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--copper-soft);
  margin-bottom: 14px;
  color: var(--copper);
}
.storage-card .icon svg { width: 18px; height: 18px; }
.storage-card .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: .26em; color: var(--text-3); margin-bottom: 6px; text-transform: uppercase; }
.storage-card .val { font-family: var(--f-display); font-weight: 500; font-size: 22px; letter-spacing: -.02em; color: var(--copper); }

/* ---------- WHERE WE WORK GALLERY --------------------------------------- */
.gallery { background: var(--ink-000); position: relative; }
.gal-marquee {
  display: flex; gap: 22px;
  margin-top: 40px;
  width: max-content;
  animation: galScroll 60s linear infinite;
}
.gal-tile {
  width: clamp(280px, 32vw, 420px);
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  flex: none;
}
.gal-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4,6,13,.85) 100%);
  z-index: 1;
}
.gal-tile .meta {
  position: absolute; left: 22px; bottom: 22px; right: 22px; z-index: 2;
}
.gal-tile .meta .tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: .28em; color: var(--copper); text-transform: uppercase; margin-bottom: 8px; }
.gal-tile .meta .title { font-family: var(--f-display); font-weight: 500; font-size: 22px; letter-spacing: -.02em; line-height: 1.15; }
.gal-tile .meta .sub { font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; color: var(--text-3); margin-top: 6px; text-transform: uppercase; }
@keyframes galScroll { to { transform: translateX(-50%); } }

.gal-headline {
  margin-top: clamp(60px, 10vw, 140px);
  text-align: center;
  padding: 0 var(--gutter);
}
.gal-headline .h-display { max-width: 20ch; margin-inline: auto; }

/* ---------- SAVINGS CALCULATOR (wide horizontal dashboard, pure black) -- */
.calc-sec {
  position: relative;
  background: #000;
  padding: clamp(64px, 7vw, 96px) clamp(20px, 3vw, 40px);
  overflow: hidden;
}

.calc-container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

/* Intro — compact, left-aligned */
.calc-intro {
  margin-bottom: clamp(28px, 3vw, 44px);
  max-width: 760px;
}
.calc-intro .eyebrow {
  margin-bottom: 14px;
  color: var(--copper);
}
.calc-intro .eyebrow::before { background: var(--copper); opacity: 1; }
.calc-intro h2 {
  font-family: "Poppins", var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
  margin: 0;
}
/* The card — wide, dark, horizontal */
.calc-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 2.4vw, 40px);
  align-items: stretch;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 48px);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.8);
}

/* LEFT — input panel */
.calc-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  gap: 22px;
}
.calc-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-3);
}
.calc-amount {
  font-family: "Poppins", var(--f-display);
  font-weight: 600;
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin-top: -6px;
}
.calc-amount .cur {
  font-size: .55em;
  color: var(--text-3);
  margin-right: 8px;
  font-weight: 500;
  font-variant-numeric: normal;
}
/* Slider */
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 3px;
  background: linear-gradient(to right,
    var(--copper) 0%,
    var(--copper) var(--p, 14%),
    rgba(255,255,255,.10) var(--p, 14%));
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  margin: 4px 0 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--copper);
  border: 4px solid #000;
  box-shadow: 0 0 0 1px var(--copper);
  cursor: grab;
  transition: transform .2s var(--ease-spring), box-shadow .2s;
}
.calc-slider::-webkit-slider-thumb:hover  { transform: scale(1.15); }
.calc-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.22); box-shadow: 0 0 0 1px var(--copper), 0 0 0 8px rgba(255,98,0,.16); }
.calc-slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--copper); border: 4px solid #000;
  box-shadow: 0 0 0 1px var(--copper);
  cursor: grab;
}
.calc-ticks {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  color: var(--text-4);
  text-transform: uppercase;
  margin-top: 2px;
}

/* CTA button — full-width, copper */
.calc-cta {
  width: 100%;
  justify-content: center;
  background: var(--copper);
  color: #fff;
  padding: 18px 26px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 4px;
  transition: background .25s var(--ease-out), transform .25s var(--ease-out);
  box-shadow: none;
}
.calc-cta:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 0 1px rgba(255,98,0,.55), 0 0 36px -6px rgba(255,98,0,.4);
}
.calc-cta .arrow { transition: transform .25s var(--ease-out); }
.calc-cta:hover .arrow { transform: translateX(4px); }

.calc-fine {
  margin: 0;
  font-size: 11px;
  color: var(--text-4);
  line-height: 1.55;
  font-family: var(--f-mono);
  letter-spacing: .02em;
}

/* RIGHT — 2x2 results grid */
.calc-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 14px;
  overflow: hidden;
}
.calc-right .o {
  padding: clamp(20px, 2vw, 28px);
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  transition: background .25s var(--ease-out);
}
.calc-right .o:hover { background: #101010; }
.calc-right .o .k {
  /* Bolder, more legible block titles (item 6) */
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--text);
  margin-bottom: 4px;
}
.calc-right .o .v {
  font-family: "Poppins", var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--copper);
  font-variant-numeric: tabular-nums;
}
.calc-right .o.is-key     .v { color: var(--copper); }
.calc-right .o.is-capex   .v { color: #BB6600; }
.calc-right .o.is-carbon       { background: #020406; }
.calc-right .o.is-carbon:hover { background: #040810; }
.calc-right .o.is-carbon  .v { color: #3A8EFF; }
.calc-right .o.is-diesel       { background: #020500; }
.calc-right .o.is-diesel:hover { background: #040800; }
.calc-right .o.is-diesel  .v { color: #44AA22; }
.calc-right .o .v .u {
  font-size: .46em;
  color: var(--text-3);
  margin-left: 5px;
  font-family: var(--f-mono);
  letter-spacing: .08em;
  font-weight: 400;
}
.calc-right .o .v .cur {
  font-size: .55em;
  color: var(--text-3);
  margin-right: 4px;
  font-weight: 500;
}
.calc-right .o .sub {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-top: 2px;
}

/* Subtle flash when payback band changes */
.calc-right .o .v.flash { animation: valFlash .55s var(--ease-out); }
@keyframes valFlash {
  0%   { opacity: 1; transform: translateY(0); }
  35%  { opacity: 0; transform: translateY(-6px); }
  36%  { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive — stack at tablet */
@media (max-width: 900px) {
  .calc-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .calc-left { min-height: auto; }
  .calc-intro h2 { font-size: clamp(26px, 6vw, 36px); }
}

@media (max-width: 560px) {
  .calc-sec { padding: 48px 16px; }
  .calc-card { padding: 22px; border-radius: 14px; }
  .calc-amount { font-size: clamp(40px, 12vw, 56px); }
  .calc-right { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .calc-right .o { padding: 18px 16px; }
  .calc-right .o .v { font-size: clamp(20px, 6.5vw, 28px); }
  .calc-cta { padding: 16px 22px; font-size: 12px; }
}

/* ---------- FINAL CTA ---------------------------------------------------- */
.cta-final {
  margin-top: clamp(80px, 12vw, 180px);
  position: relative;
  padding: clamp(60px, 10vw, 120px) clamp(28px, 6vw, 80px);
  border-radius: 32px;
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(255,98,0,.25), transparent 70%),
    radial-gradient(50% 60% at 50% 100%, rgba(124,224,255,.10), transparent 70%),
    linear-gradient(180deg, #0c0e18 0%, #04060d 100%);
  border: 1px solid var(--line-2);
  text-align: center;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,98,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,98,0,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 80%);
}
.cta-final .h-display { max-width: 18ch; margin: 0 auto 24px; position: relative; z-index: 2; }
.cta-final p { color: var(--text-2); max-width: 540px; margin: 0 auto 36px; position: relative; z-index: 2; font-size: clamp(15px, 1.4vw, 18px); }
.cta-final .hero-ctas { position: relative; z-index: 2; margin-bottom: 0; }

/* ---------- FOOTER ------------------------------------------------------- */
footer {
  background: #000;
  padding: clamp(80px, 10vw, 140px) 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  margin-bottom: 80px;
}
.foot-brand .brand { margin-bottom: 22px; }
.foot-brand p { color: var(--text-3); font-size: 15.5px; line-height: 1.7; max-width: 42ch; }
.foot-col h5 {
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 22px; font-weight: 500;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.foot-col a {
  color: var(--text-2); font-size: 15.5px;
  transition: color .3s, transform .3s;
  display: inline-flex; align-items: center; gap: 6px;
}
.foot-col a:hover { color: var(--copper); transform: translateX(4px); }
.foot-col a::before {
  content: "→"; opacity: 0; transition: opacity .3s, transform .3s;
  font-family: var(--f-mono); font-size: 11px;
}
.foot-col a:hover::before { opacity: 1; }

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between;
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-3);
}
.foot-bottom .links { display: flex; gap: 24px; }
.foot-bottom a:hover { color: var(--copper); }

.foot-mega {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(60px, 14vw, 240px);
  line-height: .9;
  letter-spacing: -.05em;
  background: var(--grad-copper); background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradFlow 12s linear infinite;
  text-align: center;
  margin: 0 0 60px;
  user-select: none;
  pointer-events: none;
}

/* ---------- STICKY CONSULT BAR ------------------------------------------ */
.sticky-buy {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  padding: 14px 20px;
  background: rgba(4,6,13,.82);
  backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  transition: transform .6s var(--ease-spring);
}
.sticky-buy.show { transform: translateX(-50%) translateY(0); }
.sticky-buy .label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .22em; color: var(--text-3); text-transform: uppercase; }
.sticky-buy .product { font-family: var(--f-display); font-weight: 500; font-size: 15px; color: var(--copper); }
.sticky-buy .price { font-family: var(--f-mono); font-size: 12px; color: var(--text-2); padding-left: 14px; border-left: 1px solid var(--line); }
.sticky-buy .btn { padding: 10px 20px; font-size: 12px; }

/* ---------- SCROLL PROGRESS ---------------------------------------------- */
.progress {
  display: none;
  position: fixed; top: 0; left: 0; height: 2px;
  width: 0%;
  background: var(--grad-copper); background-size: 200% 200%;
  animation: gradFlow 4s linear infinite;
  z-index: 110;
  box-shadow: 0 0 12px var(--copper);
}

/* ---------- MOUSE LIGHT (disabled by request) ---------------------------- */
.mouse-light { display: none !important; }

/* ---------- REVEAL HELPERS ----------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal-delay="1"].in { transition-delay: .1s; }
[data-reveal-delay="2"].in { transition-delay: .2s; }
[data-reveal-delay="3"].in { transition-delay: .3s; }
[data-reveal-delay="4"].in { transition-delay: .4s; }
[data-reveal-delay="5"].in { transition-delay: .5s; }

/* ---------- SERVICES — STORY CARDS (One partner. Every phase.) ---------- */
.services-story {
  background: #000;
  padding: clamp(80px, 10vw, 144px) 0;
}
.services-story-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.services-intro {
  max-width: 860px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.services-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.services-eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--copper);
}
.services-title {
  font-family: "Poppins", var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 22px;
}
.services-lead {
  color: var(--text-2);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  max-width: 720px;
}

/* ---- Card grid ---- */
.services-story .svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}
@media (min-width: 760px) {
  .services-story .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1080px) {
  .services-story .svc-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Card — image-on-top, content-below ---- */
.services-story .svc-card {
  display: flex;
  flex-direction: column;
  background: #1c1c1c;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  min-height: 0;
  height: 100%;
  transition: transform .28s var(--ease-out), background .28s var(--ease-out), box-shadow .35s var(--ease-out);
  will-change: transform, background;
  color: inherit;
  position: relative;
}
.services-story .svc-card::before { display: none; }
.services-story .svc-card:hover {
  transform: translateY(-8px);
  background: #000;
  box-shadow:
    0 40px 100px -40px rgba(0,0,0,.85),
    0 20px 50px -30px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,98,0,.14);
}

.services-story .svc-card .svc-img {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: #0a0a0a;
}
.services-story .svc-card .svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.04);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), filter .35s var(--ease-out);
  will-change: transform, filter;
}
.services-story .svc-card:hover .svc-img img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1);
}

.services-story .svc-card .svc-meta {
  padding: clamp(24px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.services-story .svc-card .svc-tag {
  color: var(--copper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-family: var(--f-mono);
  margin-bottom: 2px;
}
.services-story .svc-card .svc-h {
  color: var(--text);
  font-family: "Poppins", var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0;
}
.services-story .svc-card .svc-p {
  color: rgba(244,245,250,.65);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.services-story .svc-card .svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--copper);
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", var(--f-display);
  margin-top: 8px;
  transition: gap .3s var(--ease-out), color .3s var(--ease-out);
}
.services-story .svc-card:hover .svc-cta {
  color: var(--copper-bright);
  gap: 14px;
}
.services-story .svc-card .svc-arrow {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform .3s var(--ease-out);
}
.services-story .svc-card:hover .svc-arrow {
  transform: translateY(-1px) translateX(2px);
}

/* ---------- STATS BANNER (after services-story) ---------- */
.stats-banner {
  background: #000;
  padding: clamp(72px, 9vw, 130px) 0;
}
.stats-banner-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-cell {
  text-align: center;
  padding: clamp(24px, 2.6vw, 40px) clamp(20px, 3vw, 40px);
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
.stats-cell:last-child {
  border-right: 0;
}
.stats-num {
  font-family: "Poppins", var(--f-display);
  font-weight: 700;
  font-size: clamp(44px, 5.4vw, 88px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--text);
}
.stats-num .stats-accent {
  color: var(--copper);
}
.stats-lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(244,245,250,.5);
  line-height: 1.4;
  max-width: 22ch;
}

@media (max-width: 760px) {
  .stats-banner-wrap { grid-template-columns: 1fr 1fr; }
  .stats-cell {
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 32px 18px;
  }
  .stats-cell:nth-child(2n) { border-right: 0; }
  .stats-cell:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 420px) {
  .stats-banner-wrap { grid-template-columns: 1fr; }
  .stats-cell {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .stats-cell:last-child { border-bottom: 0; }
}

/* ---------- CAPABILITIES (pinned scrollytelling, GSAP-driven) ---------- */
.capabilities {
  position: relative;
  background: #000;
  /* Height is handled by GSAP pinSpacing; natural height = .cap-stage = 100vh */
}
.cap-stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  overflow: hidden;
  isolation: isolate;
}

/* Background layers — cross-fade between images */
.cap-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cap-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s var(--ease-out), transform 2.4s var(--ease-out);
  will-change: opacity, transform;
}
.cap-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.cap-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.55) 35%, rgba(0,0,0,.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.65) 100%);
  pointer-events: none;
}

/* Top-right badge */
.cap-badge {
  position: absolute;
  top: clamp(24px, 3vw, 40px);
  right: clamp(24px, 3vw, 40px);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.cap-badge-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--copper);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: "Poppins", var(--f-display);
  font-weight: 700;
  font-size: 11px;
  color: #000;
  letter-spacing: 0;
}
.cap-badge-dot::before {
  content: "04";
}

/* Main two-column grid */
.cap-grid {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(26px, 4vh, 52px);
  padding: clamp(96px, 12vh, 150px) clamp(40px, 5vw, 80px) clamp(56px, 8vh, 100px);
}

/* TOP — step navigation (6 selections, horizontal, above the title) */
.cap-nav {
  align-self: stretch;
  width: 100%;
}
.cap-nav ol {
  list-style: none;
  margin: 0; padding: 0 0 22px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 28px;
  position: relative;
  padding-bottom: 16px;
}
.cap-nav li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  transition: color .4s var(--ease-out);
  position: relative;
}
.cap-nav li::before {
  /* Bullet preceding each selection */
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  flex: none;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), transform .4s var(--ease-spring);
}
.cap-nav li:hover { color: rgba(255,255,255,.85); }
.cap-nav li.is-active {
  color: var(--text);
}
.cap-nav li.is-active::before {
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(255,98,0,.18), 0 0 16px var(--copper);
  transform: scale(1.15);
}
.cap-nav .step-num {
  font-weight: 600;
}
.cap-nav .step-name {
  opacity: .85;
}

/* BELOW — content */
.cap-content {
  position: relative;
  width: 100%;
  max-width: 820px;
  align-self: flex-start;
}

/* Call-to-action inside the capabilities block */
.cap-cta-row { margin-top: clamp(6px, 1.5vh, 16px); }
.cap-cta { width: fit-content; }

.cap-intro {
  margin-bottom: clamp(40px, 6vh, 80px);
}
.cap-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cap-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--copper);
}
.cap-sub {
  font-family: "Poppins", var(--f-display);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}

.cap-pagination {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 22px;
  font-family: var(--f-mono);
  font-size: 16.5px; /* +50% from 11px — larger blue heading for readability (item 7) */
  letter-spacing: .24em;
  text-transform: uppercase;
}
.cap-counter {
  color: rgba(255,255,255,.55);
}
.cap-counter #cap-current {
  color: var(--copper);
  font-weight: 600;
}
.cap-counter .cap-divider {
  color: rgba(255,255,255,.25);
  margin: 0 6px;
}
.cap-section-label {
  color: var(--text);
  font-weight: 500;
  letter-spacing: .22em;
}

/* Cross-fading titles — all stacked in one grid cell so the container
   auto-sizes to the tallest title and can never overlap the text below. */
.cap-titles {
  position: relative;
  display: grid;
  margin-bottom: 24px;
}
.cap-title {
  grid-area: 1 / 1;
  font-family: "Poppins", var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--text);
  margin: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease-out), transform .8s var(--ease-out);
  pointer-events: none;
}
.cap-title.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Cross-fading descriptions — stacked in one grid cell (auto-sizes, no overlap) */
.cap-descs {
  position: relative;
  display: grid;
  margin-bottom: 22px;
}
.cap-desc {
  grid-area: 1 / 1;
  font-family: "Poppins", var(--f-body);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  max-width: 640px;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease-out) .08s, transform .8s var(--ease-out) .08s;
  pointer-events: none;
}
.cap-desc.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Progress bar — directly under the 6 headings (loading line) */
.cap-progress {
  position: relative;
  width: 100%;
  margin-top: -1px;
  height: 2px;
  background: rgba(255,255,255,.12);
  z-index: 5;
}
.cap-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--copper);
  box-shadow: 0 0 12px var(--copper);
  transition: width .25s linear;
}

/* Responsive — tablet */
@media (max-width: 980px) {
  .cap-grid {
    gap: 28px;
    padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 60px) clamp(56px, 8vh, 80px);
    justify-content: center;
  }
  .cap-nav { align-self: stretch; }
  .cap-nav ol { gap: 12px 18px; }
  .cap-nav li { gap: 9px; font-size: 11.5px; }
  .cap-title { font-size: clamp(32px, 6.5vw, 56px); }
  .cap-titles { min-height: clamp(110px, 18vh, 160px); }
  .cap-badge { top: 18px; right: 18px; }
}

/* Mobile */
@media (max-width: 560px) {
  .cap-eyebrow { font-size: 10px; }
  .cap-sub { font-size: 14px; }
  .cap-pagination { gap: 14px; flex-wrap: wrap; font-size: 15px; }
  .cap-section-label { font-size: 15px; }
  .cap-desc { font-size: 14px; }
  .cap-descs { min-height: 120px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cap-bg, .cap-title, .cap-desc, .cap-progress-fill { transition: none; }
}

/* ---------- OUR BRANDS ---------- */
.our-brands {
  background: #000;
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}
.brands-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.brands-intro {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.brands-title {
  font-family: "Poppins", var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--text);
  margin: 0 0 18px;
}
.brands-sub-row {
  display: flex; align-items: center; gap: 28px;
}
.brands-sub {
  font-family: var(--f-body);
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--text-2);
  margin: 0;
  white-space: nowrap;
}
.brands-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.12);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

.brand-card {
  background: linear-gradient(160deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  height: 124px;
  padding: 20px 28px;
  display: grid;
  place-items: center;
  transition: transform .35s var(--ease-spring),
              border-color .35s var(--ease-out),
              background .35s var(--ease-out),
              box-shadow .35s var(--ease-out);
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.55);
}
.brand-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 50% 0%, rgba(255,98,0,.10), transparent 70%);
  opacity: 0;
  transition: opacity .35s var(--ease-out);
  pointer-events: none;
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--copper);
  background: linear-gradient(160deg, rgba(255,98,0,.05) 0%, rgba(255,255,255,.01) 100%);
  color: var(--text);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6),
              0 0 30px -10px var(--copper-glow);
}
.brand-card:hover::before { opacity: 1; }

.brand-mark {
  font-family: "Poppins", var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -.01em;
  color: currentColor;
  text-align: center;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
  transition: color .3s var(--ease-out);
}
.brand-mark small {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 2px;
}

/* Optional image-based logo (when you swap in real licensed logo files) */
.brand-img {
  max-width: 70%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .55;
  filter: grayscale(1) contrast(.95);
  transition: opacity .35s var(--ease-out), filter .35s var(--ease-out);
}
.brand-card:hover .brand-img {
  opacity: 1;
  filter: grayscale(0) contrast(1);
}

/* ---------- PLAN WITH CONFIDENCE BAND ---------- */
.confidence-band {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}
.confidence-band .cb-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  filter: saturate(.9) contrast(1.02);
  will-change: transform;
}
.confidence-band .cb-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,6,13,.55) 0%, rgba(4,6,13,.72) 50%, rgba(4,6,13,.55) 100%),
    radial-gradient(70% 60% at 50% 50%, rgba(0,0,0,.25), rgba(4,6,13,.55) 90%);
  pointer-events: none;
}

.cb-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  place-items: center;
}

.cb-card {
  max-width: 760px;
  width: 100%;
  background: rgba(8, 8, 12, .88);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: clamp(44px, 7vw, 80px) clamp(28px, 5vw, 64px);
  text-align: center;
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  box-shadow:
    0 40px 100px -30px rgba(0,0,0,.75),
    0 0 0 1px rgba(255,255,255,.02) inset;
}

.cb-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.cb-eyebrow::before,
.cb-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .85;
}

.cb-title {
  font-family: "Poppins", var(--f-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--text);
  margin: 0 0 22px;
}
.cb-body {
  font-family: var(--f-body);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 auto 36px;
  max-width: 56ch;
}

.cb-actions {
  display: inline-flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 10px;
  font-family: "Poppins", var(--f-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background .25s var(--ease-out),
              color .25s var(--ease-out),
              transform .25s var(--ease-out),
              box-shadow .25s var(--ease-out);
  border: 1px solid transparent;
  cursor: pointer;
}
.cb-btn-primary {
  background: var(--copper);
  color: #fff;
}
.cb-btn-primary:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,98,0,.55),
              0 14px 36px -8px var(--copper-glow);
}
.cb-btn-light {
  background: #fff;
  color: #000;
}
.cb-btn-light:hover {
  background: rgba(255,255,255,.88);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -8px rgba(255,255,255,.18);
}

/* Responsive */
@media (max-width: 720px) {
  .confidence-band { padding: clamp(64px, 12vw, 100px) 0; }
  .cb-card { padding: 40px 26px; border-radius: 20px; }
  .cb-actions { flex-direction: column; width: 100%; }
  .cb-btn { width: 100%; }
}

/* ---------- PRE-FOOTER CTA BANNER ("Curious what solar would actually cost?") ---------- */
.home-cta {
  background: #000;
  padding: clamp(60px, 8vw, 110px) 0;
}
.home-cta-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 64px);
  border-radius: 24px;
  background: #ff6200;
  border: 0;
  overflow: hidden;
}
.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: "Poppins", var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
  margin: 0 0 14px;
}
.cta-banner p {
  font-family: "Poppins", var(--f-body);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: #fff;
  max-width: 56ch;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 200px;
}
.cta-btn-primary,
.cta-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 10px;
  font-family: "Poppins", var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: background .25s var(--ease-out), color .25s var(--ease-out), transform .25s var(--ease-out);
  border: 1px solid transparent;
}
.cta-btn-primary {
  background: #000;
  color: #fff;
}
.cta-btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px -8px rgba(0,0,0,.55);
}
.cta-btn-light {
  background: #fff;
  color: #000;
}
.cta-btn-light:hover {
  background: rgba(255,255,255,.88);
  transform: translateY(-2px);
}

/* Stacking responsive */
@media (max-width: 860px) {
  .cta-banner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 28px;
  }
  .cta-actions { flex-direction: row; min-width: 0; }
  .cta-btn-primary, .cta-btn-light { flex: 1; }
}
@media (max-width: 480px) {
  .cta-actions { flex-direction: column; }
  .cta-btn-primary, .cta-btn-light { padding: 14px 22px; font-size: 13px; }
}


/* ---------- HERO SOLAR-PANEL GRID (animated, inspired by PV cell circuitry) ---------- */
.hero-energy {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* Lines themselves are interactive (see .he-flow-group below).
     The SVG root stays click-through so the hero content above remains usable. */
  pointer-events: none;
  opacity: .62;
  /* Vignette so the grid fades at the edges and never crowds the text */
  -webkit-mask-image: radial-gradient(100% 85% at 50% 50%, #000 25%, rgba(0,0,0,.55) 70%, transparent 96%);
          mask-image: radial-gradient(100% 85% at 50% 50%, #000 25%, rgba(0,0,0,.55) 70%, transparent 96%);
  filter: drop-shadow(0 0 4px rgba(255,98,0,.10));
}

/* Background panel cells breathe softly */
.hero-energy .he-cells {
  animation: heCellsBreath 10s ease-in-out infinite;
  will-change: opacity;
}
@keyframes heCellsBreath {
  0%, 100% { opacity: 1; }
  50%      { opacity: .65; }
}

/* Energy pulses travelling along busbars + fingerlines.
   pathLength="100" normalises every line so the same dasharray works on all. */
.hero-energy .he-flow {
  stroke-dasharray: 4 96;          /* 4% visible "pulse", 96% gap */
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 4px currentColor);
  animation: heFlow 10s linear infinite;
  will-change: stroke-dashoffset;
}
/* Stagger horizontals + verticals so the grid feels alive but not synchronised */
.hero-energy .he-flow-h1 { animation-duration: 11s; animation-delay:  0s;   }
.hero-energy .he-flow-h2 { animation-duration: 14s; animation-delay: -2.5s; }
.hero-energy .he-flow-h3 { animation-duration: 12s; animation-delay: -5s;   }
.hero-energy .he-flow-h4 { animation-duration: 13s; animation-delay: -8s;   }
.hero-energy .he-flow-v1 { animation-duration: 9s;  animation-delay: -1s;   }
.hero-energy .he-flow-v2 { animation-duration: 13s; animation-delay: -4s;   }
.hero-energy .he-flow-v3 { animation-duration: 10s; animation-delay: -6s;   }
.hero-energy .he-flow-v4 { animation-duration: 11s; animation-delay: -9s;   }
@keyframes heFlow {
  from { stroke-dashoffset: 100; }
  to   { stroke-dashoffset: 0; }
}

/* Pulsing junction nodes */
.hero-energy .he-node {
  transform-origin: center;
  transform-box: fill-box;
  animation: heNodePulse 2.8s var(--ease-soft) infinite;
  filter: drop-shadow(0 0 6px currentColor);
  will-change: transform, opacity;
}
.hero-energy .he-node:nth-child(2) { animation-delay: .40s; }
.hero-energy .he-node:nth-child(3) { animation-delay: .80s; }
.hero-energy .he-node:nth-child(4) { animation-delay: 1.20s; }
.hero-energy .he-node:nth-child(5) { animation-delay: 1.60s; }
.hero-energy .he-node:nth-child(6) { animation-delay: 2.00s; }
@keyframes heNodePulse {
  0%, 100% { transform: scale(1);   opacity: .65; }
  50%      { transform: scale(1.6); opacity: 1;   }
}

/* ---- Hover interaction — strictly along the grid lines ---- */
/* Hit-area lines are invisible and 22px wide so "hover near or over" works */
.hero-energy .he-flow-group { pointer-events: auto; }
.hero-energy .he-hit        { pointer-events: stroke; }
.hero-energy .he-flow       { pointer-events: none; }

/* Smooth easing into / out of the hover state */
.hero-energy .he-flow {
  transition:
    stroke-width  .35s var(--ease-out),
    stroke-dasharray .4s var(--ease-out),
    opacity       .3s  var(--ease-out),
    filter        .35s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .hero-energy .he-flow-group:hover .he-flow {
    stroke-width: 2;
    stroke-dasharray: 9 91;
    filter: drop-shadow(0 0 6px currentColor) drop-shadow(0 0 14px currentColor);
  }
  /* Speed up the pulse along the hovered line (still travelling along the same path) */
  .hero-energy .he-flow-group:hover .he-flow-h1,
  .hero-energy .he-flow-group:hover .he-flow-h2,
  .hero-energy .he-flow-group:hover .he-flow-h3,
  .hero-energy .he-flow-group:hover .he-flow-h4 { animation-duration: 7s; }
  .hero-energy .he-flow-group:hover .he-flow-v1,
  .hero-energy .he-flow-group:hover .he-flow-v2,
  .hero-energy .he-flow-group:hover .he-flow-v3,
  .hero-energy .he-flow-group:hover .he-flow-v4 { animation-duration: 6s; }
}

/* Mobile: dial back intensity for performance */
@media (max-width: 720px) {
  .hero-energy { opacity: .38; }
  .hero-energy .he-flow { animation-duration: 18s !important; }
  .hero-energy .he-node { animation-duration: 4s; }
}

/* Honor reduced-motion preference — completely static grid */
@media (prefers-reduced-motion: reduce) {
  .hero-energy .he-flow,
  .hero-energy .he-node,
  .hero-energy .he-cells { animation: none; }
}

/* ---------- GLOBAL HIGHLIGHT WORD (two-colour titles → #acacac) ----------
   Every heading-level highlight (`.ital`, `.grad`, plain `<em>`) on the site
   uses the surrounding text's font + size, renders in #acacac, and sits at
   a slightly lighter weight than the white part. The homepage hero
   (`.hero-title`) keeps its copper-gradient word via the override below. */
h1 .ital, h1 .grad, h1 em,
h2 .ital, h2 .grad, h2 em,
h3 .ital, h3 .grad, h3 em,
h4 .ital, h4 .grad, h4 em,
.h-display .ital, .h-display .grad, .h-display em {
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
  color: #acacac;
  animation: none;
}

/* Homepage hero exception — keep copper on .hero-title only */
.hero-title .grad,
.hero-title .ital {
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  background: var(--grad-copper);
  background-size: 200% 200%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: gradFlow 10s linear infinite;
}

/* ---------- RESPONSIVE --------------------------------------------------- */
@media (max-width: 980px) {
  .nav-inner { gap: 16px; }
  .brand { height: 44px; }
  .brand-logo { max-height: 44px; }

  /* Reposition the Book Now CTA into the drawer (below the links) */
  .nav-cta {
    position: fixed;
    left: 32px;
    right: 32px;
    bottom: 48px;
    z-index: 170;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    text-align: center;
    justify-content: center;
    transition: opacity .35s var(--ease-out) .12s, transform .35s var(--ease-out) .12s;
    padding: 18px 24px;
    font-size: 15px;
  }
  .nav.nav-open .nav-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Header contact: collapse into the open mobile drawer, above the CTA */
  .nav-contact {
    position: fixed;
    left: 32px; right: 32px; bottom: 120px;
    z-index: 170;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .35s var(--ease-out) .1s, transform .35s var(--ease-out) .1s;
  }
  .nav.nav-open .nav-contact {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-contact-item { color: var(--text); }
  .nav-contact-item.nav-contact-email span { display: inline; }

  .nav-toggle {
    display: grid; place-items: center;
    width: 42px; height: 42px;
    border: 1px solid var(--line-2); border-radius: 999px;
    background: rgba(255,255,255,.04);
    cursor: pointer;
    z-index: 200;
    position: relative;
    transition: transform .25s var(--ease-out), background .25s var(--ease-out);
  }
  .nav-toggle span {
    width: 18px; height: 1.5px; background: var(--text);
    box-shadow: 0 -5px var(--text), 0 5px var(--text);
    transition: box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
  }
  .nav.nav-open .nav-toggle { background: rgba(255,98,0,.12); }
  .nav.nav-open .nav-toggle span {
    box-shadow: 0 0 var(--text), 0 0 var(--text);
    transform: rotate(45deg);
  }

  /* Mobile drawer */
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(4,6,13,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 80px 32px 40px;
    transform: translateY(-100%);
    transition: transform .42s var(--ease-out), opacity .3s var(--ease-out);
    opacity: 0;
    pointer-events: none;
    z-index: 150;
  }
  .nav.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-family: var(--f-display);
    font-size: clamp(28px, 7vw, 44px);
    font-weight: 500;
    letter-spacing: -.01em;
    color: #fff;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links a::after { display: none; }
  .nav-links a[aria-current="page"] { color: var(--copper); }

  .nav.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(60% 50% at 30% 20%, rgba(255,98,0,.06), transparent 60%);
    pointer-events: none;
    z-index: 140;
  }

  body.no-scroll { overflow: hidden; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head .right { padding-top: 0; }
  .showcase-wrap { grid-template-columns: 1fr; }
  .showcase-sticky { position: relative; top: auto; height: auto; margin-bottom: 40px; }
  .showcase-sticky .showcase-frame { aspect-ratio: 4/5; max-width: 460px; }
  .svc-grid { grid-template-columns: repeat(6, 1fr); }
  .svc-card.big   { grid-column: span 6; }
  .svc-card.small { grid-column: span 6; }
  .svc-card.wide  { grid-column: span 6; grid-template-columns: 1fr; }
  .cam-specs { grid-template-columns: repeat(2, 1fr); }
  .engine-stats { grid-template-columns: repeat(2, 1fr); }
  .engine-stat:nth-child(2) { border-right: 0; }
  .storage-stage { grid-template-columns: 1fr; }
  .calc-wrap { grid-template-columns: 1fr; gap: 36px; }
  .calc-side { order: -1; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; --section-y: clamp(72px, 16vw, 120px); }
  .hero { min-height: clamp(520px, 82svh, 700px); }
  .hero-inner { padding: 0 0 36px 16px; }
  .hero-accent { top: 22%; bottom: 14%; }
  .hero-ctas { width: 100%; flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cam-specs { grid-template-columns: 1fr 1fr; }
  .engine-stats { grid-template-columns: 1fr; }
  .engine-stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .engine-stat:last-child { border-bottom: 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { justify-content: flex-start; }
  .foot-bottom .links { width: 100%; }
  .compare { aspect-ratio: 4/5; }
  .compare-before::before, .compare-after::before { font-size: 22px; }
  .sticky-buy { left: 12px; right: 12px; transform: translateX(0) translateY(120%); justify-content: space-between; }
  .sticky-buy.show { transform: translateX(0) translateY(0); }
  .sticky-buy .price { display: none; }
  .mouse-light { display: none; }
  .foot-mega { font-size: 22vw; }
  .calc-out { grid-template-columns: 1fr; }
  .storage-row { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; }
  .calc-card { padding: 22px; border-radius: 18px; }
  .calc-intro h2 { font-size: clamp(28px, 8vw, 40px); }
  .calc-actions .btn { min-width: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-video { display: none; }
  .calc-ambient .orb { animation: none; }
}

/* ---------- TEMPORARY: hide template sections that aren't part of the live page ---------- */
/* Sections with .temp-hidden never render — they're original template scaffolding kept in
   the markup for reference. Remove the class to bring them back. */
.temp-hidden { display: none !important; }

/* ---------- SUBPAGE SHELL ---------- */
body.subpage {
  background: #000;
  color: var(--text);
}
.subpage-head {
  padding: 180px 0 80px;
  background: #000;
  position: relative;
  overflow: hidden;
}
.subpage-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 20% 0%, rgba(255,98,0,.08), transparent 60%),
    radial-gradient(40% 40% at 100% 20%, rgba(255,130,50,.05), transparent 60%);
  pointer-events: none;
}
.subpage-head .container { position: relative; z-index: 1; }

/* Active nav state for subpages */
.nav-links a[aria-current="page"] {
  color: var(--copper);
}
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--copper);
}

/* ============================================================================
   2026 polish pass — global de-italic, tighter mobile rhythm, clearer
   capabilities switching. Appended last so it overrides earlier rules.
   ========================================================================== */

/* (3) Remove ALL italics site-wide — including inline style="font-style:italic". */
em, i, cite, address, .ital, [class*="ital"],
[style*="italic"], [style*="Italic"] { font-style: normal !important; }

/* (4) "Capabilities / Our Services" switcher — pull the changing content up
   under the selectors on tablet/mobile so a tap visibly changes the panel. */
@media (max-width: 980px) {
  .cap-grid { gap: 14px; padding-top: clamp(72px,12vh,110px); padding-bottom: 40px; }
  .cap-intro { margin-bottom: 14px; }
  .cap-pagination { margin-bottom: 14px; }
  .cap-titles { margin-bottom: 14px; }
  .cap-descs { margin-bottom: 16px; }
}
@media (max-width: 560px) {
  .cap-intro { margin-bottom: 8px; }
  .cap-sub { margin-top: 2px; }
  .cap-pagination { margin-bottom: 10px; }
  .cap-titles { min-height: 0; margin-bottom: 10px; }
  .cap-title { font-size: clamp(30px, 8.5vw, 46px); }
  .cap-grid { gap: 12px; }
}

/* (5) Tighter, more compact mobile spacing between sections (desktop untouched). */
@media (max-width: 768px) {
  :root { --section-y: clamp(48px, 11vw, 84px); }
  .section { padding: var(--section-y) 0; }
  .section-head { gap: 18px; margin-bottom: 22px; }
  .svc-grid { gap: 14px; }
  .services-story { padding: clamp(54px,12vw,88px) 0; }
  .services-intro { margin-bottom: 26px; }
  .stats-banner-wrap { padding: 38px 0; gap: 26px; }
  .our-brands { padding: clamp(54px,12vw,88px) 0; }
  .brands-intro { margin-bottom: 26px; }
  .confidence-band { padding: clamp(56px,13vw,96px) 0; }
  footer { padding-top: 52px; }
}

/* ============================================================================
   Premium MOBILE MENU — ONE full-screen translucent panel, centered links,
   CTA tucked just under the last link. No cards / glow / blurred boxes / second
   background layer. (Mobile only; desktop header untouched.)
   ========================================================================== */
@media (max-width: 980px) {
  /* Kill any secondary overlay layer — the panel itself is the only background */
  .nav.nav-open::after { display: none !important; content: none !important; }

  /* Single full-width / full-height glass panel */
  .nav-links {
    position: fixed;
    inset: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    max-height: none; overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 24px;
    background: rgba(10, 8, 14, .86);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
            backdrop-filter: blur(16px) saturate(120%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    opacity: 0; pointer-events: none;
    transition: opacity .32s var(--ease-out);
    z-index: 150;
  }
  .nav.nav-open .nav-links { opacity: 1; pointer-events: auto; }

  /* Centered links with a clean divider hierarchy */
  .nav-links a {
    width: min(320px, 80vw);
    text-align: center;
    font-size: clamp(20px, 5.4vw, 26px);
    font-weight: 600;
    letter-spacing: -.01em;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .nav-links a:last-of-type { border-bottom: 0; }

  /* Remove ALL contact details (phone / email) from the menu */
  .nav-contact { display: none !important; }

  /* CTA tucked just beneath the centered links, balanced gap, inside the panel */
  .nav-cta {
    position: fixed;
    left: 50%; right: auto; bottom: auto;
    top: 50%;
    width: min(320px, 80vw);
    padding: 15px 22px;
    font-size: 15px;
    border-radius: 999px;
    z-index: 160;
    opacity: 0; pointer-events: none;
    transform: translate(-50%, calc(50% + 132px));
    transition: opacity .32s var(--ease-out) .04s, transform .42s var(--ease-out) .04s;
  }
  .nav.nav-open .nav-cta {
    opacity: 1; pointer-events: auto;
    transform: translate(-50%, calc(50% + 118px));
  }
}

/* ============================================================================
   TYPOGRAPHY CONSISTENCY — single Poppins design language.
   The decorative serif/italic accent words used to render in a lighter serif;
   now they inherit the surrounding heading's family & weight so every heading
   reads as one consistent block. Appended last to override earlier rules.
   ========================================================================== */
.ital,
[class*="ital"],
.hero-title .word.ital,
h1 em, h2 em, h3 em, h4 em, h5 em,
.section-head em, .lede em, .lead em {
  font-family: var(--f-display) !important;
  font-style: normal !important;
  font-weight: inherit !important;
  letter-spacing: inherit;
}

/* ============================================================================
   MOBILE MENU — single clean background. When the drawer is open we hide the
   ambient particle canvas so only the dim/frosted backdrop shows (no busy
   second pattern bleeding through the glass). Mobile only.
   ========================================================================== */
@media (max-width: 980px) {
  body.no-scroll .e4a-net-ambient,
  .nav.nav-open ~ .e4a-net-ambient,
  .nav.nav-open + .e4a-net-ambient { opacity: 0 !important; visibility: hidden; }
}