:root{
  /* Lifted, moody navy — dark but no longer near-black */
  --bg-0:#0c1424;
  --bg-1:#121c31;
  --bg-2:#18243e;
  --bg-3:#1e2c4a;
  --border:#27375a;
  --border-soft:#1f2d4a;
  --blue:#4d8dff;
  --blue-dark:#2f6fe4;
  --blue-light:#8ab4ff;
  --cyan:#22d3ee;
  --text:#e9eefb;
  --text-2:#a8b8d4;
  --text-3:#7d8fb0;
  --glow:0 18px 50px -20px rgba(77,141,255,.35);
  --radius:14px;
  --maxw:1200px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:90px}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  background:var(--bg-0);
  color:var(--text);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* ---------- Ambient background ---------- */
.bg-grid,.bg-glow{position:fixed;inset:0;pointer-events:none;z-index:0}
.bg-grid{
  background-image:
    linear-gradient(rgba(122,166,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(122,166,255,.045) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse at 50% 0%,#000 0%,transparent 75%);
  -webkit-mask-image:radial-gradient(ellipse at 50% 0%,#000 0%,transparent 75%);
}
.bg-glow{
  background:
    radial-gradient(60rem 40rem at 18% 8%,rgba(77,141,255,.14),transparent 60%),
    radial-gradient(50rem 36rem at 85% 30%,rgba(34,211,238,.08),transparent 60%),
    radial-gradient(45rem 30rem at 50% 95%,rgba(77,141,255,.07),transparent 60%);
}

/* ---------- Nav ---------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.1rem 2rem;
  background:rgba(12,20,36,.72);
  backdrop-filter:blur(18px) saturate(140%);
  border-bottom:1px solid transparent;
  transition:padding .3s ease,background .3s ease,border-color .3s ease;
}
.nav.scrolled{padding:.7rem 2rem;background:rgba(12,20,36,.94);border-bottom-color:var(--border-soft)}
.nav-logo{display:flex;align-items:center;gap:.7rem;text-decoration:none}
/* Logo art carries a near-black backdrop; `screen` dissolves it into dark surfaces */
.nav-logo img{height:42px;width:auto;mix-blend-mode:screen;transition:filter .3s ease}
.nav-logo:hover img{filter:drop-shadow(0 0 12px rgba(77,141,255,.55))}
.nav-logo span{font-size:1.2rem;font-weight:700;letter-spacing:-.02em;color:var(--text)}
.nav-links{display:flex;align-items:center;gap:1.9rem;list-style:none}
.nav-links a{position:relative;color:var(--text-2);text-decoration:none;font-size:.9rem;font-weight:500;transition:color .2s}
.nav-links a:hover{color:var(--text)}
.nav-links a:not(.nav-cta)::after{
  content:'';position:absolute;left:0;bottom:-5px;width:0;height:2px;
  background:linear-gradient(90deg,var(--blue),var(--cyan));transition:width .3s ease;
}
.nav-links a:not(.nav-cta):hover::after{width:100%}
.nav-cta{
  background:var(--blue);color:#fff!important;padding:.6rem 1.35rem;border-radius:8px;
  font-weight:600;box-shadow:0 6px 18px -8px rgba(77,141,255,.9);
}
.nav-cta:hover{background:var(--blue-dark);transform:translateY(-1px);box-shadow:0 10px 26px -8px rgba(77,141,255,.95)}
.mobile-toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:6px}
.mobile-toggle span{width:24px;height:2px;background:var(--text);border-radius:2px;transition:.3s}

/* ---------- Buttons ---------- */
.btn-primary,.btn-secondary{
  display:inline-flex;align-items:center;gap:.55rem;
  padding:.95rem 1.9rem;border-radius:10px;text-decoration:none;
  font-weight:600;font-size:.98rem;cursor:pointer;transition:all .3s ease;
}
.btn-primary{background:var(--blue);color:#fff;border:1px solid var(--blue);box-shadow:0 10px 30px -14px rgba(77,141,255,.9)}
.btn-primary:hover{background:var(--blue-dark);transform:translateY(-2px);box-shadow:0 16px 40px -14px rgba(77,141,255,1)}
.btn-secondary{background:rgba(255,255,255,.03);color:var(--text);border:1px solid var(--border)}
.btn-secondary:hover{border-color:var(--blue);background:rgba(77,141,255,.09);transform:translateY(-2px)}

/* ---------- Shared section furniture ---------- */
section{position:relative;z-index:1;padding:6.5rem 2rem}
.wrap{max-width:var(--maxw);margin:0 auto}
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.76rem;font-weight:700;color:var(--blue-light);
  text-transform:uppercase;letter-spacing:.16em;margin-bottom:1rem;
}
.eyebrow::before{content:'';width:22px;height:1px;background:linear-gradient(90deg,var(--blue),transparent)}
.s-title{font-size:clamp(2rem,4vw,2.9rem);font-weight:800;letter-spacing:-.025em;line-height:1.15;margin-bottom:1rem}
.s-sub{font-size:1.06rem;color:var(--text-2);max-width:660px;margin-bottom:3.25rem}
.grad{background:linear-gradient(115deg,var(--text) 10%,var(--blue-light) 55%,var(--cyan) 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}

/* ---------- Hero ---------- */
.hero{min-height:100vh;display:flex;align-items:center;padding:9rem 2rem 5rem}
.masthead{
  padding-bottom:1.5rem;margin-bottom:2rem;
  border-bottom:1px solid var(--border-soft);
  position:relative;
}
.masthead::after{
  content:'';position:absolute;left:0;bottom:-1px;width:180px;height:1px;
  background:linear-gradient(90deg,var(--blue),var(--cyan),transparent);
}
.masthead-name{
  font-size:clamp(1.5rem,3.6vw,2.35rem);font-weight:800;line-height:1.1;
  letter-spacing:.14em;text-transform:uppercase;
}
.masthead-tag{
  font-size:.8rem;font-weight:600;color:var(--blue-light);
  letter-spacing:.2em;text-transform:uppercase;margin-top:.45rem;
}
.hero-pill{
  display:inline-flex;align-items:center;gap:.6rem;
  background:rgba(77,141,255,.1);border:1px solid rgba(77,141,255,.28);
  padding:.42rem 1.05rem;border-radius:999px;font-size:.78rem;font-weight:600;
  color:var(--blue-light);letter-spacing:.09em;text-transform:uppercase;margin-bottom:2rem;
}
.hero-pill::before{content:'';width:7px;height:7px;border-radius:50%;background:var(--cyan);box-shadow:0 0 12px var(--cyan);animation:pulse 2.2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.35;transform:scale(.82)}}
.hero h1{font-size:clamp(2.7rem,6.6vw,5rem);font-weight:900;line-height:1.04;letter-spacing:-.035em;margin-bottom:1.4rem}
.hero-lead{font-size:1.22rem;color:var(--text-2);max-width:640px;margin-bottom:2.6rem;line-height:1.72}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:3.5rem}
.hero-meta{display:flex;gap:2.25rem;flex-wrap:wrap;font-size:.85rem;color:var(--text-3)}
.hero-meta div{display:flex;align-items:center;gap:.5rem}
.hero-meta svg{width:16px;height:16px;stroke:var(--blue);flex-shrink:0}

/* ---------- Stat strip ---------- */
.strip{position:relative;z-index:1;background:var(--bg-1);border-top:1px solid var(--border-soft);border-bottom:1px solid var(--border-soft);padding:3rem 2rem}
.strip-grid{max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;text-align:center}
.strip-num{font-family:'JetBrains Mono',monospace;font-size:2.1rem;font-weight:600;color:var(--blue-light)}
.strip-lbl{font-size:.76rem;color:var(--text-3);text-transform:uppercase;letter-spacing:.13em;margin-top:.4rem}

/* ---------- Outcomes ---------- */
.outcomes{background:var(--bg-0)}
.out-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.out-card{padding:1.9rem 1.6rem;background:var(--bg-1);border:1px solid var(--border-soft);border-radius:var(--radius);transition:all .35s ease}
.out-card:hover{border-color:rgba(77,141,255,.4);transform:translateY(-4px);box-shadow:var(--glow)}
.out-card svg{width:26px;height:26px;stroke:var(--blue);margin-bottom:1rem}
.out-card h3{font-size:1.02rem;font-weight:700;margin-bottom:.5rem}
.out-card p{font-size:.88rem;color:var(--text-2);line-height:1.6}

/* ---------- Services ---------- */
.services{background:var(--bg-1);border-top:1px solid var(--border-soft)}
.svc-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.svc{
  position:relative;overflow:hidden;
  background:var(--bg-2);border:1px solid var(--border);border-radius:var(--radius);
  padding:2.1rem;transition:all .4s cubic-bezier(.2,.7,.3,1);
}
.svc::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,var(--blue),var(--cyan));
  transform:scaleX(0);transform-origin:left;transition:transform .45s ease;
}
.svc:hover{border-color:rgba(77,141,255,.45);transform:translateY(-5px);box-shadow:var(--glow);background:var(--bg-3)}
.svc:hover::before{transform:scaleX(1)}
.svc-head{display:flex;align-items:flex-start;gap:1.1rem;margin-bottom:1.1rem}
.svc-ico{
  flex-shrink:0;width:50px;height:50px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(150deg,rgba(77,141,255,.18),rgba(34,211,238,.08));
  border:1px solid rgba(77,141,255,.24);
}
.svc-ico svg{width:24px;height:24px;stroke:var(--blue-light)}
.svc h3{font-size:1.16rem;font-weight:700;letter-spacing:-.01em;line-height:1.3}
.svc-tag{display:block;font-size:.74rem;font-weight:600;color:var(--cyan);text-transform:uppercase;letter-spacing:.11em;margin-top:.3rem}
.svc-body{font-size:.92rem;color:var(--text-2);line-height:1.72;margin-bottom:1.3rem}
.svc-list{list-style:none;display:grid;gap:.55rem}
.svc-list li{position:relative;padding-left:1.4rem;font-size:.86rem;color:var(--text-3)}
.svc-list li::before{
  content:'';position:absolute;left:0;top:.55em;width:6px;height:6px;border-radius:50%;
  background:var(--blue);box-shadow:0 0 8px rgba(77,141,255,.7);
}

/* ---------- Expertise chips ---------- */
.expertise{background:var(--bg-0)}
.exp-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(215px,1fr));gap:.9rem}
.exp{
  display:flex;align-items:center;gap:.8rem;padding:1rem 1.15rem;
  background:var(--bg-1);border:1px solid var(--border-soft);border-radius:10px;
  font-size:.9rem;font-weight:500;transition:all .3s ease;
}
.exp:hover{border-color:rgba(77,141,255,.45);background:var(--bg-2);transform:translateY(-2px)}
.exp svg{width:19px;height:19px;stroke:var(--blue);flex-shrink:0}

/* ---------- AI capability feature ---------- */
.ai{background:var(--bg-1);border-top:1px solid var(--border-soft);border-bottom:1px solid var(--border-soft)}
.ai-top{display:grid;grid-template-columns:1.05fr .95fr;gap:4rem;align-items:center;margin-bottom:3.5rem}
.ai-quote{
  background:var(--bg-2);border:1px solid var(--border);border-left:3px solid var(--blue);
  border-radius:12px;padding:2.1rem;position:relative;
}
.ai-quote p{font-size:1.24rem;font-weight:600;line-height:1.5;letter-spacing:-.015em;margin-bottom:1rem}
.ai-quote cite{font-style:normal;font-size:.85rem;color:var(--text-3)}
.ai-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.ai-card{padding:1.8rem 1.5rem;background:var(--bg-2);border:1px solid var(--border);border-radius:var(--radius);transition:all .35s ease}
.ai-card:hover{border-color:rgba(34,211,238,.4);transform:translateY(-4px)}
.ai-card svg{width:24px;height:24px;stroke:var(--cyan);margin-bottom:.9rem}
.ai-card h4{font-size:.98rem;font-weight:700;margin-bottom:.45rem}
.ai-card p{font-size:.85rem;color:var(--text-2);line-height:1.6}
.ai-list{list-style:none;display:grid;gap:1rem;margin-top:1.5rem}
.ai-list li{display:flex;gap:.85rem;font-size:.93rem;color:var(--text-2);line-height:1.6}
.ai-list svg{width:18px;height:18px;stroke:var(--cyan);flex-shrink:0;margin-top:.3rem}

/* ---------- Methodology ---------- */
.method{background:var(--bg-0)}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;position:relative}
.step{position:relative;padding:2rem 1.6rem;background:var(--bg-1);border:1px solid var(--border-soft);border-radius:var(--radius);transition:all .35s ease}
.step:hover{border-color:rgba(77,141,255,.4);transform:translateY(-4px);box-shadow:var(--glow)}
.step-n{
  font-family:'JetBrains Mono',monospace;font-size:.8rem;font-weight:600;
  color:var(--blue);letter-spacing:.1em;margin-bottom:.9rem;display:block;
}
.step h3{font-size:1.02rem;font-weight:700;margin-bottom:.6rem;line-height:1.35}
.step p{font-size:.87rem;color:var(--text-2);line-height:1.65}

/* ---------- About / Tim ---------- */
.about{background:var(--bg-1);border-top:1px solid var(--border-soft)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.about-copy p{color:var(--text-2);margin-bottom:1.3rem;line-height:1.8}
.profile{
  background:var(--bg-2);border:1px solid var(--border);border-radius:16px;
  padding:2.4rem;position:relative;overflow:hidden;
}
.profile::after{
  content:'';position:absolute;top:-40%;right:-30%;width:80%;height:80%;
  background:radial-gradient(circle,rgba(77,141,255,.13),transparent 70%);pointer-events:none;
}
.profile-top{display:flex;align-items:center;gap:1.1rem;margin-bottom:1.6rem}
.profile-badge{
  width:56px;height:56px;border-radius:14px;display:grid;place-items:center;flex-shrink:0;
  background:linear-gradient(150deg,rgba(77,141,255,.2),rgba(34,211,238,.08));
  border:1px solid rgba(77,141,255,.3);font-family:'JetBrains Mono',monospace;
  font-weight:600;font-size:1.15rem;color:var(--blue-light);
}
.profile-name{font-size:1.5rem;font-weight:800;letter-spacing:-.02em;line-height:1.2}
.profile-role{color:var(--blue-light);font-weight:500;font-size:.9rem}
.profile p{font-size:.93rem;color:var(--text-2);line-height:1.75;margin-bottom:1.1rem}
.cert-label{font-size:.74rem;font-weight:700;color:var(--text-3);text-transform:uppercase;letter-spacing:.14em;margin:1.8rem 0 .9rem}
.certs{display:flex;flex-wrap:wrap;gap:.55rem}
.cert{
  font-family:'JetBrains Mono',monospace;font-size:.78rem;font-weight:500;
  padding:.45rem .85rem;border-radius:7px;color:var(--blue-light);
  background:rgba(77,141,255,.09);border:1px solid rgba(77,141,255,.24);
  transition:all .25s ease;
}
.cert:hover{background:rgba(77,141,255,.18);transform:translateY(-2px)}
.cert.hero-cert{color:var(--cyan);background:rgba(34,211,238,.1);border-color:rgba(34,211,238,.35);font-weight:600}

/* ---------- Differentiators ---------- */
.why{background:var(--bg-0)}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.why-card{padding:2.2rem 1.9rem;background:var(--bg-1);border:1px solid var(--border-soft);border-radius:var(--radius);transition:all .35s ease}
.why-card:hover{border-color:rgba(77,141,255,.4);transform:translateY(-4px);box-shadow:var(--glow)}
.why-card svg{width:28px;height:28px;stroke:var(--blue);margin-bottom:1.1rem}
.why-card h3{font-size:1.06rem;font-weight:700;margin-bottom:.65rem}
.why-card p{font-size:.9rem;color:var(--text-2);line-height:1.7}

/* ---------- Compliance ---------- */
.comp{background:var(--bg-1);border-top:1px solid var(--border-soft);border-bottom:1px solid var(--border-soft)}
.comp-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:.85rem;margin-top:2.5rem}
.comp-item{
  padding:1rem 1.15rem;background:var(--bg-2);border:1px solid var(--border);border-radius:9px;
  font-family:'JetBrains Mono',monospace;font-size:.82rem;color:var(--text-2);
  text-align:center;transition:all .3s ease;
}
.comp-item:hover{color:var(--blue-light);border-color:rgba(77,141,255,.45);transform:translateY(-2px)}

/* ---------- FAQ ---------- */
.faq{background:var(--bg-0)}
.faq-list{display:grid;gap:.85rem;max-width:860px}
details{background:var(--bg-1);border:1px solid var(--border-soft);border-radius:11px;overflow:hidden;transition:border-color .3s}
details[open]{border-color:rgba(77,141,255,.35)}
summary{
  cursor:pointer;list-style:none;padding:1.25rem 1.5rem;
  font-weight:600;font-size:.98rem;display:flex;align-items:center;
  justify-content:space-between;gap:1rem;transition:color .2s;
}
summary::-webkit-details-marker{display:none}
summary:hover{color:var(--blue-light)}
summary::after{
  content:'';flex-shrink:0;width:10px;height:10px;
  border-right:2px solid var(--blue);border-bottom:2px solid var(--blue);
  transform:rotate(45deg);transition:transform .3s ease;
}
details[open] summary::after{transform:rotate(-135deg)}
details p{padding:0 1.5rem 1.4rem;font-size:.92rem;color:var(--text-2);line-height:1.75}

/* ---------- CTA ---------- */
.cta{background:var(--bg-1);border-top:1px solid var(--border-soft);text-align:center;padding:7.5rem 2rem}
.cta-pill{
  display:inline-flex;align-items:center;gap:.55rem;
  background:rgba(34,211,238,.1);border:1px solid rgba(34,211,238,.32);
  padding:.5rem 1.15rem;border-radius:999px;font-size:.8rem;font-weight:600;
  color:var(--cyan);letter-spacing:.08em;text-transform:uppercase;margin-bottom:1.8rem;
}
.cta-pill svg{width:15px;height:15px;stroke:var(--cyan)}
.cta h2{font-size:clamp(2.1rem,4.6vw,3.4rem);font-weight:900;letter-spacing:-.03em;margin-bottom:1.1rem;line-height:1.1}
.cta>.wrap>p{color:var(--text-2);font-size:1.1rem;max-width:620px;margin:0 auto 2.4rem}
.cta-scope{
  display:flex;justify-content:center;gap:2rem;flex-wrap:wrap;
  margin-top:3rem;font-size:.86rem;color:var(--text-3);
}
.cta-scope div{display:flex;align-items:center;gap:.5rem}
.cta-scope svg{width:16px;height:16px;stroke:var(--cyan)}

/* ---------- Footer ---------- */
.footer{position:relative;z-index:1;background:var(--bg-0);border-top:1px solid var(--border-soft);padding:4.5rem 2rem 2rem}
.f-grid{max-width:var(--maxw);margin:0 auto 3rem;display:grid;grid-template-columns:2fr 1fr 1fr 1.1fr;gap:3rem}
.f-brand p{color:var(--text-3);font-size:.89rem;margin-top:1rem;line-height:1.75;max-width:340px}
.f-col h4{font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.13em;margin-bottom:1.2rem;color:var(--text)}
.f-col ul{list-style:none}
.f-col li{margin-bottom:.7rem}
.f-col a,.f-col span{color:var(--text-3);text-decoration:none;font-size:.89rem;transition:color .2s}
.f-col a:hover{color:var(--blue-light)}
/* The footer CTA is a button, not a link — don't let the dim link colour win on specificity */
.f-col a.btn-primary{
  color:#fff;font-size:.86rem;font-weight:600;margin-top:1.1rem;
  padding:.75rem 1.35rem;box-shadow:0 8px 24px -10px rgba(77,141,255,1);
}
.f-col a.btn-primary:hover{color:#fff;background:var(--blue-dark);box-shadow:0 12px 30px -10px rgba(77,141,255,1)}
.f-bottom{
  max-width:var(--maxw);margin:0 auto;display:flex;justify-content:space-between;
  align-items:center;gap:1rem;padding-top:2rem;border-top:1px solid var(--border-soft);
  font-size:.83rem;color:var(--text-3);
}

/* ---------- Reveal ---------- */
.fade{opacity:0;transform:translateY(26px);transition:opacity .75s ease,transform .75s ease}
.fade.in{opacity:1;transform:none}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar{width:9px}
::-webkit-scrollbar-track{background:var(--bg-0)}
::-webkit-scrollbar-thumb{background:var(--border);border-radius:5px}
::-webkit-scrollbar-thumb:hover{background:var(--blue-dark)}
::selection{background:rgba(77,141,255,.3);color:#fff}

/* ---------- Responsive ---------- */
@media(max-width:1024px){
  .svc-grid,.ai-top,.about-grid{grid-template-columns:1fr}
  .ai-top,.about-grid{gap:2.5rem}
  .out-grid,.steps,.ai-cards{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:1fr}
  .f-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  section{padding:4.5rem 1.25rem}
  .nav{padding:.9rem 1.25rem}
  .nav.scrolled{padding:.7rem 1.25rem}
  .nav-links{
    display:none;position:absolute;top:100%;left:0;right:0;flex-direction:column;
    align-items:flex-start;gap:1.3rem;padding:1.75rem 1.25rem 2rem;
    background:rgba(12,20,36,.98);border-bottom:1px solid var(--border);
  }
  .nav-links.active{display:flex}
  .mobile-toggle{display:flex}
  .hero{padding:7.5rem 1.25rem 4rem;min-height:auto}
  .hero-meta{gap:1rem;flex-direction:column}
  .masthead{padding-bottom:1.15rem;margin-bottom:1.6rem}
  .masthead-name{letter-spacing:.1em}
  .masthead-tag{font-size:.7rem;letter-spacing:.16em}
  .strip-grid,.out-grid,.steps,.ai-cards{grid-template-columns:repeat(2,1fr)}
  .f-grid,.f-bottom{grid-template-columns:1fr;flex-direction:column;text-align:center}
  .f-brand p{max-width:none}
  .f-brand .nav-logo{justify-content:center}
  .cta-scope{flex-direction:column;align-items:center;gap:.85rem}
}
@media(max-width:480px){
  .strip-grid,.out-grid,.steps,.ai-cards{grid-template-columns:1fr}
}

/* ──────────────────────────────────────────────────────────────
   Utilities
   These replace what used to be inline style="" attributes. They
   live last in the file so they win specificity ties against the
   section rules above (same reason .f-col a.btn-primary exists).
   Removing them means the CSP has to allow 'unsafe-inline' again.
   ────────────────────────────────────────────────────────────── */
.hl{color:var(--text)}
.hl-blue{color:var(--blue-light)}
.body-copy{color:var(--text-2);line-height:1.8}
.mb-xs{margin-bottom:.5rem}
.mb-0{margin-bottom:0}
.mt-lg{margin-top:1.6rem}
.mt-xl{margin-top:1.8rem}
a.btn-sm{padding:.7rem 1.3rem;font-size:.88rem}
.footnote{margin-top:2.5rem;font-size:.9rem;color:var(--text-3)}
a.link-email{color:var(--blue-light);text-decoration:none;font-weight:500}
/* Footer reuses .nav-logo, so these must outrank .nav-logo img / .nav-logo span */
.f-brand .nav-logo img{height:38px}
.f-brand .nav-logo span.f-logo-text{font-size:1.1rem}
