/* ==========================================================================
   Glow Electric — glowelectric.uk
   One stylesheet, no build step. Design system + components + pages.
   ========================================================================== */

/* ---- Fonts (self-hosted, latin subsets) -------------------------------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url('../fonts/bricolage-grotesque.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/figtree.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/figtree-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/spline-sans-mono.woff2') format('woff2');
}

/* ---- Tokens ------------------------------------------------------------- */
:root {
  /* colour */
  --ink: #0E1512;          /* panel-glass dark */
  --pine: #16241B;         /* raised dark surface */
  --paper: #F7F8F3;        /* daylight background */
  --surface: #FFFFFF;
  --mist: #EDF1E7;         /* quiet fill */
  --line: #DFE5D7;
  --line-dark: rgba(255, 255, 255, 0.09);
  --green: #6FB244;        /* brand — from the logo */
  --green-dark: #5A9A33;   /* hover */
  --green-text: #3E7222;   /* green that passes as text on light */
  --lime: #C9E9A4;         /* curve fill on dark */
  --sun: #F5B72F;          /* solar gold — data + sun details only */
  --text: #1A211B;
  --text-2: #525E53;
  --text-inv: #EFF4EC;
  --text-inv-2: #AEBCAE;

  /* type */
  --font-display: 'Bricolage Grotesque', 'Arial Narrow', sans-serif;
  --font-body: 'Figtree', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Spline Sans Mono', 'SF Mono', Menlo, monospace;

  /* shape + rhythm */
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4.25rem, 9vw, 7.25rem);

  --shadow-card: 0 1px 2px rgba(14, 21, 18, 0.04), 0 12px 32px -16px rgba(14, 21, 18, 0.18);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }
ul[class], ol[class] { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--green); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--text-inv);
  padding: 0.75rem 1.25rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---- Type helpers ------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-text);
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ''; width: 1.6rem; height: 2px; background: var(--green); border-radius: 2px; flex: none;
}
.on-dark .eyebrow { color: var(--lime); }

.h-display { font-size: clamp(2.55rem, 6.2vw, 4.35rem); font-weight: 750; }
.h-section { font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-bottom: 1rem; }
.h-card { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--text-2); max-width: 46ch; }
.on-dark .lead { color: var(--text-inv-2); }
.measure { max-width: 62ch; }

.section-head { max-width: 720px; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head .lead { max-width: none; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 0;
  font-weight: 650;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.18s var(--ease-out), background 0.18s, border-color 0.18s, color 0.18s;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--primary { background: var(--green); color: var(--ink); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-1px); }
.on-dark .btn--ghost { color: var(--text-inv); border-color: var(--line-dark); }
.on-dark .btn--ghost:hover { border-color: var(--text-inv-2); }

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.06rem; }

/* ---- Header ------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 248, 243, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px -20px rgba(14, 21, 18, 0.35); }
.header__in {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 102px;
}
.header__logo { flex: none; display: inline-flex; }
.header__logo img { height: 103px; width: auto; }
@media (max-width: 640px) { .header__logo img { height: 76px; } }

.nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav a.nav__link, .nav button.nav__link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: none; border: 0; cursor: pointer;
  font-weight: 550; font-size: 0.98rem;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s;
}
.nav a.nav__link:hover, .nav button.nav__link:hover { background: var(--mist); }
.nav a[aria-current="page"] { background: var(--lime); color: var(--ink); font-weight: 650; }
.nav .btn { margin-left: 0.6rem; }
.nav__link svg { width: 0.8em; height: 0.8em; transition: transform 0.2s; }

/* dropdown */
.nav__drop { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% + 10px); left: 50%; translate: -50% 0;
  min-width: 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 0.5rem;
  display: none;
}
.nav__drop.is-open .nav__menu { display: block; }
.nav__drop.is-open .nav__link svg { transform: rotate(180deg); }
.nav__menu a {
  display: block; padding: 0.65rem 0.9rem; border-radius: 8px;
  text-decoration: none; font-weight: 550; font-size: 0.96rem;
}
.nav__menu a:hover { background: var(--mist); }
.nav__menu a span { display: block; font-size: 0.82rem; font-weight: 450; color: var(--text-2); }

/* burger */
.burger {
  display: none;
  margin-left: auto;
  width: 48px; height: 48px;
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--surface);
  cursor: pointer; align-items: center; justify-content: center;
}
.burger svg { width: 22px; height: 22px; }
.burger .x { display: none; }
body.nav-open .burger .bars { display: none; }
body.nav-open .burger .x { display: block; }

@media (max-width: 920px) {
  .nav {
    display: none;
    position: fixed; inset: 102px 0 0 0; z-index: 99;
    background: var(--paper);
    flex-direction: column; align-items: stretch; gap: 0.25rem;
    padding: 1.25rem var(--gutter) 7rem;
    overflow-y: auto;
    margin-left: 0;
  }
  body.nav-open .nav { display: flex; }
  body.nav-open { overflow: hidden; }
  .nav a.nav__link, .nav button.nav__link { font-size: 1.15rem; padding: 0.9rem 1rem; border-radius: var(--radius-sm); justify-content: space-between; }
  .nav__menu { position: static; translate: none; display: none; box-shadow: none; border: 0; background: var(--mist); margin-top: 0.25rem; }
  .nav .btn { margin: 0.75rem 0 0; }
  .burger { display: inline-flex; }
}

/* sticky mobile call bar */
.callbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--ink);
  padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}
.callbar a { flex: 1; min-height: 50px; font-size: 1rem; }
.callbar .btn--ghost { color: var(--text-inv); border-color: var(--line-dark); }
@media (max-width: 700px) {
  .callbar { display: flex; }
  body { padding-bottom: 76px; }
}

/* ---- Dark sections (panel-glass texture) -------------------------------- */
.on-dark {
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(1100px 640px at 78% -12%, rgba(111, 178, 68, 0.17), transparent 62%),
    var(--ink);
  background-size: 46px 46px, 46px 46px, auto, auto;
  color: var(--text-inv);
}

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; overflow: clip; isolation: isolate; }
.hero__video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.hero--video::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 14, 11, 0.9) 10%, rgba(9, 14, 11, 0.55) 48%, rgba(9, 14, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(9, 14, 11, 0.3), rgba(9, 14, 11, 0.08) 40%, rgba(9, 14, 11, 0.5) 100%);
}
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }
.hero .container {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(4rem, 8.5vw, 7rem);
}
.hero--video .container { display: block; max-width: var(--container); padding-block: clamp(5rem, 11vw, 9.5rem); }
.hero--video h1, .hero--video .hero__sub { max-width: 21ch; }
.hero--video .hero__sub { max-width: 52ch; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  margin-bottom: 1.5rem;
}
.hero__kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(111, 178, 68, 0.25); }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero__sub { font-size: clamp(1.08rem, 1.5vw, 1.22rem); color: var(--text-inv-2); max-width: 48ch; margin-bottom: 2rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.75rem; }

.rating { display: flex; align-items: center; gap: 0.7rem; font-size: 0.95rem; color: var(--text-inv-2); }
.rating__stars { display: flex; gap: 2px; }
.rating__stars svg { width: 17px; height: 17px; fill: var(--sun); }
.rating strong { color: var(--text-inv); font-weight: 700; }

@media (max-width: 920px) {
  .hero .container { grid-template-columns: 1fr; }
}

/* ---- Generation curve card (signature) ---------------------------------- */
.gen {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    radial-gradient(700px 320px at 80% -10%, rgba(111, 178, 68, 0.14), transparent 62%),
    var(--ink);
  color: var(--text-inv);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.1rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.gen__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.4rem; }
.gen__title { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-inv-2); }
.gen__live { font-family: var(--font-mono); font-size: 0.78rem; color: var(--lime); display: flex; align-items: center; gap: 0.45rem; }
.gen__live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.gen svg { width: 100%; height: auto; }
.gen__meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 0.9rem;
}
.chip {
  font-family: var(--font-mono); font-size: 0.74rem; font-weight: 500;
  color: var(--text-inv);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  white-space: nowrap;
}
.chip b { color: var(--lime); font-weight: 700; }
a.chip {
  color: var(--text); background: var(--surface); border-color: var(--line);
  text-decoration: none; font-weight: 600; font-size: 0.8rem;
  padding: 0.45rem 0.95rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-out);
}
a.chip:hover { border-color: var(--green); background: var(--mist); transform: translateY(-2px); }
.gen__curve { stroke-dasharray: 1000; stroke-dashoffset: 0; }
.gen.is-animated .gen__curve { animation: draw 2.2s var(--ease-out) 0.3s both; }
@keyframes draw { from { stroke-dashoffset: 1000; } to { stroke-dashoffset: 0; } }
.gen__note { font-size: 0.82rem; color: var(--text-inv-2); margin-top: 0.75rem; }

/* ---- Trust strip -------------------------------------------------------- */
.trust { border-block: 1px solid var(--line); background: var(--surface); }
.trust .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1.15rem 3.4rem; padding-block: 1.4rem;
}
.trust__item { display: flex; align-items: center; gap: 0.8rem; }
.trust__item img { height: 44px; width: auto; }
.trust__item span { font-size: 0.88rem; color: var(--text-2); max-width: 17ch; line-height: 1.35; }
.trust__fact { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text); }
.trust__fact b { color: var(--green-text); }

/* ---- Stats row ---------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.stat {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.5rem;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}
.stat:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow-card); }
.stat::before {
  content: ''; display: block;
  width: 1.9rem; height: 3px; border-radius: 2px;
  background: var(--green);
  margin-bottom: 1rem;
}
.stat b, .stat b span { display: inline; font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.7rem); font-weight: 750; letter-spacing: -0.02em; line-height: 1; }
.stat b { display: block; margin-bottom: 0.55rem; }
.stat span {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--text-2); line-height: 1.5; display: block;
}
.stat b .sub, .stat span span { font: inherit; text-transform: none; letter-spacing: inherit; }
@media (max-width: 860px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---- Cards / grids ------------------------------------------------------ */
.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
a.card { text-decoration: none; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--mist);
  display: grid; place-items: center;
  margin-bottom: 0.4rem;
}
.card__icon svg { width: 26px; height: 26px; stroke: var(--green-text); }
.card p { color: var(--text-2); font-size: 0.98rem; }
.card__go {
  margin-top: auto; padding-top: 0.5rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 650; font-size: 0.95rem; color: var(--green-text);
}
.card__go svg { width: 1em; height: 1em; transition: translate 0.2s; }
a.card:hover .card__go svg { translate: 4px 0; }
.card--wide { grid-column: span 2; }
@media (max-width: 640px) { .card--wide { grid-column: auto; } }

/* ---- Product cards ------------------------------------------------------ */
.product {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; display: flex; flex-direction: column; gap: 1rem;
}
.product__tag {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  background: var(--mist); color: var(--text-2);
}
.product__tag--new { background: var(--ink); color: var(--lime); }
.product h3 { font-size: 1.45rem; color: var(--text); }
.product p { color: var(--text-2); font-size: 0.98rem; }
.product .specs { display: flex; flex-direction: column; gap: 0; margin-top: auto; border-top: 1px solid var(--line); }
.product .specs div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.65rem 0; border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.product .specs span { color: var(--text-2); }
.product .specs b { font-family: var(--font-mono); font-weight: 600; text-align: right; color: var(--text); }

/* ---- Price cards -------------------------------------------------------- */
.price {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.price__img {
  display: grid; place-items: center;
  margin-bottom: 1rem;
  height: 176px;
}
.price__img img { max-height: 168px; max-width: 100%; width: auto; object-fit: contain; transition: scale 0.35s var(--ease-out); }
.price:hover .price__img img { scale: 1.05; }
.price { transition: border-color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s; }
.price:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.price:hover .btn--ghost { background: var(--green); border-color: var(--green); color: var(--ink); }
.price__band { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); }
.price__amount { font-family: var(--font-display); font-size: 2.5rem; font-weight: 750; letter-spacing: -0.02em; }
.price__amount small { font-size: 1rem; font-weight: 500; font-family: var(--font-body); color: var(--text-2); letter-spacing: 0; }
.price ul { display: flex; flex-direction: column; gap: 0.55rem; margin-block: 0.75rem 1.25rem; }
.price li { display: flex; gap: 0.6rem; font-size: 0.96rem; color: var(--text-2); align-items: baseline; }
.price li svg { width: 15px; height: 15px; flex: none; stroke: var(--green-text); translate: 0 2px; }
.price .btn { margin-top: auto; }

/* ---- Steps (how it works) ----------------------------------------------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step {
  counter-increment: step; position: relative;
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--green); }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 750; font-size: 2.6rem; line-height: 1;
  letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1.6px var(--green);
  display: block; margin-bottom: 0.85rem;
  transition: color 0.25s var(--ease-out);
}
.step:hover::before { color: var(--lime); }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 2.1rem; right: -1.05rem;
  width: 1.35rem; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0.7;
}
@media (max-width: 980px) { .step:not(:last-child)::after { display: none; } }
.step h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.95rem; color: var(--text-2); }
.on-dark .step { border-color: var(--line-dark); background: rgba(255, 255, 255, 0.035); }
.on-dark .step::before { -webkit-text-stroke: 1.6px var(--lime); }
.on-dark .step:hover::before { color: var(--green); }
.on-dark .step p { color: var(--text-inv-2); }

/* ---- Split feature ------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split__panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.split__panel.on-dark {
  border-color: var(--line-dark);
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(560px 340px at 80% -10%, rgba(111, 178, 68, 0.2), transparent 62%),
    var(--ink);
  background-size: 42px 42px, 42px 42px, auto, auto;
}
.checklist { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.checklist li { display: flex; gap: 0.8rem; align-items: baseline; }
.checklist svg { width: 18px; height: 18px; flex: none; stroke: var(--green-text); translate: 0 3px; }
.on-dark .checklist svg { stroke: var(--lime); }
.checklist b { display: block; }
.checklist span { color: var(--text-2); font-size: 0.97rem; }
.on-dark .checklist span { color: var(--text-inv-2); }

/* ---- Reviews ------------------------------------------------------------ */
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; display: flex; flex-direction: column; gap: 0.9rem;
}
.review p { font-size: 0.98rem; }
.review footer { margin-top: auto; font-size: 0.9rem; color: var(--text-2); display: flex; align-items: center; gap: 0.6rem; }
.review footer b { color: var(--text); }
.review .rating__stars svg { width: 15px; height: 15px; }

/* ---- FAQ ---------------------------------------------------------------- */
.faq { max-width: 780px; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.15rem 0.25rem;
  font-weight: 650; font-size: 1.05rem;
  min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 20px; height: 20px; flex: none; stroke: var(--green-text); transition: transform 0.25s var(--ease-out); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details > div { padding: 0 0.25rem 1.3rem; color: var(--text-2); max-width: 62ch; }
.faq details > div a { color: var(--green-text); font-weight: 600; }

/* ---- Areas -------------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chips a, .chips li {
  font-size: 0.95rem; font-weight: 550;
  padding: 0.55rem 1.05rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.chips a:hover { border-color: var(--green); background: var(--mist); }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band {
  text-align: center; position: relative; overflow: hidden;
  /* clean dark — no panel grid on the closing band */
  background: radial-gradient(1100px 640px at 78% -12%, rgba(111, 178, 68, 0.17), transparent 62%), var(--ink);
}
.cta-band::after {
  content: ''; position: absolute;
  right: 4%; bottom: -12%;
  width: min(760px, 72vw); aspect-ratio: 329 / 247;
  background: url('/assets/img/swoosh.png') no-repeat center / contain;
  opacity: 0.22;
  pointer-events: none;
}
.cta-band::before {
  content: ''; position: absolute;
  right: 2%; top: -8%;
  width: min(560px, 52vw); aspect-ratio: 329 / 111;
  background: url('/assets/img/swoosh-top.png') no-repeat center / contain;
  opacity: 0.2;
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band .container { max-width: 860px; }
.cta-band h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.cta-band p { color: var(--text-inv-2); max-width: 52ch; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-band .hero__ctas { justify-content: center; margin-bottom: 0; }

/* ---- Footer ------------------------------------------------------------- */
.footer { background: var(--ink); color: var(--text-inv-2); font-size: 0.95rem; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--text-inv); text-decoration: underline; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem;
  padding-block: 3.5rem 2.5rem;
  border-top: 1px solid var(--line-dark);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 64px; width: auto; margin-bottom: 1rem; }
.footer h3 { font-size: 0.82rem; font-family: var(--font-mono); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-inv); margin-bottom: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__legal {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; justify-content: space-between;
  font-size: 0.85rem;
}
.footer address { font-style: normal; line-height: 1.8; }

/* ---- Forms -------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 650; font-size: 0.94rem; margin-bottom: 0.4rem; }
.field label small { font-weight: 450; color: var(--text-2); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  min-height: 50px;
  transition: border-color 0.15s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); outline: none; }
.field .hint { font-size: 0.85rem; color: var(--text-2); margin-top: 0.35rem; }
.form__status { font-weight: 600; }
.form__status.is-error { color: #B3261E; }
.form__status.is-ok { color: var(--green-text); }

/* ---- Page hero (subpages) ----------------------------------------------- */
.page-hero { padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 1.1rem; max-width: 20ch; }
.page-hero .lead { max-width: 58ch; }
.page-hero .hero__ctas { margin-top: 1.75rem; margin-bottom: 0; }
.page-hero .rating { color: var(--text-2); margin-top: 1.25rem; }
.page-hero .rating strong { color: var(--text); }

.breadcrumb { font-size: 0.88rem; color: var(--text-2); margin-bottom: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { width: 12px; height: 12px; stroke: var(--text-2); }

/* photo-backed page hero */
.page-hero--photo { position: relative; overflow: clip; color: var(--text-inv); isolation: isolate; }
.page-hero--photo::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(88deg, rgba(9, 14, 11, 0.93) 8%, rgba(9, 14, 11, 0.75) 46%, rgba(9, 14, 11, 0.28) 100%), var(--ph-img);
  background-size: cover; background-position: center var(--ph-pos, 45%);
}
.page-hero--photo h1 { color: var(--text-inv); }
.page-hero--photo .lead { color: var(--text-inv-2); }
.page-hero--photo .eyebrow { color: var(--lime); }
.page-hero--photo .breadcrumb, .page-hero--photo .breadcrumb a { color: var(--text-inv-2); }
.page-hero--photo .breadcrumb svg { stroke: var(--text-inv-2); }
.page-hero--photo .btn--ghost { color: var(--text-inv); border-color: rgba(255, 255, 255, 0.28); }
.page-hero--photo .btn--ghost:hover { border-color: var(--text-inv); }
.page-hero--photo .rating { color: var(--text-inv-2); }
.page-hero--photo .rating strong { color: var(--text-inv); }

/* split photo hero (portrait-friendly) */
.page-hero--split .page-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.page-hero__media { border-radius: var(--radius); overflow: clip; border: 1px solid var(--line-dark); }
.page-hero__media img { width: 100%; height: 100%; max-height: 540px; object-fit: cover; display: block; }
@media (max-width: 880px) {
  .page-hero--split .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__media img { max-height: 360px; }
}
.page-hero--split h1 { color: var(--text-inv); }
.page-hero--split .lead { color: var(--text-inv-2); }
.page-hero--split .eyebrow { color: var(--lime); }
.page-hero--split .breadcrumb, .page-hero--split .breadcrumb a { color: var(--text-inv-2); }
.page-hero--split .breadcrumb svg { stroke: var(--text-inv-2); }
.page-hero--split .rating { color: var(--text-inv-2); }
.page-hero--split .rating strong { color: var(--text-inv); }

/* ---- Prose (privacy etc.) ------------------------------------------------ */
.prose { max-width: 68ch; }
.prose h2 { font-size: 1.5rem; margin: 2.25rem 0 0.75rem; }
.prose p, .prose li { color: var(--text-2); }
.prose ul { padding-left: 1.2rem; }
.prose a { color: var(--green-text); font-weight: 600; }

/* ---- Service mosaic (home) ----------------------------------------------- */
.mosaic { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
.tile {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-radius: var(--radius);
  padding: 1.9rem;
  min-height: 300px;
  overflow: clip;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  isolation: isolate;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.tile--lg { grid-column: span 4; }
.tile--md { grid-column: span 2; }
.tile--dark {
  border-color: transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(560px 340px at 82% 0%, rgba(111, 178, 68, 0.22), transparent 65%),
    var(--ink);
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: var(--text-inv);
}
.tile--green { border-color: transparent; background: linear-gradient(135deg, #5FA136, #3E7222); color: #F3F9EC; }
.tile__kicker { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-text); margin-bottom: 0.5rem; }
.tile--dark .tile__kicker { color: var(--lime); }
.tile--photo {
  background-image: linear-gradient(180deg, rgba(9, 14, 11, 0.30) 20%, rgba(9, 14, 11, 0.88) 78%), var(--tp-img);
  background-size: cover; background-position: var(--tp-pos, center 40%);
  border-color: rgba(9, 14, 11, 0.2);
}
.tile--photo h3 { color: var(--text-inv); }
.tile--green .tile__kicker { color: #DFF3C8; }
.tile h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); margin-bottom: 0.4rem; letter-spacing: -0.015em; }
.tile p { font-size: 0.96rem; color: var(--text-2); max-width: 34ch; }
.tile--dark p { color: var(--text-inv-2); }
.tile--green p { color: #E4F2D5; }
.tile__go { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 650; font-size: 0.95rem; margin-top: 1rem; color: var(--green-text); }
.tile--dark .tile__go { color: var(--lime); }
.tile--green .tile__go { color: #FFFFFF; }
.tile__go svg { width: 1em; height: 1em; transition: translate 0.2s; }
.tile:hover .tile__go svg { translate: 4px 0; }
.tile__art {
  position: absolute; inset: 0; z-index: -1;
  display: flex; align-items: flex-start; justify-content: flex-end;
  pointer-events: none;
}
.tile__art img { max-height: 78%; width: auto; margin: 1.25rem 1.25rem 0 0; transition: scale 0.35s var(--ease-out); }
.tile:hover .tile__art img { scale: 1.05; }
.tile__art svg { width: 100%; height: auto; align-self: flex-start; }
.tile__art--fade::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(255, 255, 255, 0.92) 72%); }
.tile--dark .tile__art--fade::after { background: linear-gradient(180deg, transparent 30%, rgba(10, 15, 12, 0.88) 72%); }
@media (max-width: 980px) {
  .tile--lg { grid-column: span 6; }
  .tile--md { grid-column: span 3; }
}
@media (max-width: 640px) {
  .tile--md { grid-column: span 6; }
  .tile { min-height: 240px; }
}

/* quiet secondary service strip */
.svc-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 1.1rem; }
@media (max-width: 860px) { .svc-strip { grid-template-columns: 1fr; } }
.svc-strip a {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--mist);
  text-decoration: none; font-weight: 650; font-size: 0.98rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-out);
}
.svc-strip a span { display: block; font-weight: 450; font-size: 0.85rem; color: var(--text-2); }
.svc-strip a svg { width: 1.1em; height: 1.1em; flex: none; stroke: var(--green-text); transition: translate 0.2s; }
.svc-strip a:hover { border-color: var(--green); background: #E7EFDC; transform: translateY(-2px); }
.svc-strip a:hover svg { translate: 4px 0; }

/* tinted section band */
.section--mist { background: var(--mist); }

/* ---- Product showcase pages ---------------------------------------------- */
.showcase-hero { position: relative; overflow: clip; }
.showcase-hero .container {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
@media (max-width: 880px) { .showcase-hero .container { grid-template-columns: 1fr; } }
.showcase-hero .breadcrumb { color: var(--text-inv-2); margin-bottom: 2rem; }
.showcase-hero .breadcrumb svg { stroke: var(--text-inv-2); }
.showcase-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); margin-bottom: 1.1rem; }
.showcase-hero .lead { max-width: 52ch; }
.showcase-hero__stats { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.6rem; }
.showcase-hero .hero__ctas { margin-top: 2rem; margin-bottom: 0; }

.showcase-hero__visual { position: relative; }
.showcase-hero__visual::before {
  content: ''; position: absolute; inset: -12% -8%;
  background: radial-gradient(closest-side, rgba(111, 178, 68, 0.22), transparent 72%);
  pointer-events: none;
  animation: bloom 6s ease-in-out infinite;
}
.showcase-hero__visual img {
  position: relative; margin-inline: auto; max-height: min(58vh, 560px); width: auto;
  animation: rise 0.9s var(--ease-out) 0.15s both, float 7s ease-in-out 1.2s infinite;
}
@keyframes rise { from { opacity: 0; translate: 0 30px; } to { opacity: 1; translate: 0 0; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes bloom { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }

/* staggered spec chips in showcase hero */
.showcase-hero__stats .chip { opacity: 0; animation: rise 0.5s var(--ease-out) both; }
.showcase-hero__stats .chip:nth-child(1) { animation-delay: 0.35s; }
.showcase-hero__stats .chip:nth-child(2) { animation-delay: 0.47s; }
.showcase-hero__stats .chip:nth-child(3) { animation-delay: 0.59s; }
.showcase-hero__stats .chip:nth-child(4) { animation-delay: 0.71s; }

/* bare floating product image in feature splits */
.float-img { display: grid; place-items: center; }
.float-img img { max-height: min(52vh, 480px); width: auto; animation: float 8s ease-in-out infinite; }

/* light plinth for white-background product renders */
.plinth {
  background: linear-gradient(180deg, var(--pine), var(--ink));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: grid; place-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.plinth img { max-height: min(52vh, 500px); width: auto; mix-blend-mode: multiply; }

/* big-number stat band */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 860px) { .statband { grid-template-columns: 1fr 1fr; } }
.statband > div { background: rgba(255, 255, 255, 0.035); padding: 1.7rem 1.5rem; }
.statband b { display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 750; letter-spacing: -0.02em; color: var(--text-inv); }
.statband b small { font-size: 0.55em; font-weight: 600; }
.statband span { font-size: 0.9rem; color: var(--text-inv-2); }

/* alternating feature splits */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature + .feature { margin-top: clamp(3rem, 6vw, 5rem); }
.feature--flip > :first-child { order: 2; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip > :first-child { order: 0; }
}
.feature h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 0.75rem; }
.feature p { color: var(--text-2); max-width: 54ch; }
.on-dark .feature p { color: var(--text-inv-2); }

/* full-bleed image band */
.imgband { position: relative; }
.imgband img { width: 100%; height: auto; display: block; }
.imgband figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(transparent, rgba(10, 14, 12, 0.82));
  color: var(--text-inv);
  font-family: var(--font-display); font-weight: 650;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: -0.01em;
}
.imgband figcaption small { display: block; font-family: var(--font-body); font-weight: 450; font-size: 0.65em; color: var(--text-inv-2); margin-top: 0.3rem; }

.imgband--duo { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.imgband--duo img { width: 100%; height: clamp(320px, 46vw, 540px); object-fit: cover; }
@media (max-width: 640px) { .imgband--duo { grid-template-columns: 1fr; } .imgband--duo img { height: 300px; } }
.imgband--quad { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.imgband--quad img { width: 100%; height: clamp(260px, 30vw, 420px); object-fit: cover; }
@media (max-width: 880px) { .imgband--quad { grid-template-columns: 1fr 1fr; } }

/* spec table */
.spec-table { width: 100%; border-collapse: collapse; max-width: 780px; }
.spec-table th, .spec-table td { text-align: left; padding: 0.85rem 0.25rem; border-bottom: 1px solid var(--line); font-size: 0.97rem; vertical-align: top; }
.spec-table th { font-weight: 450; color: var(--text-2); width: 42%; }
.spec-table td { font-family: var(--font-mono); font-weight: 600; }

/* verdict panel */
.verdict {
  border-left: 4px solid var(--green);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-card);
  max-width: 720px;
}
.verdict p { font-size: 1.05rem; }
.verdict footer { margin-top: 1rem; font-size: 0.92rem; color: var(--text-2); }
.verdict footer b { color: var(--text); }

/* product card image slot (home + battery pages) */
.product__img {
  display: grid; place-items: center;
  height: 268px;
  margin-bottom: 0.5rem;
}
.product__img img { max-height: 256px; max-width: 100%; width: auto; transition: scale 0.35s var(--ease-out); }
a.product:hover .product__img img { scale: 1.05; }
a.product { text-decoration: none; color: inherit; transition: transform 0.25s var(--ease-out), box-shadow 0.25s; }
a.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.product__go { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 650; font-size: 0.95rem; color: var(--green-text); margin-top: 0.75rem; }
.product__go svg { width: 1em; height: 1em; transition: translate 0.2s; }
a.product:hover .product__go svg { translate: 4px 0; }

/* ---- Phone mockup (app sections on product pages) ------------------------ */
.phone {
  width: min(310px, 80vw);
  margin-inline: auto;
  background: #060A08;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 46px;
  padding: 13px;
  box-shadow: 0 36px 70px -34px rgba(0, 0, 0, 0.6);
  animation: float 8s ease-in-out infinite;
}
.phone__screen {
  background: linear-gradient(180deg, #0D1310, #090E0B);
  border-radius: 34px;
  padding: 0.6rem 1.05rem 1.3rem;
  color: var(--text-inv);
  overflow: hidden;
}
.phone__island { width: 82px; height: 21px; background: #000; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 999px; margin: 0.3rem auto 0.9rem; }
.phone__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.9rem; }
.phone__app { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); }
.phone__time { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-inv-2); }
.phone__big { font-family: var(--font-display); font-weight: 750; font-size: 1.9rem; letter-spacing: -0.02em; line-height: 1.05; }
.phone__big small { font-size: 0.5em; font-weight: 600; color: var(--text-inv-2); }
.phone__sub { font-size: 0.78rem; color: var(--text-inv-2); margin-bottom: 0.9rem; }
.phone__row {
  display: flex; justify-content: space-between; align-items: center; gap: 0.75rem;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-top: 0.5rem;
  font-size: 0.78rem;
}
.phone__row b { font-family: var(--font-mono); font-weight: 600; font-size: 0.75rem; color: var(--lime); white-space: nowrap; }
.phone__row span { color: var(--text-inv-2); }
.phone__row .ok { color: var(--sun); }
.phone svg { width: 100%; height: auto; display: block; }
.phone-note { font-size: 0.8rem; color: var(--text-2); text-align: center; margin-top: 1rem; }
.on-dark .phone-note { color: var(--text-inv-2); }

/* ---- Charger cycle (EV hero) ---------------------------------------------- */
.charger-cycle { display: grid; place-items: center; position: relative; }
.charger-cycle__stage { display: grid; place-items: center; min-height: min(46vh, 420px); width: 100%; }
.charger-cycle__stage img {
  grid-area: 1 / 1;
  max-height: min(42vh, 380px); width: auto;
  opacity: 0; translate: 0 14px;
  transition: opacity 0.55s var(--ease-out), translate 0.55s var(--ease-out);
  animation: float 7s ease-in-out infinite;
}
.charger-cycle__stage img.is-active { opacity: 1; translate: 0 0; }
.charger-cycle__label {
  margin-top: 1.1rem;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lime);
  border: 1px solid var(--line-dark); border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.45rem 1rem;
  transition: opacity 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  .charger-cycle__stage img { animation: none; transition: none; }
}

/* ---- Reveal animations --------------------------------------------------- */
.reveal { opacity: 0; translate: 0 22px; transition: opacity 0.7s var(--ease-out), translate 0.7s var(--ease-out); }
.reveal.is-in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; translate: none; transition: none; }
  .gen.is-animated .gen__curve { animation: none; }
  .gen__live .dot { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---- Utilities ----------------------------------------------------------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.center { text-align: center; }
.hidden { display: none !important; }

/* ---- Brand marquee ------------------------------------------------------ */
.brands { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--paper); padding-block: 0.9rem; }
.brands__track { display: flex; width: max-content; animation: brands-scroll 44s linear infinite; }
.brands ul { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; }
.brands li {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-2); white-space: nowrap;
}
.brands li::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); opacity: 0.55; margin-inline: 1.9rem; }
.brands li img { display: block; height: 30px; width: auto; opacity: 0.66; }
.brands li img[alt="Tesla"] { height: 40px; }
.brands__txt { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-2); }
@keyframes brands-scroll { to { translate: -50% 0; } }
@media (prefers-reduced-motion: reduce) {
  .brands__track { animation: none; width: auto; }
  .brands ul[aria-hidden="true"] { display: none; }
  .brands ul { flex-wrap: wrap; justify-content: center; row-gap: 0.6rem; }
}

/* ---- Blog ------------------------------------------------------------- */
.article { max-width: 72ch; }
.article > p { margin-bottom: 1.05rem; color: var(--text-2); font-size: 1.02rem; }
.article h2 { font-family: var(--font-display); font-size: 1.6rem; margin: 2.2rem 0 0.8rem; letter-spacing: -0.01em; }
.article h3 { font-size: 1.2rem; margin: 1.6rem 0 0.6rem; }
.article h4 { font-size: 1.05rem; margin: 1.3rem 0 0.5rem; }
.article ul, .article ol { margin: 0 0 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.45rem; color: var(--text-2); }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article a { color: var(--green-text); font-weight: 600; }
.article img { border-radius: var(--radius); margin: 1.4rem 0; max-width: 100%; height: auto; }
.article__hero img { width: 100%; }
.article__meta { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-2); margin-top: 0.8rem; }
.article__cta { margin-top: 2.5rem; padding: 1.6rem 1.75rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--mist); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.article__cta p { color: var(--text-2); margin-top: 0.3rem; max-width: 44ch; }
.article__back { margin-top: 2rem; }
.article__back a { font-weight: 650; color: var(--green-text); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 980px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; gap: 0.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; text-decoration: none; color: inherit; transition: transform 0.25s var(--ease-out), box-shadow 0.25s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.post-card__img { aspect-ratio: 16/10; border-radius: calc(var(--radius) - 6px); overflow: hidden; background: var(--mist); display: block; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card__ph { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, var(--lime), var(--mist)); }
.post-card__cat { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); margin-top: 0.35rem; }
.post-card h2 { font-size: 1.12rem; line-height: 1.35; color: var(--text); }
.post-card p { font-size: 0.9rem; color: var(--text-2); }

/* ---- Photo service strip (mosaic bottom row) ---------------------------- */
.svc-strip--photo a {
  position: relative;
  display: flex; flex-direction: column; align-items: stretch;
  padding: 0; overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text); text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}
.svc-strip--photo a::before {
  content: '';
  display: block;
  aspect-ratio: 16 / 6.2;
  background-image: linear-gradient(180deg, rgba(9, 14, 11, 0.05), rgba(9, 14, 11, 0.18)), var(--sv-img);
  background-size: cover; background-position: center 38%;
  transition: scale 0.35s var(--ease-out);
}
.svc-strip--photo a:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--green); }
.svc-strip--photo a > span {
  display: flex; flex-direction: column; gap: 0.1rem;
  padding: 0.95rem 3rem 1.05rem 1.2rem;
}
.svc-strip--photo a b { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--text); }
.svc-strip--photo a > span span { font-size: 0.85rem; color: var(--text-2); }
.svc-strip--photo a svg {
  position: absolute; right: 1.15rem; bottom: 1.35rem;
  width: 1.15rem; height: 1.15rem;
  color: var(--green-text);
  transition: translate 0.2s;
}
.svc-strip--photo a:hover svg { translate: 4px 0; }

/* ---- Journey (20 years) ------------------------------------------------- */
.journey { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.journey__media { position: relative; }
.journey__media img { border-radius: var(--radius); width: 100%; height: auto; aspect-ratio: 4 / 3.4; object-fit: cover; object-position: center 30%; }
.journey__badge {
  position: absolute; left: -1.1rem; bottom: -1.3rem;
  background: var(--ink); color: var(--text-inv);
  border-radius: var(--radius-sm);
  padding: 1.05rem 1.5rem 1rem;
  box-shadow: var(--shadow-card);
}
.journey__badge b {
  display: block;
  font-family: var(--font-display); font-weight: 750; font-size: 3.1rem; line-height: 0.95;
  letter-spacing: -0.02em; color: var(--lime);
}
.journey__badge span {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-inv-2);
}
.journey__badge b span { font: inherit; color: inherit; letter-spacing: inherit; text-transform: none; }
.journey__body p + p { margin-top: 1rem; }
.journey__body p { color: var(--text-2); max-width: 56ch; }
.journey__body .btn { margin-top: 1.6rem; }
@media (max-width: 860px) {
  .journey { grid-template-columns: 1fr; }
  .journey__badge { left: 1rem; bottom: -1.1rem; }
  .journey__body { margin-top: 1.5rem; }
}

/* ---- Lead form in CTA bands --------------------------------------------- */
.leadform { max-width: 600px; margin: 0 auto; display: grid; gap: 0.85rem; text-align: left; }
.leadform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
@media (max-width: 560px) { .leadform__row { grid-template-columns: 1fr; } }
.leadform label {
  display: block;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-inv-2); margin-bottom: 0.35rem;
}
.leadform input, .leadform select {
  width: 100%;
  background: var(--surface); color: var(--text);
  border: 1px solid transparent; border-radius: 12px;
  padding: 0.8rem 1rem; font-size: 1rem;
}
.leadform input:focus-visible, .leadform select:focus-visible { outline: 3px solid var(--green); outline-offset: 1px; }
.leadform .btn { width: 100%; margin-top: 0.2rem; }
.leadform__alt { text-align: center; font-size: 0.95rem; color: var(--text-inv-2); margin-top: 0.4rem; }
.leadform__alt a { color: var(--text-inv); font-weight: 650; }
.leadform .form__status { text-align: center; }
.leadform .form__status.is-ok { color: var(--lime); }
.leadform .form__status.is-error { color: #FFB4A9; }

/* bottom service tiles share the mosaic tile anatomy at a shorter height */
.svc-strip a.tile {
  flex-direction: column; align-items: stretch; justify-content: flex-end;
  padding: 1.9rem; min-height: 200px;
}
.svc-strip a.tile span { display: inline-flex; }
.svc-strip a.tile .tile__kicker { display: block; }
.svc-strip a.tile p { font-weight: 450; }

/* photo tiles must beat .svc-strip a's background shorthand (specificity + order) */
.svc-strip a.tile--photo, a.tile--photo {
  background-image: linear-gradient(180deg, rgba(9, 14, 11, 0.30) 20%, rgba(9, 14, 11, 0.88) 78%), var(--tp-img);
  background-size: cover;
  background-position: var(--tp-pos, center 40%);
  background-color: var(--ink);
}
.svc-strip a.tile--photo:hover { background-color: var(--ink); }

/* ---- Footer socials ----------------------------------------------------- */
.socials { display: flex; gap: 0.7rem; margin-top: 1rem; }
.socials a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--text-2);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
}
.socials a:hover { background: var(--green); border-color: var(--green); color: var(--ink); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }


/* ---- town pages: media splits + photo cards ---- */
.locsplit { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: center; }
.locsplit__txt p + p { margin-top: 1rem; }
.locsplit__txt .measure a { color: var(--green-text); font-weight: 650; }
.locsplit__img { border-radius: 18px; overflow: hidden; box-shadow: 0 18px 44px rgba(16, 24, 16, 0.16); }
.locsplit__img img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.locsplit--rev { grid-template-columns: 0.88fr 1.12fr; }
@media (max-width: 820px) {
  .locsplit, .locsplit--rev { grid-template-columns: 1fr; }
  .locsplit--rev .locsplit__img { order: -1; }
  .locsplit__img img { aspect-ratio: 16 / 10; }
}
.card--ph { padding: 0; overflow: hidden; display: block; }
.card--ph img { display: block; width: 100%; aspect-ratio: 16 / 9.5; object-fit: cover; }
.card--ph .card__body { padding: 1.05rem 1.25rem 1.25rem; }
.card--ph .card__body p { color: var(--text-2); }

/* footer: sitewide area links */
.footer__areas { font-size: 0.84rem; color: var(--text-inv-2); margin: 1.6rem 0 0.2rem; line-height: 1.9; }
.footer__areas span { color: var(--text-inv-2); opacity: 0.7; margin-right: 0.3rem; }
.footer__areas a { color: var(--text-inv-2); text-decoration: none; }
.footer__areas a:hover { color: var(--text-inv); text-decoration: underline; }


/* ==========================================================================
   Homepage design language, carried sitewide (ported from badger.css)
   ========================================================================== */
.btn--glow {
  padding: 1rem 1.9rem;
  border: none;
  font-size: 1rem;
  font-weight: 650;
  cursor: pointer;
  position: relative;
  isolation: auto;
  background: linear-gradient(90deg, #C9E9A4, #6FB244, #F5B72F);
  border-radius: 14px;
  color: #FFFFFF;
  transition: all 0.3s ease;
  box-shadow:
    inset 0px 0px 5px #ffffffa9,
    inset 0px 35px 30px #0A0E0B,
    0px 5px 10px #000000cc;
  text-shadow: 1px 1px 1px #000;
}
.btn--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 14px;
  filter: blur(0);
  z-index: -1;
  box-shadow: none;
  background: conic-gradient(
    #00000000 80deg,
    #6FB244,
    #F5B72F,
    #C9E9A4,
    #00000000 280deg
  );
  transition: all 0.3s ease;
}
.btn--glow:hover::before { filter: blur(16px); }
.btn--glow:active::before { filter: blur(5px); transform: translateY(1px); }
.btn--glow:active {
  box-shadow:
    inset 0px 0px 5px #ffffffa9,
    inset 0px 35px 30px #0A0E0B;
  margin-top: 3px;
}
.btn--glow:hover { transform: none; background: linear-gradient(90deg, #C9E9A4, #6FB244, #F5B72F); }
.btn--glow-ghost {
  padding: 1rem 1.9rem;
  border: none;
  font-size: 1rem;
  font-weight: 650;
  cursor: pointer;
  position: relative;
  isolation: auto;
  background: rgba(10, 14, 11, 0.35);
  border-radius: 14px;
  color: #EFF4EC;
  transition: all 0.3s ease;
  box-shadow:
    inset 0px 0px 5px #ffffff2e,
    inset 0px 18px 26px rgba(0, 0, 0, 0.55),
    0px 5px 10px #00000088;
  text-shadow: 1px 1px 1px #000;
}
.btn--glow-ghost::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 14px;
  padding: 1.5px;
  background: linear-gradient(90deg, #C9E9A4, #6FB244, #F5B72F);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn--glow-ghost::before {
  content: "";
  position: absolute; inset: 0; margin: auto;
  border-radius: 14px;
  filter: blur(0);
  z-index: -1;
  background: conic-gradient(
    #00000000 80deg,
    #6FB244,
    #F5B72F,
    #C9E9A4,
    #00000000 280deg
  );
  opacity: 0.75;
  transition: all 0.3s ease;
}
.btn--glow-ghost:hover::before { filter: blur(14px); }
.btn--glow-ghost:hover { color: #FFFFFF; transform: none; border-color: transparent; }
.btn--glow-ghost:active::before { filter: blur(5px); transform: translateY(1px); }
.btn--glow-ghost:active {
  box-shadow:
    inset 0px 0px 5px #ffffff2e,
    inset 0px 18px 26px rgba(0, 0, 0, 0.55);
  margin-top: 3px;
}
.btn--glow-light {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border: none; border-radius: 14px;
  background: #FFFFFF;
  color: var(--text);
  font-weight: 650; font-size: 0.98rem;
  cursor: pointer; text-decoration: none;
  box-shadow:
    inset 0 1px 0 #FFFFFF,
    0 1px 2px rgba(18, 28, 19, 0.08),
    0 8px 20px rgba(18, 28, 19, 0.1);
  transition: box-shadow 0.3s, transform 0.25s var(--ease-out);
}
.btn--glow-light::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 14px;
  padding: 1.5px;
  background: linear-gradient(90deg, #C9E9A4, #6FB244, #F5B72F);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn--glow-light::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 18px;
  z-index: -1;
  background: radial-gradient(60% 100% at 50% 100%, rgba(111, 178, 68, 0.45), transparent 70%);
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn--glow-light:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 #FFFFFF, 0 2px 4px rgba(18, 28, 19, 0.08), 0 12px 26px rgba(18, 28, 19, 0.14); }
.btn--glow-light:hover::before { opacity: 1; }
.btn--glow-light:active { transform: translateY(0); }

.faq details { background: transparent; border: 0; border-bottom: 1px solid #EDEFEA; border-radius: 0; }
.faq details:first-child { border-top: 1px solid #EDEFEA; }
.faq summary { padding-inline: 0.2rem; font-weight: 650; }
.faq details div { padding-inline: 0.2rem; }
.faq details { position: relative; transition: background 0.3s; }
.faq details::after {
  content: "";
  position: absolute; left: -1.15rem; top: 16px; bottom: 16px;
  width: 2.5px; border-radius: 2px;
  background: linear-gradient(180deg, #C9E9A4, #6FB244, #F5B72F);
  opacity: 0; transform: scaleY(0.35); transform-origin: top;
  transition: opacity 0.35s, transform 0.5s var(--ease-out);
}
.faq details[open]::after { opacity: 1; transform: none; }
.faq summary { padding: 1.3rem 0.2rem; font-size: 1.07rem; transition: color 0.25s; }
.faq summary:hover, .faq details[open] summary { color: var(--green-text); }
.faq details > div { max-width: 58ch; }
.faq details::after { left: -0.55rem; }

/* nav: small-caps mono like the homepage */
.nav a.nav__link, .nav button.nav__link {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 0.5rem 0.7rem;
}
.nav .btn {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.7rem 1.25rem; min-height: 0;
}
@media (max-width: 920px) {
  .nav a.nav__link, .nav button.nav__link { font-size: 0.92rem; letter-spacing: 0.12em; padding: 0.95rem 1rem; }
}

/* photo-hero pages: transparent fixed header over the image, dark glass once scrolled */
body.has-photo-hero .header {
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border-bottom: 0;
  transition: background 0.35s, box-shadow 0.35s, -webkit-backdrop-filter 0.35s, backdrop-filter 0.35s;
}
body.has-photo-hero .header.is-scrolled {
  background: rgba(10, 14, 11, 0.82);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-color: transparent; box-shadow: none;
}
body.has-photo-hero .nav a.nav__link, body.has-photo-hero .nav button.nav__link { color: var(--text-inv); }
body.has-photo-hero .nav a.nav__link:hover, body.has-photo-hero .nav button.nav__link:hover { background: rgba(255, 255, 255, 0.08); }
body.has-photo-hero .nav .btn { background: var(--green); color: var(--ink, #141A15); }
body.has-photo-hero .nav__menu { background: #101511; border-color: rgba(255, 255, 255, 0.1); }
body.has-photo-hero .nav__menu a { color: var(--text-inv); }
body.has-photo-hero .nav__menu a span { color: var(--text-inv-2); }
body.has-photo-hero .nav__menu a:hover { background: rgba(255, 255, 255, 0.06); }
body.has-photo-hero .burger { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); color: #FFFFFF; }
body.has-photo-hero .page-hero--photo { padding-top: calc(clamp(3.5rem, 7vw, 5.5rem) + 104px); }
@media (max-width: 920px) {
  body.has-photo-hero .nav, body.badger .nav { background: #0F1410; }
  body.has-photo-hero .nav__menu, body.badger .nav__menu { background: rgba(255, 255, 255, 0.06); }
  body.has-photo-hero .nav a.nav__link:hover, body.badger .nav a.nav__link:hover { background: rgba(255, 255, 255, 0.08); }
}

/* section labels and statements aligned with the homepage */
.eyebrow { color: #8A968B; font-size: 0.72rem; letter-spacing: 0.2em; }
.eyebrow::before { display: none; }
.page-hero--photo .eyebrow { color: var(--lime); }
.on-dark .eyebrow { color: #9AA69B; }
.h-section { font-size: clamp(1.7rem, 3vw, 2.35rem); letter-spacing: -0.015em; line-height: 1.15; }
/* current page: quiet underline rather than a filled pill (light and dark headers) */
.nav a[aria-current="page"] { background: transparent; color: inherit; text-decoration: underline; text-underline-offset: 7px; text-decoration-thickness: 1.5px; }
body.has-photo-hero .nav a[aria-current="page"] { color: var(--text-inv); }

/* ---- packages: dark systems band in the homepage kit grammar ---- */
.pk-band { background: #0C110D; color: var(--text-inv); }
.pk-band .eyebrow { color: var(--lime); }
.pk-band .h-section { color: var(--text-inv); }
.pk-band .lead { color: rgba(239, 244, 236, 0.66); }
.pk-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2.6rem; }
.pk { display: flex; flex-direction: column; padding: 0.4rem 2rem 0.6rem; border-left: 1px solid rgba(255, 255, 255, 0.12); }
.pk:first-child { border-left: 0; padding-left: 0.2rem; }
.pk__stage { position: relative; height: 300px; display: flex; align-items: flex-end; justify-content: center; gap: 1.1rem; margin-bottom: 1.35rem; }
.pk__stage img { max-height: 100%; max-width: 60%; width: auto; object-fit: contain; filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.55)); transition: translate 0.45s var(--ease-out); }
.pk__stage img.is-md { max-height: 80%; }
.pk__stage img.is-sm { max-height: 50%; }
.pk:hover .pk__stage img { translate: 0 -5px; }
.pk__tag { position: absolute; top: 0.2rem; left: 0; background: var(--lime); color: var(--ink); font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.38rem 0.75rem; border-radius: 999px; }
.pk__band { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(239, 244, 236, 0.6); }
.pk__amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 750; letter-spacing: -0.02em; color: var(--text-inv); margin-top: 0.35rem; line-height: 1.1; }
.pk__amount small { font-size: 0.95rem; font-weight: 500; font-family: var(--font-body); color: rgba(239, 244, 236, 0.6); letter-spacing: 0; }
.pk__ticks { display: flex; flex-direction: column; gap: 0.5rem; margin: 0.9rem 0 1.25rem; padding: 0; list-style: none; }
.pk__ticks li { display: flex; gap: 0.6rem; align-items: baseline; font-size: 0.95rem; color: rgba(239, 244, 236, 0.78); }
.pk__ticks svg { width: 15px; height: 15px; flex: none; stroke: var(--lime); translate: 0 2px; }
.pk__specs { margin-top: auto; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.pk__specs div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.09); font-size: 0.9rem; }
.pk__specs span { color: rgba(239, 244, 236, 0.55); }
.pk__specs b { font-family: var(--font-mono); font-weight: 600; color: var(--lime); text-align: right; }
.pk .btn { margin-top: 1.4rem; align-self: flex-start; }
@media (max-width: 900px) {
  .pk-grid { grid-template-columns: 1fr; }
  .pk { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 1.6rem 0.2rem; }
  .pk:first-child { border-top: 0; }
}

/* header logo: green/grey on light headers, white variant over photo heroes and dark glass */
.header__logo img.header__logo--light { display: none; }
body.has-photo-hero .header__logo img:not(.header__logo--light),
body.badger .header__logo img:not(.header__logo--light) { display: none; }
body.has-photo-hero .header__logo img.header__logo--light,
body.badger .header__logo img.header__logo--light { display: block; }


/* ---- dark band (homepage kit grammar) + diverter app stage ---- */
.dark-band { background: #0C110D; color: var(--text-inv); }
.dark-band .eyebrow { color: var(--lime); }
.dark-band .h-section { color: var(--text-inv); }
.dark-band .measure, .dark-band .lead { color: rgba(239, 244, 236, 0.7); }
.dark-band .checklist span { color: rgba(239, 244, 236, 0.72); }
.dark-band .checklist b { color: var(--text-inv); }
.dark-band .checklist svg { stroke: var(--lime); }
.div-stage { display: flex; align-items: flex-end; justify-content: center; gap: clamp(1.4rem, 3vw, 2.6rem); }
.div-stage .appmock { width: clamp(200px, 22vw, 250px); height: auto; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6)); }
.div-stage__unit { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; padding-bottom: 0.4rem; }
.div-stage__unit img { max-height: 320px; width: auto; filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.58)); }
.div-stage__cap { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; color: rgba(239, 244, 236, 0.55); }
@media (max-width: 860px) { .div-stage { margin-top: 0.5rem; } .div-stage__unit img { max-height: 220px; } }
/* app mock internals — mirrors the myenergi home screen: leaf hub, spokes, device rings */
.appmock text { font-family: var(--font-mono); }
.appmock .am-time { font-size: 10px; font-weight: 700; fill: #EDEFEA; }
.appmock .am-title { font-family: var(--font-body); font-size: 15px; font-weight: 600; fill: #F3F7EE; letter-spacing: 0.01em; }
.appmock .am-spoke { fill: none; stroke: rgba(255, 255, 255, 0.18); stroke-width: 2.2; stroke-linecap: round; }
.appmock .am-dot { filter: url(#amGlow); }
.appmock .am-dot--gen { fill: #C9E9A4; }
.appmock .am-dot--home { fill: #EDEFEA; }
.appmock .am-dot--eddi { fill: #2BC8C1; }
.appmock .am-node circle { fill: rgba(255, 255, 255, 0.035); stroke: currentColor; stroke-width: 2.2; }
.appmock .am-node--home { color: #EDEFEA; }
.appmock .am-node--gen { color: #C9E9A4; }
.appmock .am-node--eddi { color: #2BC8C1; }
.appmock .am-node--eddi circle { filter: url(#amGlow); }
.appmock .am-node--grid { color: #F0612B; }
.appmock .am-hub { color: #6FCF2F; }
.appmock .am-hub circle { fill: rgba(111, 207, 47, 0.07); stroke: currentColor; stroke-width: 2.4; filter: url(#amGlow); }
.appmock .am-pct { font-size: 11px; font-weight: 700; fill: #6FCF2F; }
.appmock .am-kw { font-size: 11px; font-weight: 700; }
.appmock .am-kw--gen { fill: #C9E9A4; }
.appmock .am-kw--eddi { fill: #2BC8C1; }
.appmock .am-kw--grid { fill: #F0612B; }
.appmock .am-dev { font-size: 8.5px; font-weight: 600; letter-spacing: 0.12em; }
.appmock .am-dev--eddi { fill: #2BC8C1; }
.appmock .am-coil { animation: am-breath 2.2s ease-in-out infinite; }
.appmock .am-status { font-size: 8.5px; letter-spacing: 0.08em; fill: rgba(239, 244, 236, 0.6); }
.appmock .am-logo { font-family: var(--font-body); font-size: 13px; font-weight: 700; fill: #EDEFEA; letter-spacing: -0.01em; }
@keyframes am-breath { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .appmock .am-coil { animation: none; } .appmock animateMotion { display: none; } }

.statband b small.cur, .stat b small.cur { margin: 0 0.08em 0 0; }

/* split product stage: dark grid panel with a cutout */
.stage-panel { display: grid; place-items: center; align-content: center; gap: 1.1rem; padding: 2.2rem 1.6rem; min-height: 380px; }
.stage-panel img { max-height: 300px; width: auto; filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.55)); }
.stage-panel--tall { min-height: 460px; }
.stage-panel--tall img { max-height: 390px; }
.stage-panel__cap { font-family: var(--font-mono); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(239, 244, 236, 0.5); }
.feature h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); letter-spacing: -0.015em; }
@media (max-width: 860px) { .stage-panel--tall { min-height: 0; } .stage-panel--tall img { max-height: 340px; } }

/* ENA Connect Direct badge (G98/G99 section) */
.ena-badge { display: flex; align-items: center; gap: 1.3rem; margin-top: 2.2rem; padding: 1.1rem 1.4rem; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); text-decoration: none; color: var(--text); transition: border-color 0.25s, box-shadow 0.3s, transform 0.25s var(--ease-out); }
.ena-badge:hover { border-color: var(--green); box-shadow: 0 10px 26px rgba(111, 178, 68, 0.16); transform: translateY(-2px); }
.ena-badge__mark { flex: none; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 132px; padding: 0.7rem 1rem 0.6rem; border-radius: 10px; background: #FFFFFF; border: 1px solid var(--line); line-height: 1; }
.ena-badge__mark b { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; letter-spacing: 0.04em; }
.ena-badge__mark i { font-style: normal; font-family: var(--font-mono); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-text); margin-top: 0.45rem; }
.ena-badge__mark img { height: 52px; width: auto; display: block; }
.ena-badge__txt { font-size: 0.95rem; color: var(--text-2); max-width: 60ch; }
.ena-badge__txt b { color: var(--text); font-weight: 650; }
.ena-badge svg { flex: none; width: 20px; height: 20px; margin-left: auto; color: var(--green-text); }
@media (max-width: 640px) { .ena-badge { flex-wrap: wrap; } .ena-badge svg { display: none; } }

/* ---- explainer band: line-art chart + three reasons (battery / commercial / agri / backup) ---- */
.explain .lead { max-width: 60ch; }
.explain__grid { display: grid; grid-template-columns: 1.25fr 0.85fr; gap: clamp(2rem, 4vw, 3.6rem); align-items: center; margin-top: 2.4rem; }
.explain__chart { margin: 0; min-width: 0; }
.explain__chart svg { width: 100%; height: auto; display: block; }
.explain__chart figcaption { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; align-items: center; margin-top: 0.9rem; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(239, 244, 236, 0.5); }
.xkeys { display: inline-flex; gap: 1.1rem; }
.xkey { display: inline-flex; align-items: center; gap: 0.4rem; color: rgba(239, 244, 236, 0.8); }
.xkey i { width: 16px; height: 2px; border-radius: 2px; background: #EDEFEA; }
.xkey--sun i { background: #C9E9A4; box-shadow: 0 0 8px rgba(201, 233, 164, 0.7); }
.xkey--grid i { background: #F0612B; }
.xcap { opacity: 0.8; }
.explain__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.explain__item { position: relative; padding: 1.15rem 0 1.2rem 1.2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); cursor: default; }
.explain__item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.explain__item::before { content: ""; position: absolute; left: 0; top: 1.25rem; bottom: 1.3rem; width: 2.5px; border-radius: 2px; background: linear-gradient(180deg, #C9E9A4, #6FB244, #F5B72F); opacity: 0; transform: scaleY(0.4); transform-origin: top; transition: opacity 0.3s, transform 0.45s var(--ease-out); }
.explain__item:hover::before, .explain__item.is-hot::before { opacity: 1; transform: none; }
.explain__k { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); }
.explain__item h3 { font-size: 1.25rem; margin: 0.3rem 0 0.35rem; color: var(--text-inv); letter-spacing: -0.01em; }
.explain__item p { color: rgba(239, 244, 236, 0.7); font-size: 0.95rem; max-width: 42ch; }
.explain__go { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.6rem; font-weight: 650; font-size: 0.92rem; color: var(--lime); text-decoration: none; }
.explain__go svg { width: 1em; height: 1em; transition: translate 0.2s; }
.explain__go:hover svg { translate: 4px 0; }
@media (max-width: 900px) { .explain__grid { grid-template-columns: 1fr; gap: 1.6rem; } }
/* chart internals */
.xchart text { font-family: var(--font-mono); }
.xchart .xaxis { fill: rgba(239, 244, 236, 0.45); font-size: 10px; letter-spacing: 0.08em; }
.xchart .xlab { fill: rgba(239, 244, 236, 0.85); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; }
.xchart .xlab--dim { fill: rgba(239, 244, 236, 0.45); }
.xchart .xgrid { stroke: rgba(255, 255, 255, 0.07); }
.xchart .xbase { stroke: rgba(255, 255, 255, 0.18); }
.xchart .xline { fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.xchart .xline--sun { stroke: #C9E9A4; filter: url(#xglow); }
.xchart .xline--load { stroke: #EDEFEA; }
.xchart .xline--dashed { stroke-dasharray: 4 5; stroke-width: 1.8; opacity: 0.85; }
.xchart .xline--grid { stroke: #F0612B; }
.xchart .xfill--sun { fill: rgba(201, 233, 164, 0.26); }
.xchart .xfill--night { fill: rgba(43, 200, 193, 0.10); }
.xchart .xfill--eve { fill: rgba(245, 183, 47, 0.22); }
.xchart .xfill--grey { fill: rgba(255, 255, 255, 0.09); }
.xchart .xfill--hatch { fill: url(#xhatch); opacity: 0.55; }
.xchart .xmark { stroke: rgba(245, 183, 47, 0.8); stroke-width: 1.5; stroke-dasharray: 3 5; }
.xchart .xbolt { fill: #F5B72F; filter: url(#xglow); }
.xchart .xdash { stroke: rgba(239, 244, 236, 0.55); stroke-width: 1.6; stroke-dasharray: 3 6; }
.xchart .xz { transition: opacity 0.35s; }
.xchart[data-hot="a"] .xz:not(.xz-a), .xchart[data-hot="b"] .xz:not(.xz-b), .xchart[data-hot="c"] .xz:not(.xz-c) { opacity: 0.14; }
.xchart[data-hot="a"] .xz-a .xlab, .xchart[data-hot="b"] .xz-b .xlab, .xchart[data-hot="c"] .xz-c .xlab { fill: var(--lime); }
/* draw-in */
.explain__chart.is-in .xline { stroke-dasharray: 1; stroke-dashoffset: 1; animation: xdraw 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards; }
.explain__chart.is-in .xline--dashed { stroke-dasharray: 1; animation: xdraw 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards, xdashback 0.01s linear 2.05s forwards; }
.explain__chart.is-in .xz-wrap { opacity: 0; animation: xfade 0.8s ease 1.3s forwards; }
@keyframes xdraw { to { stroke-dashoffset: 0; } }
@keyframes xfade { to { opacity: 1; } }
@keyframes xdashback { to { stroke-dasharray: 4 5; } }
@media (prefers-reduced-motion: reduce) { .explain__chart.is-in .xline, .explain__chart.is-in .xz-wrap { animation: none; opacity: 1; stroke-dashoffset: 0; } .explain__chart.is-in .xline--dashed { stroke-dasharray: 4 5; } }

/* mySigen app mock (SigenStor page): isometric line-art house + flows */
.sg-stage { justify-content: center; }
.sg-stage .appmock { width: clamp(220px, 24vw, 270px); }
.appmock--sigen text { font-family: var(--font-mono); }
.appmock--sigen .sg-time { font-size: 10px; font-weight: 700; fill: #EDEFEA; }
.appmock--sigen .sg-pill { fill: rgba(255, 255, 255, 0.06); stroke: rgba(255, 255, 255, 0.14); }
.appmock--sigen .sg-pilltxt { font-family: var(--font-body); font-size: 10.5px; font-weight: 600; fill: #EDEFEA; }
.appmock--sigen .sg-pillsep { stroke: rgba(255, 255, 255, 0.25); }
.appmock--sigen .sg-dot { fill: #6FCF2F; filter: url(#sgGlow); }
.appmock--sigen .sg-sun { fill: #F5B72F; } .appmock--sigen .sg-sunray { stroke: #F5B72F; stroke-width: 1.3; stroke-linecap: round; }
.appmock--sigen .sg-temp { font-family: var(--font-body); font-size: 12px; font-weight: 600; fill: #EDEFEA; }
.appmock--sigen .sg-link { fill: none; stroke: rgba(255, 255, 255, 0.22); stroke-width: 1.2; }
.appmock--sigen .sg-ground { fill: rgba(255, 255, 255, 0.025); stroke: rgba(255, 255, 255, 0.12); }
.appmock--sigen .sg-wall { fill: rgba(255, 255, 255, 0.04); stroke: #E9F0E4; stroke-width: 1.4; stroke-linejoin: round; }
.appmock--sigen .sg-wall--r { fill: rgba(255, 255, 255, 0.07); }
.appmock--sigen .sg-gable { fill: rgba(255, 255, 255, 0.07); stroke: #E9F0E4; stroke-width: 1.4; stroke-linejoin: round; }
.appmock--sigen .sg-roof { fill: rgba(255, 255, 255, 0.05); stroke: #E9F0E4; stroke-width: 1.4; stroke-linejoin: round; }
.appmock--sigen .sg-roof--back { fill: rgba(255, 255, 255, 0.03); stroke-opacity: 0.6; }
.appmock--sigen .sg-panel { fill: rgba(201, 233, 164, 0.22); stroke: #C9E9A4; stroke-width: 0.9; stroke-linejoin: round; filter: url(#sgGlow); }
.appmock--sigen .sg-win polygon { fill: rgba(201, 233, 164, 0.12); stroke: rgba(233, 240, 228, 0.7); stroke-width: 1; }
.appmock--sigen .sg-box { fill: rgba(255, 255, 255, 0.08); stroke: #E9F0E4; stroke-width: 1.3; stroke-linejoin: round; }
.appmock--sigen .sg-box--r { fill: rgba(255, 255, 255, 0.14); } .appmock--sigen .sg-box--t { fill: rgba(255, 255, 255, 0.2); }
.appmock--sigen .sg-seam { stroke: rgba(233, 240, 228, 0.45); stroke-width: 0.8; }
.appmock--sigen .sg-led { fill: #6FCF2F; filter: url(#sgGlow); }
.appmock--sigen .sg-flow { filter: url(#sgGlow); }
.appmock--sigen .sg-flow--sun { fill: #C9E9A4; } .appmock--sigen .sg-flow--home { fill: #EDEFEA; } .appmock--sigen .sg-flow--bat { fill: #2BC8C1; } .appmock--sigen .sg-flow--grid { fill: #F0612B; }
.appmock--sigen .sg-val { font-size: 11px; font-weight: 700; fill: #F3F7EE; }
.appmock--sigen .sg-lab { font-family: var(--font-body); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; fill: rgba(239, 244, 236, 0.55); }
.appmock--sigen .sg-card { fill: rgba(255, 255, 255, 0.06); stroke: rgba(255, 255, 255, 0.12); }
.appmock--sigen .sg-gear { fill: none; stroke: rgba(239, 244, 236, 0.7); stroke-width: 1.6; stroke-dasharray: 2 2; }
.appmock--sigen .sg-cardlab { font-family: var(--font-body); font-size: 8.5px; fill: rgba(239, 244, 236, 0.55); }
.appmock--sigen .sg-cardval { font-family: var(--font-body); font-size: 10.5px; font-weight: 700; fill: #F3F7EE; }
.appmock--sigen .sg-seg { fill: rgba(255, 255, 255, 0.12); }
.appmock--sigen .sg-seg--on { fill: #6FCF2F; }
.appmock--sigen .sg-seg--on:nth-last-of-type(3) { animation: am-breath 2s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .appmock--sigen animateMotion { display: none; } }

/* ---- quote card: dark glass, gradient ring, swoosh watermark, glowing quote mark ---- */
.quotecard { position: relative; isolation: isolate; overflow: hidden; margin: 0; padding: 2.6rem 2.4rem 2.1rem; border-radius: var(--radius); background: linear-gradient(150deg, #151B17 0%, #0A0E0B 70%); color: var(--text-inv); box-shadow: 0 24px 60px rgba(10, 16, 12, 0.28); }
.quotecard::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 1.5px; background: linear-gradient(135deg, rgba(201, 233, 164, 0.9), rgba(111, 178, 68, 0.55) 45%, rgba(245, 183, 47, 0.8)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.quotecard__swoosh { position: absolute; right: -34%; top: -40%; width: 104%; aspect-ratio: 1; background: url('/assets/img/swoosh.png') no-repeat center / contain; opacity: 0.3; z-index: -1; pointer-events: none; }
.quotecard__mark { width: 46px; height: auto; color: var(--lime); filter: drop-shadow(0 0 10px rgba(201, 233, 164, 0.55)); margin-bottom: 1.1rem; }
.quotecard blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(1.4rem, 2.3vw, 1.85rem); font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; color: var(--text-inv); }
.quotecard figcaption { margin-top: 1.4rem; color: var(--text-inv-2); font-size: 0.95rem; }
.quotecard figcaption b { color: var(--text-inv); font-weight: 650; }
.quotecard__creds { display: inline-flex; align-items: center; gap: 1.4rem; margin-top: 1.7rem; padding: 0.65rem 1rem; border-radius: 12px; background: rgba(255, 255, 255, 0.92); }
.quotecard__creds img { height: 26px; width: auto; display: block; }
.quotecard__creds img[src*="niceic"] { height: 30px; }
@media (max-width: 640px) { .quotecard { padding: 2rem 1.5rem 1.7rem; } .quotecard__creds { gap: 1rem; flex-wrap: wrap; } }

/* explainer: light variant (paper background, ink + lime chart) */
.explain--light { background: var(--paper); color: var(--text); }
.explain--light .eyebrow { color: #8A968B; }
.explain--light .h-section { color: var(--text); }
.explain--light .lead { color: var(--text-2); }
.explain--light .explain__chart figcaption { color: #79856F; }
.explain--light .xkey { color: #44503F; }
.explain--light .xkey i { background: #20261F; }
.explain--light .xkey--sun i { background: #6FB244; box-shadow: 0 0 8px rgba(111, 178, 68, 0.55); }
.explain--light .xkey--grid i { background: #E4552A; }
.explain--light .explain__item { border-top-color: rgba(31, 42, 31, 0.1); }
.explain--light .explain__item:last-child { border-bottom-color: rgba(31, 42, 31, 0.1); }
.explain--light .explain__k { color: var(--green-text); }
.explain--light .explain__item h3 { color: var(--text); }
.explain--light .explain__item p { color: var(--text-2); }
.explain--light .explain__go { color: var(--green-text); }
.explain--light .xchart .xaxis { fill: #8A968B; }
.explain--light .xchart .xlab { fill: #44503F; }
.explain--light .xchart .xlab--dim { fill: #8A968B; }
.explain--light .xchart .xgrid { stroke: rgba(31, 42, 31, 0.08); }
.explain--light .xchart .xbase { stroke: rgba(31, 42, 31, 0.25); }
.explain--light .xchart .xline--sun { stroke: #5E9A36; filter: drop-shadow(0 0 6px rgba(111, 178, 68, 0.55)); }
.explain--light .xchart .xline--load { stroke: #20261F; }
.explain--light .xchart .xline--grid { stroke: #E4552A; }
.explain--light .xchart .xfill--sun { fill: rgba(111, 178, 68, 0.26); }
.explain--light .xchart .xfill--night { fill: rgba(43, 200, 193, 0.16); }
.explain--light .xchart .xfill--eve { fill: rgba(245, 183, 47, 0.32); }
.explain--light .xchart .xfill--grey { fill: rgba(31, 42, 31, 0.08); }
.explain--light .xchart .xfill--hatch { opacity: 0.7; }
.explain--light .xchart .xmark { stroke: rgba(200, 138, 21, 0.9); }
.explain--light .xchart .xbolt { fill: #E0A020; }
.explain--light .xchart .xdash { stroke: rgba(31, 42, 31, 0.5); }
.explain--light .xchart[data-hot="a"] .xz-a .xlab, .explain--light .xchart[data-hot="b"] .xz-b .xlab, .explain--light .xchart[data-hot="c"] .xz-c .xlab { fill: var(--green-text); }

/* photo tiles in a row: headings share a baseline regardless of wrapping */
.tile--photo h3 { min-height: 2.3em; display: flex; align-items: flex-end; }
.tile--photo .tile__kicker { min-height: 1.2em; }

/* ---- cookie notice (Consent Mode) ---- */
.consent { position: fixed; left: 50%; bottom: 1.1rem; translate: -50% 20px; z-index: 200; width: min(720px, calc(100% - 2rem)); display: flex; gap: 1.2rem; align-items: center; justify-content: space-between; padding: 1rem 1.2rem 1rem 1.4rem; border-radius: 18px; background: rgba(12, 17, 13, 0.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); color: var(--text-inv); box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.12); opacity: 0; transition: opacity 0.35s, translate 0.45s var(--ease-out); }
.consent.is-in { opacity: 1; translate: -50% 0; }
.consent p { margin: 0; font-size: 0.9rem; color: rgba(239, 244, 236, 0.8); line-height: 1.5; }
.consent p a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.consent__btns { display: flex; gap: 0.6rem; flex: none; }
.consent .btn { padding: 0.7rem 1.1rem; font-size: 0.9rem; }
.consent__open { color: inherit; text-decoration: underline; text-underline-offset: 3px; opacity: 0.8; }
@media (max-width: 640px) { .consent { flex-direction: column; align-items: stretch; } .consent__btns { justify-content: flex-end; } }

/* ==== mobile pass (Aug 2026) ==== */
/* labels: legible + AA contrast */
.eyebrow { color: #6F7B70; }
.explain--light .eyebrow { color: #6F7B70; }
.xcap, .explain__chart figcaption { color: #79856F; }
@media (max-width: 700px) {
  .eyebrow { font-size: 0.76rem; letter-spacing: 0.16em; }
  /* product stages: fit the column */
  .pk__stage { height: 230px; gap: 0.8rem; }
  .pk__stage img { max-width: 48%; }
  .pk__stage img.is-sm { max-height: 46%; }
  .pk__stage img.is-md { max-height: 78%; }
  /* diverter stage: phone + unit side by side, wrapping if tight */
  .div-stage { flex-wrap: wrap; gap: 1.2rem; }
  .div-stage .appmock { width: min(46vw, 200px); }
  .div-stage__unit img { max-height: 170px; }
  /* cookie notice above the call bar */
  .consent { bottom: calc(86px + env(safe-area-inset-bottom)); width: calc(100% - 1.2rem); padding: 0.9rem 1rem; gap: 0.8rem; }
  .consent p { font-size: 0.84rem; }
  .consent .btn { padding: 0.6rem 0.9rem; font-size: 0.85rem; }
  /* explainer charts: SVG text scales with the viewBox — bump so labels stay legible at ~0.5x */
  .xchart .xlab { font-size: 16.5px; }
  .xchart .xaxis { font-size: 15px; }
  .explain__chart figcaption { font-size: 0.64rem; }
  /* tap targets */
  .b-eco__link, .tile__go, .explain__go, .product__go { min-height: 40px; display: inline-flex; align-items: center; }
  .ena-badge { padding: 0.9rem 1rem; }
}

/* ==== mobile pass 2 (Aug 2026): keep tile cut-outs off the copy ==== */
@media (max-width: 700px) {
  .tile:has(.tile__art) .tile__kicker,
  .tile:has(.tile__art) h3,
  .tile:has(.tile__art) p { max-width: calc(100% - 118px); }
  .tile__art img { max-height: 62%; margin: 1rem 1rem 0 0; }
  .tile--lg .tile__art svg { width: 100%; }
}

/* ==== header call pill (Aug 2026) ==== */
.header__call { display: none; }
@media (max-width: 920px) {
  .header__call { display: inline-flex; align-items: center; gap: 0.45rem; margin-left: auto; height: 48px; padding: 0 1.05rem 0 0.9rem; border: 1.5px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text); font-weight: 700; font-size: 0.95rem; line-height: 1; text-decoration: none; white-space: nowrap; }
  .header__call svg { width: 19px; height: 19px; }
  .header__call:hover { border-color: var(--green); color: var(--green-text); }
  .burger { margin-left: 0.55rem; }
  body.has-photo-hero .header__call { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); color: #FFFFFF; }
}
@media (max-width: 700px) {
  .callbar a { padding-inline: 0.9rem; white-space: nowrap; font-size: 0.98rem; }
}

/* ==== header call pill v2 + compact phone header (Aug 2026) ==== */
html, body { overflow-x: hidden; }
.header__call svg { width: 18px; height: 18px; flex: none; }
@media (max-width: 920px) {
  .header__call { background: var(--green); border-color: var(--green); color: #FFFFFF; font-weight: 700; letter-spacing: 0.01em; box-shadow: 0 6px 16px rgba(111, 178, 68, 0.35); height: 46px; padding: 0 1rem 0 0.85rem; gap: 0.4rem; }
  .header__call:hover { background: var(--green-dark); border-color: var(--green-dark); color: #FFFFFF; }
  body.has-photo-hero .header__call { background: var(--green); border-color: var(--green); color: #FFFFFF; }
  .header__in { gap: 0.9rem; }
}
@media (max-width: 420px) {
  .header__in { gap: 0.6rem; min-height: 78px; }
  .header__logo img, .header__logo--light { height: 60px; width: auto; }
  .header__call { height: 42px; padding: 0 0.85rem 0 0.7rem; font-size: 0.9rem; }
  .burger { width: 44px; height: 44px; margin-left: 0.35rem; }
}

/* phone-width guard rails (Aug 2026) */
@media (max-width: 420px) {
  .container { max-width: 100%; }
  img, svg, video { max-width: 100%; }
}

/* ==== phone menu: everything visible at once, no inner scrolling (Aug 2026) ==== */
@media (max-width: 920px) {
  .nav { padding: 0.8rem var(--gutter) 1.25rem; gap: 0.1rem; }
  .nav a.nav__link, .nav button.nav__link { font-size: 1.05rem; padding: 0.62rem 0.9rem; }
  .nav__drop .nav__menu { display: block; margin: 0 0 0.15rem 0.5rem; padding: 0.05rem 0 0.25rem; background: transparent; border: 0; }
  .nav__menu a { padding: 0.48rem 0.9rem; font-size: 0.98rem; }
  .nav__menu a span { display: none; }
  .nav__drop > button.nav__link { pointer-events: none; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2); padding: 0.75rem 0.9rem 0.15rem; }
  .nav__drop > button.nav__link svg { display: none; }
  .nav .btn { margin-top: 0.7rem; }
  body.nav-open .callbar { display: none; }
}
@media (max-width: 420px) {
  .nav { inset: var(--hdr-h, 96px) 0 0 0; }
}

@media (max-width: 920px) { body.nav-open .consent { display: none; } }

/* ==== sticky call bar v2 (Aug 2026) ==== */
@media (max-width: 700px) {
  .callbar { background: rgba(12, 17, 13, 0.94); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 0.55rem var(--gutter) calc(0.55rem + env(safe-area-inset-bottom)); gap: 0.55rem; }
  .callbar a { min-height: 52px; border-radius: 999px; font-weight: 700; font-size: 1rem; padding-inline: 0.9rem; white-space: nowrap; gap: 0.5rem; }
  .callbar .btn--ghost { background: #FFFFFF; color: #0E1512; border: 0; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28); }
  .callbar .btn--ghost svg { width: 20px; height: 20px; color: var(--green-text); }
  .callbar .btn--ghost:hover { background: #F1F5EE; color: #0E1512; }
  .callbar .btn--primary { background: var(--green); color: #FFFFFF; border: 0; box-shadow: 0 6px 18px rgba(111, 178, 68, 0.38); }
  .callbar .btn--primary:hover { background: var(--green-dark); }
  body { padding-bottom: 84px; }
}

@media (max-width: 920px) { .nav { top: var(--hdr-h, 102px); } }
