/* ============================================================
   SPECURE — style.css
   ============================================================ */

/* 1. Fonts
   ------------------------------------------------------------
   Self-hosted rather than loaded from the Google Fonts CDN: a
   CDN request leaks the visitor's IP to a US server, which
   German and Austrian courts have treated as a GDPR breach
   (LG München I, 3 O 17493/20). Same reason there is no
   third-party script anywhere on this site.
   ============================================================ */
@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-latin-ext.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-ext.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

/* 2. Custom Properties
   ------------------------------------------------------------
   The mark's three colours drive the palette. Electric blue is
   reserved for the logo itself — at body-text contrast it is
   unreadable — so the navy below carries it into the interface.
   Yellow marks the auctions pillar, mint the monitoring pillar.
   ============================================================ */
:root {
  /* Brand */
  --color-navy:         #24439c;
  --color-navy-dark:    #1a3276;
  --color-navy-deep:    #131f45;
  --color-yellow:       #fecc05;
  --color-yellow-dark:  #e0b400;
  --color-mint:         #7adcb3;
  --color-mint-dark:    #3fae83;

  /* Neutrals */
  --color-bg:           #ffffff;
  --color-bg-alt:       #f4f6fa;
  --color-text:         #14161c;
  --color-text-muted:   #545d6e;
  --color-border:       #e2e7f0;
  --color-card-bg:      #ffffff;

  /* Inverted (dark sections) */
  --color-inv-text:     #ffffff;
  --color-inv-muted:    rgba(255, 255, 255, 0.76);
  --color-inv-border:   rgba(255, 255, 255, 0.18);

  --font-display: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --container-max: 1180px;
  --container-pad: 1.5rem;

  --radius:       10px;
  --radius-lg:    18px;
  --shadow:       0 2px 14px rgba(19, 31, 69, 0.07);
  --shadow-lift:  0 12px 34px rgba(19, 31, 69, 0.14);

  --transition: 0.2s ease;
}

/* 3. Reset / Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Anchored reference cards must clear the sticky header. */
  scroll-padding-top: 6rem;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-navy-dark);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* 4. Typography
   ============================================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; font-weight: 700; }

p {
  max-width: 68ch;
}

p + p,
p + ul,
ul + p {
  margin-top: 1rem;
}

strong {
  font-weight: 700;
  color: var(--color-text);
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

/* 5. Layout
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow {
  max-width: 780px;
}

.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

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

.section--dark {
  background-color: var(--color-navy-deep);
  color: var(--color-inv-text);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-inv-text);
}

.section--dark p,
.section--dark .lead {
  color: var(--color-inv-muted);
}

.section--dark .eyebrow {
  color: var(--color-yellow);
}

/* Buttons carry their own colours; without :not(.btn) this rule outranks
   .btn--accent and paints yellow text onto a yellow button. */
.section--dark a:not(.btn) {
  color: var(--color-yellow);
}

.section__head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__head p {
  margin-top: 0.85rem;
}

/* 6. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.85rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: background-color var(--transition), border-color var(--transition),
    color var(--transition), transform var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}

.btn--primary:hover {
  background-color: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
  color: #fff;
}

.btn--accent {
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-navy-deep);
}

.btn--accent:hover {
  background-color: var(--color-yellow-dark);
  border-color: var(--color-yellow-dark);
  color: var(--color-navy-deep);
}

.btn--ghost {
  background-color: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

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

.section--dark .btn--ghost {
  border-color: var(--color-inv-border);
  color: var(--color-inv-text);
}

.section--dark .btn--ghost:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* 7. Panel
   ------------------------------------------------------------
   The outlined, generously rounded box carried over from the
   product brochures — the one device that makes print and web
   read as the same brand. The accent modifier tints the border
   to whichever pillar the panel belongs to.
   ============================================================ */
.panel {
  background-color: var(--color-card-bg);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.panel--auctions {
  border-color: var(--color-yellow);
}

.panel--monitoring {
  border-color: var(--color-mint);
}

.panel--quote {
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
}

.panel__title {
  margin-bottom: 0.35rem;
}

.panel__kicker {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.panel > p {
  margin-top: 0.9rem;
}

/* 8. Card grid
   ============================================================ */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition),
    border-color var(--transition);
}

.card__title {
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.975rem;
}

/* A card that is a link target gets the lift; a static one does not. */
.card--link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-lift);
}

/* 9. Header & Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

.site-header__logo img {
  height: 38px;
  width: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav__link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: background-color var(--transition), color var(--transition);
}

.site-nav__link:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-navy);
}

.site-nav__link--active {
  color: var(--color-navy);
  background-color: rgba(36, 67, 156, 0.08);
}

.site-nav__cta {
  margin-left: 0.6rem;
  padding: 0.6rem 1.15rem;
  font-size: 0.925rem;
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger {
  top: 50%;
  margin-top: -1px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  margin-left: -10px;
}

.hamburger::before { top: -6px; }
.hamburger::after  { top: 6px; }

[aria-expanded="true"] .hamburger {
  background-color: transparent;
}

[aria-expanded="true"] .hamburger::before {
  transform: translateY(6px) rotate(45deg);
}

[aria-expanded="true"] .hamburger::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 860px) {
  .site-header__toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    padding: 0.75rem var(--container-pad) 1.25rem;
  }

  .site-nav--open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .site-nav__link {
    padding: 0.7rem 0.5rem;
  }

  .site-nav__cta {
    margin-left: 0;
    margin-top: 0.6rem;
  }
}

/* 10. Footer
   ============================================================ */
.site-footer {
  background-color: var(--color-navy-deep);
  color: var(--color-inv-muted);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
  font-size: 0.95rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2.5rem;
}

.site-footer__logo img {
  height: 34px;
  width: auto;
  margin-bottom: 1rem;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 0.9rem;
}

.site-footer p {
  max-width: none;
}

/* Address and contact lines are a block, not separate paragraphs — the
   body rule's paragraph spacing pulls them apart. */
.site-footer__col p + p {
  margin-top: 0.15rem;
}

.site-footer__logo p {
  margin-top: 0.5rem;
  max-width: 24ch;
}

.site-footer a {
  color: var(--color-inv-muted);
}

.site-footer a:hover {
  color: var(--color-inv-text);
}

.site-footer__links li + li {
  margin-top: 0.4rem;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-inv-border);
  font-size: 0.875rem;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* 11. Utilities
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* The skip link stays hidden until it takes focus. */
.skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 200;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1.25rem;
  background-color: var(--color-navy);
  color: #fff;
  border-radius: var(--radius);
}

/* 12. Stat band
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem 2rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background-color: var(--color-navy-deep);
  border-radius: var(--radius-lg);
  color: var(--color-inv-text);
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-yellow);
}

.stat__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.925rem;
  color: var(--color-inv-muted);
  max-width: 22ch;
}

/* 13. Reference filter
   ------------------------------------------------------------
   Rendered only once the .js class is set, so without scripting
   every project stays visible rather than hiding behind dead
   controls.
   ============================================================ */
.filter {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.js .filter {
  display: flex;
}

.filter__btn {
  font-family: var(--font-display);
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--color-text-muted);
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition),
    color var(--transition);
}

.filter__btn:hover {
  border-color: var(--color-navy);
  color: var(--color-navy);
}

.filter__btn[aria-pressed="true"] {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}

/* 14. Reference cards
   ============================================================ */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.25rem;
}

.ref {
  display: flex;
  flex-direction: column;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-yellow);
  border-radius: var(--radius);
  padding: 1.5rem;
  scroll-margin-top: 6rem;
}

.ref[data-pillar="monitoring"] {
  border-top-color: var(--color-mint);
}

/* A reference linked to from an old URL announces itself on arrival. */
.ref:target {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(36, 67, 156, 0.14);
}

.ref__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.ref__flag {
  flex: none;
  width: 30px;
  height: 23px;
  margin-top: 0.3rem;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(19, 31, 69, 0.12);
}

.ref__title {
  font-size: 1.2rem;
}

.ref__client {
  margin-top: 0.15rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.ref__meta {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.ref__meta > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
}

.ref__meta dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.775rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-top: 0.15rem;
}

.ref__note {
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.925rem;
  color: var(--color-text-muted);
  max-width: none;
}

.ref__tag {
  /* The card is a flex column, so the tag would otherwise stretch across it. */
  align-self: flex-start;
  display: inline-block;
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
  background-color: rgba(36, 67, 156, 0.09);
  border-radius: 4px;
  padding: 0.25rem 0.55rem;
}

.ref[data-pillar="monitoring"] .ref__tag {
  color: var(--color-mint-dark);
  background-color: rgba(63, 174, 131, 0.13);
}

.ref[hidden] {
  display: none;
}

.ref-empty {
  margin-top: 2rem;
  color: var(--color-text-muted);
}

.ref__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

/* Marks a deployment we still run, as opposed to one delivered and handed
   over. The dot carries the meaning for anyone skimming the grid. */
.ref__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mint-dark);
}

.ref__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-mint-dark);
}

/* 15. Feature list
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem 2.5rem;
}

.feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.feature::before {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: 0.55rem;
  border-radius: 2px;
  background-color: var(--color-yellow);
  transform: rotate(45deg);
}

.feature--monitoring::before {
  background-color: var(--color-mint);
}

.feature p {
  font-size: 0.975rem;
  color: var(--color-text-muted);
}

.feature strong {
  display: block;
}

/* 16. Screenshot figure
   ============================================================ */
.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.shot img {
  width: 100%;
  border-radius: var(--radius);
}

.shot figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* 17. Timeline
   ------------------------------------------------------------
   Replaces the raster diagram the old site used: the steps are
   now text, so they are searchable, translatable and legible at
   any zoom. The loop between build and test is a modifier
   rather than a separate graphic.
   ============================================================ */
.timeline {
  display: grid;
  gap: 0;
  /* The numbered circles are the markers; the native ones would double up. */
  list-style: none;
  counter-reset: step;
  max-width: 780px;
}

.timeline__item {
  position: relative;
  counter-increment: step;
  padding: 0 0 2rem 3.5rem;
}

.timeline__item::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.925rem;
  color: var(--color-navy-deep);
  background-color: var(--color-yellow);
  border-radius: 50%;
}

/* The connecting rule stops at the last step. */
.timeline__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(1.125rem - 1px);
  top: 2.25rem;
  bottom: 0;
  width: 2px;
  background-color: var(--color-border);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__title {
  font-size: 1.075rem;
  margin-bottom: 0.3rem;
}

.timeline__item p {
  font-size: 0.975rem;
  color: var(--color-text-muted);
}

.timeline__loop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-navy);
}

/* 18. Quote
   ============================================================ */
.quote {
  margin: 0;
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-navy-deep);
  max-width: 40ch;
}

.quote figcaption {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  color: rgba(19, 31, 69, 0.8);
}

.quote figcaption strong {
  display: block;
  color: var(--color-navy-deep);
}

/* 19. Split layout
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* 20. Plain feature list
   ============================================================ */
.feature-list {
  margin-top: 1rem;
  font-size: 0.975rem;
  color: var(--color-text-muted);
}

.feature-list li {
  padding-left: 1.1rem;
  position: relative;
}

.feature-list li + li {
  margin-top: 0.5rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background-color: var(--color-yellow);
  transform: rotate(45deg);
}

.feature-list strong {
  color: var(--color-text);
}

/* 21. Video facade
   ------------------------------------------------------------
   The YouTube iframe is not loaded until the visitor asks for
   it: an embed on page load would hand Google the visitor's IP
   and set cookies, which is both a consent-banner trigger under
   ePrivacy and at odds with the Google-free stack the
   monitoring platform is sold on. The poster frame is served
   from our own origin for the same reason.
   ============================================================ */
.video {
  position: relative;
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--color-navy-deep);
  aspect-ratio: 16 / 9;
}

.video img,
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video__play {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: linear-gradient(rgba(19, 31, 69, 0.35), rgba(19, 31, 69, 0.65));
  border: 0;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1rem;
  transition: background var(--transition);
}

.video__play:hover {
  background: linear-gradient(rgba(19, 31, 69, 0.25), rgba(19, 31, 69, 0.55));
}

.video__play::before {
  content: "";
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--color-yellow);
}

/* Optically centred: a triangle centred on its bounding box reads left. */
.video__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 23px;
  border-color: transparent transparent transparent var(--color-navy-deep);
  pointer-events: none;
}

.video__note {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
  max-width: 32ch;
  text-align: center;
}

/* 22. Data table
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-card-bg);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 34rem;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.data-table thead th {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background-color: var(--color-bg-alt);
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table td:first-child {
  white-space: nowrap;
}

.data-table__country {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.data-table__country img {
  flex: none;
  width: 24px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(19, 31, 69, 0.12);
}

.data-table td:last-child {
  color: var(--color-text-muted);
}

.table-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* 23. Metric chips
   ============================================================ */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.chip {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy-deep);
  background-color: rgba(122, 220, 179, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

/* Bullet markers follow the pillar their panel belongs to. */
.panel--monitoring .feature-list li::before {
  background-color: var(--color-mint-dark);
}

/* 24. Country grid
   ============================================================ */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem 1.5rem;
}

.country {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.975rem;
}

.country img {
  flex: none;
  width: 24px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(19, 31, 69, 0.12);
}

/* 25. Contact / address blocks
   ============================================================ */
.contact-details {
  font-style: normal;
  margin-top: 1rem;
}

.contact-details p + p {
  margin-top: 1rem;
}

/* Legal pages: a row-header table reads as a definition list, so the first
   column needs to stop looking like a data cell. */
.data-table th[scope="row"] {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
  width: 34%;
  vertical-align: top;
}

/* Long-form legal copy needs headings to breathe. */
.container--narrow h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.container--narrow h2:first-of-type {
  margin-top: 2rem;
}

.container--narrow h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

/* A screenshot that carries more detail than the grid column allows. */
.shot--wide {
  grid-column: 1 / -1;
}

/* 26. Inline article figure
   ============================================================ */
.figure {
  margin: 2rem 0;
}

.figure img {
  width: 100%;
  border-radius: var(--radius);
}

.figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
