/* ==========================================================================
   Deep Heuristics - site stylesheet
   Every token below is lifted verbatim from the approved landing page
   (Deep Heuristics Landing.dc.html). The landing page carried its design in
   inline styles and a non-standard `style-hover` attribute; here it becomes
   one system so all pages stay identical.
   ========================================================================== */

/* --- tokens -------------------------------------------------------------- */

:root {
  --bg: #060d16;
  --bg-deep: #04101e;
  --bg-alt: #0a1622;
  --surface: #0b1826;
  --surface-2: #0d1c2b;
  --surface-3: #0f2233;
  --footer: #04090f;

  --accent: #9fe3c7;
  --accent-2: #2f8f6f;
  --accent-hi: #c4f0dc;
  --accent-deep: #123227;
  --on-accent: #071019;
  --on-accent-soft: #12372a;

  --ink: #ffffff;
  --ink-2: #e8eef2;
  --text: #c8d5de;
  --text-2: #c2d1db;
  --muted: #a9bac6;
  --dim: #93a5b3;
  --faint: #7d8f9d;
  --faint-2: #66798a;

  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.35);
  --line-accent: rgba(159, 227, 199, 0.3);
  --line-accent-hi: rgba(159, 227, 199, 0.45);

  --sans: 'IBM Plex Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Archivo', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1280px;
  --gutter: 32px;
  --header-h: 72px;

  --r-sm: 5px;
  --r-md: 10px;
  --r-lg: 14px;
}

/* --- reset --------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* sticky header must not cover anchor targets */
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: var(--sans);
  color: var(--ink-2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img,
picture,
svg {
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

a:hover {
  color: var(--accent-hi);
}

::selection {
  background: var(--accent);
  color: var(--on-accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--display);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- layout -------------------------------------------------------------- */

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.wrap--narrow {
  max-width: 980px;
}

.wrap--prose {
  max-width: 820px;
}

.section {
  padding: 110px var(--gutter);
  background: var(--bg);
}

.section--tight {
  padding: 84px var(--gutter);
}

.section--deep {
  background: var(--bg-deep);
}

.section--alt {
  background: var(--bg-alt);
}

.section--footer-tone {
  background: var(--footer);
}

.section--bordered {
  border-top: 1px solid var(--line);
}

.section--bordered-both {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stack {
  display: flex;
  flex-direction: column;
}

.stack > * {
  margin: 0;
}

.stack--sm {
  gap: 14px;
}
.stack--md {
  gap: 22px;
}
.stack--lg {
  gap: 28px;
}
.stack--xl {
  gap: 56px;
}

.center {
  align-items: center;
  text-align: center;
}

.measure {
  max-width: 760px;
}
.measure--sm {
  max-width: 620px;
}
.measure--lg {
  max-width: 840px;
}

/* --- type ---------------------------------------------------------------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow--ruled::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.center .eyebrow {
  justify-content: center;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  color: var(--ink);
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}

.h1 {
  font-weight: 800;
  font-size: 74px;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.h1--page {
  font-size: 58px;
  line-height: 1.06;
}

.h2 {
  font-weight: 800;
  font-size: 44px;
  line-height: 1.1;
}

.h2--lg {
  font-size: 48px;
  line-height: 1.08;
}

.h2--xl {
  font-size: 50px;
}

.h2--sm {
  font-size: 28px;
  line-height: 1.2;
}

.h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
}

.h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}

.lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-2);
  text-wrap: pretty;
  margin: 0;
}

.body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
  margin: 0;
}

.body--lg {
  font-size: 18px;
  line-height: 1.75;
}

.body--sm {
  font-size: 15px;
  line-height: 1.6;
}

.accent {
  color: var(--accent);
}

/* --- buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 30px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn--sm {
  font-size: 14px;
  padding: 11px 20px;
}

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--primary:hover {
  background: var(--accent-hi);
  color: var(--on-accent);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  font-weight: 600;
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--onmint {
  background: var(--on-accent);
  color: var(--accent);
}

.btn--onmint:hover {
  background: #0e1c2a;
  color: var(--accent-hi);
}

.link-arrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}

.link-arrow::after {
  content: '→';
  transition: transform 0.16s ease;
}

.link-arrow:hover::after {
  transform: translateX(3px);
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- announcement bar ---------------------------------------------------- */

.announce {
  background: var(--surface-3);
  border-bottom: 1px solid rgba(159, 227, 199, 0.15);
  padding: 10px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #b8c9d6;
  text-align: center;
  flex-wrap: wrap;
}

.announce__tag {
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
  flex-shrink: 0;
}

.announce a {
  font-weight: 600;
}

/* --- header -------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 13, 22, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* The brand lockup is artwork, not type: the header carries the wordmark, the
   footer the wordmark plus the AI TRUST & ASSURANCE line. Both are transparent
   PNGs generated from the supplied source by tools/make-logo.mjs. */

.logo {
  display: flex;
  align-items: center;
  color: var(--ink);
  flex-shrink: 0;
}

.logo:hover .logo__img {
  opacity: 0.82;
}

.logo__img {
  display: block;
  width: 190px;
  height: auto;
  max-width: 100%;
  transition: opacity 0.18s ease;
}

.logo__img--footer {
  width: 240px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
}

.nav a {
  color: var(--text);
}

.nav a:hover,
.nav a[aria-current='true'] {
  color: var(--ink);
}

.nav a[aria-current='true'] {
  font-weight: 600;
}

/* The nav's own call to action exists for the mobile drawer only. On desktop
   the button in .header-actions already serves it, and showing both put two
   "Request an Assessment" buttons side by side in the header. */
.nav__cta {
  display: none;
}

/* .nav a is more specific than .btn--primary, so without this the drawer's
   button would inherit the nav's near-white link colour and lose its contrast
   against the mint fill. */
.nav .btn--primary,
.nav .btn--primary:hover {
  color: var(--on-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* mobile drawer */

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: '';
  position: absolute;
}

.nav-toggle__bars::before {
  transform: translateY(-6px);
}

.nav-toggle__bars::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars::after {
  transform: rotate(-45deg);
}

/* --- hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.85;
  display: block;
}

.hero__media--flip img {
  transform: scaleX(-1);
}

.hero__media--dim img {
  opacity: 0.28;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__scrim::before,
.hero__scrim::after {
  content: '';
  position: absolute;
  inset: 0;
}

.hero__scrim::before {
  background: linear-gradient(
    90deg,
    rgba(4, 12, 22, 0.94) 0%,
    rgba(4, 12, 22, 0.75) 45%,
    rgba(4, 12, 22, 0.25) 100%
  );
}

.hero__scrim::after {
  background: linear-gradient(0deg, var(--bg) 0%, rgba(6, 13, 22, 0) 30%);
}

.hero__scrim--even::before {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    rgba(6, 13, 22, 0.6) 50%,
    var(--bg) 100%
  );
}

.hero__scrim--even::after {
  background: none;
}

.hero__body {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 120px var(--gutter) 140px;
}

.hero__body--page {
  padding: 92px var(--gutter) 104px;
}

.hero__content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__tags {
  display: flex;
  gap: 36px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line-2);
  font-size: 14px;
  color: var(--dim);
  flex-wrap: wrap;
}

/* --- breadcrumb ---------------------------------------------------------- */

.breadcrumb {
  font-size: 13.5px;
  color: var(--faint);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: '/';
  color: var(--faint-2);
}

.breadcrumb a {
  color: var(--dim);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb [aria-current='page'] {
  color: var(--text);
}

/* --- grids and cards ----------------------------------------------------- */

.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--gap-lg {
  gap: 28px;
}

/* Two wide columns with generous separation - used where a block of copy sits
   beside a list of rows. Collapses to one column with a normal gap. */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.duo--centered {
  gap: 80px;
  align-items: center;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: inherit;
}

.card > * {
  margin: 0;
}

.card--linked:hover {
  border-color: var(--line-accent-hi);
  background: var(--surface-2);
  color: inherit;
}

.card--linked:hover .card__title {
  color: var(--accent-hi);
}

.card--glass {
  background: rgba(11, 24, 38, 0.85);
  border-color: rgba(255, 255, 255, 0.09);
}

.card--glass:hover {
  border-color: rgba(159, 227, 199, 0.4);
}

.card--numbered {
  background: var(--surface-2);
  padding: 28px 24px;
  gap: 14px;
}

.card--numbered:hover {
  border-color: rgba(159, 227, 199, 0.4);
}

.card--feature {
  background: linear-gradient(160deg, var(--accent-deep), var(--surface-2));
  border-color: var(--line-accent-hi);
}

.card__rule {
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.card__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--accent);
}

.card__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.3;
  transition: color 0.16s ease;
}

.card__title--sm {
  font-size: 19px;
}

.card__label {
  font-size: 14px;
  color: var(--dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card__label--accent {
  color: var(--accent);
}

.card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* --- diamond bullet lists ------------------------------------------------ */

.dlist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--dim);
  list-style: none;
  margin: 0;
  padding: 0;
}

.dlist li {
  display: flex;
  gap: 9px;
  align-items: baseline;
}

.dlist li::before {
  content: '◆';
  color: var(--accent-2);
  font-size: 11px;
  flex-shrink: 0;
}

.dlist--bright {
  font-size: 15px;
  color: var(--text);
  gap: 12px;
}

.dlist--bright li::before {
  color: var(--accent);
  font-size: 13px;
}

.dlist--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}

.dlist--spaced {
  gap: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.dlist--spaced strong {
  color: var(--ink-2);
  font-weight: 600;
}

/* --- split image sections ------------------------------------------------ */

.split {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.split__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 34, 0) 60%, var(--bg-alt) 100%);
}

.split__media--right::after {
  background: linear-gradient(270deg, rgba(10, 22, 34, 0) 60%, var(--bg-alt) 100%);
}

.split__body {
  padding: 100px var(--gutter) 100px 72px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}

.split__body--right {
  padding: 100px 72px 100px var(--gutter);
}

.split-wrap {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}

/* --- pills --------------------------------------------------------------- */

.pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.center .pills {
  justify-content: center;
}

.pill {
  border: 1px solid var(--line-accent-hi);
  color: var(--text);
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 100px;
  display: inline-block;
}

/* --- definition rows ----------------------------------------------------- */

.defrows {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.defrow {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: baseline;
}

.defrow:last-child {
  border-bottom: 0;
}

.defrow__key {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  width: 130px;
  flex-shrink: 0;
  margin: 0;
}

.defrow__val {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink-2);
  line-height: 1.4;
  margin: 0;
}

.defrow__val--body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.65;
}

.defrow--wide .defrow__key {
  width: 200px;
}

/* --- trust mark badge ---------------------------------------------------- */

.badge {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line-accent);
  border-radius: var(--r-md);
  padding: 22px 24px;
}

.badge__mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  color: var(--on-accent);
}

.badge__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.badge__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin: 0;
}

.badge__sub {
  font-size: 14px;
  color: var(--dim);
  margin: 0;
}

/* --- mint band ----------------------------------------------------------- */

.band-mint {
  background: var(--accent);
  padding: 96px var(--gutter);
}

.band-mint h2,
.band-mint .h2 {
  color: var(--on-accent);
}

.band-mint p {
  color: var(--on-accent-soft);
}

.band-mint a {
  color: var(--on-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.band-mint a:hover {
  color: #0d2a20;
}

/* --- platform diagram ---------------------------------------------------- */

.diagram {
  margin-top: 28px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(159, 227, 199, 0.2);
  box-shadow: 0 40px 120px rgba(47, 143, 111, 0.18);
  max-width: 1100px;
  width: 100%;
}

.diagram img {
  display: block;
  width: 100%;
  height: auto;
}

.quicklinks {
  display: flex;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  padding: 0;
}

/* --- figure -------------------------------------------------------------- */

.figure {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
}

.figure img {
  display: block;
  width: 100%;
  height: auto;
}

.figure--framed {
  border-color: var(--line-accent);
}

/* --- stats --------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 14.5px;
  color: var(--dim);
  line-height: 1.45;
}

/* --- steps --------------------------------------------------------------- */

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--accent);
  padding-top: 4px;
}

.step__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  margin: 0 0 8px;
}

.step__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* --- CTA band ------------------------------------------------------------ */

.cta-band {
  background: linear-gradient(160deg, #0e2a20, var(--on-accent) 70%);
  border-top: 1px solid rgba(159, 227, 199, 0.2);
  padding: 100px var(--gutter);
}

.cta-band__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-band__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}

.cta-band__copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* --- forms --------------------------------------------------------------- */

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

.field .req {
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  background: var(--bg-deep);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.16s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--dim) 50%),
    linear-gradient(135deg, var(--dim) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--faint-2);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #e0776b;
}

.field__hint {
  font-size: 13.5px;
  color: var(--faint);
}

/* honeypot - hidden from humans, visible to naive bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dim);
}

.form__consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.form__status {
  font-size: 15px;
  line-height: 1.6;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  background: var(--bg-deep);
  color: var(--text);
}

.form__status[data-state='ok'] {
  border-color: var(--line-accent);
  color: var(--accent);
}

.form__status[data-state='error'] {
  border-color: rgba(224, 119, 107, 0.5);
  color: #f0a79e;
}

.form__status[hidden] {
  display: none;
}

/* --- contact details ----------------------------------------------------- */

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.contact-block__key {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.contact-block__val {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  font-style: normal;
  margin: 0;
}

/* --- prose (legal, reports) ---------------------------------------------- */

.prose {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

.prose > * + * {
  margin-top: 20px;
}

.prose h2 {
  font-size: 28px;
  line-height: 1.25;
  margin-top: 52px;
  color: var(--ink);
}

.prose h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin-top: 36px;
  color: var(--ink-2);
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li + li {
  margin-top: 10px;
}

.prose li::marker {
  color: var(--accent-2);
}

.prose strong {
  color: var(--ink-2);
  font-weight: 600;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
}

.prose th,
.prose td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.prose th {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}

.table-scroll {
  overflow-x: auto;
}

.note {
  border-left: 2px solid var(--accent-2);
  padding: 4px 0 4px 20px;
  color: var(--dim);
  font-size: 15.5px;
}

/* --- related links ------------------------------------------------------- */

.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface);
}

.related__item:hover {
  border-color: var(--line-accent-hi);
  background: var(--surface-2);
}

.related__eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.related__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.related__item:hover .related__title {
  color: var(--accent-hi);
}

/* --- footer -------------------------------------------------------------- */

.site-footer {
  background: var(--footer);
  padding: 70px var(--gutter) 40px;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--faint);
  max-width: 300px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.site-footer__heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

.site-footer__col a {
  color: var(--text);
}

.site-footer__col a:hover {
  color: var(--accent);
}

.site-footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-size: 13px;
  color: var(--faint-2);
}

.site-footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__legal a {
  color: var(--faint-2);
}

.site-footer__legal a:hover {
  color: var(--accent);
}

.site-footer__address {
  font-style: normal;
  color: var(--faint);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__address a {
  color: var(--faint);
}

.site-footer__address a:hover {
  color: var(--accent);
}

/* --- sitemap page -------------------------------------------------------- */

.sitemap-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 40px;
}

.sitemap-group h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 14px;
}

.sitemap-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15.5px;
}

.sitemap-group a {
  color: var(--text);
}

.sitemap-group a:hover {
  color: var(--accent);
}

/* --- responsive ---------------------------------------------------------- */

@media (max-width: 1100px) {
  :root {
    --gutter: 24px;
  }

  .h1 {
    font-size: 56px;
  }
  .h1--page {
    font-size: 46px;
  }
  .h2,
  .h2--lg,
  .h2--xl {
    font-size: 38px;
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .split__body {
    padding: 72px var(--gutter) 72px 44px;
  }
  .split__body--right {
    padding: 72px 44px 72px var(--gutter);
  }
  .split__media {
    min-height: 420px;
  }

  .site-footer__cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .nav {
    gap: 22px;
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .nav,
  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
  }

  /* drawer */
  .nav--open {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 49;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--bg);
    padding: 12px var(--gutter) 40px;
    overflow-y: auto;
    font-size: 18px;
    border-top: 1px solid var(--line);
  }

  .nav--open a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-weight: 600;
  }

  .nav--open .nav__cta {
    display: block;
    margin-top: 24px;
    border-bottom: 0;
  }

  .nav--open .nav__cta .btn {
    display: inline-flex;
    width: 100%;
  }

  body.nav-locked {
    overflow: hidden;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 76px var(--gutter);
  }
  .section--tight {
    padding: 60px var(--gutter);
  }

  .hero__body {
    padding: 84px var(--gutter) 96px;
  }
  .hero__body--page {
    padding: 64px var(--gutter) 72px;
  }
  .hero__scrim::before {
    background: linear-gradient(
      90deg,
      rgba(4, 12, 22, 0.95) 0%,
      rgba(4, 12, 22, 0.88) 60%,
      rgba(4, 12, 22, 0.7) 100%
    );
  }

  .h1 {
    font-size: 42px;
  }
  .h1--page {
    font-size: 36px;
  }
  .h2,
  .h2--lg,
  .h2--xl {
    font-size: 32px;
  }
  .h3 {
    font-size: 21px;
  }
  .lede {
    font-size: 17.5px;
  }
  .body--lg {
    font-size: 17px;
  }

  .split {
    grid-template-columns: 1fr;
  }
  .split__media {
    min-height: 300px;
    order: -1;
  }
  .split__media::after {
    background: linear-gradient(0deg, var(--bg-alt) 0%, rgba(10, 22, 34, 0) 55%);
  }
  .split__media--right::after {
    background: linear-gradient(0deg, var(--bg-alt) 0%, rgba(10, 22, 34, 0) 55%);
  }
  .split__body,
  .split__body--right {
    padding: 48px var(--gutter) 72px;
  }

  .grid--3,
  .grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .related,
  .sitemap-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .duo,
  .duo--centered {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .defrow {
    flex-direction: column;
    gap: 8px;
  }
  .defrow__key,
  .defrow--wide .defrow__key {
    width: auto;
  }
  .defrow__val {
    font-size: 18px;
  }

  .band-mint {
    padding: 72px var(--gutter);
  }

  .quicklinks {
    gap: 20px 28px;
    justify-content: flex-start;
  }

  .prose h2 {
    font-size: 24px;
    margin-top: 40px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }

  .h1 {
    font-size: 34px;
  }
  .h1--page {
    font-size: 30px;
  }
  .h2,
  .h2--lg,
  .h2--xl {
    font-size: 26px;
  }

  .lede {
    font-size: 16.5px;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .grid--5,
  .stats,
  .related,
  .sitemap-cols,
  .dlist--two-col,
  .form__grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .btn-row {
    width: 100%;
    gap: 12px;
  }

  .cta-band__inner .btn-row {
    flex-direction: column;
  }

  .form {
    padding: 24px 20px;
  }

  .hero__tags {
    gap: 8px 20px;
    font-size: 13px;
  }

  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .announce {
    font-size: 12.5px;
    gap: 8px;
    padding: 10px 16px;
  }

  .stat__num {
    font-size: 34px;
  }

  /* The header keeps a nav toggle and a button beside the logo, so the
     wordmark gives up width first. max-width on .logo__img handles the footer,
     where the brand column halves at this breakpoint. */
  .logo__img {
    width: 148px;
  }
}

/* --- print --------------------------------------------------------------- */

@media print {
  .site-header,
  .announce,
  .cta-band,
  .nav-toggle,
  .skip-link {
    display: none !important;
  }
  body {
    background: #fff;
    color: #111;
  }
  .section,
  .hero {
    background: #fff !important;
    padding: 24px 0;
  }
  .h1,
  .h2,
  h1,
  h2,
  h3 {
    color: #000;
  }
  .body,
  .lede,
  .prose {
    color: #222;
  }
}

/* Blurred hero placeholders. Generated by tools/build.mjs from the image
   manifest - edit tools/optimize-images.mjs, not this. */
.hero__media--advisory{background-image:url("data:image/webp;base64,UklGRpYAAABXRUJQVlA4IIoAAADQAwCdASoUAA0APxFysFAsJqSisAgBgCIJQBYdg4r8qiufPSAYAAAA+5Fi/Npc26b9za8ZQmRZq3u2G4NV3PolLRrrcUzVLWvH+NEnRKbD8O1l97kD6fDWi0GIAZ6EkXoUVUFT0ba3vHbp+Pl/6vIUJn6y5Wf+F6q252yJ7S6Zkv40xLwVTwmAAAA=");background-size:cover;background-position:center}
.hero__media--analytics-tablet{background-image:url("data:image/webp;base64,UklGRpoAAABXRUJQVlA4II4AAADQAwCdASoUAA0APxFysFAsJqSisAgBgCIJQBfnAzJGBgYTEPF2oGgA/VOpC34zYo9Ho63v9GvSXZq7+qjjuwNf1UyxoCuaoMWRijp+MR6U/NXm8aWkFJxj7aiCla6m2M4iU6o+2CHYBcbwO24bsudr08zw6ogw++5UqEmLRDa2P6EDaqp0zMyfF/WFgZAA");background-size:cover;background-position:center}
.hero__media--business-pair{background-image:url("data:image/webp;base64,UklGRnwAAABXRUJQVlA4IHAAAADwAwCdASoUAA0APxFysFAsJqSisAgBgCIJZQDE2B9u7zew3Apduo5EAP6poAQhVOni8lVklJW5jlvSzqz5CJIk0JACYz0YwrJm9sq1MLi1WnH5evhA4TwaV5lGK5yCDn2Q0iePWdXMtsmoIyHj8aAA");background-size:cover;background-position:center}
.hero__media--collaboration{background-image:url("data:image/webp;base64,UklGRoYAAABXRUJQVlA4IHoAAADQAwCdASoUAA0APxFysFAsJqSisAgBgCIJQBOgMYTR2s4TkhAaD0AAzaRnOOxhD81sPMbGCvnSp4+5Yqr/W15+lqS8bDhttkXXBDZAgz9tf+dFUHOwItUjZATnpoUYuZZAdbTc925SMwbVs6XX4Pl+nPotIiehkj8AAA==");background-size:cover;background-position:center}
.hero__media--control-room{background-image:url("data:image/webp;base64,UklGRrIAAABXRUJQVlA4IKYAAABwBACdASoUAA4APxFysFAsJqSisAgBgCIJbACdMoAvQBZlDpduDyESgzbXsAD+ul/XBKZdJ/r/6EDgBYXoie7u4mhkbsdbOp8JIO6L4465PFNrMphres97J5ae/aLaVGOvWhY74lJVFKEgvEsh4wm3iIrZYx1ipgmgksUW7C5LMlys9eEwETuy6PIxwiFbPN4eCd9XvbXHfyR9y5iLbX+acQOqAAAA");background-size:cover;background-position:center}
.hero__media--data-center-energy{background-image:url("data:image/webp;base64,UklGRnoAAABXRUJQVlA4IG4AAAAQBACdASoUAAgAPxFwsFAsJiSisAgBgCIJaACdMoMrZDXVfd9U+2T8QAD+3PG+rNjK9GFCHcelMC6zjURS/kSN/JUfg6YS2hCvlofDeFqTrJ9jg1LIySZeEAEoFJDUDCkcQyGRiDAIjD7d+sAAAA==");background-size:cover;background-position:center}
.hero__media--data-protection{background-image:url("data:image/webp;base64,UklGRu4AAABXRUJQVlA4IOIAAADQBQCdASoUAB0APxFwrlAsJiQisAgBgCIJbACsMvXNKAgBucloCctzG/bvWb9/b99WVOwqYIrgAP7o9Fy4HApThxE6NHaFev0SWjx4wgRrf+cqzPuBNifigZ4pm6a2XEkUIOsi03U2VRDB6d+zljg2xrJzRPCBV2MpSkc1BunqJYsYME2RHLZs3F6qDIJmTZjBxiqQ7mMaZVHcaEWq829myQcAjo743TcuGQLT+sJuZPVmQtUiLQsbJ/prxocp+jHFT0FfvTFmdIIeLtg2CceiTm1XbhomN+6heK8yLbs0SZAA");background-size:cover;background-position:center}
.hero__media--executives{background-image:url("data:image/webp;base64,UklGRogAAABXRUJQVlA4IHwAAACQAwCdASoUAA0APxFysFAsJqSisAgBgCIJbACdABnbEKSNjRReAP7fhf3K914UrpNuuVXAQ1wlwhJmrKSYfdMfmSjmaptA45hDzN0Zr5wO6vysiI80X3GFdcmHcg9l89qE57KI5La9y8zblRjXMQsQx6R6UyUxtuNxgAAA");background-size:cover;background-position:center}
.hero__media--facility{background-image:url("data:image/webp;base64,UklGRnAAAABXRUJQVlA4IGQAAACQAwCdASoUAAsAPxFysVAsJqSisAgBgCIJaACw7BM3xOPh+k8AAP7pQ8Ptln3KXjnLpcv/o/DB6O91d66Yiri+R1+Rla4t9CzafD7M+eMr0WHihe/2IH5VbSv7fF9gcshoAAAA");background-size:cover;background-position:center}
.hero__media--future-tech{background-image:url("data:image/webp;base64,UklGRoIAAABXRUJQVlA4IHYAAAAQBACdASoUAA0APxFysFAsJqSisAgBgCIJaACdMoADgj04E5ECcLBLAAD+un/CKecikweD3o+N7Xz4ir0zoJKE2WNRQu87nUujbNtZvdtmoOQmqT3dxz5XX+Izl//9pGa2umvkH+NVPg3jIgTbZ2JZcefAAAAA");background-size:cover;background-position:center}
.hero__media--hero{background-image:url("data:image/webp;base64,UklGRloAAABXRUJQVlA4IE4AAADQAwCdASoUAAsAPxFysFAsJqSisAgBgCIJYwCdACG74Vqrd4+klgAA/uxCXOODdxbdIsw7B9CzrxyV4S9mguRmaek5tgRMbShPnsjdQAA=");background-size:cover;background-position:center}
.hero__media--industrial-ai{background-image:url("data:image/webp;base64,UklGRogAAABXRUJQVlA4IHwAAAAwBACdASoUAAsAPxFysFAsJqSisAgBgCIJbADE2YwSmhLeWpT+hMc+MgAA/jyTMxNVVzs24grsFsVc1PEs1i9w6JkfBH9uD1S3rtSLIwVVarmbzGbmc+bd/uuN7zTdfRHOJ0lSMY6G6Iiiniq+x2Ca05HlZCQiZIx7BUAA");background-size:cover;background-position:center}
.hero__media--interface-design{background-image:url("data:image/webp;base64,UklGRowAAABXRUJQVlA4IIAAAAAQBACdASoUAA4APxFysFAsJqSisAgBgCIJQBWAMZFbGse+3lXv6Sp2sAD+lPpWBGrgkJdEZDQ3LXEwvKmWnBa8RqKOnPVgg05VAszF1FOWpKL7r88Gjt7BxnJJLyeDr8xOLnurDL2rindk86Iiz+CBvAJk5awg2IdTiZ2YSeAAAA==");background-size:cover;background-position:center}
.hero__media--monitoring{background-image:url("data:image/webp;base64,UklGRvgAAABXRUJQVlA4IOwAAADQBQCdASoUAB4APxFwr1AsJiQisAgBgCIJbAC06y6Ya0uC2J42efBwitsFVOjTESRp0mrTUA8AAP7pMNX/PB/yh45xYYwv+JbTxXwrarSNAnfbGD7ZGZoYrtxHv/1RMvetenqUWyQevG2DJspwrv976kdeDxVDzfurb+NVGjW0PYXYmVtRwFe5xScKOzYl0X1MIXVEYmW/8S4GtiAHoikKVxUV/sQMOfY3qf/jipdOvr6SsFDTi0S1skcx6Jc0Su1MzfPHsYK3HsardTZjV6vJfPz/18KO0pPq+4/HdCADrK/mm2CF2Jwi+yYAAA==");background-size:cover;background-position:center}
.hero__media--network-engineer{background-image:url("data:image/webp;base64,UklGRooAAABXRUJQVlA4IH4AAACQAwCdASoUAA0APxFysFAsJqSisAgBgCIJbACdABA4ksG90e6YAP6tK6CNTp+joo5ab1bBF4LyDVmv9mtpLMAya8IrSXsgYt1LhEIXYBGHmZqxeetmdm+1WjkaluvFgqm27hiZ5sRfnulTVrxI7QroMeyi4A1V1vhoAYYAAAA=");background-size:cover;background-position:center}
.hero__media--remote-work{background-image:url("data:image/webp;base64,UklGRqYAAABXRUJQVlA4IJoAAAAwBACdASoUAA0APxFwsFAsJiSisAgBgCIJbACxGwAB3CsDuaJI1xwOmWAA/sX8j34suehx5mPdem/D6m7qdegDPMBg7jcyozto31VSX5aTmvXpzTtpla8ngJjQ10eQIVNbmdoS0Sc8SP0d2zZqKiGEEmCvM9c9pJR+fPilZS5W/4eAj5wAeL7u736p39IPc/8HG691ESPnQAAA");background-size:cover;background-position:center}
.hero__media--research-team{background-image:url("data:image/webp;base64,UklGRpQAAABXRUJQVlA4IIgAAAAwBACdASoUAA0APxFysFAsJqSisAgBgCIJYwC/Sf/i19VrqNaWhmrxkHAA/pi6jpC2wSGBw19VVohIZQ2pHSzO+KWMqRq04cJQk9UyM7QZDS0oiAJ/h+y6Ql9f8+OutBFEwLxMntOs/+m81DTk1YuVXOptYI0flgmBg1B4EiCOhFScnfK3oywA");background-size:cover;background-position:center}
.hero__media--risk-maze{background-image:url("data:image/webp;base64,UklGRmQAAABXRUJQVlA4IFgAAADQAwCdASoUAA0APxFysFAsJqSisAgBgCIJZwAAYeejUCiNbL7mjAAA3M1LvZAGfmu2N8HtTXmYgYr+Q9LVAMLEh1X4rSwsF7EbswBHA+Bn2nX+9DperbAA");background-size:cover;background-position:center}
.hero__media--security-expert{background-image:url("data:image/webp;base64,UklGRpYAAABXRUJQVlA4IIoAAADwAwCdASoUAA0APxFysVAsJqSisAgBgCIJZACdACPuNwylQ6xqXQgAAP7bwmSAauKMSukH9rf04Pes0nh3+ximtV0FAQ5uC5OtFFZE0H46P11BMFjkDC4e32p0GWJoXnHa2Dd9/DmmC5jJKNiTkymMLAJLofg9HXQUf639ELlnD/Q5M/kR069gAAA=");background-size:cover;background-position:center}
.hero__media--seminar{background-image:url("data:image/webp;base64,UklGRn4AAABXRUJQVlA4IHIAAACQAwCdASoUAA0APxFysFAsJqSisAgBgCIJQBYdg8fajjq74JHgAP6tFLz0maXbovOYN62pAKVmez0kjypBJQawD+fRBR1EtXlGryglwTsi1V7JWeq9V7bgfaZ+8/9Vj5qOnd9o+NnE6jDYvc+AH3ckGAA=");background-size:cover;background-position:center}
.hero__media--training{background-image:url("data:image/webp;base64,UklGRpgAAABXRUJQVlA4IIwAAACQBACdASoUAA0APxFysFAsJqSisAgBgCIJbACdMoAlwRXBIf7TU+ynfAlxtgAA/uqSN0BYg5TAgLBbQnjRJlXOsat1byCFpCpHV1GvIg8u9S3RCI1ElmzykaM3TLDJEIBFneV3Q8ZCsGh1LisCFM9ekHklMiuLufrTiv7S5HRtZkHLNrbGeV3aNL/AAA==");background-size:cover;background-position:center}
