/* ============================================================
   CROZENT — corporate design system
   Generated pages share this single stylesheet.
   ============================================================ */

:root {
  /* Brand — taken from the Crozent logo */
  --navy-950: #060a12;
  --navy-900: #0a1020;
  --navy-800: #111a2d;
  --navy-700: #12326e;
  --brand:    #1f4287;
  --brand-600:#2451b8;
  --brand-500:#3168d8;
  --brand-400:#5b8cf0;
  --brand-100:#dbe6ff;
  --brand-50: #eef3ff;

  --gold:     #f0b437;
  --gold-600: #d1962a;
  --teal:     #12b8a6;

  /* Neutrals */
  --ink:      #0b1526;
  --text:     #1e2a3f;
  --muted:    #5c6880;
  --muted-2:  #8792a6;
  --line:     #e3e8f0;
  --line-2:   #eef1f6;
  --surface:  #ffffff;
  --surface-2:#f6f8fc;
  --surface-3:#eef2f9;

  /* Type */
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-brand: "Montserrat", var(--font);

  /* Metrics — deliberately compact */
  --wrap: 1220px;
  --wrap-narrow: 960px;
  --gutter: clamp(16px, 3.6vw, 32px);
  --sec-y: clamp(44px, 5.4vw, 76px);
  --gap: clamp(14px, 1.5vw, 20px);
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;

  --shadow-xs: 0 1px 2px rgba(11, 21, 38, .05);
  --shadow-sm: 0 2px 6px rgba(11, 21, 38, .06), 0 1px 2px rgba(11, 21, 38, .04);
  --shadow-md: 0 10px 28px rgba(11, 21, 38, .10);
  --shadow-lg: 0 28px 64px rgba(11, 21, 38, .16);
  --ring: 0 0 0 4px rgba(49, 104, 216, .16);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--brand-500); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.14; letter-spacing: -.028em; font-weight: 800; }
h1 { font-size: clamp(2.05rem, 4vw, 3.05rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.06rem, 1.5vw, 1.22rem); letter-spacing: -.02em; }
h4 { font-size: 1rem; }
p { color: var(--muted); }
.lead { font-size: clamp(1rem, 1.35vw, 1.1rem); color: var(--muted); line-height: 1.62; }
.small { font-size: .875rem; }
.tiny { font-size: .8rem; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--sec-y); }
.section--tight { padding-block: calc(var(--sec-y) * .62); }
.section--flush-top { padding-top: 0; }
.section--tint { background: var(--surface-2); }
.section--deep { background: var(--navy-900); color: #fff; }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep p { color: rgba(255,255,255,.68); }
.section--line { border-top: 1px solid var(--line); }
.center { text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-600); margin-bottom: 12px;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--brand-500); border-radius: 2px; }
.section--deep .kicker { color: var(--brand-400); }
.section--deep .kicker::before { background: var(--brand-400); }

/* Category heading with an icon tile, used on the services page */
.cat-head { display: flex; align-items: flex-start; gap: 14px; }
.cat-head__ico {
  width: 46px; height: 46px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-600)); color: #fff;
  box-shadow: 0 6px 16px rgba(31, 66, 135, .28);
}
.cat-head__ico svg { width: 22px; height: 22px; }
.cat-head h2 { margin-bottom: 6px; }
@media (max-width: 560px) { .cat-head { flex-direction: column; gap: 10px; } }

.head { max-width: 760px; margin-bottom: clamp(22px, 2.6vw, 34px); }
.head.center { margin-inline: auto; }
.head p { margin-top: 10px; }

.grid { display: grid; gap: var(--gap); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) { .g4, .g5 { grid-template-columns: repeat(2, 1fr); } .g3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .g2, .g3, .g4, .g5 { grid-template-columns: 1fr; } }

/* Connected grid — cards share hairlines instead of floating apart */
.grid--merged {
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
}
.grid--merged > * { background: var(--surface); border-radius: 0 !important; border: 0 !important; box-shadow: none !important; }
.grid--merged > *:hover { background: var(--surface-2); transform: none !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 9px; border: 1px solid transparent;
  background: var(--brand); color: #fff; font-weight: 700; font-size: .92rem;
  cursor: pointer; white-space: nowrap; position: relative; overflow: hidden;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s ease, border-color .18s ease;
  box-shadow: 0 4px 14px rgba(29, 63, 145, .26);
}
.btn:hover { background: var(--brand-600); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(29, 63, 145, .32); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--lg { padding: 14px 26px; font-size: .98rem; }
.btn--sm { padding: 8px 14px; font-size: .84rem; }
.btn--gold { background: var(--gold); color: #241a00; box-shadow: 0 4px 14px rgba(240, 180, 55, .34); }
.btn--gold:hover { background: var(--gold-600); box-shadow: 0 10px 22px rgba(240, 180, 55, .4); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { background: var(--surface-2); border-color: #cbd4e3; color: var(--ink); box-shadow: var(--shadow-xs); }
.btn--light { background: #fff; color: var(--navy-800); box-shadow: 0 6px 18px rgba(0,0,0,.16); }
.btn--light:hover { background: #eff4ff; color: var(--navy-800); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); box-shadow: none; }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
.center .btn-row { justify-content: center; }

.alink { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-600); font-weight: 700; font-size: .88rem; }
.alink i { font-style: normal; transition: transform .2s var(--ease); }
.alink:hover i { transform: translateX(4px); }

/* ---------- Brand lockup ---------- */
.brand { display: inline-flex; align-items: center; }
/* Height also set inline on the element as a stale-cache safeguard */
.brand__img { height: 38px; width: auto; display: block; }
/* Official artwork is navy; invert to solid white on dark backgrounds */
.brand--light .brand__img { filter: brightness(0) invert(1); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line); transition: box-shadow .25s ease;
}
.header.is-stuck { box-shadow: 0 6px 24px rgba(11, 21, 38, .08); }
.header__inner { display: flex; align-items: center; gap: 14px; min-height: 66px; }
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: flex; align-items: center; gap: 5px; padding: 8px 12px; border-radius: 8px;
  font-size: .9rem; font-weight: 600; color: var(--text); white-space: nowrap;
  transition: color .16s ease, background .16s ease;
}
.nav__link:hover { color: var(--brand-600); background: var(--brand-50); }
.nav__link[aria-current="page"] { color: var(--brand-600); background: var(--brand-50); }
.nav__link svg { width: 13px; height: 13px; transition: transform .2s ease; }
.nav__cta { margin-left: 8px; }

/* Dropdown / mega menu */
.has-menu { position: relative; }
.menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px);
  min-width: 560px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 14px; opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s var(--ease), visibility .2s;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.has-menu:hover .menu, .has-menu:focus-within .menu, .menu.is-open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.has-menu:hover .nav__link svg { transform: rotate(180deg); }
.menu__item { display: flex; gap: 11px; padding: 11px; border-radius: 10px; transition: background .16s ease; }
.menu__item:hover { background: var(--surface-2); }
.menu__ico {
  width: 34px; height: 34px; flex: none; border-radius: 8px; display: grid; place-items: center;
  background: var(--brand-50); color: var(--brand-600);
}
.menu__ico svg { width: 17px; height: 17px; }
.menu__t { font-weight: 700; font-size: .89rem; color: var(--ink); }
.menu__d { font-size: .78rem; color: var(--muted); line-height: 1.45; }
.menu__foot {
  grid-column: 1 / -1; margin-top: 6px; padding: 12px 13px; border-radius: 10px;
  background: linear-gradient(100deg, var(--navy-800), var(--brand)); color: #fff;
  display: flex; align-items: center; gap: 12px;
}
.menu__foot p { color: rgba(255,255,255,.72); font-size: .8rem; }
.menu__foot strong { font-size: .92rem; }
.menu__foot .btn { margin-left: auto; }

.burger {
  display: none; margin-left: auto; width: 40px; height: 40px; padding: 0; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 9px; cursor: pointer;
}
.burger span { position: relative; width: 17px; height: 2px; background: var(--ink); border-radius: 2px; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .24s var(--ease), top .2s ease;
}
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed; inset: auto 0 0; top: 0; margin: 0; background: #fff; z-index: 300;
    transform: translateX(100%); transition: transform .3s var(--ease);
    overflow-y: auto; padding: 76px var(--gutter) 32px; box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: 13px 12px; font-size: 1rem; border-radius: 10px; }
  .nav__cta { margin: 12px 0 0; }
  .nav__cta .btn { width: 100%; }
  .menu {
    position: static; transform: none; opacity: 1; visibility: visible; min-width: 0;
    box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0;
    padding: 2px 0 2px 10px; margin: 2px 0 6px 12px; grid-template-columns: 1fr;
    display: none;
  }
  .menu.is-open { display: grid; }
  .menu__foot { display: none; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(6,14,30,.5); opacity: 0; visibility: hidden; transition: .25s; z-index: 250; }
  .nav-scrim.is-on { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(52% 60% at 12% 8%, rgba(49,104,216,.55), transparent 62%),
    radial-gradient(45% 55% at 88% 18%, rgba(18,184,166,.26), transparent 60%),
    radial-gradient(60% 70% at 70% 100%, rgba(29,63,145,.6), transparent 65%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .3;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000, transparent);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000, transparent);
}
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero p { color: rgba(255,255,255,.72); }
.hero .kicker { color: var(--brand-400); }
.hero__inner { padding-block: clamp(46px, 6.4vw, 84px) clamp(34px, 4.4vw, 58px); }
.hero__grid { display: grid; grid-template-columns: 1.16fr .84fr; gap: clamp(26px, 4vw, 54px); align-items: center; }
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }
.hero__title em { font-style: normal; background: linear-gradient(96deg, #7fa8ff, #62e3d6); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { margin-top: 14px; max-width: 56ch; font-size: clamp(1rem, 1.3vw, 1.09rem); }
.hero .btn-row { margin-top: 22px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.hero__meta div { display: flex; align-items: center; gap: 7px; font-size: .84rem; color: rgba(255,255,255,.66); }
.hero__meta svg { width: 15px; height: 15px; color: var(--teal); }

/* Compact page hero for inner pages */
.hero--page .hero__inner { padding-block: clamp(30px, 3.6vw, 48px) clamp(30px, 3.6vw, 48px); }
.hero--page h1 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; font-size: .8rem; color: rgba(255,255,255,.56); margin-bottom: 12px; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .5; }

/* ---------- Home hero ----------
   Restrained: near-black ground, one cool wash, no competing accents. */
.hero--home { isolation: isolate; background: var(--navy-950); }
.hero--home::before, .hero--home::after { display: none; }
.hero--home .hero__inner { padding-block: clamp(64px, 8.5vw, 118px) clamp(60px, 8vw, 104px); }
.hero--home .hero__grid { grid-template-columns: 1.04fr .96fr; gap: clamp(40px, 5.5vw, 76px); align-items: center; }
@media (max-width: 980px) { .hero--home .hero__grid { grid-template-columns: 1fr; } }

.hero__wash {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(58% 62% at 22% 0%, rgba(49, 104, 216, .28), transparent 68%),
    radial-gradient(46% 54% at 96% 92%, rgba(31, 66, 135, .32), transparent 70%);
}
.hero__wash::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(72% 66% at 40% 34%, #000, transparent);
  -webkit-mask-image: radial-gradient(72% 66% at 40% 34%, #000, transparent);
}

/* Editorial label instead of a pill */
.eyebrow-line {
  display: inline-flex; align-items: center; gap: 11px; margin-bottom: 22px;
  font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.eyebrow-line::before { content: ""; width: 30px; height: 1px; background: rgba(255, 255, 255, .3); }

.hero--home .hero__title {
  font-size: clamp(2.35rem, 4.9vw, 3.9rem); line-height: 1.06; letter-spacing: -.04em; font-weight: 800;
  max-width: 18ch;
}
.hero--home .hero__title em { font-style: normal; color: rgba(255, 255, 255, .55); background: none; -webkit-text-fill-color: currentColor; }
.hero__sub {
  margin-top: 20px; max-width: 50ch; font-size: clamp(1rem, 1.2vw, 1.09rem);
  line-height: 1.68; color: rgba(255, 255, 255, .62);
}
.hero--home .btn-row { margin-top: 30px; }

.hero__trust {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px;
  margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1);
}
.hero__trust > span:first-child {
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
}
.hero__sectors { font-size: .86rem; color: rgba(255, 255, 255, .58); }

/* Hero pill */
.hpill {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px;
  padding: 8px 16px 8px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .15);
  color: #dce8ff; font-size: .8rem; font-weight: 650; letter-spacing: .01em;
  backdrop-filter: blur(6px);
}
.hpill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(18,184,166,.18); }
.hpill svg { width: 15px; height: 15px; color: var(--gold); }

/* Capability chips */
.hchips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hchip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 9px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .82); font-size: .82rem; font-weight: 600;
}
.hchip svg { width: 15px; height: 15px; color: var(--brand-400); }

/* ---------- Interface mock ---------- */
.hero__viz { position: relative; }
.ui {
  border-radius: 14px; overflow: hidden; background: #fff;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5), 0 2px 8px rgba(0, 0, 0, .3);
}
.ui__chrome {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px;
  background: #f3f5f9; border-bottom: 1px solid #e3e8f0;
}
.ui__dot { width: 8px; height: 8px; border-radius: 50%; background: #d3dae6; }
.ui__tab {
  margin-left: 12px; padding: 4px 12px; border-radius: 6px; background: #fff;
  border: 1px solid #e3e8f0; font-size: .7rem; font-weight: 700; color: var(--muted);
}
.ui__body { display: grid; grid-template-columns: 116px 1fr; min-height: 292px; }

.ui__side { padding: 14px 10px; background: #fbfcfe; border-right: 1px solid #eef1f6; display: grid; gap: 3px; align-content: start; }
.ui__brand { width: 20px; height: 20px; border-radius: 6px; background: linear-gradient(135deg, var(--brand), var(--brand-500)); margin: 2px 0 12px 8px; }
.ui__nav {
  padding: 7px 10px; border-radius: 6px; font-size: .72rem; font-weight: 600; color: var(--muted-2);
}
.ui__nav.is-on { background: var(--brand-50); color: var(--brand-600); font-weight: 700; }

.ui__main { padding: 16px; display: grid; gap: 14px; align-content: start; }
.ui__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.ui__kpi { border: 1px solid #eef1f6; border-radius: 9px; padding: 10px 11px; background: #fff; }
.ui__kpi-l { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted-2); }
.ui__kpi b { display: block; margin-top: 3px; font-size: 1.02rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.ui__kpi i { font-style: normal; font-size: .64rem; font-weight: 700; color: #0b7a6c; }

.ui__chart { display: flex; align-items: flex-end; gap: 5px; height: 78px; padding: 0 2px; }
.ui__chart span {
  flex: 1; border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--brand-500), rgba(49, 104, 216, .22));
  transform-origin: bottom;
}
@media (prefers-reduced-motion: no-preference) {
  .ui__chart span { animation: grow .7s var(--ease) both; }
}

.ui__rows { display: grid; gap: 6px; }
.ui__row { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border: 1px solid #eef1f6; border-radius: 8px; }
.ui__av { width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, #cdd8ea, #eef1f6); flex: none; }
.ui__nm { font-size: .74rem; font-weight: 650; color: var(--text); }
.ui__pill {
  margin-left: auto; font-size: .62rem; font-weight: 800; padding: 3px 9px; border-radius: 999px;
  background: var(--surface-3); color: var(--muted);
}
.ui__pill--on { background: #e6faf7; color: #0b7a6c; }

@media (max-width: 560px) {
  .ui__body { grid-template-columns: 1fr; }
  .ui__side { display: none; }
}

/* Composed product visual */
.hviz { position: relative; perspective: 1400px; }
.hviz__window {
  border-radius: 16px; overflow: hidden; background: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 40px 80px rgba(2, 8, 23, .55), 0 0 0 1px rgba(255, 255, 255, .06);
  transform: rotateY(-9deg) rotateX(4deg) translateZ(0);
  transition: transform .5s var(--ease);
}
.hviz:hover .hviz__window { transform: rotateY(-4deg) rotateX(2deg); }
@media (max-width: 980px) { .hviz__window, .hviz:hover .hviz__window { transform: none; } }
.hviz__bar {
  display: flex; align-items: center; gap: 6px; padding: 11px 14px;
  background: #0f2450; border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.hviz__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .26); }
.hviz__dot:first-child { background: #12b8a6; }
.hviz__url {
  display: inline-flex; align-items: center; gap: 6px; margin-left: 12px;
  padding: 4px 12px; border-radius: 999px; background: rgba(255, 255, 255, .09);
  font-size: .72rem; font-weight: 600; color: rgba(255, 255, 255, .7);
}
.hviz__url svg { width: 11px; height: 11px; }
.hviz__window img { width: 100%; height: auto; display: block; }

/* Floating stat cards */
.hcard {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 11px 15px; border-radius: 13px;
  background: rgba(12, 24, 50, .82); border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 18px 40px rgba(2, 8, 23, .5); backdrop-filter: blur(10px);
}
.hcard b { display: block; color: #fff; font-size: .92rem; font-weight: 800; line-height: 1.2; }
.hcard i { font-style: normal; font-size: .74rem; color: rgba(255, 255, 255, .6); }
.hcard__ico {
  width: 32px; height: 32px; flex: none; border-radius: 9px; display: grid; place-items: center;
  background: rgba(18, 184, 166, .18); color: #6ee7d5; border: 1px solid rgba(18, 184, 166, .26);
}
.hcard__ico--gold { background: rgba(240, 180, 55, .18); color: #f6cf7d; border-color: rgba(240, 180, 55, .28); }
.hcard__ico svg { width: 16px; height: 16px; }
.hcard--a { top: 22%; left: -34px; }
.hcard--b { bottom: -24px; right: -14px; }
@media (prefers-reduced-motion: no-preference) {
  .hcard--a { animation: bob 6s ease-in-out infinite; }
  .hcard--b { animation: bob 7.5s ease-in-out infinite reverse; }
  @keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
}
@media (max-width: 620px) {
  .hcard--a { top: 16%; left: -6px; }
  .hcard--b { bottom: -16px; right: -6px; }
  .hcard { padding: 9px 12px; }
  .hcard b { font-size: .84rem; }
}

/* Hero stack visual */
.stackvis {
  position: relative; display: grid; gap: 9px; padding: 18px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg); backdrop-filter: blur(10px); box-shadow: var(--shadow-lg);
}
.stackvis__head {
  display: flex; align-items: center; gap: 9px; padding-bottom: 12px; margin-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
}
.stackvis__live { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(18, 184, 166, .18); }
@media (prefers-reduced-motion: no-preference) {
  .stackvis__live { animation: pulse 2.4s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(18,184,166,.15); } 50% { box-shadow: 0 0 0 7px rgba(18,184,166,.05); } }
}
.slayer {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .09);
  transition: transform .22s var(--ease), background .22s ease;
}
.slayer:hover { transform: translateX(4px); background: rgba(255, 255, 255, .1); }
.slayer__ico {
  width: 34px; height: 34px; flex: none; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(91, 140, 240, .35), rgba(18, 184, 166, .25));
  border: 1px solid rgba(255, 255, 255, .14); color: #fff;
}
.slayer__ico svg { width: 17px; height: 17px; }
.slayer b { color: #fff; font-size: .92rem; font-weight: 700; }
.slayer__chip {
  margin-left: auto; font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(18, 184, 166, .16); color: #6ee7d5; border: 1px solid rgba(18, 184, 166, .22);
}
.slayer__chip--gold { background: rgba(240, 180, 55, .16); color: #f6cf7d; border-color: rgba(240, 180, 55, .26); }
.stackvis__foot {
  display: flex; align-items: center; gap: 9px; margin-top: 4px; padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .8rem; color: rgba(255, 255, 255, .6);
}
.stackvis__foot svg { width: 15px; height: 15px; color: var(--teal); flex: none; }

/* Hero visual panel */
.panel {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-lg); padding: 16px; backdrop-filter: blur(8px); box-shadow: var(--shadow-lg);
}
.panel__bar { display: flex; align-items: center; gap: 7px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 13px; }
.panel__bar b { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 700; margin-left: 4px; }
.pdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); }
.pdot--on { background: var(--teal); box-shadow: 0 0 0 3px rgba(18,184,166,.22); }
.panel__rows { display: grid; gap: 8px; }
.prow {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 9px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); font-size: .85rem; color: rgba(255,255,255,.85);
}
.prow b { margin-left: auto; font-size: .78rem; color: var(--teal); font-weight: 700; }
.prow i { font-style: normal; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-400); flex: none; }
.spark { display: flex; align-items: flex-end; gap: 5px; height: 62px; margin-top: 12px; }
.spark i { flex: 1; border-radius: 4px 4px 2px 2px; background: linear-gradient(180deg, #7fa8ff, rgba(49,104,216,.28)); animation: grow .8s var(--ease) both; transform-origin: bottom; }
@keyframes grow { from { transform: scaleY(.12); opacity: 0 } to { transform: scaleY(1); opacity: 1 } }

/* ---------- Stat strip (attaches under hero, no gap) ---------- */
.statstrip { background: var(--navy-800); border-top: 1px solid rgba(255,255,255,.08); }
.statstrip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .statstrip__grid { grid-template-columns: repeat(2, 1fr); } }
.statstrip__item { padding: 18px 20px; border-right: 1px solid rgba(255,255,255,.08); }
.statstrip__item:last-child { border-right: 0; }
@media (max-width: 760px) { .statstrip__item:nth-child(2n) { border-right: 0; } .statstrip__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); } }
.statstrip__v { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; color: #fff; letter-spacing: -.035em; line-height: 1.1; }
.statstrip__v span { color: #fff; }
.statstrip__l { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ---------- Logo marquee ---------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line); background: var(--surface); padding-block: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee__track { display: flex; gap: 44px; width: max-content; animation: slide 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.marquee__item { font-weight: 800; font-size: .98rem; color: #a3adc0; letter-spacing: -.01em; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.marquee__item svg { width: 16px; height: 16px; opacity: .55; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(17px, 1.8vw, 23px); box-shadow: var(--shadow-xs);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cdd8ea; }
.card h3 { margin-bottom: 6px; }
.card p { font-size: .91rem; line-height: 1.55; }
.card__ico {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 13px;
  background: linear-gradient(135deg, var(--brand-50), #fff); border: 1px solid var(--brand-100); color: var(--brand-600);
  transition: background .2s ease, color .2s ease;
}
.card:hover .card__ico { background: linear-gradient(135deg, var(--brand), var(--brand-600)); color: #fff; border-color: transparent; }
.card__ico svg { width: 20px; height: 20px; }
.card__top { display: flex; align-items: flex-start; gap: 12px; }
.card__top .card__ico { margin-bottom: 0; }
.card--accent::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: linear-gradient(180deg, var(--brand), var(--teal)); }
.card--dark { background: var(--navy-800); border-color: rgba(255,255,255,.1); color: #fff; }
.card--dark h3 { color: #fff; } .card--dark p { color: rgba(255,255,255,.66); }
.card__foot { margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--line-2); }

.ticks { display: grid; gap: 6px; margin-top: 11px; }
.ticks li { position: relative; padding-left: 21px; font-size: .87rem; color: var(--muted); line-height: 1.5; }
.ticks li::before {
  content: ""; position: absolute; left: 1px; top: .5em; width: 11px; height: 6px;
  border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg);
}
.section--deep .ticks li { color: rgba(255,255,255,.7); }

.badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 99px;
  font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  background: var(--brand-50); color: var(--brand-600); border: 1px solid var(--brand-100);
}
.badge--gold { background: #fff6e3; color: #94640c; border-color: #f6e3b8; }
.badge--teal { background: #e6faf7; color: #0a7f72; border-color: #b9eee7; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3.4vw, 48px); align-items: center; }
.split--wide { grid-template-columns: 1.1fr .9fr; }
/* Alternate which side the visual sits on, without reordering the markup */
.split--flip > *:first-child { order: 2; }
@media (max-width: 900px) {
  .split, .split--wide { grid-template-columns: 1fr; }
  .split--flip > *:first-child { order: 0; }
}

/* Product illustration frame */
.prodshot {
  border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff;
  padding: clamp(10px, 1.4vw, 16px); box-shadow: var(--shadow-md); overflow: hidden;
}
.prodshot img { width: 100%; height: auto; border-radius: 12px; display: block; }
.stack { display: grid; gap: 10px; }
.mediabox {
  border-radius: var(--r-lg); padding: clamp(16px, 2vw, 24px);
  background: linear-gradient(150deg, #eef3ff, #f7fafd 52%, #e9f7f5);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; gap: 9px;
}
.mrow {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  display: flex; align-items: center; gap: 11px; box-shadow: var(--shadow-xs);
}
.mrow__ico { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); flex: none; }
.mrow__ico svg { width: 15px; height: 15px; }
.mrow b { font-size: .88rem; color: var(--ink); font-weight: 700; }
.mrow span { margin-left: auto; font-size: .78rem; color: var(--muted-2); font-weight: 600; }

/* ---------- Numbered steps ---------- */
.steps { counter-reset: s; }
.step { position: relative; padding: 18px 18px 18px 20px; background: var(--surface); }
.step::before {
  counter-increment: s; content: "0" counter(s);
  font-size: .78rem; font-weight: 800; color: var(--brand-600); letter-spacing: .08em;
}
.step h3 { margin: 8px 0 5px; }
.step p { font-size: .88rem; }
.step__line { position: absolute; left: 0; top: 18px; width: 2px; height: 26px; background: linear-gradient(180deg, var(--brand), transparent); }

/* ---------- Stats ---------- */
.statbox { padding: 20px; text-align: center; }
.statbox__v { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.04em; color: var(--ink); line-height: 1.05; }
.statbox__v span { color: var(--brand-600); }
.statbox__l { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.section--deep .statbox__v { color: #fff; }
.section--deep .statbox__l { color: rgba(255,255,255,.6); }

/* ---------- Testimonials ---------- */
.quote { display: grid; gap: 12px; }
.quote__mark { font-size: 2.4rem; line-height: .8; color: var(--brand-100); font-family: Georgia, serif; }
.quote p { font-size: .95rem; color: var(--text); line-height: 1.6; }
.quote__by { display: flex; align-items: center; gap: 10px; margin-top: 2px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-500)); color: #fff; font-weight: 800; font-size: .85rem;
}
.quote__by b { font-size: .87rem; color: var(--ink); display: block; }
.quote__by span { font-size: .78rem; color: var(--muted-2); }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden; isolation: isolate; border-radius: var(--r-lg);
  background: linear-gradient(112deg, var(--navy-900), var(--brand) 60%, var(--brand-600));
  color: #fff; padding: clamp(26px, 3.4vw, 42px); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.4fr auto; gap: 22px; align-items: center;
}
@media (max-width: 800px) { .cta { grid-template-columns: 1fr; text-align: center; } .cta .btn-row { justify-content: center; } }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background: radial-gradient(40% 120% at 88% 10%, rgba(255,255,255,.22), transparent 60%);
}
.cta h2 { color: #fff; font-size: clamp(1.4rem, 2.3vw, 1.95rem); }
.cta p { color: rgba(255,255,255,.75); margin-top: 7px; font-size: .95rem; }

/* ---------- Accordion ---------- */
.acc { display: grid; gap: 8px; }
.acc details { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 2px 16px; transition: border-color .2s, box-shadow .2s; }
.acc details[open] { border-color: var(--brand-100); box-shadow: var(--shadow-sm); }
.acc summary { cursor: pointer; list-style: none; padding: 13px 0; font-weight: 700; font-size: .93rem; color: var(--ink); display: flex; gap: 12px; align-items: center; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; margin-left: auto; color: var(--brand-600); font-size: 1.2rem; font-weight: 400; transition: transform .2s var(--ease); }
.acc details[open] summary::after { transform: rotate(45deg); }
.acc p { padding-bottom: 14px; font-size: .89rem; }

/* ---------- Tables ---------- */
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: #fff; }
table.tbl { width: 100%; border-collapse: collapse; min-width: 620px; font-size: .89rem; }
table.tbl th, table.tbl td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--line-2); }
table.tbl th { background: var(--surface-2); font-weight: 800; color: var(--ink); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
table.tbl tr:last-child td { border-bottom: 0; }
table.tbl td { color: var(--muted); }
table.tbl td strong { color: var(--ink); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 14px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 620px) { .frow { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-size: .84rem; font-weight: 700; color: var(--ink); }
.field .req { color: var(--brand-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; background: #fff; border: 1px solid var(--line); border-radius: 9px;
  font-size: .92rem; transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-500); box-shadow: var(--ring); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #dc2626; }
.ferr { font-size: .78rem; color: #dc2626; min-height: .9em; }
.fnote { font-size: .8rem; color: var(--muted-2); }
.fstatus { font-size: .89rem; font-weight: 700; padding: 11px 13px; border-radius: 9px; display: none; }
.fstatus.is-ok { display: block; color: #0b7a6c; background: #ecfdf8; border: 1px solid #a9e9dd; }
.fstatus.is-err { display: block; color: #b91c1c; background: #fef2f2; border: 1px solid #fecaca; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.infocard { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(18px, 2vw, 24px); }
.infolist { display: grid; gap: 15px; }
.infolist__l { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); font-weight: 800; margin-bottom: 2px; }
.infolist a { font-weight: 700; color: var(--ink); font-size: .93rem; }
.infolist a:hover { color: var(--brand-600); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: rgba(255,255,255,.62); font-size: .88rem; }
.footer a { color: rgba(255,255,255,.62); transition: color .16s ease; }
.footer a:hover { color: #fff; }

.footer__cta {
  background: linear-gradient(100deg, var(--brand), var(--brand-600));
  padding-block: clamp(20px, 2.4vw, 30px);
}
.footer__cta-in { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.footer__cta h3 { color: #fff; font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
.footer__cta p { color: rgba(255,255,255,.78); font-size: .88rem; margin-top: 3px; }
.footer__cta form { display: flex; gap: 8px; margin-left: auto; flex-wrap: wrap; }
.footer__cta input {
  padding: 11px 14px; border-radius: 9px; border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12); color: #fff; min-width: 240px; font-size: .9rem;
}
.footer__cta input::placeholder { color: rgba(255,255,255,.6); }
.footer__cta input:focus { outline: none; border-color: #fff; background: rgba(255,255,255,.2); }
@media (max-width: 720px) { .footer__cta form { margin-left: 0; width: 100%; } .footer__cta input { flex: 1; min-width: 0; } }

.footer__main { padding-block: clamp(30px, 4vw, 48px) 26px; }
/* Brand column plus four link columns, all top-aligned in one row */
.footer__grid {
  display: grid; grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: clamp(26px, 3vw, 44px) clamp(18px, 2vw, 30px); align-items: start;
}
@media (max-width: 1080px) { .footer__grid { grid-template-columns: 1fr 1fr 1fr; } .fbrand { grid-column: 1 / -1; max-width: none; } }
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 430px) { .footer__grid { grid-template-columns: 1fr; } }

.fbrand { display: grid; justify-items: start; gap: 14px; max-width: 340px; }
.footer__about { line-height: 1.6; color: rgba(255,255,255,.55); margin: 0; }

.fcol h4 {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-size: .76rem; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 15px;
}
.fcol__ico {
  width: 24px; height: 24px; flex: none; border-radius: 7px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); color: var(--brand-400);
}
.fcol__ico svg { width: 13px; height: 13px; }

.footer ul { display: grid; gap: 10px; font-size: .88rem; }
/* Small marker per link, cheaper than an icon on every row */
.fcol ul li a { position: relative; padding-left: 15px; display: inline-block; line-height: 1.4; }
.fcol ul li a::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.3); transition: background .18s ease, transform .18s var(--ease);
}
.fcol ul li a:hover::before { background: var(--gold); transform: scale(1.5); }

.footer__contact { display: grid; gap: 10px; margin: 0; }
.footer__contact li { display: flex; gap: 9px; align-items: flex-start; line-height: 1.5; }
.footer__contact svg { width: 15px; height: 15px; margin-top: 3px; color: var(--brand-400); flex: none; }
.socials { display: flex; gap: 8px; }
.socials a { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: background .18s ease, transform .18s ease; }
.socials a:hover { background: var(--brand-600); transform: translateY(-2px); }
.socials svg { width: 15px; height: 15px; }
.certs { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.certs span {
  font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 6px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.6);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding-block: 15px;
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; align-items: center; font-size: .82rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.rv.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */
.skip { position: absolute; left: 12px; top: -60px; z-index: 999; background: var(--brand); color: #fff; padding: 9px 15px; border-radius: 8px; font-weight: 700; transition: top .2s; }
.skip:focus { top: 12px; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.mt0 { margin-top: 0 } .mt8 { margin-top: 8px } .mt12 { margin-top: 12px } .mt16 { margin-top: 16px } .mt20 { margin-top: 20px } .mt28 { margin-top: 28px }
.mb0 { margin-bottom: 0 } .mb8 { margin-bottom: 8px } .mb16 { margin-bottom: 16px }

/* ---------- 404 ---------- */
.err { min-height: 56vh; display: grid; place-items: center; text-align: center; padding-block: 60px; }
.err__code { font-size: clamp(3.4rem, 12vw, 7rem); font-weight: 800; letter-spacing: -.06em; line-height: 1;
  background: linear-gradient(120deg, var(--brand), var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
