/* ============================================================================
   STYLES — layout + components. Reads brand tokens from theme.css (var(--…)).
   Rarely edited per project (structure is generic); the BRAND lives in theme.css.
   Modern, blazing, accessible baseline: mobile-first, WCAG 2.2 AA, dark-aware,
   reduced-motion-safe, single small file (CDN-cacheable, no build step).
   ============================================================================ */

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}
  *,*::before,*::after{animation:none!important;transition:none!important}}
body{margin:0;font-family:var(--font-sans);color:var(--ink);background:var(--bg);
  line-height:1.6;font-size:clamp(15px,1vw+13px,17px);-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
:focus-visible{outline:3px solid var(--accent);outline-offset:2px;border-radius:4px}
h1,h2,h3,h4{font-family:var(--font-head);letter-spacing:-.02em;line-height:1.1;margin:.2em 0 .5em}
h1{font-size:clamp(2.1rem,5vw,3.6rem)}
h2{font-size:clamp(1.6rem,3.2vw,2.4rem)}
h3{font-size:1.2rem;letter-spacing:-.01em}
p{margin:0 0 1rem}
.lead{font-size:1.18rem;color:var(--muted);max-width:62ch}
.accent{color:var(--accent)}
.eyebrow{text-transform:uppercase;letter-spacing:.12em;font-size:.8rem;font-weight:700;color:var(--brand-2);margin:0 0 .5rem}
.h2-eyebrow{text-transform:uppercase;letter-spacing:.1em;font-size:clamp(1.4rem,2.6vw,1.9rem);font-weight:800;color:var(--brand-2);margin:0 0 1.1rem}
.viz-cap{font-size:.85rem;font-weight:600;color:var(--muted);margin:0 0 .5rem}

/* skip link */
.skip{position:absolute;left:-9999px;top:0;background:var(--accent);color:var(--on-brand);
  padding:.6rem 1rem;z-index:100;border-radius:0 0 8px 0}
.skip:focus{left:0}

/* shell / containers */
.shell{max-width:var(--shell);margin-inline:auto;padding-inline:clamp(1rem,4vw,2rem);width:100%}
.section{padding:clamp(2.5rem,6vw,5.5rem) 0}
.section--surface{background:var(--surface)}
.center{text-align:center}
.narrow{max-width:760px;margin-inline:auto}

/* header / nav — fixed transparent overlay + curved floating "pill" menu.
   Transparent over the full-bleed .hero-bg (image runs to the very top, no margin);
   turns solid on scroll (.is-solid via main.js) and on pages without a hero (:has()). */
:root{--header-h:74px}
.site-header{position:fixed;inset-inline:0;top:0;z-index:50;background:transparent;border-bottom:1px solid transparent;
  transition:background .3s ease,backdrop-filter .3s ease,border-color .3s ease,box-shadow .3s ease}
.site-header .shell{display:flex;align-items:center;justify-content:space-between;min-height:var(--header-h);gap:1rem}
.brand{display:inline-flex;align-items:center;gap:.55rem;font-family:var(--font-head);font-weight:800;color:var(--ink)}
.brand:hover{text-decoration:none}
.brand-mark{height:56px;width:56px;display:block;flex:0 0 auto}
.brand-name{line-height:1}
/* solid state: scrolled, or any page without a full-bleed hero */
.site-header.is-solid,
body:not(:has(.hero-bg)) .site-header{background:color-mix(in srgb,var(--bg) 90%,transparent);
  backdrop-filter:blur(12px);border-bottom-color:var(--line);box-shadow:0 6px 24px -18px rgba(0,0,0,.35)}
/* pages without a full-bleed hero: offset content below the fixed header */
body:not(:has(.hero-bg)){padding-top:var(--header-h)}
/* menu — plain links only (no pill); the CTA button sits OUTSIDE the nav */
.nav{display:flex;align-items:center;gap:.2rem;margin-left:auto}
.nav a{color:var(--ink);font-weight:600;font-size:.95rem;padding:.55rem .8rem;border-radius:8px;line-height:1;position:relative}
.nav a::after{content:"";position:absolute;left:.8rem;right:.8rem;bottom:.35rem;height:2px;border-radius:2px;
  background:var(--accent);transform:scaleX(0);transform-origin:left;transition:transform .25s ease}
.nav a:hover{color:var(--ink);text-decoration:none}
.nav a:hover::after{transform:scaleX(1)}
/* standalone CTA button (its own pill, next to the menu — not wrapping the links) */
.header__cta{margin-left:.6rem;flex:0 0 auto;padding:.6rem 1.25rem}
.nav-toggle{display:none;background:none;border:0;font-size:1.5rem;color:var(--ink);cursor:pointer;line-height:1}
.mobile-menu{display:none;flex-direction:column;position:fixed;top:var(--header-h);inset-inline:0;z-index:49;
  padding:.5rem clamp(1rem,4vw,2rem) 1rem;border-bottom:1px solid var(--line);
  background:color-mix(in srgb,var(--bg) 96%,transparent);backdrop-filter:blur(12px)}
.mobile-menu a{color:var(--ink);padding:.7rem 0;border-bottom:1px solid var(--line)}
.mobile-menu.open{display:flex}
@media (max-width:820px){.nav{display:none}.nav-toggle{display:block}}

/* buttons */
.btn{display:inline-flex;align-items:center;gap:.45rem;padding:.8rem 1.5rem;border-radius:999px;
  font-weight:600;font-family:var(--font-sans);cursor:pointer;border:1px solid transparent;
  transition:transform .15s ease,box-shadow .15s ease,background .15s ease}
.btn:hover{text-decoration:none;transform:translateY(-1px)}
.btn-primary{background:var(--brand-2);color:var(--on-brand);box-shadow:0 8px 22px -10px var(--brand-2)}
.btn-primary:hover{background:#00543F;color:var(--on-brand)}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--line)}
.btn-lg{padding:.95rem 1.8rem;font-size:1.05rem}

/* hero */
.hero{position:relative;padding:clamp(3.5rem,10vw,8rem) 0;
  background:
    radial-gradient(900px 460px at 82% -12%, color-mix(in srgb,var(--accent) 18%,transparent), transparent),
    radial-gradient(700px 380px at 0% 0%, color-mix(in srgb,var(--brand-2) 20%,transparent), transparent),
    var(--surface)}
.hero-inner{max-width:840px}
.hero-sub{font-size:1.25rem;color:var(--muted);max-width:60ch}
.hero-actions{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:1.6rem}
.hero-chips{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.6rem;list-style:none;padding:0}
.hero-chips li{background:var(--bg);border:1px solid var(--line);border-radius:999px;
  padding:.4rem .9rem;font-size:.85rem;font-weight:600;color:var(--muted)}

/* grid + cards */
.grid{display:grid;gap:var(--gap);margin-top:1.8rem}
.grid-2{grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.grid-4{grid-template-columns:repeat(auto-fit,minmax(210px,1fr))}
.grid-cap3{grid-template-columns:repeat(3,minmax(0,1fr))}
@media (max-width:900px){.grid-cap3{grid-template-columns:1fr}}
.card{background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);padding:1.6rem;
  transition:transform .18s ease,box-shadow .18s ease}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.card h3{margin-top:0}
.card p{color:var(--muted);margin:0}
.card--link{display:block;text-decoration:none;color:inherit}
.card--link h3{color:var(--ink)}
.card--link:hover h3{color:var(--brand)}
.card .ico{width:44px;height:44px;border-radius:12px;display:grid;place-items:center;
  background:color-mix(in srgb,var(--accent) 14%,transparent);color:var(--accent);margin-bottom:1rem}
.card .ico svg{width:22px;height:22px}
/* MGE-39: home carousels (Who we serve / Solutions / How you pay) */
.scroll-row{display:flex;gap:1.1rem;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:.5rem .15rem 1.25rem;-webkit-overflow-scrolling:touch;
  scrollbar-width:thin;scrollbar-color:var(--line) transparent}
.scroll-row::-webkit-scrollbar{height:6px}
.scroll-row::-webkit-scrollbar-track{background:transparent}
.scroll-row::-webkit-scrollbar-thumb{background:var(--line);border-radius:99px}
.scroll-row .scard{flex:0 0 auto;width:264px;scroll-snap-align:start;min-height:196px;
  display:flex;flex-direction:column}
.scroll-row .scard h3{font-size:1.05rem}
.scroll-row .scard:hover{border-color:color-mix(in srgb,var(--brand) 45%,var(--line))}
@media (max-width:640px){.scroll-row .scard{width:232px;min-height:0}}

/* feature split */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,5vw,4rem);align-items:center}
@media (max-width:820px){.split{grid-template-columns:1fr}}
.split img{border-radius:var(--radius);box-shadow:var(--shadow)}
.checklist{list-style:none;padding:0;margin:1.2rem 0;display:grid;gap:.7rem}
.checklist li{padding-left:1.9rem;position:relative;color:var(--ink)}
.checklist li::before{content:"✓";position:absolute;left:0;top:0;width:1.3rem;height:1.3rem;
  background:var(--accent);color:var(--on-brand);border-radius:50%;display:grid;place-items:center;font-size:.75rem}

/* stats */
.stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:var(--gap);text-align:center}
.stat .num{font-family:var(--font-head);font-size:clamp(2rem,4vw,3rem);font-weight:800;color:var(--accent);line-height:1}
.stat .label{color:var(--muted);font-size:.95rem;margin-top:.3rem}

/* team grid */
.team{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:var(--gap)}
.person{text-align:center}
.person img{border-radius:var(--radius);aspect-ratio:4/5;object-fit:cover;width:100%;margin-bottom:.8rem}
.person .name{font-weight:700}
.person .role{color:var(--muted);font-size:.9rem}

/* forms */
.form-card{background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);padding:clamp(1.4rem,4vw,2.4rem);box-shadow:var(--shadow-sm);max-width:640px}
.field{display:grid;gap:.35rem;margin-bottom:1rem}
.field label{font-weight:600;font-size:.92rem}
.field input,.field select,.field textarea{font:inherit;color:var(--ink);background:var(--surface);
  border:1px solid var(--line);border-radius:var(--radius-sm);padding:.75rem .9rem;width:100%}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--accent);outline:none}
.form-note{font-size:.85rem;color:var(--muted)}
.form-ok{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:2rem;text-align:center}
.field--hp,[hidden]{display:none !important}
.field input[aria-invalid="true"],.field select[aria-invalid="true"],.field textarea[aria-invalid="true"]{border-color:#c0392b}
.field-err{font-size:.85rem;color:#c0392b;margin:.2rem 0 0}
.facts-card{padding:1.6rem;background:var(--surface);border-radius:16px}
.facts-card h3{margin-top:0}
.facts-card ul{margin:0;padding:0;list-style:none}
.facts-card li{padding:.55rem 0;border-bottom:1px solid var(--line)}
.facts-card li:last-child{border-bottom:0}
.form-err{font-size:.9rem;color:#c0392b;background:rgba(192,57,43,.08);border:1px solid rgba(192,57,43,.3);border-radius:8px;padding:.6rem .8rem;margin-top:.8rem}
button[disabled]{opacity:.65;cursor:not-allowed}

/* breadcrumb */
.breadcrumb{font-size:.85rem;color:var(--muted);padding:1rem 0 0}
.breadcrumb a{color:var(--muted)}
.breadcrumb a:hover{color:var(--accent)}

/* cta band */
.cta{padding:clamp(2.5rem,6vw,5rem) 0;background:var(--surface);border-top:1px solid var(--line);border-bottom:1px solid var(--line);text-align:center}
.cta h2{color:var(--ink)}
.cta p{color:var(--muted);max-width:56ch;margin-inline:auto}

/* footer */
.site-footer{background:var(--surface);color:var(--muted);border-top:1px solid var(--line);padding:clamp(2.5rem,5vw,4rem) 0 1.5rem}
.site-footer .shell{display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:2rem}
@media (max-width:820px){.site-footer .shell{grid-template-columns:1fr 1fr}}
@media (max-width:520px){.site-footer .shell{grid-template-columns:1fr}}
.foot-brand p{color:var(--muted);max-width:34ch;margin:.7rem 0 0}
.foot-col h4,.foot-col .foot-h{color:var(--ink);font-size:.95rem;font-weight:600;margin:0 0 .8rem}
.foot-col a{display:block;color:var(--muted);padding:.28rem 0}
.foot-col a:hover{color:var(--brand)}
.foot-social{display:flex;gap:.6rem;margin-top:1rem}
.foot-social a{width:38px;height:38px;border-radius:10px;display:grid;place-items:center;background:#fff;border:1px solid var(--line);color:var(--brand)}
.foot-social svg{width:18px;height:18px}
.foot-bar{grid-column:1/-1;border-top:1px solid var(--line);margin-top:1rem;padding-top:1.2rem;
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:.6rem;font-size:.84rem;color:var(--muted)}
.foot-powered{background:#0f1f44;padding:1.1rem 0}
.foot-powered .shell{display:flex;justify-content:center}
.foot-powered a{display:inline-flex;align-items:center;gap:.85rem;text-decoration:none;color:#fff;font-size:1rem;font-weight:500;opacity:.95;transition:opacity .2s}
.foot-powered a:hover{opacity:1}
.foot-powered img{height:40px;width:auto;display:block}

/* lists */
.link-list,.contact-list{list-style:none;padding:0;margin:1rem 0;display:grid;gap:.55rem}
.contact-list a{font-weight:600}

/* scroll reveal (visible by default without JS/motion) */
.reveal{opacity:1}
.js .reveal{opacity:0;transform:translateY(16px);transition:opacity .5s ease,transform .5s ease}
.js .reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){.js .reveal{opacity:1;transform:none}}

/* --- data visualizations (charts + timeline) --- */
.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.viz{margin:0;background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);padding:20px}
.viz figcaption{margin-bottom:.4rem}
.viz svg{display:block;height:auto}
.timeline{list-style:none;margin:2.5rem 0 0;padding:0;display:grid;gap:1rem}
.tl-item{display:flex;gap:1rem;align-items:flex-start;border-left:3px solid var(--accent);padding:.2rem 0 .2rem 1rem}
.tl-year{font-family:var(--font-num,inherit);font-weight:700;color:var(--brand-2);min-width:3.5rem;background:var(--bg);padding:2px 6px;border-radius:6px}
.tl-body h3{margin:0 0 .2rem;font-size:1.05rem}
.tl-body p{margin:0;color:var(--muted)}

/* ===== MGE-21 — full-bleed background hero (image cover + white scrim, text left) ===== */
.hero-bg{position:relative;min-height:clamp(560px,86vh,840px);display:flex;align-items:center;overflow:hidden;background:var(--bg)}
.hero-bg::before{content:"";position:absolute;inset:0;z-index:1;background-image:var(--hero-fallback);background-size:cover;background-position:center}
@supports (background-image:image-set(url("x.webp") type("image/webp"))){
  .hero-bg::before{background-image:var(--hero-img)}
}
.hero-bg::after{content:"";position:absolute;inset:0;z-index:2;background:linear-gradient(90deg,
  rgba(255,255,255,.97) 0%,rgba(255,255,255,.92) 22%,rgba(255,255,255,.6) 44%,
  rgba(255,255,255,.14) 64%,rgba(255,255,255,0) 100%)}
.hero-bg-inner{position:relative;z-index:3;width:100%}
.hero-copy{max-width:38rem}
.hero-copy h1{font-size:clamp(2.6rem,6vw,5rem);line-height:1.02;letter-spacing:-.02em;font-weight:800;color:var(--ink);margin:.4rem 0 1.1rem}
.hero-copy .accent{color:var(--brand)}
.hero-copy .hero-sub{font-size:clamp(1.05rem,1.5vw,1.3rem);color:var(--muted);max-width:34rem;line-height:1.7}
.hero-actions{display:flex;flex-wrap:wrap;gap:1rem;margin-top:1.8rem}
.eyebrow--leaf{display:inline-flex;align-items:center;gap:.45rem;color:var(--brand-2);text-transform:uppercase;letter-spacing:.06em;font-weight:600}
.eyebrow--leaf::before{content:"";width:16px;height:16px;border-radius:50% 0 50% 50%;
  background:var(--brand);transform:rotate(45deg);display:inline-block}
.btn-outline{background:rgba(255,255,255,.85);color:var(--brand-2);border:2px solid var(--brand);backdrop-filter:blur(10px)}
.btn-outline:hover{background:var(--brand-2);color:#fff}

/* lifted up to overlap the bottom of the hero image (floating card) */
.stats-bar{position:relative;z-index:3;margin-top:clamp(-5.5rem,-7vw,-3rem);
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  box-shadow:0 24px 60px -28px rgba(0,38,77,.35),var(--shadow);padding:1.6rem clamp(1rem,3vw,2.2rem)}
.stats-bar .stat{display:flex;align-items:center;gap:.9rem;text-align:left;justify-content:flex-start}
.stats-bar .stat + .stat{border-left:1px solid var(--line);padding-left:1.2rem}
.stat-ic{width:44px;height:44px;flex:0 0 auto;border-radius:12px;display:grid;place-items:center;
  color:var(--brand);background:rgba(0,168,107,.1)}
.stat-ic svg{width:22px;height:22px}

.feature-row{padding-top:clamp(2.5rem,5vw,3.5rem)}
.feat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1.2rem,3vw,2rem)}
.feat{padding-left:1rem;border-left:2px solid var(--brand)}
.feat-ic{color:var(--brand);display:inline-flex;margin-bottom:.5rem}
.feat-ic svg{width:26px;height:26px}
.feat h3{margin:.1rem 0 .3rem;font-size:1.05rem}
.feat p{color:var(--muted);margin:0;font-size:.95rem}

@media (max-width:900px){
  .hero-bg{min-height:720px}
  .hero-bg::after{background:rgba(255,255,255,.85)}
  .stats-bar{grid-template-columns:repeat(2,1fr);row-gap:1.4rem}
  .stats-bar .stat:nth-child(3){border-left:0;padding-left:0}
  .feat-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
  .hero-copy h1{font-size:2.6rem}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%;justify-content:center}
  .stats-bar{grid-template-columns:1fr}
  .stats-bar .stat + .stat{border-left:0;padding-left:0;border-top:1px solid var(--line);padding-top:1.1rem}
  .feat-grid{grid-template-columns:1fr}
}

/* MGE-22 — two-column solutions hero (copy left, image + badge right) */
.hero-2col{padding:clamp(1.5rem,4vw,2.6rem) 0 clamp(3rem,6vw,4.5rem)}
.hero-2col .hero-inner{display:grid;grid-template-columns:1.02fr .98fr;gap:clamp(1.6rem,4vw,3.5rem);align-items:center}
.hero-2col .hero-copy{max-width:36rem}
.hero-2col h1{font-size:clamp(2.3rem,4.6vw,3.8rem);line-height:1.06;letter-spacing:-.02em;font-weight:800;color:var(--ink);margin:.7rem 0 1.1rem}
.hero-2col h1 .accent{color:var(--brand)}
.hero-2col .hero-sub{font-size:clamp(1rem,1.4vw,1.2rem);color:var(--muted);line-height:1.7;max-width:32rem}
.hero-media{position:relative}
.hero-media picture,.hero-media img{display:block;width:100%}
.hero-media img{height:clamp(400px,52vw,580px);object-fit:cover;border-radius:22px}
.hero-badge{position:absolute;top:1.1rem;left:1.1rem;display:flex;align-items:center;gap:.6rem;
  background:color-mix(in srgb,var(--bg) 92%,transparent);backdrop-filter:blur(6px);
  border:1px solid var(--line);border-radius:16px;padding:.6rem .85rem;
  box-shadow:0 12px 30px rgba(19,34,56,.16);max-width:14rem}
.hero-badge__leaf{flex:none;width:22px;height:22px;border-radius:50% 0 50% 50%;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));transform:rotate(45deg)}
.hero-badge b{display:block;font-size:.9rem;color:var(--ink);line-height:1.2}
.hero-badge span span{font-size:.78rem;color:var(--muted)}
@media (max-width:900px){
  .hero-2col .hero-inner{grid-template-columns:1fr}
  .hero-media{order:-1}
  .hero-media img{height:clamp(300px,62vw,440px)}
}

/* Contact office map embed (MGE-15) */
.map-embed{margin-top:28px;border-radius:16px;overflow:hidden;box-shadow:0 6px 24px rgba(19,34,56,.08);line-height:0}
.map-embed iframe{display:block;width:100%;height:360px;border:0}
@media (max-width:600px){.map-embed iframe{height:280px}}

/* MGE-22 solutions: illustrated solution cards + wide hero */
.grid--illus{gap:22px}
.card--illus{position:relative;overflow:hidden;min-height:230px;padding-bottom:96px}
.card--illus .ico{position:relative;z-index:2}
.card--illus h3,.card--illus p{position:relative;z-index:2;max-width:64%}
.card-illus{position:absolute;right:10px;bottom:8px;width:132px;height:132px;object-fit:contain;
  z-index:1;pointer-events:none;filter:drop-shadow(0 8px 14px rgba(19,34,56,.10))}
@media (max-width:640px){
  .card--illus{min-height:200px;padding-bottom:88px}
  .card--illus h3,.card--illus p{max-width:70%}
  .card-illus{width:112px;height:112px}
}
/* full-width 2col hero (fixes narrow 840px cap that indented the hero vs the rest of the page) */
.hero-2col .hero-inner{max-width:none}
.hero-2col--wide .hero-media img{width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;
  border-radius:22px}
.hero-2col--wide .hero-inner{align-items:start}
.hero-2col--wide .hero-media{margin-top:2.4rem}
@media (max-width:900px){.hero-2col--wide .hero-media{margin-top:0}}

/* ===== MGE-22 design-faithful pass (vision QA of the attachment) ===== */
/* GROUNDED to Qwen3-VL bbox breakdown (canvas 1536x1024): media column WIDER
   than copy (~42/58 split); image floats letterbox; stats DETACHED below it. */
.hero-2col .hero-inner{grid-template-columns:0.8fr 1fr;gap:clamp(1.4rem,3vw,2.4rem);align-items:start}
.hero-2col .hero-copy{max-width:none}
.hero-2col h1{font-size:clamp(2.1rem,3.9vw,3.2rem);line-height:1.08}
/* right column: floating image, then a DETACHED stats card (~20px gap below) */
.hero-right{display:flex;flex-direction:column;gap:20px;margin-top:1.1rem}
/* image: taller 16:9 frame (MGE-53) matching the source photographs, borderless,
   right-aligned & inset so the stats card sits wider */
.hero-2col--wide .hero-media{margin-top:0;width:88%;margin-left:auto}
.hero-2col--wide .hero-media img{width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;border-radius:22px}
/* circular "Clean energy" badge over the image top-left corner (bbox ~150px) */
.hero-2col--wide .hero-badge{top:0;left:0;transform:translate(-16%,-16%);
  flex-direction:column;align-items:center;text-align:center;gap:.35rem;
  width:150px;height:150px;border-radius:50%;padding:0;justify-content:center;
  box-shadow:0 18px 44px rgba(19,34,56,.16)}
.hero-2col--wide .hero-badge__leaf{width:30px;height:30px;position:relative;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));border-radius:0 50% 50% 50%;transform:rotate(45deg)}
.hero-2col--wide .hero-badge b{font-size:.95rem}
.hero-2col--wide .hero-badge>span{display:flex;flex-direction:column;align-items:center;gap:.1rem}
.hero-2col--wide .hero-badge>span::after{content:"";width:26px;height:3px;border-radius:2px;
  background:var(--brand);margin-top:.4rem}
@media (max-width:640px){.hero-2col--wide .hero-badge{width:116px;height:116px;transform:translate(4%,4%)}}
@media (max-width:900px){
  .hero-2col--wide .hero-media{width:100%;margin-left:0}
  /* MGE-53: restore the single-column stack on phones and tablets. The wide-hero
     grid above is declared after the earlier breakpoint, so without this the page
     stayed two-column below 900px and squeezed the photograph into a half-width sliver. */
  .hero-2col .hero-inner{grid-template-columns:1fr}
  .hero-right{margin-top:0}
}
/* detached stats card: full right-column width (wider than the image), compact, MEDIUM numbers */
.stats-bar .stat-ic{border-radius:50%}
.hero-right .stats-bar{margin-top:0;grid-template-columns:repeat(4,1fr);gap:.5rem;
  padding:1.05rem 1.15rem;border-radius:20px}
.hero-right .stats-bar .stat{gap:.55rem}
.hero-right .stats-bar .stat + .stat{padding-left:.65rem}
.hero-right .stats-bar .stat .num{font-size:1.3rem;font-weight:700;line-height:1.05}
.hero-right .stats-bar .stat .label{font-size:.76rem;margin-top:.12rem}
.hero-right .stats-bar .stat-ic{width:38px;height:38px}
.hero-right .stats-bar .stat-ic svg{width:19px;height:19px}
/* card illustrations bottom-right (matches breakdown) */
.card--illus{min-height:236px;padding-bottom:104px}
.card-illus{width:140px;height:140px}
/* card text: wider column + smaller body so copy sits in ~4 lines like the design */
.card--illus h3{font-size:1.02rem;line-height:1.2}
.card--illus h3,.card--illus p{max-width:78%}
.card--illus p{font-size:.86rem;line-height:1.5;margin-top:.5rem}
@media (max-width:640px){.card--illus{min-height:210px;padding-bottom:96px}.card-illus{width:120px;height:120px}}
/* feature strip in ONE rounded surface card, circular icon chips */
.feature-row .feat-grid{background:var(--surface);border:1px solid var(--line);
  border-radius:20px;padding:clamp(1.4rem,3vw,2.2rem);box-shadow:0 10px 30px rgba(19,34,56,.05)}
.feature-row .feat{border-left:0;padding-left:0;display:grid;grid-template-columns:auto 1fr;
  column-gap:.85rem;align-items:center}
.feature-row .feat-ic{grid-row:1 / span 2;grid-column:1;align-self:start;width:44px;height:44px;border-radius:50%;
  display:grid;place-items:center;background:color-mix(in srgb,var(--brand) 12%,#fff);margin:0}
.feature-row .feat h3{grid-column:2;grid-row:1;margin:0 0 .15rem}
.feature-row .feat p{grid-column:2;grid-row:2}
.feature-row .feat-ic svg{width:22px;height:22px}
@media (max-width:820px){.feature-row .feat-grid{gap:1.4rem 2rem}}

/* ---- Careers, open roles accordion ------------------------------------ */
.roles{display:grid;gap:.85rem;margin-top:1.6rem}
.role{border:1px solid var(--line);border-radius:var(--radius);background:#fff;
  box-shadow:var(--shadow-sm);overflow:hidden;position:relative;
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease}
.role::before{content:"";position:absolute;left:0;top:0;bottom:0;width:3px;
  background:var(--brand);opacity:0;transition:opacity .2s ease}
.role:hover{box-shadow:var(--shadow);transform:translateY(-1px)}
.role[open]{border-color:color-mix(in srgb,var(--brand) 45%,#fff);box-shadow:var(--shadow)}
.role[open]::before{opacity:1}

.role summary{list-style:none;cursor:pointer;display:grid;gap:.4rem;
  padding:1.15rem 3rem 1.15rem 1.35rem;position:relative}
.role summary::-webkit-details-marker{display:none}
.role summary:hover{background:color-mix(in srgb,var(--brand) 4%,#fff)}
.role summary::after{content:"";position:absolute;right:1.35rem;top:1.9rem;width:9px;height:9px;
  border-right:2px solid var(--brand);border-bottom:2px solid var(--brand);
  transform:translateY(-50%) rotate(45deg);transition:transform .2s ease}
.role[open] summary::after{transform:translateY(-20%) rotate(-135deg)}
.role summary:focus-visible{outline:3px solid var(--brand);outline-offset:-3px}

.role__top{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem}
.role__badge{display:inline-block;font-size:.7rem;font-weight:700;letter-spacing:.09em;
  text-transform:uppercase;color:var(--green-dark);
  background:color-mix(in srgb,var(--brand) 12%,#fff);border-radius:999px;padding:.24rem .65rem}
.role__exp{font-size:.78rem;font-weight:600;color:#5F6E83;
  background:var(--surface);border-radius:999px;padding:.24rem .65rem}
/* #5F6E83 not var(--muted): muted on the tinted chip is 4.37:1, just under AA. */
.role__title{font-family:var(--font-head);font-weight:700;font-size:1.24rem;
  line-height:1.25;color:var(--ink)}
.role__where{display:flex;flex-wrap:wrap;align-items:center;gap:.4rem;
  font-size:.87rem;color:var(--muted)}
.role__where svg{width:15px;height:15px;flex:none;color:var(--brand)}
.role__sep{width:3px;height:3px;border-radius:50%;background:var(--line);display:inline-block}
.role__cue{font-size:.8rem;font-weight:600;color:var(--green-dark)}
.role[open] .role__cue{display:none}

.role__body{padding:0 1.35rem 1.5rem;border-top:1px solid var(--line)}
.role__lead{margin:1.15rem 0 0;font-size:1rem;line-height:1.65;color:var(--ink)}
.role__grid{display:grid;gap:0 2.2rem;margin-top:.4rem}
@media(min-width:820px){.role__grid{grid-template-columns:1.35fr .9fr}}
.role__side{border-left:0}
@media(min-width:820px){.role__side{border-left:1px solid var(--line);padding-left:2.2rem}}
.role__side p{margin:.3rem 0 0;font-size:.92rem;color:var(--ink)}
.role__body h4{font-family:var(--font-head);font-size:.75rem;letter-spacing:.13em;
  text-transform:uppercase;color:var(--green-dark);margin:1.4rem 0 .5rem}
.role__body p{margin:.55rem 0 0;color:var(--ink)}
.role__apply{display:flex;flex-wrap:wrap;align-items:center;gap:.9rem;margin-top:1.6rem;
  padding-top:1.25rem;border-top:1px solid var(--line)}
.role__mail{font-size:.9rem;color:var(--muted)}
.note{margin-top:1.4rem;font-size:.88rem;color:var(--muted)}
@media (max-width:560px){
  .role summary{padding:1rem 2.6rem 1rem 1.05rem}
  .role__title{font-size:1.1rem}
  .role__body{padding:0 1.05rem 1.25rem}
}

}
.hr-contacts{margin-top:2rem;padding-top:1.6rem;border-top:1px solid var(--line)}
.hr-contacts h3{font-family:var(--font-head);font-size:1.05rem;color:var(--ink);margin:0 0 1rem}
.hrgrid{display:grid;gap:.8rem}
@media(min-width:680px){.hrgrid{grid-template-columns:1fr 1fr}}
.hrcard{display:grid;grid-template-columns:auto 1fr;gap:.35rem .85rem;align-items:center;
  border:1px solid var(--line);border-radius:14px;background:#fff;padding:1rem 1.1rem;
  box-shadow:var(--shadow-sm);transition:border-color .2s ease,box-shadow .2s ease}
.hrcard:hover{border-color:color-mix(in srgb,var(--brand) 40%,#fff);box-shadow:var(--shadow)}
.hrcard__avatar{grid-row:1/3;width:42px;height:42px;border-radius:50%;display:grid;
  place-items:center;font-family:var(--font-head);font-weight:700;font-size:1.05rem;
  color:var(--green-dark);background:color-mix(in srgb,var(--brand) 14%,#fff)}
.hrcard__who{display:grid;gap:.1rem;line-height:1.35}
.hrcard__who strong{font-size:1rem;color:var(--ink)}
.hrcard__role{font-size:.82rem;color:#5F6E83}
.hrcard__actions{grid-column:2;display:flex;flex-wrap:wrap;align-items:center;gap:.5rem .9rem;
  margin-top:.35rem}
.hrcard__tel{display:inline-flex;align-items:center;gap:.4rem;font-size:.92rem;
  font-weight:600;color:var(--ink);text-decoration:none}
.hrcard__tel svg{width:15px;height:15px;color:var(--brand)}
.hrcard__tel:hover{color:var(--green-dark)}
.hrcard__wa{display:inline-flex;align-items:center;font-size:.8rem;font-weight:700;
  color:var(--green-dark);background:color-mix(in srgb,var(--brand) 12%,#fff);
  border-radius:999px;padding:.2rem .68rem;text-decoration:none}
.hrcard__wa:hover{background:color-mix(in srgb,var(--brand) 22%,#fff)}
.hrcard__wa:focus-visible,.hrcard__tel:focus-visible{outline:3px solid var(--brand);outline-offset:2px}
.gptw{display:inline-flex;align-items:center;gap:.5rem;margin:1.1rem 0 0;
  font-size:.85rem;font-weight:600;color:var(--green-dark);
  background:color-mix(in srgb,var(--brand) 9%,#fff);border-radius:999px;padding:.45rem .95rem}
.gptw svg{width:17px;height:17px;flex:none}


.role__facts{list-style:none;padding:0;margin:.9rem 0 0;display:grid;gap:.3rem;
  font-size:.9rem;color:var(--ink)}
.role__facts strong{display:inline-block;min-width:6.5rem;color:var(--muted);font-weight:600}

/* ---- application modal ---- */
.modal{border:0;padding:0;width:min(760px,92vw);max-height:88vh;border-radius:var(--radius);
  box-shadow:0 24px 60px rgba(19,34,56,.28);background:#fff;color:var(--ink);overflow:hidden}
.modal::backdrop{background:rgba(19,34,56,.55)}
.modal__head{display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1.1rem 1.35rem;border-bottom:1px solid var(--line)}
.modal__head h2{font-family:var(--font-head);font-size:1.15rem;margin:0}
.modal__close{border:0;background:transparent;font-size:1.7rem;line-height:1;cursor:pointer;
  color:var(--muted);padding:.1rem .4rem;border-radius:8px}
.modal__close:hover{color:var(--ink);background:var(--surface)}
.modal__close:focus-visible{outline:3px solid var(--brand);outline-offset:2px}
.modal__body{padding:1.35rem;overflow-y:auto;max-height:calc(88vh - 4.2rem)}
.modal__body .form-card{border:0;box-shadow:none;padding:0;background:transparent}
@media (max-width:560px){.modal{width:100vw;max-height:100vh;border-radius:0}
  .modal__body{max-height:calc(100vh - 4.2rem)}}

/* ---- FAQs (knowledge hub) ---- */
.faqnav{display:flex;flex-wrap:wrap;gap:.45rem;margin:1.4rem 0 2rem}
.faqnav a{font-size:.82rem;font-weight:600;color:var(--green-dark);text-decoration:none;
  background:color-mix(in srgb,var(--brand) 10%,#fff);border-radius:999px;padding:.35rem .8rem}
.faqnav a:hover{background:color-mix(in srgb,var(--brand) 20%,#fff)}
.faqnav a:focus-visible{outline:3px solid var(--brand);outline-offset:2px}
.faqgroup{margin-top:2.4rem;scroll-margin-top:5rem}
.faqgroup h3{font-family:var(--font-head);font-size:1.12rem;color:var(--ink);
  margin:0 0 .9rem;padding-bottom:.55rem;border-bottom:2px solid color-mix(in srgb,var(--brand) 30%,#fff)}
.faqs{display:grid;gap:.5rem}
.faq{border:1px solid var(--line);border-radius:12px;background:#fff;overflow:hidden}
.faq[open]{border-color:color-mix(in srgb,var(--brand) 40%,#fff)}
.faq summary{list-style:none;cursor:pointer;padding:.9rem 2.6rem .9rem 1.05rem;position:relative}
.faq summary::-webkit-details-marker{display:none}
.faq summary:hover{background:color-mix(in srgb,var(--brand) 4%,#fff)}
.faq summary::after{content:"";position:absolute;right:1.1rem;top:50%;width:8px;height:8px;
  border-right:2px solid var(--brand);border-bottom:2px solid var(--brand);
  transform:translateY(-70%) rotate(45deg);transition:transform .2s ease}
.faq[open] summary::after{transform:translateY(-30%) rotate(-135deg)}
.faq summary:focus-visible{outline:3px solid var(--brand);outline-offset:-3px}
.faq__q{font-weight:600;font-size:.98rem;color:var(--ink)}
.faq__a{padding:0 1.05rem 1.05rem;border-top:1px solid var(--line)}
.faq__a p{margin:.85rem 0 0;color:var(--ink);line-height:1.65}
.faq__list{margin:.7rem 0 0;padding-left:1.1rem;display:grid;gap:.3rem}
.faq__list li{color:var(--ink);font-size:.95rem}
.tablewrap{overflow-x:auto}
.ftable{width:100%;border-collapse:collapse;font-size:.93rem;min-width:420px}
.ftable th{text-align:left;font-family:var(--font-head);font-size:.75rem;letter-spacing:.1em;
  text-transform:uppercase;color:var(--green-dark);padding:.65rem .8rem;
  border-bottom:2px solid color-mix(in srgb,var(--brand) 30%,#fff)}
.ftable td{padding:.7rem .8rem;border-bottom:1px solid var(--line);color:var(--ink);vertical-align:top}
.ftable tbody tr:hover{background:color-mix(in srgb,var(--brand) 4%,#fff)}
.hrcard--plain{grid-template-columns:auto 1fr}
.hrnote{margin:1rem 0 0;font-size:.9rem;color:var(--ink)}
.hrnote a{color:var(--green-dark);font-weight:600}
