/* chargeae.com — electric dark theme, GSAP-driven */
:root {
  --green:  #FAC85C;
  --green2: #D99A3A;
  --teal:   #FFF082;
  --bg:     #0A0E14;
  --bg2:    #10151D;
  --panel:  #0a2415;
  --ink:    #EFF3F7;
  --body-c: #9BAAB8;
  --muted:  #6e9480;
  --line:   rgba(250,200,92,.14);
  --line2:  rgba(255,255,255,.10);
  --s1:     rgba(255,255,255,.045);
  --s2:     rgba(255,255,255,.08);
  --s3:     rgba(255,255,255,.10);
  --hair:   rgba(255,255,255,.10);
  --nav-bg: rgba(4,19,10,.85);
  --menu-bg:rgba(4,19,10,.97);
  --accent-ink: #0A0E14;
  color-scheme: dark;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html.lenis { scroll-behavior: auto; }
html, body { overflow-x: clip; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--body-c);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(250,200,92,.3); color: var(--ink); }

/* ── Loader ── */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.loader-inner { text-align: center; }
.loader-bolt { font-size: 44px; animation: bolt-pulse 1s ease-in-out infinite; filter: drop-shadow(0 0 18px rgba(250,200,92,.6)); }
@keyframes bolt-pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.18);opacity:.7} }
.loader-bar { width: 160px; height: 3px; background: var(--hair); border-radius: 3px; margin: 22px auto 0; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--green), var(--teal)); border-radius: 3px; box-shadow: 0 0 12px rgba(250,200,92,.8); }

/* ── Scroll progress ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2.5px; z-index: 9000;
  background: linear-gradient(90deg, var(--green), var(--teal));
  transform-origin: 0 50%; transform: scaleX(0);
  box-shadow: 0 0 10px rgba(250,200,92,.6);
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  background: rgba(4,19,10,.6);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
nav.scrolled { border-bottom-color: var(--line2); background: var(--nav-bg); }
nav .container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 70px; }
nav .brand { grid-column: 1; justify-self: start; }
nav .links { grid-column: 2; justify-self: center; }
nav .container > .nav-cta { grid-column: 3; justify-self: end; margin-left: 0 !important; }
nav .hamburger { grid-column: 3; justify-self: end; }
nav .links a:first-child { margin-left: 0; }

/* tablet: tighten the centered menu so it never crowds the logo/CTA */
@media (max-width: 1020px) and (min-width: 821px) {
  nav .links a { margin-left: 16px; font-size: 13px; }
  .brand img.brand-logo { height: 33px; }
  nav .container > .nav-cta { padding: 8px 14px; font-size: 12px !important; }
}
/* below 820px the menu collapses into the hamburger */

.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700; text-decoration: none;
  display: flex; align-items: center; gap: 10px; color: var(--ink);
}
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 0 16px rgba(250,200,92,.25); }
.brand .accent { color: var(--green); }
.brand img.brand-logo {
  width: auto; height: 37px; border-radius: 0; box-shadow: none;
  filter: drop-shadow(0 0 14px rgba(250,200,92,.12));
}
footer .brand img.brand-logo { height: 56px; }
@media (max-width: 700px) { .brand img.brand-logo { height: 32px; } footer .brand img.brand-logo { height: 48px; } }
nav .links { display: flex; align-items: center; }
nav .links a {
  color: var(--body-c); text-decoration: none; font-size: 14px; font-weight: 600;
  margin-left: 30px; transition: color .2s; letter-spacing: -.01em;
}
nav .links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  background: rgba(250,200,92,.1); color: var(--green) !important;
  border: 1px solid rgba(250,200,92,.35);
  padding: 9px 18px; border-radius: 999px; font-size: 13px !important;
  font-weight: 700 !important; margin-left: 22px !important;
  transition: background .25s, box-shadow .25s, border-color .25s !important;
}
.nav-cta:hover { background: rgba(250,200,92,.18); box-shadow: 0 0 24px rgba(250,200,92,.25); border-color: rgba(250,200,92,.6); }
.nav-cta-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 110px 0 70px;
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(250,200,92,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,200,92,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 75%);
}
.hero-aurora {
  position: absolute; inset: -40% -30%; z-index: 0; pointer-events: none;
  background:
    /* gold ambient — dominant, painted on top */
    radial-gradient(ellipse 42% 36% at 22% 28%, rgba(250,200,92,.16), transparent 60%),
    radial-gradient(ellipse 36% 30% at 80% 22%, rgba(250,200,92,.1), transparent 60%),
    radial-gradient(ellipse 50% 40% at 65% 80%, rgba(217,154,58,.12), transparent 60%),
    /* UAE flag colours (official — red #C8102E, green #00843D), spread + drifting; black is the ground */
    radial-gradient(ellipse 34% 68% at 8% 44%, rgba(200,16,46,.36), transparent 60%),
    radial-gradient(ellipse 32% 54% at 74% 62%, rgba(200,16,46,.22), transparent 62%),
    radial-gradient(ellipse 48% 38% at 22% 12%, rgba(0,132,61,.46), transparent 62%),
    radial-gradient(ellipse 46% 36% at 90% 24%, rgba(0,132,61,.38), transparent 62%),
    radial-gradient(ellipse 50% 40% at 14% 90%, rgba(0,132,61,.38), transparent 62%),
    radial-gradient(ellipse 44% 34% at 52% 48%, rgba(0,132,61,.26), transparent 64%);
  filter: blur(8px);
  animation: aurora-drift 34s ease-in-out infinite;
}
@keyframes aurora-drift {
  0%,100% { transform: translate3d(-5%,-3%,0) rotate(-5deg) scale(1.06); }
  33%     { transform: translate3d(5%,2%,0) rotate(4deg) scale(1.14); }
  66%     { transform: translate3d(2%,6%,0) rotate(-2deg) scale(1.08); }
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-inner { display: flex; align-items: center; gap: 48px; }
.hero-text { flex: 1; min-width: 0; }

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4.6vw, 62px); font-weight: 700;
  letter-spacing: -.035em; line-height: 1.04; margin-bottom: 24px;
  color: var(--ink);
}
.h1-line { display: block; overflow: hidden; padding-bottom: .08em; }
.h1-word { display: inline-block; will-change: transform; }
.h1-word.accent {
  /* Symmetric gradient: identical colour at 0% and 100% so the tiled
     background loops with no visible seam. A bright band in the centre
     reads as a moving glint of light rather than a colour scroll. */
  background: linear-gradient(100deg,
    #C68C30 0%, var(--green) 22%, var(--teal) 40%,
    #FFF4D6 50%, var(--teal) 60%, var(--green) 78%, #C68C30 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 9s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes shimmer { from { background-position: 110% 0; } to { background-position: -110% 0; } }

.hero-sub { font-size: 18px; color: var(--body-c); max-width: 470px; margin: 0 0 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-meta { display: flex; align-items: center; gap: 18px; margin-top: 42px; }
.hero-meta-item { font-size: 13px; color: var(--muted); font-weight: 500; }
.hero-meta-item strong { color: var(--ink); font-weight: 800; font-size: 15px; margin-right: 4px; }
.hero-meta-sep { width: 1px; height: 22px; background: var(--line2); }

/* Hero visual */
.hero-visual {
  flex: 1.05; min-width: 0; position: relative;
  display: flex; align-items: center; justify-content: center;
  transform-style: preserve-3d; perspective: 900px;
}
.hero-img { width: 100%; max-width: 560px; height: auto; display: block; position: relative; z-index: 1; }
.hero-img-glow {
  position: absolute; inset: 8%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(250,200,92,.22), rgba(250,200,92,.06) 55%, transparent 72%);
  filter: blur(30px);
  animation: glow-breathe 5s ease-in-out infinite;
}
@keyframes glow-breathe { 0%,100%{opacity:.8;transform:scale(1)} 50%{opacity:1;transform:scale(1.07)} }

.hero-chip {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  background: rgba(14,17,24,.80);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 14px; padding: 10px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45), inset 0 1px 0 var(--s2);
}
.hero-chip .chip-ico { font-size: 18px; filter: drop-shadow(0 0 8px rgba(250,200,92,.5)); }
.hero-chip strong { display: block; color: var(--ink); font-size: 12.5px; font-weight: 800; letter-spacing: -.01em; line-height: 1.3; }
.hero-chip em { display: block; color: var(--muted); font-size: 11px; font-style: normal; line-height: 1.3; }
.chip-1 { top: 8%; right: 2%; }
.chip-2 { top: 38%; left: -3%; }
.chip-3 { bottom: 10%; right: 8%; }

.hero-scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1.5px solid rgba(255,255,255,.18); border-radius: 13px;
  z-index: 3;
}
.hero-scroll-hint span {
  position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; margin-left: -1.5px;
  background: var(--green); border-radius: 3px; box-shadow: 0 0 8px var(--green);
  animation: scroll-hint 1.8s ease-in-out infinite;
}
@keyframes scroll-hint { 0%{transform:translateY(0);opacity:1} 70%{transform:translateY(12px);opacity:0} 100%{opacity:0} }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 34px; border-radius: 999px;
  font-weight: 700; font-size: 15px; text-decoration: none; white-space: nowrap;
  flex: 0 0 auto;
  position: relative; overflow: hidden; letter-spacing: -.01em;
  transition: box-shadow .25s, border-color .25s, background .25s, color .25s;
  will-change: transform;
}
.btn span { white-space: nowrap; }
.btn span { position: relative; z-index: 1; display: inline-block; }
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  color: #1A1205;
  box-shadow: 0 6px 28px rgba(250,200,92,.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { box-shadow: 0 10px 44px rgba(250,200,92,.55), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-ghost {
  background: var(--s1); color: var(--ink);
  border: 1px solid rgba(255,255,255,.14);
}
.btn-ghost:hover { border-color: rgba(250,200,92,.5); background: rgba(250,200,92,.07); }
.btn-green {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #1A1205; font-weight: 800;
  box-shadow: 0 6px 28px rgba(250,200,92,.4);
}
.btn-green:hover { box-shadow: 0 12px 48px rgba(250,200,92,.6); }
.btn-outline-light { color: #fff; border: 1.5px solid rgba(255,255,255,.22); background: transparent; }
.btn-outline-light:hover { border-color: rgba(255,255,255,.5); background: var(--s2); }

.btn-primary::after, .btn-green::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .55s ease;
}
.btn-primary:hover::after, .btn-green:hover::after { left: 140%; }

/* ── Marquee ── */
.marquee-strip {
  background: rgba(250,200,92,.04);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 17px 0; overflow: hidden; position: relative; z-index: 2;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 30px; white-space: nowrap;
  font-size: 12.5px; font-weight: 700; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase;
}
.marquee-item .bolt { color: var(--green); font-size: 13px; text-shadow: 0 0 10px rgba(250,200,92,.7); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Stats ── */
.stats-strip { background: var(--bg2); border-bottom: 1px solid var(--line2); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); text-align: center; }
.stat-item { padding: 12px 24px; position: relative; }
.stat-item + .stat-item::before {
  content: ""; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--line2);
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 46px; font-weight: 700; letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px; display: block;
  filter: drop-shadow(0 0 20px rgba(250,200,92,.25));
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .02em; }

/* ── Sections ── */
section { padding: 120px 0; position: relative; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green); margin-bottom: 18px;
}
.section-eyebrow::before { content: ""; display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px; box-shadow: 0 0 8px rgba(250,200,92,.7); }
h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4.2vw, 50px); font-weight: 700;
  letter-spacing: -.03em; line-height: 1.08; margin-bottom: 18px; color: var(--ink);
}
.lede { color: var(--body-c); font-size: 17px; max-width: 580px; margin-bottom: 56px; line-height: 1.8; }

/* Big scroll-fill statement */
.why-section { padding-bottom: 60px; }
.why-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 70px; align-items: center; }
.why-copy .lede { margin-bottom: 0; max-width: 560px; }
.big-statement {
  font-size: clamp(30px, 4.6vw, 56px); max-width: 880px;
  margin-bottom: 32px;
}
.big-statement .ws { color: rgba(234,255,242,.16); transition: none; }

/* Coverage panel (right column) */
.why-visual { position: relative; }
.why-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line2); border-radius: 24px;
  padding: 32px 30px;
  background: linear-gradient(165deg, var(--bg2), var(--bg));
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.7);
}
.why-card-glow {
  position: absolute; top: -35%; right: -25%; width: 75%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(250,200,92,.16), transparent 62%);
  filter: blur(14px); pointer-events: none;
}
.why-card-eyebrow {
  position: relative; display: flex; align-items: center; gap: 11px;
  font-family: 'Space Grotesk', sans-serif; font-size: 11.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--green);
  margin-bottom: 22px;
}
.why-card-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--green); }
.why-ops { position: relative; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.why-ops span {
  font-family: 'Space Grotesk', sans-serif; font-size: 12.5px; font-weight: 600;
  color: var(--ink); padding: 8px 14px; border-radius: 999px;
  background: var(--s1); border: 1px solid var(--line2);
  transition: border-color .3s, background .3s;
}
.why-ops span:hover { border-color: var(--line); background: rgba(250,200,92,.07); }
.why-ops span:last-child { color: var(--green); }
.why-spec { position: relative; list-style: none; margin-top: 24px; }
.why-spec li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 15px 0; border-top: 1px solid var(--line2); font-size: 14px;
}
.why-spec li span { color: var(--body-c); letter-spacing: .01em; }
.why-spec li b {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--ink); letter-spacing: -.01em;
}
.why-spec li:last-child b {
  background: linear-gradient(100deg, var(--teal), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-copy .lede { max-width: none; }
  .why-visual { max-width: 460px; }
}

/* ── Cards ── */
.features-section { padding-top: 80px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 18px; }
.card {
  background: linear-gradient(165deg, var(--s1), var(--s1));
  border: 1px solid var(--line2);
  border-radius: 22px; padding: 34px;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color .3s, background .3s;
  will-change: transform;
}
.card-glow {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,50%), rgba(250,200,92,.13), transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.card:hover .card-glow { opacity: 1; }
.card:hover { border-color: rgba(250,200,92,.35); }
.card-icon {
  width: 52px; height: 52px; border-radius: 15px;
  background: rgba(250,200,92,.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 22px;
  border: 1px solid rgba(250,200,92,.2);
  box-shadow: 0 0 24px rgba(250,200,92,.12) inset;
  transition: transform .3s, box-shadow .3s;
}
.card:hover .card-icon { transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 30px rgba(250,200,92,.3) inset, 0 0 20px rgba(250,200,92,.2); }
.card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--ink); letter-spacing: -.01em; }
.card p { color: var(--muted); font-size: 14.5px; line-height: 1.75; }

/* ── Steps ── */
.steps-section { background: var(--bg2); border-top: 1px solid var(--line2); border-bottom: 1px solid var(--line2); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.step {
  background: linear-gradient(165deg, var(--s1), var(--s1));
  border-radius: 22px; padding: 36px;
  border: 1px solid var(--line2);
  transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .3s;
  position: relative; overflow: hidden;
}
.step::after {
  content: attr(data-num);
  position: absolute; right: -6px; bottom: -22px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 120px; font-weight: 700; line-height: 1;
  color: rgba(250,200,92,.06); letter-spacing: -.04em;
  pointer-events: none; user-select: none;
}
.step:hover { transform: translateY(-8px); border-color: rgba(250,200,92,.3); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #1A1205; font-weight: 900; font-size: 17px;
  margin-bottom: 22px; box-shadow: 0 6px 22px rgba(250,200,92,.4);
  transition: transform .3s;
}
.step:hover .step-num { transform: scale(1.12) rotate(-6deg); }
.step h3 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.step p { color: var(--muted); font-size: 14.5px; line-height: 1.75; }
.step-line { position: absolute; top: 56px; right: -18px; width: 36px; height: 2px; background: linear-gradient(90deg, rgba(250,200,92,.5), transparent); display: none; }
@media (min-width: 980px) { .step-line { display: block; } }

/* ── Screenshots ── */
.shots-section { overflow: hidden; }
.shots-section .lede { margin-bottom: 30px; }
.shots-rail-wrap { overflow: visible; padding: 20px 0 10px; }
.shots-rail {
  display: flex; gap: 26px; width: max-content;
  padding: 0 max(28px, calc((100vw - 1120px) / 2 + 28px));
}
.shot { margin: 0; flex: 0 0 auto; width: min(270px, 64vw); }
.shot img {
  width: 100%; height: auto; display: block; border-radius: 28px;
  border: 1px solid var(--s3);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(0,0,0,.4);
}
.shot figcaption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 16px; font-weight: 600; }

/* ── CTA ── */
.cta-section { padding-bottom: 130px; }
.cta-band {
  background:
    radial-gradient(ellipse 70% 100% at 50% 115%, rgba(250,200,92,.22), transparent 60%),
    linear-gradient(165deg, #0b2616, #0A0E14);
  border: 1px solid var(--line);
  border-radius: 30px; padding: 96px 48px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
}
.cta-glow {
  position: absolute; top: 0; left: 0; width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(250,200,92,.16), transparent 70%);
  pointer-events: none; margin: -220px 0 0 -220px;
  opacity: 0;
}
.cta-rings { position: absolute; inset: 0; pointer-events: none; }
.cta-rings i {
  position: absolute; left: 50%; top: 50%; border-radius: 50%;
  border: 1px solid rgba(250,200,92,.12);
  transform: translate(-50%, -50%);
  animation: ring-pulse 5s ease-out infinite;
}
.cta-rings i:nth-child(1) { width: 380px; height: 380px; }
.cta-rings i:nth-child(2) { width: 560px; height: 560px; animation-delay: 1.6s; }
.cta-rings i:nth-child(3) { width: 760px; height: 760px; animation-delay: 3.2s; }
@keyframes ring-pulse { 0%{opacity:0;} 30%{opacity:1;} 100%{opacity:0; transform: translate(-50%,-50%) scale(1.12);} }
.cta-band h2 { color: #fff; position: relative; font-size: clamp(34px, 4.8vw, 58px); }
.cta-band .lede { color: rgba(234,255,242,.55); position: relative; margin: 0 auto 44px; max-width: 470px; }
.cta-band .hero-actions { position: relative; justify-content: center; }

/* ── Homepage web-map promo ── */
.webmap-section { padding: 40px 0 100px; }
.webmap-band {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center;
  border: 1px solid var(--line); border-radius: 28px; padding: 52px 48px;
  background:
    radial-gradient(ellipse 55% 100% at 100% 0%, rgba(250,200,92,.10), transparent 55%),
    linear-gradient(160deg, rgba(250,200,92,.06), var(--s1));
}
.webmap-text .section-eyebrow { margin-bottom: 14px; }
.webmap-text h2 { margin-bottom: 14px; }
.webmap-text .lede { margin-bottom: 24px; max-width: 460px; }
.webmap-points { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.webmap-point { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--body-c); background: var(--s1); border: 1px solid var(--line2); padding: 8px 14px; border-radius: 999px; }
.webmap-point .wp-ico { color: var(--green); }
/* Browser-window frame wrapping a live mini-map (replaces the old screenshot) */
.webmap-visual {
  position: relative; display: block; text-decoration: none;
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line2);
  background: var(--s1); box-shadow: 0 30px 70px -34px rgba(0,0,0,.65);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s;
}
.webmap-visual:hover { transform: translateY(-4px); box-shadow: 0 44px 96px -34px rgba(0,0,0,.72); }
.bf-bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: var(--bg); border-bottom: 1px solid var(--line2); }
.bf-dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.bf-dot:nth-child(1) { background: #e0625a; }
.bf-dot:nth-child(2) { background: #d8a544; }
.bf-dot:nth-child(3) { background: #57a86b; }
.bf-url { margin-left: 6px; flex: 1; display: flex; align-items: center; gap: 8px; background: var(--s1); border: 1px solid var(--line2); border-radius: 8px; padding: 6px 12px; font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .01em; }
.bf-url svg { width: 12px; height: 12px; color: var(--green); flex: none; }
.bf-viewport { position: relative; aspect-ratio: 16 / 11; background: var(--bg); }
#webmapMini { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
#webmapMini .leaflet-tile-pane { filter: saturate(.7) brightness(1.02) contrast(.97); }
#webmapMini .leaflet-control-container, #webmapMini .leaflet-control-attribution { display: none; }
.webmap-visual .bf-badge { position: absolute; left: 14px; bottom: 14px; z-index: 500; display: inline-flex; align-items: center; gap: 8px; background: rgba(10,14,20,.82); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid var(--line2); border-radius: 999px; padding: 7px 14px; font-size: 12.5px; font-weight: 700; color: var(--body-c); pointer-events: none; }
.bf-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #00C853; box-shadow: 0 0 0 0 rgba(0,200,83,.6); animation: bfPulse 1.8s infinite; }
@keyframes bfPulse { 0% { box-shadow: 0 0 0 0 rgba(0,200,83,.55); } 70% { box-shadow: 0 0 0 7px rgba(0,200,83,0); } 100% { box-shadow: 0 0 0 0 rgba(0,200,83,0); } }
/* mini-map markers — identical to charger-map.html */
#webmapMini .cm-pin { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid #00C853; display: flex; align-items: center; justify-content: center; color: #00C853; box-shadow: 0 2px 5px rgba(0,0,0,.35); }
#webmapMini .cm-pin svg { width: 11px; height: 11px; display: block; }
#webmapMini .cm-pin.cm-ac { border-color: #00BCD4; color: #00BCD4; }
#webmapMini .cm-pin.cm-dc { border-color: #00C853; color: #00C853; }
#webmapMini .leaflet-div-icon.cm-wrap { background: transparent; border: 0; }
@media (max-width: 780px) {
  .webmap-band { grid-template-columns: 1fr; gap: 30px; padding: 40px 26px; }
  .webmap-visual { order: -1; }
  .bf-viewport { aspect-ratio: 16 / 12; }
  .webmap-text .lede { max-width: none; }
}

/* ── Submit-a-Charger section ── */
.submit-section { padding: 40px 0 120px; }
.submit-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 28px;
  background:
    radial-gradient(ellipse 60% 120% at 100% 0%, rgba(250,200,92,.10), transparent 55%),
    linear-gradient(165deg, rgba(250,200,92,.06), var(--s1));
  padding: 60px 56px;
}
.submit-band-glow {
  position: absolute; top: -40%; right: -10%; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(250,200,92,.16), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.submit-band-text { position: relative; max-width: 620px; }
.submit-band h2 { margin-bottom: 16px; }
.submit-band .lede { margin-bottom: 26px; }
.submit-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 32px; }
.submit-point { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--body-c); }
.submit-point .sp-bolt { color: var(--green); font-size: 13px; filter: drop-shadow(0 0 6px rgba(250,200,92,.6)); }

@media (max-width: 700px) {
  .submit-section { padding: 20px 0 84px; }
  .submit-band { padding: 44px 26px; border-radius: 22px; }
  .submit-band .hero-actions .btn { width: 100%; max-width: 320px; }
}

/* ── WhatsApp community band ── */
.comm-section { padding: 0 0 110px; }
.comm-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 28px;
  background:
    radial-gradient(ellipse 70% 130% at 0% 100%, rgba(250,200,92,.09), transparent 58%),
    linear-gradient(200deg, rgba(250,200,92,.05), var(--s1));
  padding: 60px 56px;
}
.comm-band-text { position: relative; max-width: 640px; }
.comm-band h2 { margin-bottom: 16px; }
.comm-band .lede { margin-bottom: 26px; }
.comm-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 32px; }
.comm-point { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--body-c); }
.comm-point .sp-bolt { color: var(--green); font-size: 13px; filter: drop-shadow(0 0 6px rgba(250,200,92,.6)); }
/* Brand glyph sits as a watermark — WhatsApp green (#25D366) is close enough to
   --green (#FAC85C) to read as a mistake if used at full strength beside it. */
.comm-mark {
  position: absolute; right: 46px; bottom: -34px; width: 230px; height: 230px;
  fill: var(--green); opacity: .06; pointer-events: none;
}

@media (max-width: 700px) {
  .comm-section { padding: 0 0 78px; }
  .comm-band { padding: 44px 26px; border-radius: 22px; }
  .comm-band .hero-actions .btn { width: 100%; max-width: 320px; }
  .comm-mark { width: 158px; height: 158px; right: -26px; bottom: -40px; opacity: .05; }
}

/* ── Floating WhatsApp community launcher (injected by community-widget.js) ──
   z-index sits below the mobile menu (960+) and the Submit-a-Charger modal
   (1000) on purpose — those must always win. It is also hidden outright while
   the mobile menu is open, so it never floats over the nav panel. */
.cpk-fab-wrap { position: fixed; right: 20px; bottom: 20px; z-index: 700; }
.cpk-fab {
  position: relative; display: grid; place-items: center;
  width: 54px; height: 54px; padding: 0; border: none; border-radius: 50%;
  background: linear-gradient(145deg, #FAC85C, #E0A93E); cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 1px rgba(250,200,92,.35), 0 0 18px rgba(250,200,92,.28);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s ease;
}
.cpk-fab:hover { transform: scale(1.07); box-shadow: 0 10px 30px rgba(0,0,0,.46), 0 0 0 1px rgba(250,200,92,.5), 0 0 26px rgba(250,200,92,.42); }
.cpk-fab:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.cpk-fab-ico { width: 27px; height: 27px; fill: #0A0E14; transition: opacity .18s ease, transform .18s ease; }
/* Glyph morphs to an X while the panel is open. */
.cpk-fab-x { position: absolute; width: 17px; height: 17px; opacity: 0; transition: opacity .18s ease, transform .18s ease; }
.cpk-fab-x::before, .cpk-fab-x::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 2.2px;
  background: #0A0E14; border-radius: 2px;
}
.cpk-fab-x::before { transform: rotate(45deg); }
.cpk-fab-x::after  { transform: rotate(-45deg); }
.cpk-fab-wrap.on .cpk-fab-ico { opacity: 0; transform: scale(.6); }
.cpk-fab-wrap.on .cpk-fab-x   { opacity: 1; }
.cpk-fab-wrap.on .cpk-fab     { transform: rotate(90deg); }

.cpk-pop {
  position: absolute; right: 0; bottom: 68px; width: 296px;
  padding: 20px 20px 18px; border-radius: 18px;
  border: 1px solid rgba(250,200,92,.24);
  background: linear-gradient(168deg, #0b2a18, #061a0e 72%);
  box-shadow: 0 20px 50px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.3);
  opacity: 0; transform: translateY(10px) scale(.97); transform-origin: 100% 100%;
  transition: opacity .2s ease, transform .2s cubic-bezier(.34,1.4,.64,1);
}
.cpk-fab-wrap.shown .cpk-pop { opacity: 1; transform: none; }
.cpk-pop[hidden] { display: none; }
.cpk-pop-x {
  position: absolute; top: 8px; right: 10px; width: 26px; height: 26px; padding: 0;
  background: none; border: none; color: var(--muted); font-size: 21px; line-height: 1;
  cursor: pointer; border-radius: 6px; transition: color .18s ease;
}
.cpk-pop-x:hover { color: var(--ink); }
.cpk-pop-head { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.cpk-pop-ico { width: 19px; height: 19px; fill: var(--green); flex: 0 0 19px; }
.cpk-pop-head b { color: var(--ink); font-size: 15px; letter-spacing: -.01em; }
.cpk-pop-txt { margin: 0 0 15px; color: var(--body-c); font-size: 13.5px; line-height: 1.6; }
.cpk-qr { margin: 0 0 13px; text-align: center; }
.cpk-qr img {
  display: block; width: 100%; max-width: 190px; height: auto; margin: 0 auto 8px;
  border-radius: 10px; background: #fff; padding: 9px;
  /* QRs must stay crisp — never let the browser smooth the modules. */
  image-rendering: pixelated;
}
.cpk-qr figcaption { color: var(--muted); font-size: 11.5px; font-weight: 600; letter-spacing: .01em; }
.cpk-pop-btn {
  display: block; text-align: center; text-decoration: none;
  padding: 11px 14px; border-radius: 11px;
  background: var(--green); color: #0A0E14; font-size: 14px; font-weight: 700;
  transition: filter .18s ease, transform .18s ease;
}
.cpk-pop-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* The mobile nav takeover and the charger modal both own the screen. */
html.cpk-menu-open .cpk-fab-wrap { display: none; }

@media (max-width: 700px) {
  .cpk-fab-wrap { right: 15px; bottom: 15px; }
  .cpk-fab { width: 50px; height: 50px; }
  .cpk-fab-ico { width: 25px; height: 25px; }
  .cpk-pop { width: min(292px, calc(100vw - 30px)); bottom: 63px; }
  /* You cannot scan the screen you are holding — lead with the button instead. */
  .cpk-qr { display: none; }
  .cpk-pop-txt { margin-bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .cpk-fab, .cpk-pop, .cpk-fab-ico, .cpk-fab-x, .cpk-pop-btn { transition: none; }
  .cpk-fab-wrap.on .cpk-fab { transform: none; }
}

/* ── Support-page community callout ── */
.sup-comm {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px; margin: 0 0 34px;
  border: 1px solid rgba(250,200,92,.28); border-radius: 16px;
  background: linear-gradient(150deg, rgba(250,200,92,.09), rgba(250,200,92,.03));
  text-decoration: none; color: inherit;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.sup-comm:hover { border-color: rgba(250,200,92,.55); transform: translateY(-2px); }
.sup-comm-ico { flex: 0 0 26px; width: 26px; height: 26px; fill: var(--green); margin-top: 2px; }
.sup-comm-txt { display: block; font-size: 14.5px; line-height: 1.65; color: var(--body-c); }
.sup-comm-txt b { display: block; color: var(--ink); font-size: 16px; margin-bottom: 4px; letter-spacing: -.01em; }
.sup-comm-go { margin-left: auto; align-self: center; color: var(--green); font-size: 19px; font-weight: 700; }
@media (max-width: 700px) {
  .sup-comm { padding: 18px; gap: 13px; }
  .sup-comm-go { display: none; }
}

/* ── Submit-a-Charger modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(2,8,5,.74);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 56px 20px; overflow-y: auto;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-overlay, .modal-overlay * { cursor: auto; }
.modal {
  position: relative; width: 100%; max-width: 660px;
  background: linear-gradient(168deg, #0a2415, #061a0d);
  border: 1px solid var(--line); border-radius: 26px;
  padding: 40px; margin: auto;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
  transform: translateY(24px) scale(.985);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.modal-overlay.open .modal { transform: none; }
.modal-close {
  position: absolute; top: 18px; right: 20px;
  background: var(--s2); border: 1px solid var(--line2);
  color: var(--body-c); width: 38px; height: 38px; border-radius: 50%;
  font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.modal-close:hover { background: rgba(250,200,92,.12); color: var(--ink); border-color: rgba(250,200,92,.4); }

.modal-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.modal h3 { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; margin-bottom: 8px; }
.modal-sub { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 26px; }
.req-star { color: var(--green); }
.opt { color: var(--muted); font-weight: 500; font-size: .92em; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.span-2 { grid-column: 1 / -1; }
.field > span { font-size: 13px; font-weight: 600; color: var(--body-c); }
.field input, .field select {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  background: var(--s1); border: 1px solid var(--line2);
  color: var(--ink); font-size: 14.5px; font-family: inherit;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input::placeholder { color: #5b7766; }
.field input:focus, .field select:focus {
  outline: none; border-color: rgba(250,200,92,.55);
  background: rgba(250,200,92,.05); box-shadow: 0 0 0 3px rgba(250,200,92,.12);
}
.field select { cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 19px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.field select option { background: #0a2415; color: var(--ink); }
.file-field input[type=file] { cursor: pointer; padding: 10px 14px; color: var(--body-c); font-size: 13.5px; }
.file-field input[type=file]::file-selector-button {
  margin-right: 12px; padding: 8px 14px; border-radius: 9px; cursor: pointer;
  background: rgba(250,200,92,.12); border: 1px solid rgba(250,200,92,.3); color: var(--green);
  font-family: inherit; font-weight: 700; font-size: 13px;
}
.form-submit { width: 100%; margin-top: 24px; justify-content: center; cursor: pointer; border: none; font-family: inherit; }
.form-submit:disabled { opacity: .7; cursor: progress; }
.form-note { text-align: center; color: var(--muted); font-size: 12px; margin-top: 14px; line-height: 1.5; }

.modal-success { text-align: center; padding: 24px 8px 8px; }
.success-ring {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; color: #1A1205; font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 10px 36px rgba(250,200,92,.45);
}
.modal-success h3 { margin-bottom: 10px; }
.modal-success p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 380px; margin: 0 auto 26px; }
.modal-success .btn { cursor: pointer; }

@media (max-width: 560px) {
  .modal { padding: 32px 22px; border-radius: 22px; }
  .modal h3 { font-size: 23px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .modal-overlay { padding: 24px 14px; }
}

/* ── SEO content section ── */
.seo-content { padding: 40px 0 96px; }
.seo-prose { max-width: 760px; }
.seo-prose p { color: var(--body-c); font-size: 16px; line-height: 1.85; margin-bottom: 20px; }
.seo-prose a { color: var(--green); text-decoration: none; font-weight: 600; transition: color .2s; }
.seo-prose a:hover { color: var(--teal); }
.seo-prose a strong { color: inherit; }
.seo-prose strong { color: var(--ink); font-weight: 600; }
.seo-prose h3 {
  font-family: 'Space Grotesk', sans-serif; color: var(--ink);
  font-size: 21px; font-weight: 700; letter-spacing: -.01em;
  margin: 34px 0 12px;
}
.seo-cities { list-style: none; padding: 0; margin: 0 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.seo-cities li { position: relative; padding-left: 22px; color: var(--body-c); font-size: 15px; line-height: 1.6; }
.seo-cities li::before { content: "⚡"; position: absolute; left: 0; color: var(--green); font-size: 12px; top: 3px; }
.seo-cities strong { color: var(--ink); }
.seo-guide-link { margin-top: 8px; }
.seo-guide-link a { color: var(--green); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(250,200,92,.35); padding-bottom: 2px; transition: border-color .2s; }
.seo-guide-link a:hover { border-color: var(--green); }

/* ── FAQ section ── */
.faq-section { background: var(--bg2); border-top: 1px solid var(--line2); padding: 96px 0; }
.faq-list { max-width: 780px; margin-top: 8px; }
.faq-item {
  border: 1px solid var(--line2); border-radius: 16px;
  background: var(--s1); margin-bottom: 12px;
  padding: 0 24px; transition: border-color .25s, background .25s;
}
.faq-item[open] { border-color: rgba(250,200,92,.28); background: rgba(250,200,92,.03); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--ink); position: relative; padding-right: 40px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--green); transition: transform .3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--body-c); font-size: 15px; line-height: 1.8; padding: 0 0 22px; margin: 0; }
@media (hover: hover) { .faq-item summary:hover { color: var(--green); } }
@media (max-width: 560px) { .seo-cities { grid-template-columns: 1fr; } }

/* ── Blog index ── */
.blog-wrap { padding-top: 128px; padding-bottom: 60px; }
.blog-hero { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.blog-hero .section-eyebrow { justify-content: center; }
.blog-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(34px, 5vw, 52px); font-weight: 700; letter-spacing: -.03em; color: var(--ink); margin-bottom: 14px; }
.blog-hero p { color: var(--body-c); font-size: 18px; line-height: 1.7; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.blog-card {
  display: flex; flex-direction: column; text-decoration: none;
  background: linear-gradient(165deg, var(--s1), var(--s1));
  border: 1px solid var(--line2); border-radius: 20px; padding: 30px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .3s;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(250,200,92,.32); }
.blog-cat { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.blog-card h2 { font-family: 'Space Grotesk', sans-serif; font-size: 21px; font-weight: 700; color: var(--ink); line-height: 1.28; letter-spacing: -.01em; margin-bottom: 12px; }
.blog-card p { color: var(--muted); font-size: 14.5px; line-height: 1.7; flex: 1; margin: 0; }
.blog-card .blog-meta { color: var(--muted); font-size: 12.5px; margin-top: 16px; }
.blog-card .read { color: var(--green); font-weight: 700; font-size: 14px; margin-top: 6px; }
.guide .article-meta { color: var(--muted); font-size: 13px; margin-bottom: 26px; }
.guide-related { border-top: 1px solid var(--line2); margin-top: 44px; padding-top: 28px; }
.guide-related h3 { margin-top: 0; }

/* featured hero image on articles */
.guide-hero { width: 100%; aspect-ratio: 708 / 443; object-fit: cover; border-radius: 20px; display: block; margin: 4px 0 34px; border: 1px solid var(--line2); }
.guide-figure { margin: 32px 0; }
.guide-figure img { width: 100%; height: auto; display: block; border-radius: 16px; border: 1px solid var(--line2); }
.guide-figure figcaption { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 12px; font-weight: 500; line-height: 1.5; }
.guide-figure--hero { margin: 6px 0 36px; }
.guide-figure--hero img { border-radius: 20px; }

/* ── Blog post floating sidebar ── */
.guide-layout { padding-top: 128px; }
.guide-layout > .guide { padding-top: 0; }
.guide-sidebar { display: none; }
@media (min-width: 1040px) {
  .guide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 56px;
    align-items: start;
  }
  .guide-layout > .guide { max-width: none; }
  .guide-sidebar {
    display: flex; flex-direction: column; gap: 16px;
    position: sticky; top: 94px;
    max-height: calc(100vh - 110px); overflow-y: auto;
    scrollbar-width: thin;
  }
}
.gs-module { border: 1px solid var(--line2); border-radius: 16px; background: var(--s1); padding: 18px; }
.gs-title { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin: 0 0 12px; }
.gs-toc-list { list-style: none; margin: 0; padding: 0; }
.gs-toc-list a { display: block; color: var(--body-c); text-decoration: none; font-size: 13.5px; line-height: 1.4; padding: 6px 0 6px 13px; border-left: 2px solid transparent; transition: color .15s, border-color .15s; }
.gs-toc-list a:hover { color: var(--ink); }
.gs-toc-list a.active { color: var(--green); border-left-color: var(--green); font-weight: 600; }
.gs-link { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 600; padding: 10px 0; border-bottom: 1px solid var(--line2); }
.gs-module .gs-link:last-child { border-bottom: none; padding-bottom: 0; }
.gs-link .gs-txt { flex: 1; }
.gs-link .gs-arrow { color: var(--muted); transition: transform .15s, color .15s; }
.gs-link:hover { color: var(--green); }
.gs-link:hover .gs-arrow { transform: translateX(3px); color: var(--green); }
.gs-app-sub { color: var(--muted); font-size: 12.5px; margin: -2px 0 13px; line-height: 1.45; }
.gs-stores { display: flex; flex-direction: row; gap: 9px; }
.gs-stores a { flex: 1; display: block; line-height: 0; }
.gs-stores img { width: 100%; height: auto; display: block; }
.gs-share { display: flex; align-items: center; gap: 8px; padding: 2px 2px 0; }
.gs-share .gs-share-lbl { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-right: 2px; }
.gs-share a, .gs-share button { width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line2); background: var(--s1); color: var(--body-c); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; transition: border-color .15s, color .15s; }
.gs-share a:hover, .gs-share button:hover { border-color: var(--green); color: var(--green); }
.gs-share svg { width: 16px; height: 16px; fill: currentColor; }
.gs-share .gs-copy.copied { border-color: var(--green); color: var(--green); }

/* blog cards with images */
.blog-card { padding: 0; overflow: hidden; }
.blog-card-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg2); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 28px; }
.blog-card-body p { flex: 1; }

/* ── Blog: category filter chips + clickable category/tag chips ── */
.blog-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 auto 42px; max-width: 880px; }
.blog-chip { font-family: inherit; font-size: 13px; font-weight: 700; letter-spacing: .02em; color: var(--body-c); background: var(--s1); border: 1px solid var(--line2); border-radius: 999px; padding: 9px 17px; cursor: pointer; text-decoration: none; transition: border-color .15s, color .15s, background .15s; }
.blog-chip:hover { color: var(--ink); border-color: rgba(250,200,92,.32); }
.blog-chip.active { color: var(--accent-ink); background: var(--green); border-color: var(--green); }
.blog-card { position: relative; }
.blog-card[hidden] { display: none; }
.blog-card-link { color: inherit; text-decoration: none; }
.blog-card h2 .blog-card-link::after { content: ""; position: absolute; inset: 0; z-index: 2; }
.blog-card .blog-cat, .blog-card .blog-tags { position: relative; z-index: 3; }
a.blog-cat { display: inline-block; text-decoration: none; }
a.blog-cat:hover { color: var(--ink); }
.blog-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.blog-tags a { font-size: 11.5px; font-weight: 600; color: var(--muted); background: var(--s1); border: 1px solid var(--line2); border-radius: 999px; padding: 3px 11px; text-decoration: none; transition: border-color .15s, color .15s; }
.blog-tags a:hover { color: var(--green); border-color: rgba(250,200,92,.4); }
.blog-card .blog-meta { margin-top: 14px; }
.blog-backlink { text-align: center; margin: 44px 0 0; }
.blog-backlink a { color: var(--green); font-weight: 700; font-size: 14px; text-decoration: none; }
.blog-empty { text-align: center; color: var(--muted); padding: 40px 0; }

/* ── Post page: linked eyebrow + tags row ── */
a.guide-eyebrow { text-decoration: none; }
a.guide-eyebrow:hover { color: var(--ink); }
.guide-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 40px 0 8px; padding-top: 26px; border-top: 1px solid var(--line2); }
.guide-tags-label { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.guide-tags a { font-size: 13px; font-weight: 600; color: var(--body-c); background: var(--s1); border: 1px solid var(--line2); border-radius: 999px; padding: 5px 13px; text-decoration: none; transition: border-color .15s, color .15s; }
.guide-tags a:hover { color: var(--green); border-color: rgba(250,200,92,.4); }

/* homepage "from the blog" carousel */
.home-blog { background: var(--bg2); border-top: 1px solid var(--line2); border-bottom: 1px solid var(--line2); }
.home-blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.home-blog-head h2 { margin-bottom: 6px; }
.home-blog-head .home-blog-link { color: var(--green); font-weight: 700; text-decoration: none; font-size: 15px; white-space: nowrap; }
.home-blog-head .home-blog-link:hover { text-decoration: underline; }
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 6px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .blog-card { flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start; }
.carousel-nav { display: flex; gap: 10px; margin-top: 22px; justify-content: flex-end; }
.carousel-btn {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: var(--s1); border: 1px solid var(--line2); color: var(--ink);
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, opacity .2s;
}
.carousel-btn:hover { background: rgba(250,200,92,.12); border-color: rgba(250,200,92,.5); }
.carousel-btn:disabled { opacity: .35; cursor: default; }
@media (max-width: 900px) { .carousel-track .blog-card { flex: 0 0 calc((100% - 22px) / 2); } }
@media (max-width: 620px) {
  .carousel-track .blog-card { flex: 0 0 86%; }
  .home-blog-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── Charger map page ── */
.map-wrap { padding-top: 100px; padding-bottom: 40px; }
.map-head { margin-bottom: 22px; }
.map-head h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: 10px; }
.map-head p { color: var(--body-c); font-size: 16px; max-width: 640px; line-height: 1.6; }
.map-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 14px; }
.map-filters { display: flex; gap: 8px; }
.map-filter {
  padding: 8px 16px; border-radius: 999px; cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 700; border: 1px solid var(--line2);
  background: var(--s1); color: var(--body-c); transition: all .2s;
}
.map-filter:hover { border-color: rgba(250,200,92,.4); color: var(--ink); }
.map-filter.active { background: rgba(250,200,92,.14); border-color: rgba(250,200,92,.5); color: var(--green); }
.map-count { color: var(--muted); font-size: 13px; font-weight: 600; margin-left: auto; }

/* search bar */
.map-search { position: relative; margin-bottom: 12px; max-width: 520px; }
.map-search-ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.map-search input {
  width: 100%; box-sizing: border-box; padding: 12px 40px 12px 42px; border-radius: 12px;
  border: 1px solid var(--line2); background: var(--s1); color: var(--ink);
  font-family: inherit; font-size: 14.5px; transition: border-color .2s, box-shadow .2s;
}
.map-search input::placeholder { color: var(--muted); }
.map-search input:focus { outline: none; border-color: rgba(250,200,92,.5); box-shadow: 0 0 0 3px rgba(250,200,92,.12); }
.map-search input[type=search]::-webkit-search-decoration,
.map-search input[type=search]::-webkit-search-cancel-button { -webkit-appearance: none; }
.map-search-clear {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px;
  border: none; background: var(--s2); color: var(--body-c); border-radius: 50%;
  font-size: 18px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.map-search-clear:hover { background: rgba(255,255,255,.12); color: var(--ink); }

/* "Filters" toggle button + badge */
.map-morefilters {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px;
  cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 700; border: 1px solid var(--line2);
  background: var(--s1); color: var(--body-c); transition: all .2s;
}
.map-morefilters:hover { border-color: rgba(250,200,92,.4); color: var(--ink); }
.map-morefilters.active { background: rgba(250,200,92,.14); border-color: rgba(250,200,92,.5); color: var(--green); }
.filter-badge { background: var(--green); color: #0A0E14; font-size: 11px; font-weight: 800; min-width: 17px; height: 17px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; padding: 0 5px; }

/* expandable filter panel */
.filter-panel {
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: 22px 34px;
  border: 1px solid var(--line); border-radius: 16px; background: rgba(250,200,92,.04);
  padding: 18px 20px; margin-bottom: 14px;
}
.fp-group { display: flex; flex-direction: column; gap: 9px; }
.fp-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.fp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fp-chip {
  padding: 7px 13px; border-radius: 999px; cursor: pointer; font-family: inherit; font-size: 12.5px;
  font-weight: 600; border: 1px solid var(--line2); background: var(--s1);
  color: var(--body-c); transition: all .18s; white-space: nowrap;
}
.fp-chip:hover { border-color: rgba(250,200,92,.4); color: var(--ink); }
.fp-chip.active { background: rgba(250,200,92,.16); border-color: rgba(250,200,92,.55); color: var(--green); }
.fp-reset {
  align-self: center; margin-left: auto; padding: 8px 14px; border-radius: 999px; cursor: pointer;
  font-family: inherit; font-size: 12.5px; font-weight: 700; border: 1px solid rgba(255,107,107,.4);
  background: transparent; color: #ff6b6b; transition: all .18s;
}
.fp-reset:hover { background: rgba(255,107,107,.12); }
@media (max-width: 560px) { .filter-panel { gap: 16px 20px; } .fp-reset { margin-left: 0; width: 100%; } }

/* ── Individual charger page ── */
.station-page { padding-top: 116px; padding-bottom: 60px; }
.crumbs { position: static; background: none; backdrop-filter: none; -webkit-backdrop-filter: none; border: none; z-index: auto; font-size: 13px; margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.crumbs a { color: var(--body-c); text-decoration: none; }
.crumbs a:hover { color: var(--green); }
.crumbs .crumb-sep { color: var(--line2); }
.crumbs .crumb-current { color: var(--muted); }

/* 50/50 hero: info + map */
.station-top { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; margin-bottom: 34px; }
.station-info { display: flex; flex-direction: column; }
.station-info h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; line-height: 1.18; letter-spacing: -.02em; color: var(--ink); margin: 6px 0 14px; text-wrap: balance; }
.spec-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.spec-chip { font-size: 12.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; background: var(--s2); color: var(--body-c); border: 1px solid var(--line2); white-space: nowrap; }
.spec-chip.dc { background: rgba(250,200,92,.13); color: var(--green); border-color: rgba(250,200,92,.3); }
.spec-chip.ac { background: rgba(250,200,92,.12); color: var(--teal); border-color: rgba(250,200,92,.3); }
.station-intro { color: var(--body-c); font-size: 15.5px; line-height: 1.7; margin-bottom: 22px; }
.station-info .hero-actions { margin-top: auto; }
#stationMap { min-height: 340px; height: 100%; width: 100%; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); z-index: 0; }
#stationMap .leaflet-tile-pane { filter: saturate(.7) brightness(1.03) contrast(.96); }

/* know before you charge — highlights (matches app detail screen) */
.station-know { border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; margin-bottom: 24px; background: rgba(250,200,92,.04); }
.station-know h2 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--ink); margin: 0; }
.kb-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 0 0 16px; }
.kb-ai { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 700; letter-spacing: .2px; color: var(--green); background: rgba(250,200,92,.1); border: 1px solid rgba(250,200,92,.28); border-radius: 999px; padding: 4px 10px 4px 8px; white-space: nowrap; }
.kb-ai svg { width: 13px; height: 13px; }
.know-ic--alert { background: rgba(255,171,0,.12) !important; border-color: rgba(255,171,0,.32) !important; }
.know-ic--alert svg { color: #ffab00 !important; }
.know-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.know-item { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); font-size: 14.5px; line-height: 1.45; }
.know-ic { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(250,200,92,.1); border: 1px solid rgba(250,200,92,.22); }
.know-ic svg { width: 18px; height: 18px; color: var(--green); }
@media (max-width: 640px) { .know-grid { grid-template-columns: 1fr; gap: 13px; } }

/* details + alternatives — matched cards, top-aligned */
.station-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; margin-bottom: 8px; }
.station-details, .station-alts { border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; }
.station-alts { background: rgba(250,200,92,.04); }
.station-details h2, .station-alts h2, .station-faq h2 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--ink); margin: 0 0 16px; }
.d-table { display: flex; flex-direction: column; }
.d-row { display: grid; grid-template-columns: 150px 1fr; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line2); font-size: 14.5px; }
.d-row:last-child { border-bottom: none; padding-bottom: 0; }
.d-k { color: var(--muted); font-weight: 600; }
.d-v { color: var(--ink); }
.alt-sub { color: var(--muted); font-size: 13px; margin-bottom: 14px; line-height: 1.5; }
.alt-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line2); text-decoration: none; }
.alt-row:last-of-type { border-bottom: none; }
.alt-name { color: var(--ink); font-weight: 600; font-size: 14px; transition: color .15s; }
.alt-row:hover .alt-name { color: var(--green); }
.alt-meta { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.alt-dist { color: var(--green); font-weight: 700; font-size: 13px; white-space: nowrap; }
.alt-all { display: inline-block; margin-top: 14px; color: var(--teal); font-weight: 700; font-size: 13.5px; text-decoration: none; }
.station-faq { margin-top: 36px; }
.station-back { display: inline-block; margin-top: 28px; color: var(--green); font-weight: 600; font-size: 14.5px; text-decoration: none; }
.station-back:hover { color: var(--teal); }
@media (max-width: 800px) {
  .station-top { grid-template-columns: 1fr; gap: 22px; }
  #stationMap { min-height: 300px; height: 300px; }
  .station-info .hero-actions { margin-top: 4px; }
  .station-cols { grid-template-columns: 1fr; gap: 20px; }
  .d-row { grid-template-columns: 130px 1fr; }
}

#map {
  height: 66vh; min-height: 440px; width: 100%;
  border-radius: 18px; border: 1px solid var(--line); overflow: hidden; z-index: 1;
  background: var(--bg2);
}
/* light, softly-desaturated basemap */
#map .leaflet-tile-pane { filter: saturate(.7) brightness(1.03) contrast(.96); }
.map-near {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 999px; cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 700; border: 1px solid rgba(250,200,92,.4);
  background: rgba(250,200,92,.12); color: var(--green); transition: all .2s;
}
.map-near:hover { background: rgba(250,200,92,.2); box-shadow: 0 0 20px rgba(250,200,92,.2); }
.map-near:disabled { opacity: .6; cursor: default; }
.map-err { color: #ff6b6b; font-size: 13px; margin: 10px 2px 0; }
.nearby { margin-top: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(250,200,92,.04); padding: 18px 20px; }
.nearby h3 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.nearby-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line2); }
.nearby-row:last-child { border-bottom: none; }
.nearby-row .n-name { color: var(--ink); font-weight: 600; font-size: 14.5px; }
.nearby-row .n-meta { color: var(--muted); font-size: 12.5px; }
.nearby-row .n-dist { color: var(--green); font-weight: 700; font-size: 13px; white-space: nowrap; }
.nearby-row a.n-dir { color: var(--teal); font-weight: 700; font-size: 12.5px; text-decoration: none; white-space: nowrap; }
.map-legend { display: flex; flex-direction: column; gap: 8px; margin: 14px 2px 0; font-size: 13px; color: var(--muted); }
.legend-keys { display: flex; gap: 20px; flex-wrap: nowrap; }
.map-legend span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.map-legend i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot-dc { background: #00C853; box-shadow: 0 0 8px rgba(0,200,83,.55); }
.dot-ac { background: #00BCD4; box-shadow: 0 0 8px rgba(0,188,212,.55); }

/* Leaflet dark popup overrides */
.leaflet-popup-content-wrapper { background: #0a2415; color: var(--ink); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 16px 44px rgba(0,0,0,.5); }
.leaflet-popup-tip { background: #0a2415; border: 1px solid var(--line); }
.leaflet-popup-content { margin: 14px 16px; font-family: 'Inter', sans-serif; }
.leaflet-container a.leaflet-popup-close-button { color: var(--muted); }
.pop-name { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 3px; }
a.pop-name { text-decoration: none; transition: color .15s; }
a.pop-name:hover { color: var(--green); }
.pop-op { color: var(--muted); font-size: 12px; margin-bottom: 9px; }
.pop-details { border: 1px solid rgba(250,200,92,.4); color: var(--green); }
.pop-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.pop-badge { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px; background: var(--s2); color: var(--body-c); }
.pop-badge.dc { background: rgba(250,200,92,.15); color: var(--green); }
.pop-badge.ac { background: rgba(250,200,92,.13); color: var(--teal); }
.pop-actions { display: flex; gap: 8px; }
.pop-actions a { flex: 1; text-align: center; font-size: 12px; font-weight: 700; text-decoration: none; padding: 8px 10px; border-radius: 9px; }
.pop-dir { background: linear-gradient(135deg, var(--green), var(--teal)); color: #1A1205; }
.pop-call { border: 1px solid var(--line); color: var(--ink); }
.leaflet-container { font-family: 'Inter', sans-serif; }

/* Static station list (SEO) */
.stations { padding: 60px 0 96px; }
.stations h2 { margin-bottom: 8px; }
.stations .lede { margin-bottom: 34px; }
.city-block { margin-bottom: 30px; }
.city-block h3 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line2); }
.station-row { display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; padding: 12px 0; border-bottom: 1px solid var(--line2); }
.station-row:last-child { border-bottom: none; }
.station-name { color: var(--ink); font-weight: 600; font-size: 15px; }
.station-name a, .guide .station-name a { color: inherit; text-decoration: none; border-bottom: 0; transition: color .15s; }
.station-name a:hover, .guide .station-name a:hover { color: var(--green); border-bottom: 0; }
.station-meta { color: var(--muted); font-size: 13px; line-height: 1.5; }
.station-tags { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; justify-content: flex-end; }
.station-tag { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px; background: var(--s2); color: var(--body-c); white-space: nowrap; }
.station-tag.dc { background: rgba(250,200,92,.13); color: var(--green); }
.station-tag.ac { background: rgba(250,200,92,.12); color: var(--teal); }
@media (max-width: 560px) { .station-row { grid-template-columns: 1fr; } .station-tags { justify-content: flex-start; } .map-count { margin-left: 0; width: 100%; } }

/* ── App page ── */
.app-wrap { padding-top: 120px; padding-bottom: 40px; }
.app-hero { text-align: center; max-width: 720px; margin: 0 auto 26px; }
.app-hero .app-icon { width: 96px; height: 96px; border-radius: 24px; margin: 0 auto 24px; display: block; box-shadow: 0 18px 48px rgba(0,0,0,.5), 0 0 34px rgba(250,200,92,.18); }
.app-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 5vw, 50px); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; color: var(--ink); margin-bottom: 14px; }
.app-hero p { color: var(--body-c); font-size: 17px; line-height: 1.75; margin-bottom: 28px; }
.app-hero .hero-actions { justify-content: center; margin-bottom: 14px; }
.android-soon {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(250,200,92,.08); border: 1px solid rgba(250,200,92,.3);
  color: var(--teal); font-size: 13px; font-weight: 700;
  padding: 8px 18px; border-radius: 999px;
}
.android-soon .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); animation: blink 2s infinite; }
.app-section { padding: 64px 0; }
.app-section.alt { background: var(--bg2); border-top: 1px solid var(--line2); border-bottom: 1px solid var(--line2); }
.app-shots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 10px; }
.app-shots figure { margin: 0; }
.app-shots img {
  width: 100%; height: auto; display: block; border-radius: 22px;
  border: 1px solid var(--s3);
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s;
}
.app-shots figure:hover img { transform: translateY(-8px); border-color: rgba(250,200,92,.4); }
.app-shots figcaption { text-align: center; color: var(--muted); font-size: 13px; font-weight: 600; margin-top: 12px; }
.upcoming-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 10px; }
.upcoming-item {
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid var(--line2); border-radius: 18px; padding: 22px 24px;
  background: linear-gradient(165deg, rgba(255,255,255,.035), var(--s1));
}
.upcoming-item .u-ico { font-size: 22px; line-height: 1.2; filter: drop-shadow(0 0 8px rgba(250,200,92,.4)); }
.upcoming-item h3 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.upcoming-item h3 .soon-tag { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); border: 1px solid rgba(250,200,92,.35); border-radius: 6px; padding: 2px 7px; margin-left: 8px; vertical-align: 2px; }
.upcoming-item p { color: var(--muted); font-size: 13.5px; line-height: 1.65; margin: 0; }
.app-specs { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 22px; }
.app-specs span { color: var(--muted); font-size: 13.5px; font-weight: 600; }
.app-specs strong { color: var(--ink); }
@media (max-width: 860px) { .app-shots { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .upcoming-list { grid-template-columns: 1fr; } }

/* ── 404 page ── */
.notfound {
  min-height: 78vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 140px 0 90px; position: relative;
}
.notfound-code {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1;
  font-size: clamp(120px, 26vw, 240px); letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 40px rgba(250,200,92,.28)); margin-bottom: 6px;
}
.notfound h1 {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px, 4vw, 40px);
  font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: 14px;
}
.notfound p { color: var(--body-c); font-size: 17px; line-height: 1.7; max-width: 460px; margin: 0 auto 34px; }
.notfound .hero-actions { justify-content: center; margin-bottom: 40px; }
.notfound-links { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; }
.notfound-links a { color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; transition: color .2s; }
.notfound-links a:hover { color: var(--green); }

/* ── Footer ── */
footer { border-top: 1px solid var(--line2); padding: 64px 0 40px; margin-top: 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid var(--line2);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.footer-store {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(250,200,92,.1); border: 1px solid rgba(250,200,92,.35);
  color: var(--green) !important; padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: background .25s, box-shadow .25s, border-color .25s;
}
.footer-store:hover { background: rgba(250,200,92,.18); box-shadow: 0 0 24px rgba(250,200,92,.22); border-color: rgba(250,200,92,.6); }

/* Official store badges. Apple and Google both ship theirs at 3.37:1, so a
   single height keeps the pair optically equal without per-badge tuning.
   width/height attributes are on the img tags so the row reserves its space
   before the images decode — otherwise the footer shifts on load. */
.footer-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 18px 0 0; }
.footer-badges a { display: inline-flex; border-radius: 8px; transition: opacity .2s, transform .2s; }
.footer-badges a:hover { opacity: .85; transform: translateY(-1px); }
.footer-badges img { height: 42px; width: auto; display: block; }
@media (max-width: 700px) { .footer-badges img { height: 38px; } }
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif; color: var(--ink); font-size: 14px;
  font-weight: 700; letter-spacing: .02em; margin-bottom: 16px;
}
.footer-col a {
  display: block; color: var(--muted); text-decoration: none; font-size: 14px;
  margin-bottom: 11px; transition: color .2s, padding-left .2s; width: fit-content;
}
.footer-col a:hover { color: var(--green); padding-left: 4px; }
.footer-legal { margin-top: 26px; color: var(--muted); font-size: 12.5px; line-height: 1.65; }
.footer-legal p { margin: 0; }
.footer-legal a { color: var(--body-c); text-decoration: none; }
.footer-legal a:hover { color: var(--green); }
.footer-bottom {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 10px; padding-top: 26px; text-align: center;
}
.footer-bottom p { color: var(--muted); font-size: 13px; }
.footer-bottom a { color: var(--body-c); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--green); }
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Legal pages ── */
.legal { padding: 130px 0 80px; max-width: 760px; }
.legal h1 { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 8px; color: var(--ink); }
.legal .updated { color: var(--muted); font-size: 13px; margin-bottom: 42px; }
.legal h2 { font-size: 21px; margin: 38px 0 10px; color: var(--ink); letter-spacing: -.02em; }
.legal p, .legal li { color: var(--body-c); font-size: 15px; margin-bottom: 14px; line-height: 1.8; }
.legal ul { padding-left: 24px; }
.legal a { color: var(--green); }

/* ── Long-form guide ── */
.guide { max-width: 820px; padding: 128px 0 90px; }
.guide-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.guide h1 {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 5vw, 50px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.08; color: var(--ink); margin-bottom: 14px;
}
.guide .updated { color: var(--muted); font-size: 13px; margin-bottom: 32px; }
.guide .lead { font-size: 18px; line-height: 1.8; color: var(--body-c); margin-bottom: 8px; }
.guide h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(23px, 3vw, 30px);
  font-weight: 700; letter-spacing: -.02em; color: var(--ink);
  margin: 52px 0 14px; scroll-margin-top: 90px;
}
.guide h3 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; color: var(--ink); margin: 30px 0 10px; }
.guide p, .guide li { color: var(--body-c); font-size: 16px; line-height: 1.85; margin-bottom: 16px; }
.guide strong { color: var(--ink); font-weight: 600; }
.guide ul { padding-left: 0; list-style: none; margin-bottom: 20px; }
.guide ul li { position: relative; padding-left: 26px; }
.guide ul li::before { content: "⚡"; position: absolute; left: 0; top: 2px; color: var(--green); font-size: 13px; }
.guide a { color: var(--green); text-decoration: none; border-bottom: 1px solid rgba(250,200,92,.3); }
.guide a:hover { border-color: var(--green); }

.guide-toc {
  border: 1px solid var(--line); border-radius: 18px;
  background: rgba(250,200,92,.04); padding: 24px 28px; margin: 8px 0 40px;
}
.guide-toc strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--green); margin-bottom: 12px; }
.guide-toc ul { columns: 2; column-gap: 32px; margin: 0; }
.guide-toc li { padding-left: 0; margin-bottom: 8px; font-size: 14.5px; }
.guide-toc li::before { content: none; }
.guide-toc a { border: none; }

.guide-table { width: 100%; border-collapse: collapse; margin: 8px 0 26px; font-size: 15px; }
.guide-table th, .guide-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line2); }
.guide-table th { color: var(--green); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.guide-table td { color: var(--body-c); }
.guide-table tr:last-child td { border-bottom: none; }

.guide-cta {
  border: 1px solid var(--line); border-radius: 22px;
  background: radial-gradient(ellipse 70% 120% at 100% 0%, rgba(250,200,92,.08), transparent 55%), linear-gradient(165deg, rgba(250,200,92,.06), var(--s1));
  padding: 36px 34px; margin: 44px 0; text-align: center;
}
.guide-cta h3 { margin-top: 0; font-size: 24px; }
.guide-cta p { max-width: 460px; margin: 0 auto 22px; }
.guide a.btn { border-bottom: none; }
.guide a.btn-green, .guide a.btn-green span { color: #1A1205; }
.guide a.btn-primary, .guide a.btn-primary span { color: #fff; }
.guide-faq details {
  border: 1px solid var(--line2); border-radius: 14px; background: var(--s1);
  padding: 0 22px; margin-bottom: 10px;
}
.guide-faq details[open] { border-color: rgba(250,200,92,.28); }
.guide-faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--ink); font-size: 16px; }
.guide-faq summary::-webkit-details-marker { display: none; }
.guide-faq p { padding-bottom: 18px; margin: 0; font-size: 15px; }
@media (max-width: 560px) { .guide-toc ul { columns: 1; } }
.city-links { columns: 2; column-gap: 30px; }
.city-links li { break-inside: avoid; margin-bottom: 8px; }
@media (max-width: 560px) { .city-links { columns: 1; } }

/* ── Support page ── */
.support-wrap { padding: 128px 0 80px; }
.support-head h1 { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 8px; color: var(--ink); }
.support-head .updated { color: var(--muted); font-size: 13px; margin-bottom: 42px; }
.support-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: start; }
.support-content { padding: 0; max-width: none; }
.contact-card {
  position: sticky; top: 96px;
  border: 1px solid var(--line); border-radius: 22px;
  background: linear-gradient(168deg, #0a2415, #061a0d);
  padding: 32px 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,.4);
}
.contact-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.contact-card .field { margin-bottom: 16px; }
.field textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; resize: vertical; min-height: 110px;
  background: var(--s1); border: 1px solid var(--line2);
  color: var(--ink); font-size: 14.5px; font-family: inherit; line-height: 1.6;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea::placeholder { color: #5b7766; }
.field textarea:focus { outline: none; border-color: rgba(250,200,92,.55); background: rgba(250,200,92,.05); box-shadow: 0 0 0 3px rgba(250,200,92,.12); }
.contact-card .form-submit { margin-top: 6px; }
@media (max-width: 860px) {
  .support-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-card { position: static; }
}

/* ── Hamburger ── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; margin-right: -10px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.hamburger span { display: block; height: 2px; width: 100%; border-radius: 2px; background: var(--ink); transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile ── */
@media (max-width: 700px) {

  .hero { min-height: auto; padding: 110px 0 64px; }
  .hero-inner { flex-direction: column-reverse; gap: 40px; }
  .hero-text { text-align: center; }
  .hero h1 { font-size: clamp(36px, 10.5vw, 52px); }
  .hero-sub { font-size: 16px; margin: 0 auto 30px; max-width: 380px; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .hero-meta { justify-content: center; margin-top: 32px; gap: 14px; }
  .hero-visual { width: 100%; max-width: 300px; margin: 0 auto; }
  .hero-img { max-width: 100%; }
  .hero-chip { transform: scale(.85); }
  .chip-2 { left: -6%; }
  .hero-scroll-hint { display: none; }

  section { padding: 84px 0; }
  .features-section { padding-top: 64px; }
  .cta-band { padding: 64px 26px; border-radius: 24px; }
  .cta-band .hero-actions .btn { width: 100%; max-width: 300px; }
  .stat-item + .stat-item::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .shot { width: min(230px, 62vw); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  #loader, .hero-scroll-hint { display: none !important; }
  .big-statement .ws { color: var(--ink); }
}


/* ChargeAE mobile menu — full-screen editorial takeover.
   Replaces the ENTIRE existing @media (max-width:820px) menu block.
   Desktop rules untouched; keyframes are root-level and cpk-prefixed. */

@media (max-width:820px){

  /* scroll lock + stacking safety while open (class set by toggleMenu) */
  html.cpk-menu-open,
  html.cpk-menu-open body{
    overflow:hidden;
    height:100%;
    overscroll-behavior:none;
  }
  html.cpk-menu-open nav{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1200; /* beats the page's sticky sub-nav at 900 */
    background:#10151D; /* solid band: scrolled menu links pass under the logo, not through it */
    border-bottom:1px solid rgba(255,255,255,.07);
    box-shadow:none;
    -webkit-backdrop-filter:none;
    backdrop-filter:none; /* backdrop-filter/transform on nav would trap the fixed panel inside the 70px bar */
    transform:none;
    filter:none;
  }
  /* the header band lives BETWEEN the panel (960) and the brand/X (972):
     the panel is a child of nav, so nav own background paints under it —
     scrolled links need a layer above them to pass beneath. The pseudo is a
     grid item of the nav grid, hence the explicit stretch. */
  html.cpk-menu-open nav::after{
    content:"";
    position:fixed;
    top:0;
    left:0;
    right:0;
    justify-self:stretch;
    height:calc(70px + env(safe-area-inset-top, 0px));
    background:#10151D;
    border-bottom:1px solid rgba(255,255,255,.07);
    z-index:968;
    pointer-events:none;
  }
  html.cpk-menu-open nav .brand{position:relative;z-index:972}

  /* hamburger — fully restyled here, morphs to X */
  nav .hamburger{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    width:44px;
    height:44px;
    padding:10px;
    margin:0 -10px 0 0;
    background:transparent;
    border:0;
    border-radius:8px;
    cursor:pointer;
    position:relative;
    z-index:972;
    -webkit-tap-highlight-color:transparent;
  }
  nav .hamburger:focus-visible{outline:2px solid var(--green,#FAC85C);outline-offset:2px}
  nav .hamburger span{
    display:block;
    width:24px;
    height:2px;
    border-radius:2px;
    background:var(--ink,#EFF3F7);
    transition:transform .28s cubic-bezier(.22,.9,.3,1),opacity .18s ease;
  }
  nav .hamburger.open span:nth-child(1){transform:translateY(8px) rotate(45deg)}
  nav .hamburger.open span:nth-child(2){opacity:0;transform:scaleX(.2)}
  nav .hamburger.open span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

  /* the takeover panel */
  nav .links{
    counter-reset:cpk-item;
    position:fixed;
    inset:0;
    justify-self:stretch;
    align-self:stretch;
    width:auto;
    min-width:100%;
    z-index:960;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    text-align:left;
    justify-content:flex-start;
    margin:0;
    gap:0;
    padding:calc(100px + env(safe-area-inset-top, 0px)) 28px calc(112px + env(safe-area-inset-bottom, 0px));
    background:linear-gradient(175deg,#10151D,#0A0E14 60%);
    scrollbar-width:none;
    overflow-y:auto;
    overflow-x:hidden;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .22s ease,visibility 0s linear .24s;
  }
  nav .links::-webkit-scrollbar{display:none}
  /* soft green radial field, breathing */
  nav .links::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background:
      radial-gradient(120% 90% at 18% 78%,rgba(250,200,92,.14),transparent 60%),
      radial-gradient(90% 70% at 82% 12%,rgba(250,200,92,.06),transparent 55%);
    animation:cpkBreathe 6s ease-in-out infinite alternate;
  }
  nav .links.open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transition:opacity .18s ease;
  }

  /* oversized editorial links with numbered eyebrows */
  nav .links a{
    counter-increment:cpk-item;
    display:block;
    margin:0;
    padding:9px 0 11px;
    font-family:'Sora','Space Grotesk',sans-serif;
    font-size:min(clamp(27px,8.4vw,46px),4.6vh); /* capped by vh so 8 rows fit a 640px phone; by vw so 'Submit a Charger' fits 360px */
    line-height:1.06;
    font-weight:600;
    letter-spacing:-.015em;
    color:var(--ink,#EFF3F7);
    text-decoration:none;
    border:0;
    opacity:0;
    transform:translateY(22px);
    transition:opacity .16s ease;
    -webkit-tap-highlight-color:transparent;
  }
  nav .links a::before{
    content:counter(cpk-item,decimal-leading-zero);
    display:block;
    margin:0 0 5px 2px;
    font-family:'Space Grotesk',monospace;
    font-size:10px;
    font-weight:500;
    line-height:1;
    letter-spacing:.3em;
    color:var(--green,#FAC85C);
    opacity:.72;
  }
  nav .links a:hover,
  nav .links a:active{color:var(--green,#FAC85C)}
  nav .links a:focus-visible{
    outline:2px solid var(--green,#FAC85C);
    outline-offset:6px;
    border-radius:2px;
  }

  /* fast stagger — last link lands at ~444ms */
  nav .links.open a{
    opacity:1;
    transform:none;
    transition:opacity .24s ease,transform .24s cubic-bezier(.22,.9,.3,1);
  }
  nav .links.open a:nth-child(1){transition-delay:.022s}
  nav .links.open a:nth-child(2){transition-delay:.048s}
  nav .links.open a:nth-child(3){transition-delay:.074s}
  nav .links.open a:nth-child(4){transition-delay:.1s}
  nav .links.open a:nth-child(5){transition-delay:.126s}
  nav .links.open a:nth-child(6){transition-delay:.152s}
  nav .links.open a:nth-child(7){transition-delay:.178s}
  nav .links.open a:nth-child(8){transition-delay:.204s}

  /* Download pill — hidden in the bar, resurrected as the menu's pinned CTA */
  nav .nav-cta{display:none}
  nav .links.open ~ .nav-cta{
    display:flex;
    justify-self:stretch;
    align-items:center;
    justify-content:center;
    gap:10px;
    position:fixed;
    left:28px;
    right:28px;
    bottom:calc(18px + env(safe-area-inset-bottom, 0px));
    z-index:966;
    margin:0 !important;
    padding:16px 22px;
    font-family:'Space Grotesk','Sora',sans-serif;
    font-size:15px !important;
    font-weight:700 !important;
    letter-spacing:.05em;
    color:#0A0E14 !important;
    background:var(--green,#FAC85C);
    border-radius:999px;
    text-decoration:none;
    box-shadow:0 10px 34px rgba(250,200,92,.32);
    animation:cpkCtaIn .3s cubic-bezier(.22,.9,.3,1) .2s both;
  }
  nav .links.open ~ .nav-cta:focus-visible{outline:2px solid var(--ink,#EFF3F7);outline-offset:3px}
  nav .links.open ~ .nav-cta .nav-cta-dot{
    flex:0 0 auto;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#0A0E14;
    animation:cpkDot 2.2s ease-in-out infinite;
  }
}

@keyframes cpkBreathe{from{opacity:.65;transform:scale(1)}to{opacity:1;transform:scale(1.06)}}
@keyframes cpkCtaIn{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}
@keyframes cpkDot{0%,100%{opacity:1}50%{opacity:.35}}

@media (max-width:820px) and (prefers-reduced-motion:reduce){
  nav .links{transition:none}
  nav .links::before{animation:none}
  nav .links a{transform:none;transition:none}
  nav .links.open a{transition:none}
  nav .hamburger span{transition:none}
  nav .links.open ~ .nav-cta{animation:none}
  nav .links.open ~ .nav-cta .nav-cta-dot{animation:none}
}

/* ── Homepage tool-promo sections (charging calculator / range converter) ── */
.tp { padding: 34px 0; }
.tp-in { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tp.rev .tp-viz { order: -1; }
.tp-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.tp-eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.tp-copy h2 { font-family: 'Sora','Space Grotesk',sans-serif; font-size: clamp(26px,3.4vw,40px);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.08; color: var(--ink); margin: 0 0 16px; }
.tp-copy h2 em { font-style: normal; background: linear-gradient(100deg,var(--green),var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.tp-copy > p { font-size: 16.5px; line-height: 1.65; color: var(--body-c); max-width: 46ch; margin: 0 0 20px; }
.tp-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.tp-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--body-c); }
.tp-list svg { flex: none; width: 20px; height: 20px; color: var(--green); margin-top: 1px; }
.tp-cta { display: inline-flex; align-items: center; gap: 9px; padding: 13px 22px; border-radius: 12px;
  background: linear-gradient(100deg,var(--green),var(--teal)); color: var(--accent-ink); font-weight: 700;
  font-size: 15px; text-decoration: none; transition: transform .18s, box-shadow .18s; }
.tp-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(250,200,92,.34); }
.tp-cta svg { width: 17px; height: 17px; }

/* shared preview card */
.tp-viz { position: relative; }
.tp-viz::before { content: ''; position: absolute; inset: -12% -8% -18% -8%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(250,200,92,.18), transparent 66%); filter: blur(26px); }
.tp-card { position: relative; z-index: 1; background: linear-gradient(168deg, rgba(14,17,24,.92), rgba(4,19,10,.92));
  border: 1px solid rgba(250,200,92,.22); border-radius: 22px; padding: 26px; box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.tp-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.tp-card-top span { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.tp-card-top i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

/* calculator mock */
.tp-time { font-family: 'Sora','Space Grotesk',sans-serif; font-size: 52px; font-weight: 800; line-height: 1;
  letter-spacing: -.02em; color: var(--ink); }
.tp-time small { font-size: .38em; font-weight: 700; color: var(--body-c); margin: 0 4px 0 6px; }
.tp-sub { margin: 10px 0 22px; font-size: 14px; color: var(--body-c); }
.tp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding-top: 20px;
  border-top: 1px solid rgba(250,200,92,.16); }
.tp-stats b { display: block; font-size: 18px; font-weight: 700; color: var(--ink); }
.tp-stats span { font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

/* converter mock */
.tp-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-top: 1px solid rgba(250,200,92,.12); }
.tp-row:first-of-type { border-top: 0; }
.tp-km { min-width: 92px; font-family: 'Sora','Space Grotesk',sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); }
.tp-km small { font-size: 12px; font-weight: 600; color: var(--muted); margin-left: 4px; }
.tp-bar { flex: 1; height: 8px; border-radius: 999px; background: rgba(255,255,255,.07); overflow: hidden; }
.tp-bar i { display: block; height: 100%; border-radius: 999px; }
.tp-std { min-width: 46px; text-align: right; font-size: 12px; font-weight: 700; }

@media (max-width: 820px) {
  .tp-in { grid-template-columns: 1fr; gap: 30px; }
  .tp.rev .tp-viz { order: 0; }
  .tp-time { font-size: 44px; }
}

/* ── Homepage spacing corrections ── */
.submit-section { padding-bottom: 60px; }   /* was 120 — half of the void above the CTA */
.cta-section { padding-top: 28px; }          /* was 120 — the other half */
.comm-section { padding-top: 64px; }         /* was 0 — was butting up under the FAQ */
.home-blog { border-bottom: none; }          /* removes one of the two lines above the footer */
footer { margin-top: 0; }                    /* footer rests directly below the last section */
