
/* ===== tokens =============================================================
   Consulting-firm structure: one near-black ink, a warm light-grey ground,
   and a single saturated accent carrying every interactive element.
   Green and gold are sampled from the GTL wordmark. Gold measures 2.30:1 on
   the ground, so it is a rule-and-dot colour only and never sets type. */
:root{
  --ground:#F1F0EC; --surface:#FFFFFF; --dark:#101A14; --dark-2:#0A130D;
  --ink:#101A14;    --text:#39433C;    --muted:#5F6962;
  --green:#046A38;  --green-br:#0B8F4E; --green-dim:#E4EDE7;
  --gold:#C8A45C;   --gold-dim:#F0E6D2;
  --line:#DEDBD3;   --line-soft:#E9E6DF;
  --on-dark:#F4F2ED; --on-dark-mute:#A7B0A9;
  --p1:#04371F; --p2:#046A38; --p3:#3E8C5A; --p4:#8AAE8E; --p5:#C8A45C; --p6:#E4CFA0;
  --maxw:1280px; --gutter:24px;
  --display:'Source Serif 4',Georgia,'Times New Roman',serif;
  --body:'IBM Plex Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --ease:cubic-bezier(.2,.8,.2,1);
  --shadow:0 1px 2px rgba(16,26,20,.05),0 12px 32px -20px rgba(16,26,20,.3);
}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]){
    --ground:#0C130E; --surface:#121B15; --dark:#070E09; --dark-2:#050906;
    --ink:#F0EEE8;    --text:#C8CEC9;    --muted:#949D96;
    --green:#4FB37A;  --green-br:#6BC993; --green-dim:#14241A;
    --gold:#D9BA77;   --gold-dim:#241E12;
    --line:#232C25;   --line-soft:#1A221C;
    --p1:#0A2316; --p2:#1E7A47; --p3:#4FB37A; --p4:#8AAE8E; --p5:#D9BA77; --p6:#8A7442;
    --on-dark:#F4F2ED; --on-dark-mute:#A7B0A9;
    --shadow:0 1px 2px rgba(0,0,0,.5),0 12px 32px -20px rgba(0,0,0,.8);
  }
}
:root[data-theme="dark"]{
  --ground:#0C130E; --surface:#121B15; --dark:#070E09; --dark-2:#050906;
  --ink:#F0EEE8;    --text:#C8CEC9;    --muted:#949D96;
  --green:#4FB37A;  --green-br:#6BC993; --green-dim:#14241A;
  --gold:#D9BA77;   --gold-dim:#241E12;
  --line:#232C25;   --line-soft:#1A221C;
  --p1:#0A2316; --p2:#1E7A47; --p3:#4FB37A; --p4:#8AAE8E; --p5:#D9BA77; --p6:#8A7442;
  --on-dark:#F4F2ED; --on-dark-mute:#A7B0A9;
  --shadow:0 1px 2px rgba(0,0,0,.5),0 12px 32px -20px rgba(0,0,0,.8);
}

*{box-sizing:border-box}
body{margin:0;background:var(--ground);color:var(--text);font-family:var(--body);
  font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:var(--green);text-decoration:none}
a:hover{color:var(--green-br)}
:focus-visible{outline:2px solid var(--green);outline-offset:3px}
@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}

.wrap{max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gutter)}
.narrow{max-width:740px}

/* ===== type ===============================================================
   Big, tight, high-contrast serif headlines over a neutral technical sans.
   That pairing is the whole voice: authority from the serif, precision from
   the sans. */
h1,h2,h3,h4{font-family:var(--display);color:var(--ink);font-weight:700;
  line-height:1.06;letter-spacing:-.018em;text-wrap:balance;margin:0}
h1{font-size:clamp(2.3rem,1.5rem + 2.7vw,3.6rem)}
h2{font-size:clamp(1.9rem,1.25rem + 2.5vw,3.1rem)}
h3{font-size:clamp(1.2rem,1.05rem + .6vw,1.5rem);letter-spacing:-.012em}
h4{font-size:1.02rem;letter-spacing:-.008em}
p{margin:0 0 1.05em}
.lede{font-size:clamp(1rem,.96rem + .35vw,1.18rem);line-height:1.6;color:var(--text);max-width:62ch}
.dek{color:var(--muted)}

/* eyebrow: a white pill with an accent dot, the label device that reads as
   "section marker" without becoming decoration */
.eyebrow{display:inline-flex;align-items:center;gap:.55rem;background:var(--surface);
  border:1px solid var(--line);font-family:var(--body);font-size:.68rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--ink);
  padding:.46rem .85rem;border-radius:2px;margin:0 0 1.25rem}
.eyebrow::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--gold);flex:none}
.on-dark .eyebrow{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.16);color:var(--on-dark)}

/* ===== buttons: square, solid, chevron ==================================== */
.btn{display:inline-flex;align-items:center;gap:.6rem;font-family:var(--body);font-size:.88rem;
  font-weight:600;padding:.85rem 1.35rem;border:1px solid transparent;border-radius:2px;
  cursor:pointer;transition:background .2s,color .2s,border-color .2s}
.btn::after{content:"";width:6px;height:6px;border-right:2px solid currentColor;
  border-top:2px solid currentColor;transform:rotate(45deg);flex:none;transition:transform .25s var(--ease)}
.btn:hover::after{transform:rotate(45deg) translate(2px,-2px)}
.btn.no-chev::after{display:none}
.btn-primary{background:var(--green);color:#fff;border-color:var(--green)}
.btn-primary:hover{background:var(--green-br);border-color:var(--green-br);color:#fff}
.btn-dark{background:var(--ink);color:var(--ground);border-color:var(--ink)}
.btn-dark:hover{background:var(--green);border-color:var(--green);color:#fff}
.btn-outline{background:transparent;color:var(--ink);border-color:var(--line)}
.btn-outline:hover{border-color:var(--green);color:var(--green)}
.on-dark .btn-outline{color:var(--on-dark);border-color:rgba(255,255,255,.28)}
.on-dark .btn-outline:hover{border-color:var(--on-dark);color:var(--on-dark)}
.btn-light{background:var(--on-dark);color:var(--dark);border-color:var(--on-dark)}
.btn-light:hover{background:#fff;color:var(--dark)}
.btn-row{display:flex;flex-wrap:wrap;gap:.7rem}
.tlink{display:inline-flex;align-items:center;gap:.45rem;font-size:.84rem;font-weight:600;
  color:var(--green)}
.tlink::after{content:"";width:5px;height:5px;border-right:2px solid currentColor;
  border-top:2px solid currentColor;transform:rotate(45deg);transition:transform .25s var(--ease)}
.tlink:hover::after{transform:rotate(45deg) translate(2px,-2px)}

/* ===== header ============================================================= */
.utility{background:var(--dark);color:var(--on-dark-mute);font-size:.76rem}
.utility .wrap{display:flex;gap:1.4rem;align-items:center;justify-content:flex-end;
  min-height:38px;flex-wrap:wrap}
.utility a{color:var(--on-dark-mute)}
.utility a:hover{color:var(--gold)}
.utility .sep{opacity:.3}
.site-header{position:sticky;top:env(safe-area-inset-top,0px);z-index:60;background:var(--surface);
  border-bottom:1px solid var(--line)}
.hrow{display:flex;align-items:center;gap:1.5rem;min-height:72px;
  max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gutter)}
.brand{flex:none;display:flex;align-items:center}
.brand img{height:32px;width:auto}
.brand .lg-light{display:none}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .brand .lg-dark{display:none}
  :root:not([data-theme="light"]) .brand .lg-light{display:block}
}
:root[data-theme="dark"] .brand .lg-dark{display:none}
:root[data-theme="dark"] .brand .lg-light{display:block}

.nav{margin-left:auto;display:flex;align-items:center;gap:.4rem}
.nav-links{display:flex;align-items:center;gap:.1rem;list-style:none;margin:0;padding:0}
.nav-links>li{position:relative}
/* (0,2,1): cannot be overridden by a bare .nav-links>li>a rule */
.nav-links>li>a.nav-link{display:inline-flex;align-items:center;gap:.35rem;font-size:.88rem;
  font-weight:500;color:var(--ink);padding:.6rem .8rem;white-space:nowrap;position:relative}
.nav-links>li>a.nav-link::before{content:"";position:absolute;left:.8rem;right:.8rem;bottom:.25rem;
  height:2px;background:var(--green);transform:scaleX(0);transition:transform .25s var(--ease)}
.nav-links>li>a.nav-link:hover::before,
.nav-links>li>a.nav-link[aria-current="page"]::before{transform:scaleX(1)}
.caret{width:9px;height:9px;fill:none;stroke:currentColor;stroke-width:2;transition:transform .25s}
li.open .caret{transform:rotate(180deg)}

.mega{position:absolute;top:calc(100% + 12px);left:50%;transform:translateX(-50%) translateY(-8px);
  background:var(--surface);border:1px solid var(--line);box-shadow:var(--shadow);
  padding:1.6rem;display:grid;grid-template-columns:repeat(3,minmax(200px,1fr));gap:1.8rem;
  opacity:0;visibility:hidden;transition:opacity .2s,transform .25s var(--ease),visibility .2s}
li.open>.mega{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.mega h4{font-family:var(--body);font-size:.66rem;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);margin:0 0 .8rem;padding-bottom:.6rem;
  border-bottom:1px solid var(--line-soft)}
.mega ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.15rem}
.mega a{display:flex;align-items:baseline;gap:.5rem;font-size:.87rem;color:var(--ink);
  padding:.4rem .5rem;margin-inline:-.5rem;transition:background .18s,color .18s}
.mega a:hover{background:var(--green-dim);color:var(--green)}
.mega .pill{font-size:.6rem;font-weight:600;letter-spacing:.1em;color:var(--gold);flex:none}

.nav-toggle{display:none;background:none;border:1px solid var(--line);width:42px;height:38px;
  cursor:pointer;align-items:center;justify-content:center;color:var(--ink);border-radius:2px}
.nav-toggle svg{width:18px;height:18px;stroke:currentColor;stroke-width:1.8;fill:none}
.scrim{display:none}
@media (max-width:1100px){
  .nav-toggle{display:inline-flex}
  .scrim{display:block;position:fixed;inset:0;background:rgba(10,19,13,.5);z-index:55;
    opacity:0;visibility:hidden;transition:opacity .25s}
  body.menu-open .scrim{opacity:1;visibility:visible}
  .nav{position:fixed;inset:0 0 0 auto;width:min(370px,88vw);background:var(--surface);
    border-left:1px solid var(--line);flex-direction:column;align-items:stretch;gap:0;
    padding:calc(84px + env(safe-area-inset-top,0px)) var(--gutter) 2rem;overflow-y:auto;
    transform:translateX(100%);transition:transform .32s var(--ease);visibility:hidden;z-index:58}
  body.menu-open .nav{transform:none;visibility:visible}
  .nav-links{flex-direction:column;align-items:stretch;gap:0}
  .nav-links>li{border-bottom:1px solid var(--line-soft)}
  .nav-links>li>a.nav-link{padding:.95rem .25rem;font-size:1rem;justify-content:space-between}
  .nav-links>li>a.nav-link::before{display:none}
  .mega{position:static;transform:none;opacity:1;visibility:visible;display:none;
    grid-template-columns:1fr;box-shadow:none;border:0;padding:0 0 1rem;background:transparent;gap:1.2rem}
  li.open>.mega{display:grid;transform:none}
  .nav .btn{margin-top:1.2rem;justify-content:center}
}


/* ===== hero ===============================================================
   Headline left on the ground, image bleeding right. Never animated in:
   an element at opacity 0 is excluded from LCP. */
.hero{background:var(--ground);border-bottom:1px solid var(--line);overflow:hidden}
.hero-grid{display:grid;grid-template-columns:minmax(0,1.22fr) minmax(0,1fr);
  gap:clamp(2rem,1rem + 4vw,4.5rem);align-items:center;
  max-width:var(--maxw);margin-inline:auto;padding:clamp(3rem,2rem + 4vw,5.5rem) 0 clamp(3rem,2rem + 4vw,5.5rem) var(--gutter)}
.hero-copy{max-width:none}
.hero h1{max-width:15ch}
.hero h1{margin-bottom:1.4rem}
.hero h1 em{font-style:normal;color:var(--green)}
.hero .lede{color:var(--muted);margin-bottom:2rem;font-size:1.06rem}
.hero-art{position:relative}
.hero-art img{width:100%;aspect-ratio:16/10;object-fit:cover;border:1px solid var(--line)}
/* the figure card that overlaps the art, ZS's device for putting a number on
   the image without a caption */
.hero-badge{position:absolute;left:-28px;bottom:-28px;background:var(--surface);
  border:1px solid var(--line);box-shadow:var(--shadow);padding:1.1rem 1.3rem;max-width:230px}
.hero-badge b{display:block;font-family:var(--display);font-size:2rem;line-height:1;color:var(--green);
  font-variant-numeric:tabular-nums}
.hero-badge span{display:block;margin-top:.35rem;font-size:.78rem;color:var(--muted);line-height:1.35}
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;padding-inline:var(--gutter);gap:2.2rem}
  .hero-copy{max-width:none}
  .hero-badge{position:static;margin-top:1rem;max-width:none;display:flex;align-items:baseline;gap:.8rem}
  .hero-badge span{margin:0}
}

/* ===== page hero (interior) ============================================== */
.page-hero{position:relative;background:var(--dark);color:var(--on-dark);overflow:hidden}
.page-hero .bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.3}
.page-hero::after{content:"";position:absolute;inset:0;
  background:linear-gradient(100deg,var(--dark) 20%,rgba(16,26,20,.72) 60%,rgba(16,26,20,.45))}
.page-hero .wrap{position:relative;z-index:2;padding-block:clamp(3rem,2rem + 4vw,5rem)}
.page-hero h1{color:var(--on-dark);max-width:19ch}
.page-hero .lede{color:var(--on-dark-mute);margin-top:1.1rem}
.page-hero.plain{background:var(--dark)}
.crumb{font-size:.73rem;letter-spacing:.1em;text-transform:uppercase;color:var(--on-dark-mute);
  margin-bottom:1.1rem;display:flex;gap:.5rem;flex-wrap:wrap;align-items:center}
.crumb a{color:var(--on-dark-mute)}
.crumb a:hover{color:var(--gold)}
.crumb .sep{opacity:.4}

/* ===== sections =========================================================== */
.section{padding-block:clamp(3rem,2.2rem + 3.8vw,5.5rem)}
.section.alt{background:var(--surface)}
.section.dark{background:var(--dark);color:var(--on-dark-mute)}
.section.dark h2,.section.dark h3,.section.dark h4{color:var(--on-dark)}
.section.dark .lede{color:var(--on-dark-mute)}
.section-head{max-width:64ch;margin-bottom:2.8rem}
.section-head .lede{margin-top:1rem;color:var(--muted)}
.section.dark .section-head .lede{color:var(--on-dark-mute)}
.head-row{display:flex;gap:2rem;align-items:flex-end;justify-content:space-between;
  flex-wrap:wrap;margin-bottom:2.8rem}
.head-row .section-head{margin-bottom:0}

/* ===== image cards ======================================================== */
.grid{display:grid;gap:1.5rem}
.g3{grid-template-columns:repeat(3,1fr)}
.g2{grid-template-columns:repeat(2,1fr)}
@media (max-width:980px){.g3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.g3,.g2{grid-template-columns:1fr}}

.icard{display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--line);
  overflow:hidden;transition:border-color .2s,transform .3s var(--ease)}
.icard:hover{border-color:var(--green);transform:translateY(-3px)}
.icard .ph{position:relative;overflow:hidden;background:var(--green-dim)}
.icard .ph img{width:100%;aspect-ratio:3/2;object-fit:cover;transition:transform .5s var(--ease)}
.icard:hover .ph img{transform:scale(1.04)}
.icard .bd{padding:1.4rem;display:flex;flex-direction:column;gap:.55rem;flex:1}
.icard h3{color:var(--ink)}
.icard p{color:var(--muted);font-size:.9rem;margin:0}
.icard .tlink{margin-top:auto;padding-top:.9rem}
.tagrow{display:flex;flex-wrap:wrap;gap:.35rem;margin-bottom:.2rem}
.tagrow span{font-size:.66rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  color:var(--muted);background:var(--ground);border:1px solid var(--line-soft);padding:.25rem .5rem}
.icard .wolf{font-family:var(--body);font-size:.66rem;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--gold)}

/* ===== client logo band =================================================== */
.logoband{display:grid;grid-template-columns:repeat(6,1fr);align-items:center;
  gap:1.5rem 2rem;padding-block:2.4rem;border-block:1px solid var(--line)}
@media (max-width:860px){.logoband{grid-template-columns:repeat(3,1fr)}}
@media (max-width:460px){.logoband{grid-template-columns:repeat(2,1fr)}}
.logoband img{max-height:38px;width:100%;object-fit:contain;opacity:.62;
  filter:grayscale(1);transition:opacity .25s,filter .25s}
.logoband img:hover{opacity:1;filter:none}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .logoband img{filter:grayscale(1) invert(1) brightness(1.6)}
  :root:not([data-theme="light"]) .logoband img:hover{filter:invert(1) brightness(1.6)}
}
:root[data-theme="dark"] .logoband img{filter:grayscale(1) invert(1) brightness(1.6)}
:root[data-theme="dark"] .logoband img:hover{filter:invert(1) brightness(1.6)}

/* ===== statement band ===================================================== */
.band{background:var(--dark);color:var(--on-dark-mute)}
.band .wrap{display:flex;gap:2rem;align-items:center;justify-content:space-between;
  flex-wrap:wrap;padding-block:clamp(2.2rem,1.8rem + 2vw,3.2rem)}
.band h2{color:var(--on-dark);max-width:18ch;font-size:clamp(1.6rem,1.2rem + 1.7vw,2.4rem)}
.band p{max-width:52ch;margin:.7rem 0 0;font-size:.95rem}

/* ===== stats ============================================================== */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line)}
@media (max-width:820px){.stats{grid-template-columns:repeat(2,1fr)}}
.stat{background:var(--surface);padding:1.9rem 1.5rem}
.section.dark .stats{background:rgba(255,255,255,.12)}
.section.dark .stat{background:var(--dark)}
.stat b{display:block;font-family:var(--display);font-size:clamp(2.1rem,1.5rem + 2vw,3rem);
  font-weight:700;line-height:1;color:var(--green);font-variant-numeric:tabular-nums;
  letter-spacing:-.02em}
.section.dark .stat b{color:var(--gold)}
.stat span{display:block;margin-top:.55rem;font-size:.82rem;color:var(--muted)}
.section.dark .stat span{color:var(--on-dark-mute)}

/* ===== split feature ====================================================== */
.feature{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,1rem + 4vw,4rem);
  align-items:center}
.feature.flip .fig{order:2}
@media (max-width:900px){.feature,.feature.flip .fig{grid-template-columns:1fr;order:0}}
.feature .fig img{width:100%;aspect-ratio:4/3;object-fit:cover;border:1px solid var(--line)}
.ticks{list-style:none;margin:1.4rem 0 0;padding:0;display:flex;flex-direction:column;gap:.75rem}
.ticks li{display:flex;gap:.7rem;align-items:flex-start;font-size:.94rem;color:var(--text)}
.ticks li::before{content:"";flex:none;width:16px;height:16px;margin-top:.22rem;border-radius:50%;
  background:var(--green-dim);border:1px solid var(--green);
  background-image:linear-gradient(45deg,transparent 45%,var(--green) 45%,var(--green) 55%,transparent 55%)}

/* ===== quotes ============================================================= */
.quote{background:var(--surface);border:1px solid var(--line);padding:1.8rem;
  display:flex;flex-direction:column;gap:1rem}
.section.dark .quote{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.14)}
.quote .stars,.qgrid .stars{color:var(--gold);display:inline-flex;gap:3px}
.stars svg.st{width:14px;height:14px;display:block}
.quote p{font-family:var(--display);font-size:1.06rem;line-height:1.45;color:var(--ink);margin:0}
.section.dark .quote p{color:var(--on-dark)}
.quote .who{font-size:.82rem;color:var(--muted);margin-top:auto}
.quote .who b{display:block;color:var(--ink);font-weight:600;font-family:var(--body)}
.section.dark .quote .who{color:var(--on-dark-mute)}
.section.dark .quote .who b{color:var(--on-dark)}

/* ===== people ============================================================= */
.people{display:grid;grid-template-columns:repeat(6,1fr);gap:1.4rem}
@media (max-width:980px){.people{grid-template-columns:repeat(3,1fr)}}
@media (max-width:560px){.people{grid-template-columns:repeat(2,1fr)}}
.person img{width:100%;aspect-ratio:1;object-fit:cover;border:1px solid var(--line);
  filter:grayscale(1);transition:filter .3s}
.person:hover img{filter:none}
.person b{display:block;margin-top:.8rem;font-size:.92rem;font-weight:600;color:var(--ink)}
.person span{font-size:.8rem;color:var(--muted);line-height:1.35;display:block}


/* ===== article / prose ==================================================== */
.prose{max-width:70ch;font-size:1.02rem;color:var(--text)}
.prose h2{font-size:clamp(1.5rem,1.2rem + 1.1vw,2rem);margin:2.6rem 0 .9rem}
.prose h3{font-size:1.24rem;margin:2rem 0 .7rem}
.prose h4{font-size:1rem;margin:1.6rem 0 .5rem;font-family:var(--body);font-weight:600;color:var(--ink)}
.prose>h2:first-child,.prose>h3:first-child{margin-top:0}
.prose p{margin:0 0 1.15em}
.prose ul,.prose ol{margin:0 0 1.3em;padding-left:1.2em;display:flex;flex-direction:column;gap:.5em}
.prose li::marker{color:var(--gold)}
.prose strong{font-weight:600;color:var(--ink)}
.prose a{text-decoration:underline;text-underline-offset:3px;
  text-decoration-color:color-mix(in srgb,var(--green) 40%,transparent)}
.prose blockquote{margin:1.9em 0;padding:.1em 0 .1em 1.5em;border-left:3px solid var(--gold);
  font-family:var(--display);font-size:1.2rem;line-height:1.4;color:var(--ink)}
.prose blockquote p:last-child{margin:0}
.prose img{margin:1.6em 0;border:1px solid var(--line)}
.prose figure{margin:1.8em 0}
.prose figcaption{font-size:.82rem;color:var(--muted);margin-top:.6rem}
.prose hr{border:0;border-top:1px solid var(--line);margin:2.6em 0}
.prose code{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:.88em;
  background:var(--ground);padding:.15em .4em}
.prose pre{background:var(--ground);padding:1rem;overflow-x:auto;border:1px solid var(--line)}
.tscroll{overflow-x:auto;margin:1.7em 0;border:1px solid var(--line)}
.prose table{border-collapse:collapse;width:100%;font-size:.9rem;min-width:440px;background:var(--surface)}
.prose th,.prose td{text-align:left;padding:.75rem .95rem;border-bottom:1px solid var(--line-soft);
  vertical-align:top}
.prose thead th{background:var(--ground);font-family:var(--body);font-size:.7rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;color:var(--muted)}
.prose tbody tr:last-child td{border-bottom:0}

.article-grid{display:grid;grid-template-columns:minmax(0,1fr) 270px;
  gap:clamp(2rem,1rem + 4vw,4.5rem);align-items:start}
@media (max-width:1000px){.article-grid{grid-template-columns:1fr}}
.aside{position:sticky;top:calc(96px + env(safe-area-inset-top,0px));font-size:.87rem;
  display:flex;flex-direction:column;gap:1.8rem}
@media (max-width:1000px){.aside{position:static}}
.aside .aside-label,.aside h4{margin:0;font-family:var(--body);font-size:.66rem;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);margin:0 0 .8rem;padding-bottom:.55rem;
  border-bottom:1px solid var(--line)}
.aside ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:1rem}
.aside ul a{color:var(--ink);font-weight:500;line-height:1.35;display:block}
.aside ul a:hover{color:var(--green)}
.aside ul span{font-size:.75rem;color:var(--muted)}
.aside .box{background:var(--surface);border:1px solid var(--line);padding:1.3rem}
.meta{font-size:.79rem;color:var(--muted);display:flex;flex-wrap:wrap;gap:.4rem .85rem;
  align-items:center;letter-spacing:.02em}
.meta .dot{width:3px;height:3px;border-radius:50%;background:var(--gold)}

/* ===== tags =============================================================== */
.taglist{display:flex;flex-wrap:wrap;gap:.4rem}
.tag{display:inline-block;font-size:.75rem;padding:.35rem .65rem;border:1px solid var(--line);
  color:var(--muted);background:var(--surface);transition:border-color .2s,color .2s}
.tag:hover{border-color:var(--green);color:var(--green)}
.tag b{font-weight:600;color:var(--green)}

/* ===== listings =========================================================== */
.list{display:flex;flex-direction:column;border-top:1px solid var(--line)}
.list-item{display:grid;grid-template-columns:auto minmax(0,1fr);gap:.35rem 1.8rem;
  padding:1.6rem 0;border-bottom:1px solid var(--line);transition:padding-left .25s var(--ease)}
.list-item:hover{padding-left:.6rem}
.list-item .when{font-size:.75rem;color:var(--muted);font-variant-numeric:tabular-nums;
  padding-top:.3rem;white-space:nowrap;letter-spacing:.04em}
.list-item h3{font-size:1.15rem;color:var(--ink)}
.list-item:hover h3{color:var(--green)}
.list-item p{margin:.4rem 0 0;color:var(--muted);font-size:.89rem}
.list-item .cats{grid-column:2;font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;
  color:var(--gold);margin-top:.55rem;font-weight:600}
@media (max-width:620px){.list-item{grid-template-columns:1fr}.list-item .cats{grid-column:1}}

/* ===== toolbar / search =================================================== */
.toolbar{display:flex;flex-wrap:wrap;gap:.7rem;align-items:center;margin-bottom:1.6rem}
.search{flex:1;min-width:220px;display:flex;align-items:center;gap:.6rem;background:var(--surface);
  border:1px solid var(--line);padding:.1rem .9rem}
.search:focus-within{border-color:var(--green)}
.search svg{width:15px;height:15px;stroke:var(--muted);fill:none;stroke-width:2;flex:none}
.search input{flex:1;border:0;background:none;font:inherit;font-size:.92rem;color:var(--ink);
  padding:.72rem 0;min-width:0}
.search input:focus{outline:none}
.filters{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:2rem}
.chip{font-family:inherit;font-size:.78rem;font-weight:500;padding:.5rem .85rem;
  border:1px solid var(--line);background:var(--surface);color:var(--muted);cursor:pointer}
.chip:hover{border-color:var(--green);color:var(--green)}
.chip[aria-pressed="true"]{background:var(--green);border-color:var(--green);color:#fff}
.count{font-size:.79rem;color:var(--muted);margin-bottom:1rem;letter-spacing:.03em;
  font-variant-numeric:tabular-nums}
.empty{padding:3rem 0;color:var(--muted);text-align:center}
.pager{display:flex;gap:.5rem;justify-content:center;margin-top:2.5rem;flex-wrap:wrap}

/* ===== CTA band =========================================================== */
.cta{background:var(--green)}
.cta .wrap{display:flex;gap:2rem;align-items:center;justify-content:space-between;
  flex-wrap:wrap;padding-block:clamp(2.4rem,2rem + 2.2vw,3.4rem)}
.cta h2{color:#fff;max-width:18ch}
.cta p{color:rgba(255,255,255,.82);max-width:50ch;margin:.7rem 0 0;font-size:.95rem}

/* ===== info rows ========================================================== */
.info-row{display:flex;flex-direction:column;gap:.2rem;padding:1.15rem 0;
  border-bottom:1px solid var(--line)}
.info-row b{font-family:var(--body);font-size:.66rem;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted)}
.info-row span,.info-row a{font-size:1rem;color:var(--ink)}
.info-row a:hover{color:var(--green)}

/* ===== footer ============================================================= */
.site-footer{background:var(--dark-2);color:var(--on-dark-mute)}
.site-footer .wrap{padding-block:clamp(2.8rem,2.2rem + 2.5vw,4rem) 0}
.footer-top{display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:2.4rem;
  padding-bottom:2.8rem;border-bottom:1px solid rgba(255,255,255,.12)}
@media (max-width:900px){.footer-top{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.footer-top{grid-template-columns:1fr}}
.site-footer img.flogo{height:36px;width:auto;margin-bottom:1.2rem}
.site-footer p{font-size:.88rem;color:var(--on-dark-mute)}
.footer-col h4{font-family:var(--body);font-size:.66rem;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--gold);margin:0 0 1.1rem}
.footer-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.6rem}
.footer-col a{color:rgba(244,242,237,.82);font-size:.87rem}
.footer-col a:hover{color:var(--gold)}
.footer-bottom{display:flex;flex-wrap:wrap;gap:.8rem 1.6rem;justify-content:space-between;
  padding-block:1.5rem;font-size:.78rem;color:rgba(167,176,169,.8)}
.footer-bottom a{color:inherit}
.footer-bottom a:hover{color:var(--gold)}
/* the six-pillar ramp, the one place the brand shows a spectrum */
.pillstrip{display:flex;gap:3px;margin-bottom:2.2rem}
.pillstrip span{height:5px;flex:1}


/* ===== recovered body sections ===========================================
   These draw the structure the WordPress page actually had. Flexbox, not a
   fixed grid: the last row grows to fill, so a five-card set never leaves a
   dead cell. */
.bcards{display:flex;flex-wrap:wrap;gap:1.25rem;list-style:none;margin:0;padding:0}
.bcard{flex:1 1 calc((100% - (var(--tracks,3) - 1) * 1.25rem) / var(--tracks,3));
  min-width:min(250px,100%);background:var(--surface);border:1px solid var(--line);
  padding:1.6rem;display:flex;flex-direction:column;gap:.6rem;
  transition:border-color .2s,transform .3s var(--ease)}
.bcard:hover{border-color:var(--green);transform:translateY(-2px)}
.section.alt .bcard{background:var(--ground)}
.bcard .ic{width:40px;height:40px;flex:none;display:grid;place-items:center;
  background:var(--green-dim);border:1px solid var(--line-soft)}
.bcard .ic svg{width:20px;height:20px;color:var(--green);display:block}
.icsprite{position:absolute;width:0;height:0;overflow:hidden}
.bcard .rule{width:34px;height:3px;background:var(--gold);flex:none}
.bcard h3{font-size:1.1rem;color:var(--ink);line-height:1.2}
.bcard p{margin:0;color:var(--muted);font-size:.92rem}
.bcard ul{margin:.2rem 0 0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.5rem}
.bcard ul li{display:flex;gap:.6rem;font-size:.88rem;color:var(--muted);line-height:1.45}
.bcard ul li::before{content:"";flex:none;width:5px;height:5px;margin-top:.5rem;
  background:var(--gold);border-radius:50%}
.bcard.lean{min-width:min(200px,100%)}

/* stat row recovered from a counter grid */
.bstats{display:flex;flex-wrap:wrap;gap:1px;background:var(--line);border:1px solid var(--line)}
.bstats>div{flex:1 1 200px;background:var(--surface);padding:1.8rem 1.5rem}
.section.alt .bstats>div{background:var(--ground)}
.bstats b{display:block;font-family:var(--display);font-weight:700;
  font-size:clamp(2rem,1.5rem + 1.8vw,2.8rem);line-height:1;color:var(--green);
  letter-spacing:-.02em;font-variant-numeric:tabular-nums}
.bstats span{display:block;margin-top:.5rem;font-size:.85rem;color:var(--muted)}

/* FAQ: native details, no JS, keyboard accessible by default */
.faq{border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{display:flex;align-items:flex-start;gap:1rem;padding:1.25rem 0;cursor:pointer;
  font-family:var(--display);font-size:1.08rem;font-weight:600;color:var(--ink);
  line-height:1.3;list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"";margin-left:auto;flex:none;width:9px;height:9px;margin-top:.45rem;
  border-right:2px solid var(--green);border-bottom:2px solid var(--green);
  transform:rotate(45deg);transition:transform .25s var(--ease)}
.faq details[open] summary::after{transform:rotate(225deg)}
.faq summary:hover{color:var(--green)}
.faq .ans{padding:0 0 1.4rem;color:var(--muted);font-size:.95rem;max-width:72ch}
.faq .ans p:last-child{margin:0}

/* an in-body CTA recovered from the page, quieter than the page-level band */
.bcta{background:var(--dark);color:var(--on-dark-mute);padding:clamp(2rem,1.6rem + 2vw,3rem);
  display:flex;gap:1.8rem;align-items:center;justify-content:space-between;flex-wrap:wrap}
.bcta h2{color:var(--on-dark);max-width:22ch;font-size:clamp(1.5rem,1.2rem + 1.2vw,2.1rem)}
.bcta p{margin:.6rem 0 0;font-size:.92rem;max-width:48ch}
.bcta .note{font-size:.8rem;color:var(--on-dark-mute);opacity:.8}

/* a split recovered from a media-text block */
.bsplit{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.6rem,1rem + 3vw,3.5rem);
  align-items:center}
@media (max-width:880px){.bsplit{grid-template-columns:1fr}}
.bsplit .fig img{width:100%;aspect-ratio:4/3;object-fit:cover;border:1px solid var(--line)}

/* section rhythm for the recovered sections */
.bsec{padding-block:clamp(2.4rem,1.8rem + 2.6vw,4rem)}
.bsec:first-child{padding-top:clamp(2rem,1.6rem + 1.6vw,3rem)}
.bsec.alt{background:var(--surface)}
.bsec .shead{max-width:62ch;margin-bottom:2rem}
.bsec .shead h2{margin-bottom:.7rem}
.bsec .shead .idx{font-family:var(--body);font-size:.68rem;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);display:flex;align-items:center;gap:.6rem;
  margin-bottom:.9rem}
.bsec .shead .idx::before{content:"";width:22px;height:3px;background:var(--gold);flex:none}

/* ===== tabs: recovered from a UAGB tabs block ============================ */
.tabs{border:1px solid var(--line);background:var(--surface)}
.section.alt .tabs,.bsec.alt .tabs{background:var(--ground)}
.tabbar{display:flex;flex-wrap:wrap;gap:0;border-bottom:1px solid var(--line);
  background:var(--ground)}
.bsec.alt .tabbar{background:var(--surface)}
.tabbar button{font-family:var(--body);font-size:.84rem;font-weight:600;color:var(--muted);
  background:none;border:0;border-bottom:3px solid transparent;padding:.95rem 1.2rem;
  cursor:pointer;white-space:nowrap}
.tabbar button:hover{color:var(--ink)}
.tabbar button[aria-selected="true"]{color:var(--green);border-bottom-color:var(--green);
  background:var(--surface)}
.bsec.alt .tabbar button[aria-selected="true"]{background:var(--ground)}
.tabpanel{padding:clamp(1.4rem,1rem + 1.4vw,2.2rem)}
.tabpanel h3{font-size:1.25rem;margin:0 0 .7rem;color:var(--ink)}
.tabpanel p{margin:0;color:var(--text);max-width:74ch;font-size:.97rem}
.tabpanel ul{margin:.9rem 0 0;padding:0;list-style:none;display:flex;flex-direction:column;gap:.5rem}
.tabpanel ul li{display:flex;gap:.6rem;font-size:.92rem;color:var(--muted)}
.tabpanel ul li::before{content:"";flex:none;width:5px;height:5px;margin-top:.52rem;
  border-radius:50%;background:var(--gold)}

/* ===== steps: a numbered sequence, so the numbers carry information ====== */
.steps{counter-reset:s;display:flex;flex-direction:column}
.step{display:grid;grid-template-columns:auto minmax(0,1fr);gap:0 1.4rem;
  padding:1.4rem 0;border-top:1px solid var(--line)}
.step:last-child{border-bottom:1px solid var(--line)}
.step .num{grid-row:1/span 2;width:44px;height:44px;display:grid;place-items:center;
  font-family:var(--display);font-size:1.1rem;font-weight:700;color:var(--green);
  background:var(--green-dim);border:1px solid var(--line-soft);
  font-variant-numeric:tabular-nums}
.step h3{font-size:1.15rem;margin:.35rem 0 .35rem;color:var(--ink)}
.step p{margin:0;color:var(--muted);font-size:.94rem;max-width:72ch}
.step ul{margin:.6rem 0 0;padding-left:1.1em;color:var(--muted);font-size:.92rem}
.step ul li::marker{color:var(--gold)}
@media (max-width:560px){
  .step{grid-template-columns:1fr;gap:.7rem}
  .step .num{grid-row:auto}
}

/* ===== meta: label/value pairs, e.g. contact or a case-study header ====== */
.metagrid{display:flex;flex-wrap:wrap;gap:1px;background:var(--line);
  border:1px solid var(--line)}
.metagrid>div{flex:1 1 220px;background:var(--surface);padding:1.3rem 1.4rem}
.bsec.alt .metagrid>div{background:var(--ground)}
.metagrid b{display:block;font-family:var(--body);font-size:.66rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--muted);margin-bottom:.4rem}
.metagrid span{display:block;font-size:.98rem;color:var(--ink);line-height:1.45}
.metagrid a{color:var(--green)}

/* ===== content images carried over from the WordPress pages ============= */
.cfig{margin:0;border:1px solid var(--line);background:var(--surface);overflow:hidden}
.cfig.bare{border:0;background:none}
.cfig.bare img{margin-inline:auto;max-height:360px;width:auto}
.cfig img{width:100%;height:auto;display:block}
.bcard .cfig{margin:-1.6rem -1.6rem .4rem;border:0;border-bottom:1px solid var(--line)}
.prose .cfig{margin:1.6em 0}
/* client logos with the country each one is in */
.clogos{display:grid;grid-template-columns:repeat(6,1fr);gap:1.6rem 1.2rem;
  margin:2em 0;align-items:end}
@media (max-width:860px){.clogos{grid-template-columns:repeat(3,1fr)}}
@media (max-width:460px){.clogos{grid-template-columns:repeat(2,1fr)}}
.clogos>div{display:flex;flex-direction:column;gap:.55rem;align-items:flex-start}
.clogos img{max-height:36px;width:auto;max-width:100%;object-fit:contain;opacity:.68;
  filter:grayscale(1);transition:opacity .25s,filter .25s}
.clogos>div:hover img{opacity:1;filter:none}
.clogos span{font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .clogos img{filter:grayscale(1) invert(1) brightness(1.7)}
}
:root[data-theme="dark"] .clogos img{filter:grayscale(1) invert(1) brightness(1.7)}

/* a tab panel pairs its copy with the dashboard it describes */
.tabpanel.withfig{display:grid;grid-template-columns:minmax(0,5fr) minmax(0,7fr);
  gap:clamp(1.2rem,1rem + 1.5vw,2.2rem);align-items:start}
@media (max-width:820px){.tabpanel.withfig{grid-template-columns:1fr}}
.tabpanel .cfig{border-color:var(--line)}

/* ===== a third-party embed the artifact cannot load ====================== */
.embed{background:var(--surface);border:1px solid var(--line);border-left:3px solid var(--gold);
  padding:clamp(1.4rem,1.2rem + 1vw,2rem);display:flex;gap:1.5rem;align-items:center;
  flex-wrap:wrap;justify-content:space-between}
.bsec.alt .embed{background:var(--ground)}
.embed h3{margin:0 0 .5rem;color:var(--ink)}
.embed p{margin:0;color:var(--muted);font-size:.92rem;max-width:58ch}
.embed code{font-family:ui-monospace,Menlo,monospace;font-size:.82em;background:var(--ground);
  padding:.12em .4em;border:1px solid var(--line-soft)}

/* ===== highlights: label-only tiles, e.g. a case study's impact ========= */
.hirow{display:flex;flex-wrap:wrap;gap:1rem}
.hirow>div{flex:1 1 clamp(200px,24%,100%);background:var(--surface);
  border:1px solid var(--line);border-top:3px solid var(--green);
  padding:1.3rem 1.4rem;display:flex;align-items:center;gap:.8rem}
.bsec.alt .hirow>div{background:var(--ground)}
.hirow b{font-family:var(--display);font-size:1.05rem;font-weight:700;color:var(--ink);
  line-height:1.25}
.hirow .tick{flex:none;width:18px;height:18px;border-radius:50%;background:var(--green-dim);
  border:1px solid var(--green);
  background-image:linear-gradient(45deg,transparent 45%,var(--green) 45%,var(--green) 55%,transparent 55%)}

/* ===== quotes recovered from star-rating testimonials ==================== */
.qgrid{display:flex;flex-wrap:wrap;gap:1.25rem}
.qgrid figure{flex:1 1 clamp(260px,30%,100%);margin:0;background:var(--surface);
  border:1px solid var(--line);padding:1.6rem;display:flex;flex-direction:column;gap:.9rem}
.bsec.alt .qgrid figure{background:var(--ground)}

.qgrid blockquote{margin:0;padding:0;border:0;font-family:var(--display);font-size:1.02rem;
  line-height:1.45;color:var(--ink)}
.qgrid figcaption{margin-top:auto;font-size:.82rem;color:var(--muted)}
.qgrid figcaption b{display:block;color:var(--ink);font-family:var(--body);font-weight:600}

/* ===== contact form ====================================================== */
.gform{display:grid;gap:1rem}
.gform .row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media (max-width:620px){.gform .row{grid-template-columns:1fr}}
.gfield{display:flex;flex-direction:column;gap:.4rem}
.gfield label{font-family:var(--body);font-size:.68rem;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted)}
.gfield input,.gfield textarea{font:inherit;font-size:.95rem;color:var(--ink);
  background:var(--surface);border:1px solid var(--line);border-radius:2px;padding:.8rem .9rem}
.gfield input:focus,.gfield textarea:focus{outline:none;border-color:var(--green)}
.gfield textarea{min-height:140px;resize:vertical}
/* offscreen, not display:none - a bot fills what it can read in the markup */
.gform .hp{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.gform .note{font-size:.78rem;color:var(--muted)}
.gform-status{padding:.85rem 1rem;border:1px solid var(--line);border-radius:2px;font-size:.9rem}
.gform-status.ok{border-color:var(--green);background:var(--green-dim);color:var(--ink)}
.gform-status.err{border-color:#B4472F;background:#FBEDE9;color:#7A2E1D}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .gform-status.err{background:#2A1512;color:#F0C7BC}
}
:root[data-theme="dark"] .gform-status.err{background:#2A1512;color:#F0C7BC}

/* ===== video hero ========================================================
   The old site opened on a looping globe. Same asset, re-encoded from 9.5 MB
   to 1.6 MB, with a poster painted immediately so the poster is the LCP
   element rather than an empty box waiting on the video.
   The footage is cyan; the gradient is deep green, which lifts text contrast
   and pulls the frame back toward the brand. */
.vhero{position:relative;overflow:hidden;background:var(--dark);
  min-height:clamp(520px,62vh,660px);display:flex;align-items:center;
  border-bottom:1px solid var(--line)}
.vhero .bgmedia{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  z-index:0;pointer-events:none;max-width:none}
.vhero::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:
    linear-gradient(100deg, rgba(8,18,12,.95) 0%, rgba(8,18,12,.90) 38%,
                            rgba(8,18,12,.62) 68%, rgba(8,18,12,.42) 100%),
    linear-gradient(0deg, rgba(4,55,31,.50), rgba(4,55,31,.50))}
.vhero .wrap{position:relative;z-index:2;padding-block:clamp(3rem,2rem + 4vw,4.5rem);
  width:100%}
.vhero-logo{height:44px;width:auto;margin-bottom:1.7rem;display:block}
.vhero h1{color:#fff;max-width:17ch;margin-bottom:1.2rem}
.vhero h1 em{font-style:normal;color:var(--gold)}
.vhero .lede{color:rgba(255,255,255,.80);max-width:54ch;margin-bottom:2rem}
.vhero .eyebrow{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.22);
  color:#fff}
.vhero .eyebrow::before{background:var(--gold)}
.vhero .trust{display:flex;flex-wrap:wrap;gap:.5rem 2.2rem;margin-top:2.4rem;
  font-size:.82rem;color:rgba(255,255,255,.64);letter-spacing:.04em}
.vhero .trust b{color:var(--gold);font-weight:600}
.vhero .btn-outline{color:#fff;border-color:rgba(255,255,255,.42)}
.vhero .btn-outline:hover{border-color:#fff;color:#fff}
@media (max-width:760px){
  .vhero{min-height:auto}
  .vhero h1{max-width:none}
  .vhero .lede{max-width:none}
}
/* Motion off means the poster, not a paused video that downloaded anyway. */
@media (prefers-reduced-motion:reduce){
  .vhero video.bgmedia{display:none}
}
/* ===== sticky contact ===================================================
   One reliable way to reach a human from any page. Clears the safe-area
   inset so it never collides with a phone's home bar. */
.asklaunch{position:fixed;z-index:70;right:clamp(14px,3vw,28px);
  bottom:calc(clamp(14px,3vw,28px) + env(safe-area-inset-bottom,0px));
  display:inline-flex;align-items:center;gap:.6rem;
  background:var(--green);color:#fff;border:1px solid var(--green);border-radius:2px;
  font-family:var(--body);font-size:.88rem;font-weight:600;padding:.85rem 1.25rem;
  box-shadow:0 10px 30px -12px rgba(8,18,12,.55);cursor:pointer;
  transition:background .2s,transform .25s var(--ease)}
.asklaunch:hover{background:var(--green-br);transform:translateY(-2px)}
.asklaunch svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:1.9}
@media (max-width:520px){.asklaunch{padding:.8rem 1rem;font-size:.82rem}}
@media print{.asklaunch{display:none}}
.askwrap[hidden]{display:none!important}
.askwrap{position:fixed;inset:0;z-index:90;display:grid;place-items:center;
  padding:clamp(14px,4vw,32px)}
.askwrap::before{content:"";position:absolute;inset:0;background:rgba(8,18,12,.62)}
.askbox{position:relative;width:min(560px,100%);max-height:90vh;overflow:auto;
  background:var(--surface);border:1px solid var(--line);box-shadow:var(--shadow);
  padding:clamp(1.4rem,1rem + 2vw,2.2rem)}
.askbox h2{font-size:clamp(1.4rem,1.2rem + 1vw,1.9rem);margin-bottom:.5rem}
.askbox .lede{color:var(--muted);margin-bottom:1.4rem;font-size:.95rem}
.askclose{position:absolute;top:.5rem;right:.5rem;width:38px;height:38px;
  background:none;border:0;cursor:pointer;color:var(--muted);font-size:1.5rem;line-height:1}
.askclose:hover{color:var(--ink)}
.gform.compact .row{grid-template-columns:1fr}
.gform.compact textarea{min-height:104px}

.morelinks{margin-top:1.6rem;font-size:.9rem;color:var(--muted)}
.morelinks a{color:var(--ink);text-decoration:underline;text-underline-offset:3px}
.morelinks a:hover{color:var(--green)}

.skip{position:absolute;left:-9999px;top:0;background:var(--green);color:#fff;
  padding:.7rem 1.1rem;z-index:99}
.skip:focus{left:0}
.loading{padding:5rem 0;text-align:center;color:var(--muted);font-size:.9rem}
