/* Panopticon marketing site — design system
   ------------------------------------------------------------
   Shares its palette, radii and shadow language with the product
   itself (navy / blue / cyan, Inter-style sans, Tabler-derived
   spacing) so the site and the app read as one brand. No webfonts,
   no CDN, no analytics — the site practises what the product preaches.
*/

:root {
  /* Colour: the product's own navy / blue / cyan */
  --ink: #071c33;
  --ink-soft: #124c77;
  --ink-mid: #5b7086;
  --paper: #f3f6fa;
  --paper-raised: #ffffff;
  --paper-line: #dfe7ef;
  --blue: #0c78c9;
  --blue-hover: #0967ad;
  --blue-deep: #0967ad;
  --cyan: #22b8cf;
  --cyan-deep: #158097;
  --amber: #f59f00;
  --amber-deep: #b36b00;
  --coral: #d63939;
  --green: #2fb344;
  --grey: #98a2b3;

  --mono: ui-monospace, "SF Mono", "Cascadia Code", "JetBrains Mono", "Fira Code", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --measure: 40rem;
  --edge: clamp(1.25rem, 4vw, 4.5rem);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 25px rgba(7, 28, 51, 0.06);
  --shadow-raised: 0 20px 45px rgba(7, 28, 51, 0.12);

  color-scheme: light;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background:
    radial-gradient(1200px 640px at 92% -8%, rgba(34, 184, 207, 0.07), transparent 60%),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--sans); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: rgba(7, 28, 51, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--blue);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(calc(-100% - 1rem));
  transition: transform 0.15s ease;
}
.skip-link:focus { transform: translateY(0); }
main:focus { outline: none; }

.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 helpers ---------- */
.shell { max-width: 74rem; margin: 0 auto; padding-inline: var(--edge); }
.measure { max-width: var(--measure); }
.stack { display: flex; flex-direction: column; }

/* ---------- Live / freshness pill ---------- */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
}
.live-pill--dim { color: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.08); background: transparent; }
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(34, 184, 207, 0.55);
  animation: pulse 2s infinite;
  flex: none;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 7px rgba(34, 184, 207, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 184, 207, 0); }
}

/* ---------- Site header ---------- */
.site-header {
  background: rgba(7, 28, 51, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 0.9rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.brand__mark {
  display: inline-flex;
  width: 26px;
  height: 26px;
  flex: none;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 5px;
  border-radius: 7px;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  box-shadow: 0 4px 14px rgba(12, 120, 201, 0.4);
}
.brand__mark span { display: block; width: 3px; border-radius: 2px; background: #fff; }
.brand__mark span:nth-child(1) { height: 6px; opacity: 0.65; }
.brand__mark span:nth-child(2) { height: 13px; }
.brand__mark span:nth-child(3) { height: 10px; opacity: 0.85; }
.brand__dot { color: var(--cyan); }

.site-nav { display: flex; align-items: center; gap: 1.9rem; margin-left: auto; }
.site-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  padding-block: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; border-color: var(--cyan); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--blue); color: #fff; font-weight: 700; box-shadow: 0 12px 26px rgba(12, 120, 201, 0.28); }
.btn--primary:hover { background: var(--blue-hover); }
.btn--ghost-dark { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn--ghost-dark:hover { border-color: #fff; }
.btn--ghost-light { border-color: var(--paper-line); color: var(--ink); }
.btn--ghost-light:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--wide { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- Eyebrows, headings ---------- */
.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
}
.eyebrow::before { content: ""; width: 1.4em; height: 2px; background: var(--blue); display: inline-block; }
.eyebrow--on-dark { color: rgba(255,255,255,0.58); }
.eyebrow--on-dark::before { background: var(--cyan); }

h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); line-height: 1.02; text-wrap: balance; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.12; text-wrap: balance; }
h3 { font-size: 1.2rem; line-height: 1.3; }
.lede { font-size: 1.18rem; line-height: 1.65; color: var(--ink-soft); }
.section-heading { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.6rem; }
.section-heading .lede { max-width: 38rem; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(120% 140% at 15% -10%, #0e355a 0%, var(--ink) 55%), var(--ink);
  color: #fff;
  padding-block: 3.6rem 4.8rem;
  overflow: clip;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.2rem;
  align-items: center;
  margin-top: 1.4rem;
}
.hero h1 { color: #fff; margin-block: 1rem 1.3rem; }
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero .lede { color: rgba(255,255,255,0.82); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

.scope {
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.1rem;
  box-shadow: 0 30px 80px rgba(3, 12, 22, 0.55);
}
.scope__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.9rem; gap: 0.6rem; }
.scope svg { width: 100%; height: auto; }
.scope__callout {
  margin-top: -3.6rem;
  margin-left: 46%;
  background: var(--paper-raised);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  line-height: 1.45;
  box-shadow: 0 18px 40px rgba(3,12,22,0.4);
  position: relative;
  z-index: 2;
}
.scope__callout b { color: var(--amber-deep); }
.scope__callout .confidence { color: var(--cyan-deep); font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding-block: 4.4rem; }
.section--tight { padding-block: 3rem; }
.section--dark { background: var(--ink); color: #fff; }
.section--dark .eyebrow { color: rgba(255,255,255,0.58); }
.section--dark .eyebrow::before { background: var(--cyan); }
.section--raised { background: var(--paper-raised); border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }

/* Problem / contrast panels */
.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: stretch; }
.contrast__panel { border-radius: var(--radius); padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.contrast__panel--before { background: #fff; border: 1px dashed var(--paper-line); }
.contrast__panel--after { background: var(--ink); color: #fff; }
.contrast__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.contrast__panel--before .contrast__label { color: var(--ink-mid); }
.contrast__panel--after .contrast__label { color: var(--cyan); }
.contrast__viz { border-radius: var(--radius-sm); overflow: hidden; background: var(--paper); }
.contrast__panel--after .contrast__viz { background: var(--ink-soft); }
.contrast__viz svg { width: 100%; height: auto; display: block; }
.contrast__caption { font-size: 0.92rem; color: var(--ink-mid); }
.contrast__panel--after .contrast__caption { color: rgba(255,255,255,0.75); }

/* Numbered steps (a genuine sequence: query -> detect -> correlate -> explain) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; counter-reset: step; }
.step { display: flex; flex-direction: column; gap: 0.7rem; padding-top: 1.1rem; border-top: 2px solid var(--paper-line); }
.step__index { font-size: 0.85rem; color: var(--blue); font-weight: 700; }
.step h3 { font-size: 1.05rem; }
.step p { color: var(--ink-mid); font-size: 0.95rem; }

/* Audience / benefit cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--paper-raised);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-raised); }
.card__icon { width: 34px; height: 34px; color: var(--cyan-deep); }
.card h3 { font-size: 1.1rem; }
.card p { color: var(--ink-mid); font-size: 0.96rem; }
.card--dark { background: var(--ink-soft); border-color: rgba(255,255,255,0.1); color: #fff; box-shadow: none; }
.card--dark p { color: rgba(255,255,255,0.72); }
.card--dark .card__icon { color: var(--cyan); }
.card--dark:hover { transform: none; box-shadow: none; }

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

/* Screenshot / UI-preview frames — the one place we deliberately borrow the
   product's own rounded card language, as a callback. */
.frame {
  background: var(--paper-raised);
  border: 1px solid var(--paper-line);
  border-radius: 16px;
  padding: 0.6rem;
  box-shadow: var(--shadow-raised);
}
.frame__chrome { display: flex; gap: 0.4rem; padding: 0.5rem 0.6rem 0.7rem; }
.frame__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--paper-line); }
.frame img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--paper-line);
  border-radius: 10px;
}
.frame figcaption { font-size: 0.88rem; color: var(--ink-mid); padding: 0.9rem 0.6rem 0.4rem; }

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.gallery--single { grid-template-columns: 1fr; max-width: 46rem; margin-inline: auto; }

/* Trust strip */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.trust__item { display: flex; gap: 1rem; }
.trust__icon { width: 30px; height: 30px; flex: none; color: var(--cyan); }
.trust__item h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.trust__item p { font-size: 0.92rem; color: rgba(255,255,255,0.72); }

/* Final CTA band */
.cta-band { background: var(--ink); color: #fff; padding-block: 4.2rem; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: rgba(255,255,255,0.78); margin-inline: auto; }
.cta-band__actions { display: flex; justify-content: center; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }

/* Detector taxonomy (product page) */
.taxonomy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.taxonomy__group { border: 1px solid var(--paper-line); border-radius: var(--radius); padding: 1.5rem; background: var(--paper-raised); box-shadow: var(--shadow); }
.taxonomy__group h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 1.02rem; }
.taxonomy__group h3 .swatch { width: 10px; height: 10px; border-radius: 50%; }
.taxonomy__group ul { margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.55rem; }
.taxonomy__group li { font-size: 0.92rem; color: var(--ink-mid); padding-left: 1.1rem; position: relative; }
.taxonomy__group li::before { content: "—"; position: absolute; left: 0; color: var(--paper-line); }
.taxonomy__group li b { color: var(--ink); font-weight: 600; }

/* Health states */
.health-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.health-chip { display: flex; align-items: center; gap: 0.55rem; background: var(--paper-raised); border: 1px solid var(--paper-line); border-radius: 999px; padding: 0.5rem 1rem 0.5rem 0.6rem; font-size: 0.86rem; box-shadow: var(--shadow); }
.health-chip__dot { width: 12px; height: 12px; border-radius: 50%; }
.health-chip__dot--green { background: var(--green); }
.health-chip__dot--amber { background: var(--amber); }
.health-chip__dot--red { background: var(--coral); }
.health-chip__dot--grey { background: var(--grey); }

/* Pipeline (workbench: draft -> validate -> backtest -> publish -> enable) */
.pipeline { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--paper-line); border-radius: var(--radius); overflow: hidden; background: var(--paper-raised); box-shadow: var(--shadow); }
.pipeline__stage { flex: 1 1 11rem; padding: 1.2rem 1.3rem; border-right: 1px solid var(--paper-line); }
.pipeline__stage:last-child { border-right: none; }
.pipeline__stage b { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue-deep); display: block; margin-bottom: 0.4rem; }
.pipeline__stage p { font-size: 0.86rem; color: var(--ink-mid); }

/* Benefits page: audience sections */
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 3.6rem;
}
.audience:not(:last-child) { border-bottom: 1px solid var(--paper-line); }
.audience--reverse .audience__copy { order: 2; }
.audience__tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan-deep); }
.audience h2 { margin-block: 0.6rem 1rem; }
.audience ul { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.3rem; }
.audience li { display: flex; gap: 0.7rem; font-size: 0.97rem; color: var(--ink-soft); }
.audience li svg { width: 18px; height: 18px; flex: none; margin-top: 0.15rem; color: var(--blue); }
.before-after { display: flex; flex-direction: column; gap: 0.8rem; }
.before-after__row { display: grid; grid-template-columns: 5.5rem 1fr; gap: 0.9rem; font-size: 0.92rem; align-items: baseline; }
.before-after__row b { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.before-after__row--before b { color: var(--coral); }
.before-after__row--after b { color: var(--green); }

/* Security page */
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.security-item { border: 1px solid var(--paper-line); border-radius: var(--radius); padding: 1.6rem; background: var(--paper-raised); box-shadow: var(--shadow); }
.security-item__meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; }
.security-item__meta svg { width: 22px; height: 22px; color: var(--cyan-deep); }
.security-item h3 { font-size: 1.02rem; }
.security-item p { font-size: 0.93rem; color: var(--ink-mid); }
.note-panel { background: var(--paper-raised); border-left: 3px solid var(--amber); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 1.2rem 1.4rem; font-size: 0.93rem; color: var(--ink-soft); box-shadow: var(--shadow); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 22rem); gap: 3rem; align-items: start; }
.field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.3rem; }
.field label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.01em; color: var(--ink-soft); }
.field input, .field textarea {
  font: inherit;
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm);
  background: var(--paper-raised);
  color: var(--ink);
  resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--blue); }
.field textarea { min-height: 9rem; }
.field-hint { font-size: 0.82rem; color: var(--ink-mid); }
.challenge { display: flex; align-items: center; gap: 0.8rem; background: var(--paper); border: 1px solid var(--paper-line); border-radius: var(--radius-sm); padding: 0.9rem 1rem; }
.challenge__sum { font-family: var(--mono); font-size: 1.05rem; font-weight: 600; white-space: nowrap; }
.challenge input { width: 5.5rem; text-align: center; }
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 1rem; padding: 0.9rem 1rem; border-radius: var(--radius-sm); font-size: 0.92rem; display: none; }
.form-status--ok { display: block; background: rgba(47,179,68,0.12); color: #1a6b2a; border: 1px solid rgba(47,179,68,0.35); }
.form-status--err { display: block; background: rgba(214,57,57,0.1); color: #93262b; border: 1px solid rgba(214,57,57,0.35); }

.contact-aside { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 1.6rem; }
.contact-card p { font-size: 0.94rem; color: rgba(255,255,255,0.78); }
.contact-card a { color: var(--cyan); text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.contact-card h2, .contact-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.65); padding-block: 3rem 2.2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.site-footer__row { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.site-footer .brand { font-size: 0.95rem; }
.site-footer__note { font-size: 0.86rem; max-width: 26rem; color: rgba(255,255,255,0.55); margin-top: 0.7rem; }
.site-footer nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.site-footer nav a { font-size: 0.86rem; text-decoration: none; color: rgba(255,255,255,0.65); }
.site-footer nav a:hover { color: #fff; }
.site-footer__bottom { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8rem; color: rgba(255,255,255,0.45); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; }
.site-footer__bottom a { color: inherit; }

/* ---------- Reveal-on-scroll (small, deliberate, respects reduced motion) ----------
   .reveal elements are fully visible by default — content must never depend
   on JavaScript to become visible. site.js adds .reveal-armed itself, right
   before it starts observing, so only a browser that is actually going to
   animate an element ever hides it first. */
.reveal-armed { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-armed.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-armed { opacity: 1; transform: none; transition: none; }
  .pulse-dot { animation: none; }
}

/* ---------- Utilities ----------
   Small, named, reused across pages — kept here rather than as inline
   `style=` attributes so the site's own Content-Security-Policy can stay
   free of 'unsafe-inline' for style-src. */
.hero--compact { padding-block: 3.2rem 3.6rem; }
.hero__title--sub { font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-block: 0.8rem 1.1rem; }
.centred { margin-inline: auto; text-align: center; }
.mt-sm { margin-top: 1.4rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 2.2rem; }
.mt-xl { margin-top: 2.4rem; }
.mb-lg { margin-bottom: 2.2rem; }
.lede--sm { font-size: 1.02rem; }
.note-text { font-size: 0.94rem; color: var(--ink-mid); }
.label-note { text-transform: none; letter-spacing: 0; font-weight: 400; }
.contrast--top { align-items: start; }
.contrast__panel--solid { border-style: solid; }
.contrast__panel h2 { font-size: 1.5rem; }
.taxonomy__group--note { display: flex; flex-direction: column; justify-content: center; }
.swatch--amber { background: var(--amber); }
.swatch--cyan { background: var(--cyan); }
.swatch--coral { background: var(--coral); }
.swatch--grey { background: var(--grey); }
.swatch--green { background: var(--green); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .contrast { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: 1fr; }
  .taxonomy { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .audience--reverse .audience__copy { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-nav { position: fixed; inset: 60px 0 auto 0; background: rgba(7,28,51,0.97); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); flex-direction: column; align-items: flex-start; padding: 1.2rem var(--edge) 1.6rem; border-bottom: 1px solid rgba(255,255,255,0.1); transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s; box-shadow: 0 20px 40px rgba(3,12,22,0.45); }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition-delay: 0s; }
  body.nav-open { overflow: hidden; }
  .site-nav a { width: 100%; padding-block: 0.6rem; }
  .nav-toggle {
    display: inline-flex; margin-left: auto; background: none; border: 1px solid rgba(255,255,255,0.3); color: #fff;
    border-radius: var(--radius-sm); width: 38px; height: 38px; align-items: center; justify-content: center; cursor: pointer;
  }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .scope__callout { margin-left: 0; }
}
