/* =====================================================================
   Sharktech Solar — Premium Design System
   Loaded AFTER style.css. Introduces design tokens, refined green+gold
   palette, elevated typography, gradients, and all bespoke homepage
   components. Cascades a premium reskin across every template page.
   ===================================================================== */

:root {
  /* Brand: lime green */
  --green-900: #1f3010;
  --green-800: #2f4a14;
  --green-700: #3f6019;
  --green-600: #587e1e;   /* primary brand */
  --green-500: #8dc63f;
  --green-400: #9acd32;
  --green-100: #eef6d9;
  --green-050: #f5faec;

  /* Solar accent: warm gold to sun-orange */
  --gold-600: var(--green-700);
  --gold-500: var(--green-600);    /* accent */
  --gold-400: var(--green-500);
  --gold-100: var(--green-100);

  /* Ink & neutrals */
  --ink-900: #0e1a12;
  --ink-800: #16241b;
  --ink-700: #33453a;
  --ink-500: #5f6f65;     /* muted body */
  --ink-400: #869187;
  --line: #e7ede9;
  --line-2: #d9e2dc;
  --surface: #ffffff;
  --surface-2: #f5f8f5;
  --surface-3: #eef4ef;
  --dark: #0f1c14;
  --dark-2: #14271a;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #587e1e 0%, #2f4a14 100%);
  --grad-brand-soft: linear-gradient(135deg, #8dc63f 0%, #9acd32 100%);
  --grad-solar: var(--grad-brand-soft);
  --grad-hero: linear-gradient(120deg, rgba(31,48,16,0.62) 0%, rgba(47,74,20,0.48) 45%, rgba(88,126,30,0.28) 100%);
  --grad-dark: linear-gradient(160deg, #0f2417 0%, #0a1a10 100%);

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(14,26,18,0.06);
  --sh-sm: 0 4px 14px rgba(14,26,18,0.07);
  --sh-md: 0 14px 40px rgba(14,40,24,0.10);
  --sh-lg: 0 30px 70px rgba(12,44,26,0.16);
  --sh-gold: var(--sh-green);
  --sh-green: 0 16px 36px rgba(88,126,30,0.30);
  /* Shared "glass panel" bevel + layered shadow: reused by the hero, pricing
     cards, the comparison table shell and the FAQ rows so they all read as
     lifted glass rather than flat bordered boxes. One recipe, one place. */
  --sh-glass: 0 1px 0 rgba(255,255,255,.16) inset, 0 40px 80px -30px rgba(0,0,0,.5), 0 14px 28px -16px rgba(0,0,0,.4);

  /* Shared "ink -> bridge -> dip -> green" gradient ramp: the solid anchors
     behind the hero background, reused verbatim (via color-mix for alpha)
     by anything else that wants the same premium gradient, so no second
     component ever redefines slightly-different hex values for this ramp. */
  --grad-ramp-ink: var(--ink-900);       /* #0e1a12 */
  --grad-ramp-bridge: var(--green-800);  /* #2f4a14 */
  --grad-ramp-dip: var(--ink-700);       /* #33453a */
  --grad-ramp-deep: var(--green-600);    /* #587e1e */
  --grad-ramp-accent: var(--green-500);  /* #8dc63f */

  /* Radii */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Type */
  --font-display: 'Plus Jakarta Sans', 'Rubik', sans-serif;
  --font-head: 'Rubik', sans-serif;
  --font-body: 'Roboto', sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;

  /* Layout */
  --container: 1240px;
}

/* ---------- Base resets / rhythm ---------------------------------- */
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-500);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--ink-900); }
a { transition: color .25s var(--ease); }
img { max-width: 100%; }
::selection { background: var(--green-100); color: var(--green-800); }

/* Accessible focus */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 6px;
}

.sx-skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--green-700); color: #fff; padding: 10px 18px;
  border-radius: var(--r-sm); transition: top .2s var(--ease); font-weight: 600;
}
.sx-skip-link:focus { top: 12px; color:#fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .05ms !important; }
  .sx-reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Preloader reskin ------------------------------------- */
.preloader { background: var(--grad-dark); }
.preloader .loading span { background: var(--gold-500); }

/* ---------- Container width lift ---------------------------------- */
@media (min-width: 1300px) {
  .container { max-width: var(--container); }
}

/* =====================================================================
   BUTTONS  (reskin template .btn__primary etc. + new .sx-btn)
   ===================================================================== */
.btn, .sx-btn {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .2px;
  border-radius: var(--r-pill);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn__primary, .sx-btn--primary {
  background: var(--grad-brand-soft) !important;
  color: var(--ink-900) !important;
  box-shadow: var(--sh-green);
  border: none;
}
.btn__primary:hover, .sx-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(88,126,30,0.42);
  color: #ffffff !important;
}
/* the base theme sweeps a solid #1b1a1a fill in on :hover via .btn:before;
   .btn:not(.btn__link):before carries more specificity (the :not() adds a
   class) than a plain .btn__primary:before, so this needs !important to
   actually win and keep the sweep green instead of black. Darker green-600
   (not the button's lighter resting green-400) so white hover text has
   enough contrast. */
.btn__primary:before, .sx-btn--primary:before { background-color: var(--green-600) !important; }
/* base theme also flips the round arrow-icon badge to #1b1a1a on :hover;
   keep it on-brand instead of a jarring black flash */
.btn__primary:hover .icon-arrow-right, .btn__primary:hover .icon-arrow-left { color: var(--green-600) !important; }
.sx-btn--solar {
  background: var(--grad-solar) !important;
  color: var(--ink-900) !important;
  box-shadow: var(--sh-gold);
  border: none;
}
.sx-btn--solar:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(245,166,35,0.46); color:var(--ink-900) !important; }
/* Shared hover shine-sweep: apply the .sx-shine class to any button that
   should get it (hero CTA, pricing plan CTAs, ...) — one definition, reused
   everywhere, instead of a second copy per component. */
@media (prefers-reduced-motion: no-preference) {
  .sx-shine { position: relative; overflow: hidden; }
  .sx-shine::after {
    content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
    background: linear-gradient(115deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: left .55s var(--ease);
    pointer-events: none;
  }
  .sx-shine:hover::after { left: 120%; }
}

.btn__white {
  background: rgba(255,255,255,.10) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.55) !important;
  backdrop-filter: blur(6px);
}
.btn__white:hover { background:#fff !important; color: var(--green-700) !important; transform: translateY(-3px); }

.sx-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; font-size: 15px; cursor: pointer;
  text-decoration: none; line-height: 1;
}
.sx-btn--ghost {
  background: transparent; color: var(--green-700);
  border: 1.5px solid var(--line-2);
}
.sx-btn--ghost:hover { border-color: var(--green-600); color: var(--green-700); background: var(--green-050); transform: translateY(-3px); }
.sx-btn--white {
  background: rgba(255,255,255,.12); color:#fff;
  border:1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(6px);
}
.sx-btn--white:hover { background:#fff; color: var(--green-700); transform: translateY(-3px); box-shadow: var(--sh-md); }
/* on the now-lime .sx-bg-dark sections, white text on a translucent white
   pill (tuned for a dark backdrop) has no contrast; give it dark ink instead */
.sx-bg-dark .sx-btn--white { background: rgba(255,255,255,.6); color: var(--green-800); border-color: rgba(14,26,18,.25); }
.sx-btn i { transition: transform .3s var(--ease); }
.sx-btn:hover i { transform: translateX(4px); }

/* =====================================================================
   HEADER / NAV reskin
   ===================================================================== */
.header-topbar {
  background: var(--grad-dark) !important;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-topbar, .header-topbar a, .contact__list a { color: #c7d6cb !important; }
.header-topbar a:hover { color:#fff !important; }
.header-topbar .color-primary { color: var(--gold-400) !important; }

.sticky-navbar {
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .35s var(--ease), background .35s var(--ease), padding .35s var(--ease);
}
.sticky-navbar.is-sticky {
  box-shadow: var(--sh-md);
  background: rgba(255,255,255,0.96);
}
/* backdrop-filter is desktop-only: on mobile it makes .navbar a new
   containing block for its position:fixed .navbar-collapse descendant,
   collapsing the full-screen mobile menu down to the navbar's own height */
@media (min-width: 992px) {
  .sticky-navbar {
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
  }
}
.navbar-nav .nav__item-link {
  font-family: var(--font-head); font-weight: 500; color: var(--ink-800);
  position: relative; white-space: nowrap;
}
.navbar-nav .nav__item-link:hover,
.navbar-nav .nav__item-link.active { color: var(--green-600); }
.navbar-nav > .nav__item > .nav__item-link::after {
  content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0;
  background: var(--grad-solar); border-radius: 2px; transition: width .3s var(--ease);
}
.navbar-nav > .nav__item > .nav__item-link:hover::after,
.navbar-nav > .nav__item > .nav__item-link.active::after { width: 100%; }
.contact__number a { color: var(--green-700); font-family: var(--font-head); font-weight: 600; }

/* =====================================================================
   SECTION SCAFFOLD & HEADINGS
   ===================================================================== */
.sx-section { position: relative; padding: 104px 0; }
.sx-section--tight { padding: 72px 0; }
.sx-bg-soft { background: var(--surface-2); }
.sx-bg-mint { background: linear-gradient(180deg, #ffffff 0%, var(--green-050) 100%); }
.sx-bg-dark { background: var(--grad-brand-soft); color: var(--ink-700); }

.sx-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 8px 16px; border-radius: var(--r-pill); margin-bottom: 20px;
}
.sx-eyebrow::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--gold-500); box-shadow:0 0 0 4px rgba(88,126,30,.22); }

.sx-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: clamp(30px, 4vw, 50px);
  margin-bottom: 18px;
}
.sx-title .accent { color: var(--green-600); }
.sx-bg-dark .sx-title .accent { color: var(--green-800); }
.sx-lead { font-size: 18px; line-height: 1.7; color: var(--ink-500); max-width: 640px; }
.sx-bg-dark .sx-lead { color: var(--ink-700); }
.sx-head-center { text-align:center; }
.sx-head-center .sx-lead { margin-left:auto; margin-right:auto; }

/* reskin existing template headings globally */
.heading__title { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; color: var(--ink-900); }
.heading__subtitle { color: var(--green-600); font-family: var(--font-head); font-weight: 600; letter-spacing: .6px; }

/* =====================================================================
   HERO
   ===================================================================== */
.sx-hero {
  /* Translucent tints of the shared --grad-ramp-* anchors (see :root) — the
     hero paints over a photo/video, so each stop is an alpha-blend via
     color-mix rather than an opaque fill. Any other component wanting the
     same ramp as a solid panel (no photo behind it) reads --grad-ramp-*
     directly instead of redefining these hex values a second time. */
  --hero-ink-900: color-mix(in srgb, var(--grad-ramp-ink) 62%, transparent);
  --hero-bridge: color-mix(in srgb, var(--grad-ramp-bridge) 50%, transparent);
  --hero-ink-dip: color-mix(in srgb, var(--grad-ramp-dip) 34%, transparent);
  --hero-green-deep: color-mix(in srgb, var(--grad-ramp-deep) 32%, transparent);
  --hero-green-tint: color-mix(in srgb, var(--grad-ramp-accent) 26%, transparent);

  position: relative; overflow: hidden; isolation: isolate;
  min-height: 92vh; display: flex; align-items: center;
  color: #fff; padding: 150px 0 90px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 60px 110px -60px rgba(0,0,0,.55),
    0 22px 46px -26px rgba(0,0,0,.5);
}
.sx-hero__bg { position:absolute; inset:0; z-index:0; background:#2f4a14; }
/* Poster always paints underneath; the video (source injected by sx-home.js
   only on wide screens without Save-Data) layers on top once it can play. */
.sx-hero__poster {
  display:block; position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transform: scale(1.05); animation: sx-kenburns 18s ease-out infinite alternate;
}
.sx-hero__video { position:absolute; inset:0; z-index:1; width:100%; height:100%; object-fit:cover; display:block; }
@keyframes sx-kenburns { from { transform: scale(1.05); } to { transform: scale(1.14) translateY(-2%);} }
@media (max-width: 767px){
  .sx-hero__video { display:none; }
}
@media (prefers-reduced-motion: reduce){
  .sx-hero__poster { animation: none; transform: none; }
  .sx-hero__video { display:none; }
}
/* Diagonal ink -> bridge -> dip -> green tint over the photo/video, replacing
   the old flat 3-stop tint with the fuller ramp from the reference. */
.sx-hero__overlay {
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(100deg,
    var(--hero-ink-900) 0%,
    var(--hero-bridge) 30%,
    var(--hero-ink-dip) 48%,
    var(--hero-green-deep) 78%,
    var(--hero-green-tint) 100%);
}
/* Grain + top-right glow + darkening vignette, layered above the tint so the
   panel reads as textured glass rather than a flat gradient. */
.sx-hero::before {
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background-image:
    radial-gradient(38% 46% at 88% 8%, rgba(141,198,63,.28) 0%, transparent 60%),
    radial-gradient(120% 90% at 38% 30%, transparent 40%, rgba(0,0,0,.4) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-blend-mode: normal, normal, overlay;
}
/* Diagonal sheen streak, drifting side to side on a slow loop. */
.sx-hero::after {
  content:""; position:absolute; top:-20%; left:6%; width:34%; height:150%; z-index:1; pointer-events:none;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.14) 45%, rgba(255,255,255,0) 100%);
  transform: rotate(8deg);
  animation: sx-sheen-drift 9s ease-in-out infinite;
}
@keyframes sx-sheen-drift { 0%,100%{ transform: rotate(8deg) translateX(0);} 50%{ transform: rotate(8deg) translateX(30px);} }
@media (prefers-reduced-motion: reduce){ .sx-hero::after { animation:none; } }
.sx-hero__orb { position:absolute; border-radius:50%; filter: blur(46px); z-index:1; opacity:.5; }
.sx-hero__orb--gold { width:420px; height:420px; right:-80px; top:8%; background: radial-gradient(circle, rgba(245,166,35,.5), transparent 70%); animation: sx-float 9s ease-in-out infinite; }
.sx-hero__orb--green { width:520px; height:520px; left:-120px; bottom:-140px; background: radial-gradient(circle, rgba(154,205,50,.4), transparent 70%); animation: sx-float 11s ease-in-out infinite reverse; }
@keyframes sx-float { 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-26px);} }
.sx-hero__inner { position:relative; z-index:2; }
.sx-hero__badge {
  display:inline-flex; align-items:center; gap:10px; margin-bottom:26px;
  background: rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.22);
  padding: 9px 18px; border-radius: 6px; font-size:13px; font-weight:700;
  letter-spacing:.6px; text-transform: uppercase; backdrop-filter: blur(8px);
}
.sx-hero__badge .dot { width:8px;height:8px;border-radius:50%;background:var(--gold-400); box-shadow:0 0 0 4px rgba(154,205,50,.25); }
.sx-hero__badge--lime { background: var(--green-400); border-color: transparent; color: var(--ink-900); }
.sx-hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 5.6vw, 76px); line-height: 1.02; letter-spacing: -0.03em;
  color:#fff; margin-bottom: 22px;
}
.sx-hero__title .grad { background: var(--grad-solar); -webkit-background-clip:text; background-clip:text; color: transparent; }
.sx-hero__rotate-wrap { position: relative; display: inline-block; }
.sx-hero__rotate-wrap::after {
  content: "";
  position: absolute; left: 2px; right: 2px; bottom: -6px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  transform-origin: left; transform: scaleX(1);
  transition: transform .5s var(--ease);
}
/* JS toggles this the instant a new word starts typing: snaps the underline
   to 0 with no transition, then the transitionDuration is set inline to the
   word's typing time so it redraws in step with the letters landing. */
.sx-hero__rotate-wrap.redraw::after { transform: scaleX(0); transition: none; }
.sx-hero__rotate {
  display: inline-block;
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  font-weight: 800;
  font-size: 1.04em;
  text-shadow: 0 0 18px rgba(141,198,63,.45);
}
.sx-hero__rotate::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: var(--green-400);
  font-weight: 700;
  animation: sx-caret-blink 1.1s step-end infinite;
  /* Without its own compositing layer, Chrome occasionally ghosts a
     fragment of this blinking pseudo-element near the start of the
     line above while the sibling text mutates every animation frame. */
  will-change: opacity;
}
@keyframes sx-caret-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
/* Brief glow pulse the instant a word finishes typing in. */
.sx-hero__rotate.is-flash { animation: sx-word-flash .6s ease-out; }
@keyframes sx-word-flash {
  0% { text-shadow: 0 0 32px rgba(141,198,63,.95), 0 0 20px rgba(141,198,63,.7); }
  100% { text-shadow: 0 0 18px rgba(141,198,63,.45); }
}
@media (prefers-reduced-motion: reduce) {
  .sx-hero__rotate::after { animation: none; }
  .sx-hero__rotate-wrap::after { transition: none; }
  .sx-hero__rotate-wrap.redraw::after { transform: scaleX(1); }
  .sx-hero__rotate.is-flash { animation: none; }
}
.sx-hero__desc { font-size: clamp(16px,1.4vw,19px); line-height:1.7; color: #d5e0d8; max-width: 600px; margin-bottom: 34px; }
.sx-hero__cta { display:flex; flex-wrap:wrap; gap:16px; margin-bottom: 32px; }
/* Stat row over the video hero: reuses .sx-cost__grid/.sx-cost__tile (icon +
   number + label + muted-bad-number) from the old cost-of-silence section
   these tiles were moved from, but with a darker, more opaque tile
   background than that section's near-black background needed — this one
   sits directly on the video/photo, which can swing much brighter, so it
   needs a stronger backdrop of its own to stay legible. */
.sx-hero__stats.sx-cost__grid { margin-top: 0; margin-bottom: 8px; }
.sx-hero__stats .sx-cost__tile {
  background: rgba(6,14,9,.62);
  border-color: rgba(255,255,255,.24);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  /* the hero's text column is narrower than a full-width section, so the
     three tiles need a smaller min-width than .sx-cost__tile's default to
     actually fit in one row instead of wrapping 2-then-1 */
  min-width: 150px; padding: 18px;
}
.sx-hero__stats .sx-cost__num { font-size: 26px; }
.sx-hero__trust { display:flex; flex-wrap:wrap; gap: 26px 40px; align-items:center; }
.sx-hero__trust-item { display:flex; align-items:center; gap:12px; }
.sx-hero__trust-item .ic { width:44px;height:44px;border-radius:12px;display:grid;place-items:center;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); color:var(--gold-400); font-size:19px; }
.sx-hero__trust-item b { color:#fff; font-family:var(--font-display); font-size:20px; display:block; line-height:1.1; }
.sx-hero__trust-item span { font-size:13px; color:#b9c7bd; }
.sx-stars { color: var(--gold-400); letter-spacing:2px; }

/* Floating hero glass stat card */
.sx-hero__card {
  position:relative; z-index:2;
  background: rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.20);
  border-radius: var(--r-lg); padding: 26px; backdrop-filter: blur(14px);
  box-shadow: var(--sh-lg);
}
.sx-hero__card h4 { color:#fff; font-family:var(--font-display); font-size:18px; margin-bottom:18px; }
.sx-hero__meter { height:10px; border-radius:99px; background:rgba(255,255,255,.16); overflow:hidden; margin:8px 0 4px; }
.sx-hero__meter i { display:block; height:100%; border-radius:99px; background: var(--grad-solar); width:0; transition: width 1.6s var(--ease); }
.sx-hero__scroll { position:absolute; left:50%; bottom:26px; transform:translateX(-50%); z-index:3; color:#cfe; font-size:12px; letter-spacing:2px; text-transform:uppercase; opacity:.8; }
/* on stacked layouts the phone card reaches the hero's bottom edge; the
   scroll hint would sit on top of it */
@media (max-width: 991px){ .sx-hero__scroll { display:none; } }
.sx-hero__scroll span { display:block; width:24px;height:38px;border:2px solid rgba(255,255,255,.5); border-radius:14px; margin:8px auto 0; position:relative; }
.sx-hero__scroll span::after { content:""; position:absolute; left:50%; top:7px; width:4px;height:8px;border-radius:2px;background:#fff; transform:translateX(-50%); animation: sx-scroll 1.6s infinite; }
@keyframes sx-scroll { 0%{opacity:0;top:6px;} 40%{opacity:1;} 80%{opacity:0;top:18px;} 100%{opacity:0;} }

/* =====================================================================
   TRUST BAR
   ===================================================================== */
.sx-trustbar { background: var(--surface); border-bottom:1px solid var(--line); padding: 30px 0; }
.sx-trustbar__label { font-size:13px; letter-spacing:1.4px; text-transform:uppercase; color:var(--ink-400); font-weight:600; font-family:var(--font-head); }
.sx-trustbar__logos { display:flex; flex-wrap:wrap; align-items:center; gap: 22px 46px; }
.sx-badge-cert { display:inline-flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:600; color:var(--ink-700); }
.sx-badge-cert i { color: var(--green-600); font-size:22px; }

/* =====================================================================
   STAT BAND (counters)
   ===================================================================== */
.sx-stats { position:relative; }
.sx-stat {
  text-align:center; padding: 30px 18px; border-radius: var(--r-lg);
  background: var(--surface); box-shadow: var(--sh-sm); border:1px solid var(--line);
  height:100%; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.sx-stat:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.sx-stat .ic { width:58px;height:58px;border-radius:16px; margin:0 auto 16px; display:grid;place-items:center;
  background: var(--green-100); color: var(--green-600); font-size:26px; }
.sx-stat .num { font-family:var(--font-display); font-weight:800; font-size: clamp(30px,3.4vw,42px); color:var(--ink-900); line-height:1; letter-spacing:-.02em; }
.sx-stat .num .suffix { color: var(--gold-500); }
.sx-stat .lbl { margin-top:8px; font-size:14.5px; color:var(--ink-500); }

/* =====================================================================
   ABOUT / VALUE
   ===================================================================== */
.sx-about__media { position:relative; border-radius: var(--r-xl); overflow:hidden; box-shadow: var(--sh-lg); }
.sx-about__media img, .sx-about__media video { width:100%; display:block; }
.sx-about__media .sx-about__poster { display:none; }
@media (max-width:767px){
  .sx-about__media video { display:none; }
  .sx-about__media .sx-about__poster { display:block; }
}
.sx-about__badge {
  position:absolute; left:24px; bottom:24px; background: var(--grad-brand);
  color:#fff; border-radius: var(--r); padding:20px 24px; box-shadow: var(--sh-green);
}
.sx-about__badge b { font-family:var(--font-display); font-size:34px; display:block; line-height:1; }
.sx-about__badge span { font-size:13px; color:#d7ecdd; }
.sx-checklist { list-style:none; padding:0; margin: 24px 0 30px; display:grid; grid-template-columns:1fr 1fr; gap:14px 26px; }
.sx-checklist li { display:flex; gap:12px; align-items:flex-start; font-weight:500; color:var(--ink-700); }
.sx-checklist li i { flex:none; width:24px;height:24px;border-radius:50%; background:var(--green-100); color:var(--green-600); display:grid;place-items:center; font-size:11px; margin-top:2px; }

/* =====================================================================
   CARDS (services / solutions / features)
   ===================================================================== */
.sx-card {
  background: var(--surface); border:1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 30px; height:100%; position:relative; overflow:hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.sx-card::before { content:""; position:absolute; left:0; top:0; height:4px; width:100%; background: var(--grad-solar); transform: scaleX(0); transform-origin:left; transition: transform .45s var(--ease); }
.sx-card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); border-color: transparent; }
.sx-card:hover::before { transform: scaleX(1); }
.sx-card__ic {
  width:66px;height:66px;border-radius:18px; display:grid;place-items:center; font-size:28px;
  background: var(--green-100); color: var(--green-600); margin-bottom:22px;
  transition: transform .45s var(--ease), background .45s var(--ease), color .45s var(--ease);
}
.sx-card:hover .sx-card__ic { background: var(--grad-brand); color:#fff; transform: rotate(-6deg) scale(1.06); }
.sx-card h4, .sx-card h3 { font-family:var(--font-display); font-weight:700; font-size:21px; margin-bottom:10px; color:var(--ink-900); }
.sx-card p { font-size:15px; line-height:1.65; color:var(--ink-500); margin-bottom:18px; }
.sx-card__link { font-family:var(--font-head); font-weight:600; color:var(--green-600); display:inline-flex; align-items:center; gap:8px; text-decoration:none; }
.sx-card__link i { transition: transform .3s var(--ease); }
.sx-card:hover .sx-card__link i { transform: translateX(5px); }
.sx-card__tag { position:absolute; top:22px; right:22px; font-size:11px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; color:var(--gold-600); background:var(--gold-100); padding:5px 11px; border-radius:var(--r-pill); }

/* feature mini */
.sx-feature { display:flex; gap:18px; align-items:flex-start; padding:22px; border-radius:var(--r); transition: background .3s var(--ease); }
.sx-feature:hover { background: var(--surface); box-shadow: var(--sh-sm); }
.sx-feature__ic { flex:none; width:56px;height:56px;border-radius:14px; background: var(--grad-brand); color:#fff; display:grid;place-items:center; font-size:23px; box-shadow: var(--sh-green); }
.sx-feature h5 { font-family:var(--font-display); font-weight:700; font-size:18px; margin-bottom:6px; color:var(--ink-900); }
.sx-feature p { font-size:14.5px; color:var(--ink-500); margin:0; line-height:1.6; }

/* =====================================================================
   PROCESS TIMELINE
   ===================================================================== */
.sx-process { position:relative; }
.sx-process__track { position:relative; display:grid; grid-template-columns: repeat(5,1fr); gap:24px; }
.sx-process__track::before { content:""; position:absolute; top:34px; left:8%; right:8%; height:3px; background: linear-gradient(90deg,var(--green-200,#e6f0c8),var(--gold-400)); border-radius:99px; z-index:0; }
.sx-step { position:relative; z-index:1; text-align:center; padding-top:0; }
.sx-step__num {
  width:70px;height:70px;border-radius:50%; margin:0 auto 20px; display:grid;place-items:center;
  background:var(--surface); border:3px solid var(--green-100); color:var(--green-600);
  font-family:var(--font-display); font-weight:800; font-size:24px; position:relative;
  box-shadow: var(--sh-sm); transition: all .45s var(--ease);
}
.sx-step:hover .sx-step__num { background: var(--grad-brand); color:#fff; border-color:transparent; transform: translateY(-6px); box-shadow:var(--sh-green); }
.sx-step__ic { position:absolute; top:-8px; right:-8px; width:30px;height:30px;border-radius:50%; background:var(--grad-solar); color:var(--ink-900); display:grid;place-items:center; font-size:13px; box-shadow:var(--sh-gold); }
.sx-step h5 { font-family:var(--font-display); font-weight:700; font-size:18px; margin-bottom:8px; color:var(--ink-900); }
.sx-step p { font-size:14px; color:var(--ink-500); line-height:1.6; margin:0; }
@media (max-width: 991px){
  .sx-process__track { grid-template-columns:1fr 1fr; gap:34px 20px; }
  .sx-process__track::before { display:none; }
}
@media (max-width: 575px){ .sx-process__track { grid-template-columns:1fr; } }

/* =====================================================================
   SAVINGS CALCULATOR
   ===================================================================== */
.sx-calc { background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--sh-lg); overflow:hidden; }
.sx-calc__panel { padding: 44px; }
.sx-calc__result {
  background: var(--grad-brand); color:#fff; padding: 44px; position:relative; overflow:hidden;
}
.sx-calc__result::after { content:""; position:absolute; right:-60px; top:-60px; width:220px;height:220px;border-radius:50%; background: radial-gradient(circle, rgba(245,166,35,.4), transparent 70%); }
.sx-field { margin-bottom: 30px; }
.sx-field__top { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:12px; gap:14px; flex-wrap:wrap; }
.sx-field label { font-family:var(--font-head); font-weight:600; color:var(--ink-800); font-size:15px; }
.sx-field__val { font-family:var(--font-display); font-weight:800; color:var(--green-600); font-size:20px; }
.sx-range { -webkit-appearance:none; appearance:none; width:100%; height:8px; border-radius:99px; background: var(--surface-3); outline:none; }
.sx-range::-webkit-slider-runnable-track { height:8px; border-radius:99px; }
.sx-range::-webkit-slider-thumb { -webkit-appearance:none; width:26px;height:26px;border-radius:50%; background:#fff; border:5px solid var(--green-600); box-shadow: var(--sh-sm); cursor:pointer; margin-top:-9px; transition: transform .2s var(--ease); }
.sx-range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.sx-range::-moz-range-thumb { width:26px;height:26px;border-radius:50%; background:#fff; border:5px solid var(--green-600); cursor:pointer; }
.sx-range::-moz-range-track { height:8px;border-radius:99px; background: var(--surface-3); }
.sx-chips { display:flex; flex-wrap:wrap; gap:10px; }
.sx-chip { padding:10px 18px; border-radius:var(--r-pill); border:1.5px solid var(--line-2); background:#fff; font-family:var(--font-head); font-weight:600; font-size:14px; color:var(--ink-700); cursor:pointer; transition: all .25s var(--ease); }
.sx-chip:hover { border-color: var(--green-400); }
.sx-chip.is-active { background: var(--green-600); border-color: var(--green-600); color:#fff; box-shadow: var(--sh-green); }
.sx-calc__big { font-family:var(--font-display); font-weight:800; font-size: clamp(38px,5vw,58px); line-height:1; letter-spacing:-.02em; }
.sx-calc__big .cur { color: var(--gold-400); font-size:.55em; vertical-align:top; margin-right:2px; }
.sx-calc__sub { color:#c8e0cf; font-size:15px; margin-top:6px; }
.sx-calc__row { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:28px; position:relative; z-index:1; }
.sx-calc__metric { background: rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.16); border-radius: var(--r); padding:18px; }
.sx-calc__metric b { font-family:var(--font-display); font-weight:800; font-size:26px; color:#fff; display:block; line-height:1; }
.sx-calc__metric span { font-size:12.5px; color:#bcd3c2; }
.sx-calc__disc { font-size:12px; color:var(--ink-400); margin-top:22px; }

/* =====================================================================
   ENERGY PRODUCTION VIZ
   ===================================================================== */
.sx-energy { display:flex; align-items:flex-end; gap: 3.2%; height: 240px; padding: 0 4px; }
.sx-energy__bar { flex:1; display:flex; flex-direction:column; justify-content:flex-end; align-items:center; gap:8px; height:100%; }
.sx-energy__fill { width:100%; border-radius:8px 8px 0 0; background: var(--grad-solar); height:0; transition: height 1.1s var(--ease); box-shadow: inset 0 -6px 14px rgba(0,0,0,.05); position:relative; }
.sx-energy__bar.dim .sx-energy__fill { background: linear-gradient(180deg,#cfe6d6,#bcdcc6); }
.sx-energy__cap { font-size:12px; color:var(--ink-400); font-weight:600; }

/* =====================================================================
   SOLUTIONS TABS (panels / battery / EV / monitoring)
   ===================================================================== */
.sx-tabs { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-bottom:44px; }
.sx-tab {
  display:inline-flex; align-items:center; gap:10px; padding:14px 24px; border-radius:var(--r-pill);
  background:var(--surface); border:1.5px solid var(--line); font-family:var(--font-head); font-weight:600;
  color:var(--ink-700); cursor:pointer; transition: all .3s var(--ease); font-size:15px;
}
.sx-tab i { font-size:18px; color:var(--green-600); transition: color .3s var(--ease); }
.sx-tab:hover { border-color: var(--green-400); transform: translateY(-2px); }
.sx-tab.is-active { background: var(--grad-brand); color:#fff; border-color:transparent; box-shadow: var(--sh-green); }
.sx-tab.is-active i { color: var(--gold-400); }
.sx-tabpane { display:none; animation: sx-fade .5s var(--ease); }
.sx-tabpane.is-active { display:block; }
@keyframes sx-fade { from{opacity:0; transform:translateY(14px);} to{opacity:1;transform:none;} }
.sx-solution__img { border-radius: var(--r-xl); overflow:hidden; box-shadow: var(--sh-lg); }
.sx-solution__img img { width:100%; display:block; }
.sx-solution__list { list-style:none; padding:0; margin:22px 0 0; }
.sx-solution__list li { display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; color:var(--ink-700); }
.sx-solution__list li i { flex:none; color:var(--green-600); margin-top:3px; }

/* =====================================================================
   BEFORE / AFTER SLIDER
   ===================================================================== */
.sx-ba { position:relative; border-radius: var(--r-xl); overflow:hidden; box-shadow: var(--sh-lg); user-select:none; }
.sx-ba img { display:block; width:100%; pointer-events:none; }
.sx-ba__after { position:absolute; inset:0; overflow:hidden; width:50%; }
.sx-ba__after img { position:absolute; inset:0; height:100%; width:auto; max-width:none; }
.sx-ba__handle { position:absolute; top:0; bottom:0; left:50%; width:3px; background:#fff; transform:translateX(-50%); z-index:3; box-shadow:0 0 12px rgba(0,0,0,.3); }
.sx-ba__grip { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:52px;height:52px;border-radius:50%; background:#fff; display:grid;place-items:center; color:var(--green-700); box-shadow: var(--sh-md); cursor:ew-resize; }
.sx-ba__lbl { position:absolute; bottom:16px; z-index:2; background:rgba(31,48,16,.72); color:#fff; font-size:12px; font-weight:600; letter-spacing:.5px; padding:6px 14px; border-radius:var(--r-pill); backdrop-filter:blur(4px); }
.sx-ba__lbl--before { left:16px; }
.sx-ba__lbl--after { right:16px; }

/* =====================================================================
   PROJECTS
   ===================================================================== */
.sx-project { position:relative; border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--sh-sm); }
.sx-project img { width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.sx-project:hover img { transform: scale(1.08); }
.sx-project__ov { position:absolute; inset:0; background: linear-gradient(to top, rgba(9,28,17,.9) 0%, rgba(9,28,17,.15) 55%, transparent 100%); display:flex; flex-direction:column; justify-content:flex-end; padding:26px; opacity:1; }
.sx-project__cat { font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gold-400); }
.sx-project__ov h4 { color:#fff; font-family:var(--font-display); font-weight:700; font-size:20px; margin:6px 0 0; transform: translateY(8px); transition: transform .4s var(--ease); }
.sx-project__meta { color:#c6d5cb; font-size:13.5px; margin-top:8px; opacity:0; max-height:0; overflow:hidden; transition: all .45s var(--ease); }
.sx-project:hover .sx-project__ov h4 { transform: none; }
.sx-project:hover .sx-project__meta { opacity:1; max-height:60px; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.sx-quote {
  background: var(--surface); border:1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px; height:100%; position:relative; box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.sx-quote:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.sx-quote__mark { font-family:Georgia,serif; font-size:70px; line-height:.6; color: var(--green-100); position:absolute; top:26px; right:28px; }
.sx-quote__stars { color: var(--gold-500); letter-spacing:2px; margin-bottom:16px; }
.sx-quote p { font-size:16px; line-height:1.7; color:var(--ink-700); position:relative; z-index:1; }
.sx-quote__by { display:flex; align-items:center; gap:14px; margin-top:22px; padding-top:20px; border-top:1px solid var(--line); }
.sx-quote__by img { width:52px;height:52px;border-radius:50%; object-fit:cover; }
.sx-quote__by b { font-family:var(--font-display); font-weight:700; color:var(--ink-900); display:block; font-size:15px; }
.sx-quote__by span { font-size:13px; color:var(--ink-400); }

/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.sx-faq { max-width: 860px; margin:0 auto; }
.sx-acc { background:var(--surface); border:1px solid var(--line); border-radius: var(--r); margin-bottom:14px; overflow:hidden; transition: box-shadow .3s var(--ease), border-color .3s var(--ease); }
.sx-acc.is-open { box-shadow: var(--sh-md); border-color: transparent; }
.sx-acc__q { width:100%; text-align:left; background:none; border:none; padding: 22px 26px; display:flex; justify-content:space-between; align-items:center; gap:18px; cursor:pointer; font-family:var(--font-display); font-weight:700; font-size:17px; color:var(--ink-900); }
.sx-acc__q .ic { flex:none; width:34px;height:34px;border-radius:50%; background:var(--green-100); color:var(--green-600); display:grid;place-items:center; transition: all .35s var(--ease); }
.sx-acc.is-open .sx-acc__q .ic { background: var(--grad-brand); color:#fff; transform: rotate(180deg); }
.sx-acc__a { max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.sx-acc__a-inner { padding: 0 26px 24px; color:var(--ink-500); line-height:1.7; font-size:15.5px; }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.sx-cta { position:relative; overflow:hidden; border-radius: var(--r-xl); background: var(--grad-brand); color:#fff; padding: 60px; }
.sx-cta::before { content:""; position:absolute; right:-40px; bottom:-80px; width:320px;height:320px;border-radius:50%; background: radial-gradient(circle, rgba(245,166,35,.35), transparent 70%); }
.sx-cta h3, .sx-cta .sx-cta__title { color:#fff; font-family:var(--font-display); font-weight:800; font-size: clamp(26px,3vw,40px); letter-spacing:-.02em; margin-bottom:10px; position:relative; z-index:1; line-height:1.2; }
.sx-cta p { color:#d3e7d9; font-size:17px; margin-bottom:0; position:relative; z-index:1; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.sx-contact__card { background:var(--surface); border-radius: var(--r-xl); box-shadow: var(--sh-lg); padding: 44px; }
.sx-input, .sx-textarea, .sx-select {
  width:100%; padding: 15px 18px; border-radius: var(--r-sm); border:1.5px solid var(--line-2);
  background: var(--surface-2); font-family:var(--font-body); font-size:15px; color:var(--ink-800);
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease); margin-bottom:18px;
}
.sx-input:focus, .sx-textarea:focus, .sx-select:focus { border-color: var(--green-500); background:#fff; box-shadow: 0 0 0 4px rgba(141,198,63,.12); outline:none; }
.sx-textarea { min-height: 130px; resize: vertical; }
.sx-contact__info { display:flex; gap:16px; align-items:flex-start; margin-bottom:26px; }
.sx-contact__info .ic { flex:none; width:54px;height:54px;border-radius:14px; background:var(--grad-brand); color:#fff; display:grid;place-items:center; font-size:22px; box-shadow: var(--sh-green); }
.sx-contact__info b { font-family:var(--font-display); font-weight:700; color:var(--ink-900); display:block; margin-bottom:3px; }
.sx-contact__info span, .sx-contact__info a { color:var(--ink-700); }

/* =====================================================================
   FOOTER reskin
   ===================================================================== */
.footer { background: var(--grad-dark) !important; }
.footer-primary { border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-widget-title { color:#fff !important; font-family:var(--font-display); font-weight:700; }
.footer-widget-content, .footer-widget-content p, .footer-widget a { color:#a9b8ad !important; }
.footer-widget a:hover { color: var(--gold-400) !important; }
.footer-widget-content .color-primary { color: var(--gold-400) !important; }
/* the generic muted-gray footer link color above (higher specificity than
   .btn__primary alone) was washing out the "Download the Capability
   Statement" button's text; force it back to the same lime-button styling
   used everywhere else */
.footer-widget-content .btn__primary, .footer-widget-content .sx-btn--primary { color: var(--ink-900) !important; }
.footer-widget-content .btn__primary:hover, .footer-widget-content .sx-btn--primary:hover { color: #ffffff !important; }
.footer-copyrights { background: rgba(0,0,0,.25); }
.footer-copyrights a { color: var(--gold-400); }
.copyright__nav a { color:#a9b8ad; }

/* scroll-top button */
#scrollTopBtn { background: var(--grad-brand) !important; box-shadow: var(--sh-green); border:none; }

/* =====================================================================
   PAGE TITLE (inner pages) reskin
   ===================================================================== */
.page-title { position:relative; }
.page-title.bg-overlay::before, .page-title .bg-overlay::before { background: var(--grad-hero) !important; }
.page-title .breadcrumb__title, .page-title h1 { font-family: var(--font-display); font-weight:800; letter-spacing:-.02em; }
.page-title .breadcrumb__title, .page-title h1, .page-title .breadcrumb, .page-title .breadcrumb-item, .page-title .breadcrumb-item a { text-shadow: 0 2px 14px rgba(0,0,0,.5); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.sx-reveal { opacity:0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.sx-reveal.is-visible { opacity:1; transform:none; }
.sx-reveal--left { transform: translateX(-40px); }
.sx-reveal--right { transform: translateX(40px); }
.sx-reveal--scale { transform: scale(.94); }
.sx-reveal.is-visible.sx-reveal--left,
.sx-reveal.is-visible.sx-reveal--right,
.sx-reveal.is-visible.sx-reveal--scale { transform:none; }
.sx-d1{transition-delay:.08s;} .sx-d2{transition-delay:.16s;} .sx-d3{transition-delay:.24s;}
.sx-d4{transition-delay:.32s;} .sx-d5{transition-delay:.40s;} .sx-d6{transition-delay:.48s;}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 991px){
  .sx-section { padding: 72px 0; }
  .sx-hero { min-height: auto; padding: 130px 0 70px; }
  .sx-calc__result, .sx-calc__panel { padding: 34px; }
  .sx-checklist { grid-template-columns:1fr; }
}
@media (max-width: 575px){
  .sx-section { padding: 56px 0; }
  .sx-cta { padding: 40px 26px; }
  .sx-contact__card, .sx-calc__panel, .sx-calc__result { padding: 26px; }
  .sx-calc__row { grid-template-columns:1fr; }
  .sx-hero__trust { gap:18px 26px; }
}

/* utility */
.sx-mw-720 { max-width:720px; }
.mx-auto-imp { margin-left:auto; margin-right:auto; }
.sx-divider-dot { width:6px;height:6px;border-radius:50%; background:var(--gold-500); display:inline-block; }

/* Google Translate language switcher: keep it invisible except for our own dropdown trigger */
.goog-te-banner-frame.skiptranslate { display:none !important; }
body { top:0 !important; position:static !important; }
.goog-text-highlight { background:none !important; box-shadow:none !important; }
#goog-gt-tt, .goog-te-balloon-frame { display:none !important; }
.goog-te-gadget-icon { display:none !important; }
.skiptranslate iframe.goog-te-banner-frame { visibility:hidden !important; height:0 !important; }

/* brand logo sizing (raster PNG has no intrinsic layout size like the old SVG did) */
.navbar-brand .logo,
img.logo {
  max-height: 74px;
  width: auto;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 575px){
  .navbar-brand .logo,
  img.logo {
    max-height: 54px;
  }
}

/* ---------- Header fit: phone number never wraps; nav tightened at xl ------
   The 7-item product nav plus the phone and demo button overflowed between
   1200 and 1500px, wrapping "0485 097 373" onto two lines. ------------------ */
a[href^="tel:"] { white-space: nowrap; }
.contact__number { flex-shrink: 0; }
@media (min-width: 1200px) and (max-width: 1549px) {
  .navbar .nav__item .nav__item-link { padding-left: 9px; padding-right: 9px; font-size: 14px; }
  .contact__number a { font-size: 15px; }
  .navbar .navbar-actions .btn { padding-left: 16px; padding-right: 16px; }
  .navbar .contact__number i { display: none; }
}
/* With the international +61 format the number no longer fits beside the
   7-item nav and the demo button below ~1400px; the button is the primary
   action, so the phone yields in that band (it stays in the footer,
   contact page and demo page). */
@media (min-width: 1200px) and (max-width: 1399px) {
  .navbar .contact__number { display: none !important; }
}

/* ---------- Small-screen guards for the product-page sections ------------- */
img { max-width: 100%; height: auto; }
@media (max-width: 575px) {
  .sx-hero__title { font-size: clamp(30px, 9vw, 40px); }
  .sx-stat .num { font-size: 22px !important; }
  .sx-card { padding-left: 18px; padding-right: 18px; }
  .footer-widget-align-right .btn__download { max-width: 100%; white-space: normal; }
}

/* =====================================================================
   PREMIUM POLISH PASS
   Lighter tints: the dark bands were near-black (#0f2417 -> #0a1a10);
   they now sit on a lifted emerald with soft gold/green glows, and the
   page-title photo overlays are brand-tinted instead of flat grey.
   ===================================================================== */
:root {
  --grad-dark:
    radial-gradient(1100px 520px at 88% -12%, rgba(245,166,35,.10), transparent 62%),
    radial-gradient(900px 520px at -8% 112%, rgba(141,198,63,.16), transparent 60%),
    linear-gradient(160deg, #3f601944 0%, transparent 100%),
    linear-gradient(160deg, #1f3010 0%, #14210a 100%);
}
.sx-bg-dark { color: var(--ink-700); }
.page-title.bg-overlay:before,
.page-title .bg-overlay:before {
  background: linear-gradient(165deg, rgba(31,48,16,.74) 0%, rgba(88,126,30,.42) 100%);
}
.page-title.bg-overlay-2:before { background-color: transparent; }

/* ---------- Smooth in-page scrolling ---------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------- Scroll progress bar ---------- */
.sx-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 2000;
  background: linear-gradient(90deg, var(--green-500), var(--gold-500));
  transform-origin: 0 50%; transform: scaleX(0); pointer-events: none;
}

/* ---------- Button shine sweep ---------- */
.sx-btn--solar, .btn__primary, .sx-btn--primary { position: relative; overflow: hidden; }
.sx-btn--solar::after, .btn__primary::after, .sx-btn--primary::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease); pointer-events: none;
}
.sx-btn--solar:hover::after, .btn__primary:hover::after, .sx-btn--primary:hover::after { left: 130%; }

/* ---------- Lazy images fade in ---------- */
img.img-fade { opacity: 0; transform: scale(.985); transition: opacity .7s var(--ease), transform .9s var(--ease); }
img.img-fade.img-loaded { opacity: 1; transform: none; }

/* ---------- Reveal variant for big headings: rise + soft blur-off ---------- */
.sx-title.sx-reveal, .heading__title.sx-reveal { transform: translateY(26px); filter: blur(4px); }
.sx-title.sx-reveal.is-visible, .heading__title.sx-reveal.is-visible { filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  .sx-title.sx-reveal, .heading__title.sx-reveal { filter: none; }
  .sx-progress { display: none; }
}

/* =====================================================================
   TYPOGRAPHY RHYTHM + SHARPNESS PASS
   The base theme force-capitalised every heading (style.css h1-h6),
   turning sentence-case copy into Title Case, and .sx-title's 1.08
   line-height crowded two-line headings into the copy below them.
   ===================================================================== */
h1, h2, h3, h4, h5, h6 { text-transform: none; }
.sx-title { line-height: 1.16; }
.sx-hero__title { line-height: 1.12; margin-bottom: 20px; }
.sx-title + .sx-lead, .sx-title + p { margin-top: 4px; }
.sx-checklist li { margin-bottom: 10px; }
.sx-checklist li:last-child { margin-bottom: 0; }

/* headings reveal: subtler rise so nothing ever visually overlaps mid-scroll */
.sx-title.sx-reveal, .heading__title.sx-reveal { transform: translateY(14px); filter: blur(3px); }

/* ---------- Badge chips on dark bands (capability card, features CTA) ----- */
#download .sx-badge-cert {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 7px 15px;
  color: #eafff2;
  font-size: 13px;
}
#download .sx-badge-cert i { color: var(--gold-400); font-size: 15px; }
.sx-bg-dark .sx-badge-cert i { color: var(--green-800); }

/* ---------- Button rows: gap-based, wrap cleanly on mobile ---------------- */
.sx-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.sx-actions--center { justify-content: center; }
@media (max-width: 575px) {
  p > .sx-btn[style*="margin-left"] { margin-left: 0 !important; margin-top: 10px; }
}

/* ---------- Pylon band internal rhythm ------------------------------------ */
#pylon .sx-title { margin-bottom: 16px; }
#pylon .sx-lead { margin-bottom: 8px; }
#pylon b { display: block; margin-bottom: 4px; }

/* ---------- Chat widget clearance ------------------------------------------
   The chat bubble docks bottom-right, where the scroll-top button sat.
   The button moves above the bubble so both stay usable. ------------------ */
#scrollTopBtn { bottom: 110px; right: 18px; }
@media (max-width: 767px) { #scrollTopBtn { bottom: 96px; } }

/* =====================================================================
   HOMEPAGE PRODUCT STORY COMPONENTS
   The lead-rescue phone replay, booking-decay meter, tools marquee,
   Pylon connector flow and plans band. All motion here is driven by
   sx-home.js and every piece renders a complete static end state
   under prefers-reduced-motion.
   ===================================================================== */

/* ---------- Lead-rescue phone replay ------------------------------- */
.sx-phone-wrap { position: relative; z-index: 2; max-width: 360px; margin: 0 auto; }
.sx-phone {
  position: relative; border-radius: 42px; padding: 12px;
  background: linear-gradient(160deg, #1b2f22, #0b1810);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 40px 90px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.12);
}
.sx-phone__screen {
  position: relative; border-radius: 32px; overflow: hidden;
  background: linear-gradient(180deg, #10281a 0%, #0b1c11 100%);
  height: 520px; display: flex; flex-direction: column;
}
.sx-phone__notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 22px; border-radius: 99px; background: #06120b; z-index: 3;
}
.sx-phone__bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 10px; font-size: 11.5px; color: #9fc7ab; letter-spacing: .04em;
}
.sx-phone__head {
  display: flex; align-items: center; gap: 10px; padding: 8px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sx-phone__ava {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--grad-solar); color: #2f4a14; font-weight: 800; font-size: 13px;
  display: grid; place-items: center; font-family: var(--font-display);
}
.sx-phone__head b { color: #fff; font-size: 13.5px; font-family: var(--font-display); display: block; line-height: 1.2; }
.sx-phone__head span { color: #8fbf9c; font-size: 11px; }
.sx-phone__thread {
  flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 10px;
  overflow: hidden; justify-content: flex-end;
}
.sx-msg {
  max-width: 82%; padding: 10px 14px; border-radius: 16px;
  font-size: 13px; line-height: 1.5; position: relative;
  opacity: 0; transform: translateY(14px) scale(.96);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.sx-msg.is-shown { opacity: 1; transform: none; }
.sx-msg--sys {
  align-self: center; max-width: 100%; text-align: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: #cfe3d4; font-size: 11.5px; font-weight: 600; letter-spacing: .03em;
  padding: 6px 14px; border-radius: 99px;
}
.sx-msg--sys.sx-msg--missed { color: #ffb199; border-color: rgba(255,140,100,.35); background: rgba(255,110,70,.12); }
.sx-msg--out {
  align-self: flex-end; color: #2f4a14;
  background: linear-gradient(135deg, #edf6d4, #d7ecab);
  border-bottom-right-radius: 5px;
}
.sx-msg--in {
  align-self: flex-start; color: #eafff2;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.12);
  border-bottom-left-radius: 5px;
}
.sx-msg__time { display: block; font-size: 10px; opacity: .65; margin-top: 4px; }
.sx-msg--book {
  align-self: flex-end; width: 82%;
  background: linear-gradient(135deg, rgba(255,194,77,.2), rgba(245,166,35,.12));
  border: 1px solid rgba(255,194,77,.45); color: #ffe9c2;
  border-radius: 16px; padding: 12px 14px;
}
.sx-msg--book .bk-top { display: flex; align-items: center; gap: 9px; font-weight: 700; color: #ffd98a; font-size: 12.5px; }
.sx-msg--book .bk-top i { color: var(--gold-400); }
.sx-msg--book .bk-slot {
  margin-top: 8px; display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,.25); border-radius: 10px; padding: 8px 12px; font-size: 12.5px; color: #fff;
}
.sx-msg--book .bk-slot i { color: var(--green-400); }
.sx-typing {
  align-self: flex-end; display: inline-flex; gap: 5px; padding: 12px 16px;
  background: rgba(255,255,255,.10); border-radius: 16px; border-bottom-right-radius: 5px;
  opacity: 0; transform: translateY(10px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.sx-typing.is-shown { opacity: 1; transform: none; }
.sx-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: #9fc7ab;
  animation: sx-tdot 1.1s ease-in-out infinite;
}
.sx-typing span:nth-child(2) { animation-delay: .18s; }
.sx-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes sx-tdot { 0%,60%,100% { transform: translateY(0); opacity:.5; } 30% { transform: translateY(-5px); opacity:1; } }
.sx-phone__foot {
  padding: 10px 16px 16px; text-align: center; font-size: 11px; color: #7fae8d;
  border-top: 1px solid rgba(255,255,255,.07);
}
/* Reduced motion renders the whole thread statically; it is taller than the
   screen, so let it scroll instead of clipping the first messages. During the
   animated loop the bottom-anchored overflow is intentional (older bubbles
   slide off the top, like a real messaging app). */
@media (prefers-reduced-motion: reduce) {
  .sx-phone__thread { justify-content: flex-start; overflow-y: auto; }
}
.sx-phone__glow {
  position: absolute; inset: -28px; border-radius: 60px; z-index: -1;
  background: radial-gradient(closest-side, rgba(255,194,77,.22), transparent 72%);
  animation: sx-float 8s ease-in-out infinite;
}
.sx-phone-wrap .cap {
  text-align: center; font-size: 12px; color: #9fc7ab; margin: 16px auto 0; max-width: 300px;
}
/* the "22 hours later" comparison chip pinned under the phone */
.sx-phone__vs {
  margin: 18px auto 0; max-width: 330px; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 12px 16px; color: #d5e0d8; font-size: 12.5px; line-height: 1.45;
}
.sx-phone__vs i { color: var(--gold-400); font-size: 18px; flex: none; }
.sx-phone__vs b { color: #fff; }
@media (max-width: 991px) {
  .sx-phone-wrap { margin-top: 44px; }
  .sx-phone__screen { height: 470px; }
}

/* ---------- AEO answer-engine replay ---------------------------------
   A scripted, clearly-labelled example of an AI assistant answering
   "who's the best solar installer near me?" with the business as the
   cited top answer. Same play/pause contract as the phone replay:
   loops while on screen, pauses off screen and in hidden tabs, and
   renders the finished answer statically under reduced motion.
   Used on the homepage and the AEO article page. --------------------- */
.sx-ai-wrap { position: relative; z-index: 2; max-width: 470px; margin: 0 auto; }
.sx-ai-wrap--embed { margin: 30px auto 34px; }
.sx-ai { position: relative; }
.sx-ai__glow {
  position: absolute; inset: -30px; border-radius: 60px; z-index: -1;
  background: radial-gradient(closest-side, rgba(154,205,50,.18), transparent 72%);
  animation: sx-float 8s ease-in-out infinite;
}
.sx-ai__win {
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(165deg, #16281c 0%, #0b1810 100%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 40px 90px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.1);
  display: flex; flex-direction: column;
}
.sx-ai__chrome {
  display: flex; align-items: center; gap: 10px; padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.sx-ai__chrome .dots { display: inline-flex; gap: 6px; margin-right: 2px; }
.sx-ai__chrome .dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.sx-ai__chrome .dots i:nth-child(1) { background: #ff5f57; }
.sx-ai__chrome .dots i:nth-child(2) { background: #febc2e; }
.sx-ai__chrome .dots i:nth-child(3) { background: #28c840; }
.sx-ai__chrome .ttl {
  color: #fff; font-size: 12.5px; font-weight: 700; font-family: var(--font-display);
  display: inline-flex; align-items: center; gap: 7px;
}
.sx-ai__chrome .ttl i { color: var(--green-400); }
.sx-ai__chrome .tag {
  margin-left: auto; font-size: 10.5px; color: #8fbf9c; letter-spacing: .03em;
  border: 1px solid rgba(255,255,255,.14); border-radius: 99px; padding: 3px 10px;
}
.sx-ai__thread {
  height: 424px; padding: 18px 16px; display: flex; flex-direction: column; gap: 10px;
  overflow: hidden; justify-content: flex-end;
}
.sx-aimsg {
  max-width: 88%; font-size: 13px; line-height: 1.55; position: relative;
  opacity: 0; transform: translateY(14px) scale(.97);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.sx-aimsg.is-shown { opacity: 1; transform: none; }
.sx-aimsg--q {
  align-self: flex-end; color: #2f4a14; padding: 10px 14px;
  background: linear-gradient(135deg, #edf6d4, #d7ecab);
  border-radius: 16px; border-bottom-right-radius: 5px;
}
.sx-aimsg--think {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 9px;
  color: #9fc7ab; font-size: 12px; padding: 9px 13px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; border-bottom-left-radius: 5px;
}
.sx-aimsg--think .d { display: inline-flex; gap: 4px; }
.sx-aimsg--think .d i {
  width: 6px; height: 6px; border-radius: 50%; background: #9fc7ab;
  animation: sx-tdot 1.1s ease-in-out infinite;
}
.sx-aimsg--think .d i:nth-child(2) { animation-delay: .18s; }
.sx-aimsg--think .d i:nth-child(3) { animation-delay: .36s; }
.sx-aimsg--a {
  align-self: flex-start; color: #e8f7ee; padding: 10px 14px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px; border-bottom-left-radius: 5px;
}
.sx-aimsg--a.is-stream::after {
  content: ""; display: inline-block; width: 7px; height: 14px; margin-left: 3px;
  vertical-align: text-bottom; background: #cfe3d4; border-radius: 2px;
  animation: sx-caret .9s steps(1) infinite;
}
.sx-aimsg--pick {
  align-self: flex-start; width: 88%; padding: 12px 14px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(154,205,50,.16), rgba(88,126,30,.08));
  border: 1px solid rgba(154,205,50,.45); color: var(--green-100);
}
.sx-aimsg--pick .pk-top {
  display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--green-400);
  font-size: 11px; letter-spacing: .07em; text-transform: uppercase;
}
.sx-aimsg--pick .pk-top i { color: var(--gold-400); }
.sx-aimsg--pick .pk-card {
  margin-top: 9px; display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,.28); border-radius: 12px; padding: 10px 12px;
}
.sx-aimsg--pick .pk-ava {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: var(--grad-solar); color: #2f4a14; display: grid; place-items: center; font-size: 15px;
}
.sx-aimsg--pick .pk-body { min-width: 0; }
.sx-aimsg--pick .pk-body b { display: block; color: #fff; font-size: 13px; font-family: var(--font-display); line-height: 1.25; }
.sx-aimsg--pick .pk-meta { display: block; color: #cfe3d4; font-size: 11px; margin-top: 3px; }
.sx-aimsg--pick .pk-meta i { color: var(--gold-400); font-size: 10px; }
.sx-aimsg--pick .pk-tick { margin-left: auto; color: var(--green-400); font-size: 16px; flex: none; }
.sx-aimsg--pick .pk-cite {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 9px;
  font-size: 10.5px; color: #cfe3d4; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13); border-radius: 99px; padding: 4px 10px;
}
.sx-aimsg--pick .pk-cite i { font-size: 9px; color: var(--green-400); }
.sx-aimsg--alt { align-self: flex-start; color: #7fae8d; font-size: 11.5px; padding: 0 4px; }
.sx-aimsg--src { align-self: flex-start; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; max-width: 100%; }
.sx-aimsg--src .lbl {
  font-size: 10.5px; color: #7fae8d; letter-spacing: .05em;
  text-transform: uppercase; font-weight: 700; margin-right: 2px;
}
.sx-aimsg--src .chip {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #cfe3d4;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  border-radius: 99px; padding: 4px 11px;
}
.sx-aimsg--src .chip i { font-size: 9.5px; color: var(--gold-400); }
.sx-aimsg--sys {
  align-self: center; max-width: 100%; text-align: center;
  background: rgba(154,205,50,.12); border: 1px solid rgba(154,205,50,.4); color: var(--green-400);
  font-size: 11.5px; font-weight: 700; letter-spacing: .03em;
  padding: 6px 14px; border-radius: 99px;
}
.sx-aimsg--sys i { color: var(--gold-400); }
.sx-ai__input {
  display: flex; align-items: center; gap: 10px; margin: 0 14px 14px; padding: 11px 14px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 99px;
}
.sx-ai__input .txt { flex: 1; font-size: 12.5px; color: #7fae8d; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* while typing, anchor the text to the end so long questions clip from the
   start (like a real input) and the caret stays visible */
.sx-ai__input.is-typing .txt { color: #fff; display: flex; justify-content: flex-end; }
.sx-ai__input.is-typing .txt::after {
  content: ""; display: inline-block; width: 2px; height: 13px; margin-left: 2px;
  vertical-align: middle; background: #cfe3d4; animation: sx-caret .8s steps(1) infinite;
}
.sx-ai__input .send {
  width: 28px; height: 28px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: rgba(255,255,255,.14); color: #cfe3d4; font-size: 12px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.sx-ai__input.is-typing .send { background: var(--grad-solar); color: #2f4a14; }
@keyframes sx-caret { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
/* the "try it yourself" chip pinned under the window (light sections) */
.sx-ai__vs {
  margin: 18px auto 0; max-width: 430px; display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 14px;
  padding: 12px 16px; color: var(--ink-500); font-size: 12.5px; line-height: 1.5;
  box-shadow: var(--sh-sm);
}
.sx-ai__vs i { color: var(--gold-500); font-size: 18px; flex: none; }
.sx-ai__vs b { color: var(--ink-900); }
/* Reduced motion renders the whole answer statically; it is taller than
   the window, so let it scroll instead of clipping the question. The glow
   and caret animations are stopped here explicitly: the global damper's
   bare * selector never reaches pseudo-elements, and a .001ms infinite
   animation still jitters every frame. */
@media (prefers-reduced-motion: reduce) {
  .sx-ai__thread { justify-content: flex-start; overflow-y: auto; }
  .sx-ai__glow, .sx-phone__glow { animation: none; }
  .sx-aimsg--a.is-stream::after, .sx-ai__input.is-typing .txt::after { animation: none; }
}
@media (max-width: 991px) {
  .sx-ai__thread { height: 400px; }
}

/* ---------- Booking decay curve -------------------------------------
   SVG: x = hours since enquiry (0 to 24), y = booking rate. The curve
   draws 43% down to 2%, the 22-hour industry-average line lands almost
   at the dead end of the axis. ---------------------------------------- */
.sx-decay {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-md); padding: 38px 40px; position: relative; overflow: hidden;
}
.sx-decay::after {
  content: ""; position: absolute; right: -70px; top: -70px; width: 240px; height: 240px;
  border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.14), transparent 70%);
  pointer-events: none;
}
.sx-decay__top { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 10px 20px; margin-bottom: 4px; }
.sx-decay__title { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--ink-900); margin: 0; }
.sx-decay__num {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(38px, 4.6vw, 56px); line-height: 1; color: var(--green-600);
  font-variant-numeric: tabular-nums; transition: color .4s var(--ease);
}
.sx-decay__num .pc { font-size: .55em; }
.sx-decay__num.is-low { color: #c2410c; }
.sx-decay__sub { font-size: 14px; color: var(--ink-500); margin: 0 0 18px; max-width: 560px; }
.sx-decay__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sx-decay__svg { display: block; width: 100%; min-width: 560px; height: auto; }
.sx-decay__svg .axis { stroke: var(--line-2); stroke-width: 1.5; }
/* label colours darkened past their tokens: ink-400/gold-600 fail WCAG AA
   contrast on the white card at these text sizes */
.sx-decay__svg .tick { font: 600 13px var(--font-head); fill: var(--ink-500); }
.sx-decay__svg .lbl { font: 700 14px var(--font-head); fill: var(--ink-700); }
.sx-decay__svg .lbl--gold { fill: #8a5a10; }
.sx-decay__svg .lbl--grey { fill: var(--ink-500); }
.sx-decay__curve {
  fill: none; stroke: var(--green-600); stroke-width: 3.5; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.8s cubic-bezier(.4,0,.3,1);
}
.sx-decay__area { fill: url(#sxDecayGrad); opacity: 0; transition: opacity .7s var(--ease) 1.2s; }
.sx-decay.is-drawn .sx-decay__curve { stroke-dashoffset: 0; }
.sx-decay.is-drawn .sx-decay__area { opacity: 1; }
.sx-decay__pt { opacity: 0; transform: scale(.4); transform-origin: center; transform-box: fill-box; transition: opacity .35s var(--ease), transform .45s cubic-bezier(.34,1.56,.64,1); }
.sx-decay.is-drawn .sx-decay__pt--start { opacity: 1; transform: scale(1); transition-delay: 1.85s; }
.sx-decay.is-drawn .sx-decay__pt--end { opacity: 1; transform: scale(1); transition-delay: 2.15s; }
.sx-decay__avg { opacity: 0; transition: opacity .5s var(--ease) 2.5s; }
.sx-decay.is-drawn .sx-decay__avg { opacity: 1; }
.sx-decay__avg line { stroke: #c2410c; stroke-width: 2; stroke-dasharray: 6 6; }
.sx-decay__avg text { font: 700 13px var(--font-head); fill: #c2410c; }
.sx-decay__meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.sx-decay__note { font-size: 13.5px; color: var(--ink-500); margin: 0; }
.sx-decay__note b { color: var(--ink-900); }
.sx-decay__replay {
  border: 1.5px solid var(--line-2); background: #fff; color: var(--green-700);
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  border-radius: 99px; padding: 8px 16px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.sx-decay__replay:hover { border-color: var(--green-500); background: var(--green-050); }
@media (max-width: 575px) { .sx-decay { padding: 26px 18px; } }
/* transition-free reset state used by the replay button */
.sx-decay--reset .sx-decay__curve,
.sx-decay--reset .sx-decay__area,
.sx-decay--reset .sx-decay__pt,
.sx-decay--reset .sx-decay__avg { transition: none !important; }
/* legible SVG labels even where the dashed line crosses them */
.sx-decay__svg .lbl, .sx-decay__svg .sx-decay__avg text {
  paint-order: stroke; stroke: var(--surface); stroke-width: 4px; stroke-linejoin: round;
}
@media (prefers-reduced-motion: reduce) {
  .sx-decay__curve { stroke-dasharray: none; stroke-dashoffset: 0; transition: none; }
  .sx-decay__area, .sx-decay__pt, .sx-decay__avg { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Tools marquee ------------------------------------------- */
.sx-marquee {
  background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden; position: relative;
}
.sx-marquee::before, .sx-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.sx-marquee::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.sx-marquee::after { right: 0; background: linear-gradient(-90deg, var(--surface), transparent); }
.sx-marquee__label {
  text-align: center; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--ink-400); font-weight: 700; font-family: var(--font-head); margin-bottom: 16px;
}
/* margin-right (not flex gap) keeps the -50% loop point exact: with a gap
   the seam between the original set and the clones is off by half a gap
   and the loop jumps 6px every cycle */
.sx-marquee__track { display: flex; width: max-content; animation: sx-marquee 46s linear infinite; }
.sx-marquee:hover .sx-marquee__track { animation-play-state: paused; }
@keyframes sx-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.sx-marquee__chip {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; margin-right: 12px;
  border: 1px solid var(--line-2); background: var(--surface-2); border-radius: 99px;
  padding: 10px 18px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink-700);
}
.sx-marquee__chip i { color: var(--green-600); font-size: 15px; }
.sx-marquee__pause {
  position: absolute; right: 14px; bottom: 18px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line-2); background: #fff; color: var(--ink-500);
  display: grid; place-items: center; font-size: 12px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.sx-marquee__pause:hover { color: var(--green-700); border-color: var(--green-500); }
.sx-marquee--paused .sx-marquee__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .sx-marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; row-gap: 10px; padding: 0 16px; }
  .sx-marquee__track [data-marquee-clone] { display: none; }
  .sx-marquee::before, .sx-marquee::after { display: none; }
  .sx-marquee__pause { display: none; }
}

/* ---------- Pylon connector flow ------------------------------------ */
.sx-flow { position: relative; }
.sx-flow__line {
  position: absolute; top: 26px; left: 12%; right: 12%; height: 3px; border-radius: 99px;
  background: rgba(14,26,18,.12); overflow: visible;
}
.sx-flow__line i {
  position: absolute; inset: 0 auto 0 0; width: 0; border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transition: width 2.4s var(--ease); display: block;
}
.sx-flow__dot {
  position: absolute; top: 50%; left: 0; width: 14px; height: 14px; border-radius: 50%;
  transform: translate(-50%, -50%); background: var(--gold-400);
  box-shadow: 0 0 0 6px rgba(154,205,50,.25), 0 0 18px rgba(154,205,50,.8);
  opacity: 0; transition: left 2.4s var(--ease), opacity .3s var(--ease);
}
.sx-flow.is-run .sx-flow__line i { width: 100%; }
.sx-flow.is-run .sx-flow__dot { left: 100%; opacity: 1; }
.sx-flow__step { opacity: .38; transform: translateY(10px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.sx-flow__step.is-on { opacity: 1; transform: none; }
.sx-flow__step .sx-flow__ic {
  width: 52px; height: 52px; border-radius: 14px; background: var(--green-100);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
  transition: background .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.sx-flow__step.is-on .sx-flow__ic {
  background: var(--grad-solar); box-shadow: 0 10px 26px rgba(88,126,30,.4);
  transform: translateY(-4px);
}
.sx-flow__step .sx-flow__ic i { color: var(--green-600); font-size: 20px; transition: color .4s var(--ease); }
.sx-flow__step.is-on .sx-flow__ic i { color: #2f4a14; }
@media (max-width: 767px) { .sx-flow__line, .sx-flow__dot { display: none; } .sx-flow__step { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .sx-flow__step { opacity: 1; transform: none; }
  .sx-flow__line i { width: 100%; transition: none; }
  .sx-flow__dot { display: none; }
}

/* ---------- Plans band ---------------------------------------------- */
.sx-plans { position: relative; }
.sx-plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 36px 32px; height: 100%; position: relative; display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.sx-plan:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }
.sx-plan--hot { border: 2px solid var(--gold-500); box-shadow: var(--sh-md); }
.sx-plan--hot::before {
  content: "Most popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-solar); color: var(--ink-900); font-family: var(--font-head); font-weight: 700;
  font-size: 12px; letter-spacing: .05em; text-transform: uppercase;
  border-radius: 99px; padding: 6px 16px; box-shadow: var(--sh-gold); white-space: nowrap;
}
.sx-plan h4, .sx-plan h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; margin-bottom: 4px; color: var(--ink-900); }
.sx-plan__tag { font-size: 13.5px; color: var(--ink-500); margin-bottom: 18px; }
.sx-plan__price { font-family: var(--font-display); font-weight: 800; color: var(--ink-900); line-height: 1; margin-bottom: 4px; }
.sx-plan__price .cur { font-size: 20px; vertical-align: super; color: var(--green-600); }
.sx-plan__price .amt { font-size: 46px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.sx-plan__price .per { font-size: 14px; color: var(--ink-500); font-weight: 600; }
.sx-plan__bill { font-size: 12.5px; color: var(--ink-500); margin-bottom: 20px; min-height: 18px; }
.sx-plan ul { list-style: none; padding: 0; margin: 0 0 24px; }
.sx-plan ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-700); margin-bottom: 11px; line-height: 1.5; }
.sx-plan ul li i { flex: none; color: var(--green-500); margin-top: 3px; font-size: 13px; }
.sx-plan .sx-btn { margin-top: auto; justify-content: center; }
.sx-plan--hot .sx-plan__price .amt { color: var(--green-700); }

/* segmented billing toggle: the thumb is sized/positioned by sx-home.js to
   the active button's real offset (the two buttons are not equal width, the
   Annual one carries the save badge) */
.sx-seg {
  position: relative; display: inline-flex; background: var(--surface-3);
  border: 1px solid var(--line-2); border-radius: 99px; padding: 5px;
}
.sx-seg__thumb {
  position: absolute; top: 5px; bottom: 5px; left: 5px; width: 0;
  background: #fff; border-radius: 99px; box-shadow: var(--sh-sm);
  transition: left .35s var(--ease), width .35s var(--ease);
}
.sx-seg button {
  position: relative; z-index: 1; border: none; background: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink-500);
  border-radius: 99px; padding: 9px 22px; transition: color .3s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.sx-seg button.is-active { color: var(--ink-900); }
.sx-seg .save {
  background: var(--green-100); color: var(--green-700); font-size: 11px; font-weight: 700;
  border-radius: 99px; padding: 2px 8px;
}
.sx-plan__price .amt { transition: opacity .18s ease; }
.sx-plan__price .amt.is-swap { opacity: 0; }

/* ---------- Reviews stat chips (Get Chosen) -------------------------- */
.sx-minisplit { display: flex; gap: 10px; margin-top: 14px; }
.sx-minisplit > div {
  flex: 1; background: var(--green-050); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 12px;
}
.sx-minisplit b { display: block; font-family: var(--font-display); font-size: 20px; color: var(--gold-400); line-height: 1.1; }
.sx-minisplit span { font-size: 11.5px; color: var(--ink-500); line-height: 1.35; display: block; }

/* ---------- Shared-lead split ---------------------------------------
   Left: the lead you bought duplicates out to four other buyers and
   your copy dims. Right: a lead from your own site drops straight down
   the rail into your pipeline. ---------------------------------------- */
.sx-split__panel {
  border-radius: var(--r-lg); padding: 30px 26px; height: 100%;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-sm);
  overflow: hidden;   /* the fanned ghost cards may protrude a few px at narrow widths */
}
.sx-split__panel--own { background: linear-gradient(160deg, #3f6019, #2f4a14); border-color: rgba(255,255,255,.1); }
.sx-split__panel h4 { font-family: var(--font-display); font-weight: 800; font-size: 19px; margin-bottom: 4px; }
.sx-split__panel--own h4, .sx-split__panel--own .sx-split__cap { color: #fff; }
.sx-split__panel--own .sx-split__cap { color: #b9cfc0; }
.sx-split__stage { position: relative; height: 240px; margin: 18px 0 6px; }
.sx-lead-card {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 220px; background: #fff; border: 1px solid var(--line-2); border-radius: 14px;
  box-shadow: var(--sh-sm); padding: 12px 14px; font-size: 13px; color: var(--ink-800);
  transition: transform .6s var(--ease), opacity .6s var(--ease), filter .6s var(--ease), box-shadow .6s var(--ease);
}
.sx-lead-card .t { display: flex; align-items: center; gap: 8px; font-weight: 700; font-family: var(--font-head); }
.sx-lead-card .t i { color: var(--gold-500); }
.sx-lead-card .who {
  display: inline-block; margin-top: 8px; font-size: 11px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-400); background: var(--surface-3);
  border-radius: 99px; padding: 3px 10px;
}
.sx-lead-card--you { z-index: 2; }
.sx-lead-card--you .who { color: var(--green-700); background: var(--green-100); }
.sx-lead-card--ghost { opacity: 0; z-index: 1; }
.is-run .sx-lead-card--ghost {
  opacity: .62;
  transform: translateX(-50%) translate(var(--tx), 108px) rotate(var(--rot));
}
.is-run .sx-lead-card--ghost:nth-child(2) { transition-delay: .12s; }
.is-run .sx-lead-card--ghost:nth-child(3) { transition-delay: .24s; }
.is-run .sx-lead-card--ghost:nth-child(4) { transition-delay: .36s; }
.is-run .sx-lead-card--ghost:nth-child(5) { transition-delay: .48s; }
.is-run .sx-lead-card--you { opacity: .45; filter: grayscale(.8); transition-delay: 1.1s; }
.sx-split__cap { font-size: 13.5px; color: var(--ink-500); line-height: 1.6; margin: 0; }
.sx-split__cap b { color: var(--ink-900); }
.sx-split__panel--own .sx-split__cap b { color: #fff; }
/* right panel: rail + slot */
.sx-split__rail {
  position: absolute; left: 50%; top: 64px; bottom: 84px; width: 3px; border-radius: 99px;
  background: rgba(255,255,255,.14); transform: translateX(-50%); overflow: hidden;
}
.sx-split__rail i {
  position: absolute; inset: 0; display: block; background: var(--grad-solar);
  transform: scaleY(0); transform-origin: top; transition: transform .7s var(--ease) .3s;
}
.is-run .sx-split__rail i { transform: scaleY(1); }
.sx-split__panel--own .sx-lead-card { border-color: rgba(255,255,255,.2); }
.is-run .sx-lead-card--drop { transform: translateX(-50%) translateY(128px); transition-delay: .75s; }
.sx-split__slot {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 240px; border: 2px dashed rgba(255,255,255,.3); border-radius: 16px;
  padding: 44px 14px 12px; text-align: center;
  color: #cfe3d4; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  transition: border-color .5s var(--ease), box-shadow .8s var(--ease);
}
.is-run .sx-split__slot {
  border-color: var(--gold-400);
  box-shadow: 0 0 26px rgba(255,194,77,.35), inset 0 0 22px rgba(255,194,77,.08);
  transition-delay: 1.35s;
}
@media (max-width: 575px) {
  .sx-split__stage { height: 220px; }
  .sx-lead-card { width: 178px; font-size: 12px; }
  .is-run .sx-lead-card--ghost { transform: translateX(-50%) translate(calc(var(--tx) * .55), 96px) rotate(var(--rot)); }
  .sx-split__slot { width: 200px; }
  .is-run .sx-lead-card--drop { transform: translateX(-50%) translateY(112px); }
}
@media (prefers-reduced-motion: reduce) {
  .sx-lead-card--ghost { opacity: .62; transform: translateX(-50%) translate(var(--tx), 108px) rotate(var(--rot)); }
  .sx-lead-card--you { opacity: .45; filter: grayscale(.8); }
  .sx-lead-card--drop { transform: translateX(-50%) translateY(128px); }
  .sx-split__rail i { transform: scaleY(1); transition: none; }
  .sx-split__slot { border-color: var(--gold-400); }
}

/* ---------- "You are on the product" proof band ----------------------- */
.sx-proof-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; height: 100%; text-align: left; box-shadow: var(--sh-xs);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.sx-proof-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.sx-proof-card .ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--green-100); color: var(--green-600); font-size: 20px; margin-bottom: 14px;
}
.sx-proof-card h5, .sx-proof-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-bottom: 6px; color: var(--ink-900); }
.sx-proof-card p { font-size: 14px; color: var(--ink-500); line-height: 1.6; margin: 0; }
.sx-proof-card .pt { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-size: 12.5px; font-weight: 700; color: #8a5a10; }

/* ---------- Consolidation chips above pricing ------------------------- */
.sx-consol { text-align: center; margin-bottom: 44px; }
.sx-consol__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 18px; }
.sx-consol__chip {
  border: 1.5px dashed var(--line-2); color: var(--ink-500); border-radius: 99px;
  padding: 9px 18px; font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  background: #fff; transition: transform .55s var(--ease), opacity .55s var(--ease);
}
.is-run .sx-consol__chip { transform: translate(var(--cx), 44px) scale(.72); opacity: 0; }
.is-run .sx-consol__chip:nth-child(2) { transition-delay: .06s; }
.is-run .sx-consol__chip:nth-child(3) { transition-delay: .12s; }
.is-run .sx-consol__chip:nth-child(4) { transition-delay: .18s; }
.is-run .sx-consol__chip:nth-child(5) { transition-delay: .24s; }
.sx-consol__one {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--grad-brand); color: #fff; border-radius: 99px; padding: 14px 28px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; box-shadow: var(--sh-green);
  opacity: 0; transform: scale(.9); transition: opacity .45s var(--ease) .55s, transform .45s cubic-bezier(.34,1.56,.64,1) .55s;
}
.sx-consol__one i { color: var(--gold-400); }
.is-run .sx-consol__one { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .is-run .sx-consol__chip { transform: none; opacity: 1; }
  .sx-consol__one { opacity: 1; transform: none; transition: none; }
}

/* ---------- Sticky mobile demo bar ------------------------------------ */
.sx-mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1500;
  display: none; align-items: center; gap: 12px;
  background: rgba(12,26,17,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  transform: translateY(102%); transition: transform .3s var(--ease);
}
.sx-mbar.is-in { transform: none; }
.sx-mbar__lbl { flex: 1; min-width: 0; color: #d5e0d8; font-size: 12.5px; font-weight: 600; line-height: 1.3; }
.sx-mbar__lbl b { color: #fff; display: block; font-family: var(--font-head); }
.sx-mbar .sx-btn { padding: 12px 18px; font-size: 14px; flex: none; margin-right: 66px; }
@media (max-width: 767px) { .sx-mbar { display: flex; } }
/* keep scroll-top and the footer's last row clear of the bar while it is up */
@media (max-width: 767px) {
  body.sx-mbar-on #scrollTopBtn { bottom: 160px; }
  body.sx-mbar-on { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) { .sx-mbar { transition: none; } }

/* ---------- Example activity ticker (CTA band) ------------------------ */
.sx-ticker {
  background: rgba(255,255,255,.55); border: 1px solid rgba(14,26,18,.1);
  border-radius: var(--r-lg); padding: 22px 24px; margin-top: 30px;
}
.sx-ticker h6, .sx-ticker .sx-ticker__title {
  color: var(--ink-900); font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 14px;
}
.sx-ticker__rows { display: flex; flex-direction: column; gap: 10px; min-height: 132px; }
.sx-ticker__row {
  display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-700);
  background: rgba(255,255,255,.5); border: 1px solid rgba(14,26,18,.08);
  border-radius: 10px; padding: 9px 13px;
  opacity: 0; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.sx-ticker__row.is-in { opacity: 1; transform: none; }
.sx-ticker__row .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-400); flex: none; box-shadow: 0 0 8px rgba(154,205,50,.8); }
.sx-ticker__cap { font-size: 11.5px; color: var(--ink-500); margin: 12px 0 0; }
@media (prefers-reduced-motion: reduce) { .sx-ticker__row { opacity: 1; transform: none; } }

/* ---------- Pillar card feature lists --------------------------------- */
.sx-card__list { list-style: none; padding: 0; margin: 0 0 16px; }
.sx-card__list li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: var(--ink-500); line-height: 1.55; margin-bottom: 9px; }
.sx-card__list li i { flex: none; color: var(--green-500); font-size: 12px; margin-top: 4px; }

/* ---------- Hero live clock chip ------------------------------------- */
.sx-nowchip {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px;
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px; padding: 7px 15px; font-size: 12.5px; font-weight: 600; color: #eafff2;
  backdrop-filter: blur(8px); font-variant-numeric: tabular-nums;
}
.sx-nowchip .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #ff8a5c; flex: none;
  animation: sx-nowpulse 1.6s ease-in-out infinite;
}
@keyframes sx-nowpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,138,92,.55); } 55% { box-shadow: 0 0 0 7px rgba(255,138,92,0); } }
@media (prefers-reduced-motion: reduce) { .sx-nowchip .pulse { animation: none; } }

/* ---------- Social profile links --------------------------------------
   Used in the footer Quick Contact widget on every page, the homepage
   #contact block and the contact-us panel. FontAwesome 5 brand glyphs
   (fab) already load sitewide, so this adds no new dependency. Each link
   carries its own platform colour on hover through --net.
   ---------------------------------------------------------------------- */
.sx-social { margin-top: 26px; }
.sx-social--flush { margin-top: 0; }
.sx-social__label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-400); margin-bottom: 12px;
}
.sx-social__list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.sx-social__list li { margin: 0; }
.sx-social__list a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--green-600);
  font-size: 16px; text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.sx-social__list a:hover, .sx-social__list a:focus-visible {
  background: var(--net); border-color: var(--net); color: #fff; transform: translateY(-3px);
}
.sx-social__list a[data-net="linkedin"]  { --net: #0a66c2; }
.sx-social__list a[data-net="instagram"] { --net: #d62976; }
.sx-social__list a[data-net="facebook"]  { --net: #1877f2; }
/* Instagram has no single brand colour; use its gradient on hover. */
.sx-social__list a[data-net="instagram"]:hover,
.sx-social__list a[data-net="instagram"]:focus-visible {
  background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 52%, #6228d7 100%);
  border-color: #ee2a7b;
}

/* Dark surfaces: the footer and the homepage #contact section. The footer
   widget rule paints every descendant link grey with !important, so these
   need the same weight to win. */
.footer .sx-social__label { color: #8fa295; }
.sx-bg-dark .sx-social__label { color: var(--ink-700); }
.footer .sx-social__list a {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15);
}
.footer .sx-social__list a, .footer .sx-social__list a:hover { color: #fff !important; }

@media (prefers-reduced-motion: reduce) {
  .sx-social__list a { transition: none; }
  .sx-social__list a:hover, .sx-social__list a:focus-visible { transform: none; }
}

/* =====================================================================
   HERO STAT TILES (moved from the old cost-of-silence pain band, which
   was removed — these classes now only style the .sx-hero__stats row)
   ===================================================================== */
.sx-cost__grid { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.sx-cost__tile {
  flex: 1; min-width: 220px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 20px 40px -24px rgba(0,0,0,.5);
}
.sx-cost__tile svg { stroke: var(--green-400); flex-shrink: 0; }
.sx-cost__tile:has(.sx-cost__num--muted) svg { stroke: rgba(255,255,255,.4); }
.sx-cost__num {
  color: var(--green-400); font-family: var(--font-display); font-size: 34px; font-weight: 700; line-height: 1;
  font-variant-numeric: tabular-nums;
}
/* The "bad"/before-comparison half of a stat reads in a dim neutral tone
   instead of the same bright accent as the good number, so it doesn't look
   like a second thing worth celebrating. */
.sx-cost__num .is-muted { color: rgba(255,255,255,.4); font-weight: 600; }
.sx-cost__num.sx-cost__num--muted { color: rgba(255,255,255,.4); }
.sx-cost__lbl {
  color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.4;
  padding-top: 8px; border-top: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 767px) {
  .sx-cost__grid { flex-direction: column; gap: 14px; margin-top: 28px; }
  .sx-cost__tile { flex-direction: row; align-items: center; gap: 16px; padding: 18px; }
  .sx-cost__num { font-size: 26px; }
  .sx-cost__lbl { font-size: 13px; }
}
