:root {
  --white: #FFFFFF;
  --surface: #F4F5F4;
  --hairline: #E2E4E3;
  --ink: #0E0E0E;
  --grey: #6B6F6E;          /* eyebrows, tags, secondary text */
  --muted: rgba(14, 14, 14, 0.56);
  --shadow: 0 10px 36px rgba(14, 14, 14, 0.07);
  --page-bg: #FFFFFF;       /* pure white throughout - the storm arc lives in the footage */
  --max: 1200px;
  --font-display: "neue-haas-grotesk-display", "Open Sans", sans-serif;
  --font-text: "neue-haas-grotesk-text", "Open Sans", sans-serif;
  /* unified type scale - every section below the hero consumes these tokens */
  --type-statement: clamp(44px, 5.9vw, 104px); /* hero H1 scale: ALL headlines share it */
  --type-h2: var(--type-statement);            /* section headings = statement scale */
  --type-h3: clamp(1.35rem, 1.8vw, 1.7rem);   /* card / column titles */
  --type-body: clamp(1.25rem, 2vw, 1.6rem);   /* all running body copy = the 1997 passage scale */
  /* InquilionGRC wordmark (Variant A) - themed centrally */
  --wm-ink: #0E0E0E;
  --wm-g: rgba(14, 14, 14, 0.85);
  --wm-r: rgba(14, 14, 14, 0.55);
  --wm-c: rgba(14, 14, 14, 0.32);
}
/* dark-context overrides (apply .wm-dark to any ink-background container) */
.wm-dark {
  --wm-ink: #FFFFFF;
  --wm-g: rgba(255, 255, 255, 0.9);
  --wm-r: rgba(255, 255, 255, 0.58);
  --wm-c: rgba(255, 255, 255, 0.34);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-text);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, .display-figure, .statement, .footer-wordmark, .loader-mark {
  font-family: var(--font-display);
}
h1, h2 { font-weight: 700; letter-spacing: -0.02em; }
h3, h4 { font-weight: 700; }


/* ---------- Load choreography ---------- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--white);
  display: grid;
  place-items: center;
  transition: opacity 0.45s ease;
}
#loader .loader-mark {
  font-size: clamp(22px, 3vw, 32px);
  opacity: 0;
  animation: loader-mark 1.15s ease forwards;
}
@keyframes loader-mark {
  0% { opacity: 0; transform: translateY(8px); }
  35% { opacity: 1; transform: translateY(0); }
  75% { opacity: 1; }
  100% { opacity: 0; }
}
#loader.done { opacity: 0; pointer-events: none; }
body.no-loader #loader { display: none; }

/* hero entrance stagger (after loader) */
.h1-line, .hero-overlap .eyebrow, .hero-overlap .hero-sub, .hero-overlap .hero-steer {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
body.hero-in .h1-line, body.hero-in .hero-overlap .eyebrow, body.hero-in .hero-overlap .hero-sub, body.hero-in .hero-overlap .hero-steer {
  opacity: 1;
  transform: translateY(0);
}
body.hero-in .hero-overlap .eyebrow { transition-delay: 0ms; }
body.hero-in .h1-line:nth-of-type(1) { transition-delay: 90ms; }
body.hero-in .h1-line:nth-of-type(2) { transition-delay: 180ms; }
body.hero-in .hero-overlap .hero-sub { transition-delay: 300ms; }
body.hero-in .hero-overlap .hero-steer { transition-delay: 440ms; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
}

/* ---------- Buttons & links ---------- */
.pill {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: background 200ms ease, color 200ms ease;
}
.pill.solid { background: var(--ink); color: var(--white); }
.pill.solid:hover { background: transparent; color: var(--ink); }
.pill.outline { background: transparent; color: var(--ink); }
.pill.outline:hover { background: var(--ink); color: var(--white); }
.pill.big { margin-top: 48px; }

/* underline sweep for text links */
.footer-links a, .footer-legal-links a, .footer-brand a {
  position: relative;
  text-decoration: none;
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 250ms ease;
}
.footer-links a:hover, .footer-legal-links a:hover, .footer-brand a:hover {
  background-size: 100% 1px;
}

/* ---------- Navigation ---------- */
/* static bar: no bg, no condensing - logo and pills hold their place */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  height: 88px;
  padding: 0 40px;
  background: transparent;
  transition: opacity 350ms ease, transform 350ms ease;
}
/* the bar steps aside while the footer holds the stage */
.site-nav.nav-out {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
}
/* ---------- InquilionGRC wordmark lockup ---------- */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  color: var(--wm-ink);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark .wm-inq { font-weight: 300; color: var(--wm-ink); }
.wordmark .wm-grc { font-weight: 700; }
.wordmark .wm-g { color: var(--wm-g); }
.wordmark .wm-r { color: var(--wm-r); }
.wordmark .wm-c { color: var(--wm-c); }
/* G R C set tight - between the original tracking and touching */
.wordmark .wm-r, .wordmark .wm-c { margin-left: -0.03em; }

/* inline lockup: brand mention inside any copy, at that location's size */
.wordmark.wm-inline {
  display: inline-flex;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: -0.035em;
  vertical-align: baseline;
}
.wordmark.wm-inline .wm-inq { font-weight: 300; }
/* optical correction: the Display cut runs small against Text-face running copy */
p .wordmark.wm-inline, dd .wordmark.wm-inline, li .wordmark.wm-inline { font-size: 1.08em; }

.wordmark--nav {
  font-size: 48px;
  letter-spacing: -0.035em;
  /* 60% white band running in from the viewport edge, squared right-hand end */
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 0;
  padding: 6px 24px 10px 40px;
  margin-left: -40px;   /* swallows the nav padding so the band bleeds off the left edge */
}
/* SOHub twin pills: light briefing pill + ink menu pill, every screen size */
.nav-actions { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.pill-nav {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 7px 7px 7px 24px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease;
}
.pill-nav--cta { background: #ECEDED; }
.pill-nav--cta:hover { background: #E0E2E1; }
.pill-nav--menu { background: var(--ink); color: var(--white); }
.pn-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  flex: none;
  transition: background 200ms ease;
}
.pill-nav--cta .pn-circle { background: var(--white); }
.pill-nav--cta .pn-circle svg { width: 15px; height: 15px; stroke: var(--ink); fill: none; }
.pill-nav--menu .pn-circle { background: rgba(255, 255, 255, 0.18); }
.pill-nav--menu:hover .pn-circle { background: rgba(255, 255, 255, 0.32); }
/* the two dots become a cross while the menu is open */
.pn-dots span {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 250ms ease, width 250ms ease, height 250ms ease;
}
.pn-dots span:nth-child(1) { transform: translate(calc(-50% - 3.5px), -50%); }
.pn-dots span:nth-child(2) { transform: translate(calc(-50% + 3.5px), -50%); }
.pill-nav--menu.open .pn-dots span { width: 14px; height: 2px; border-radius: 1px; }
.pill-nav--menu.open .pn-dots span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.pill-nav--menu.open .pn-dots span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--white);
  display: grid;
  place-content: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);   /* the menu speaks in the headline voice */
  font-weight: 700;
  /* scales down as items are added: never larger than 56px, never taller than its share of the viewport */
  font-size: min(clamp(30px, 4.6vw, 56px), calc((100vh - 180px) / var(--menu-count, 9) * 0.95 - 15px));
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--wm-g);   /* the G in GRC */
  text-decoration: none;
  padding: 8px 0;
  transition: color 200ms ease;
}
.mobile-menu a:hover { color: var(--wm-r); }   /* lifts to the R on hover */

/* ---------- Cinematic scrub ---------- */
.cinematic { position: relative; height: 600vh; }
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--page-bg);
}
.sticky canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* borderless float: soft white feather over any residual edge tone in the footage */
.wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(115% 100% at 50% 50%, transparent 52%, var(--white) 96%),
    linear-gradient(180deg, var(--white) 0%, transparent 14%, transparent 86%, var(--white) 100%);
}

/* ---------- Overlapping hero headline ---------- */
.hero-overlap {
  position: absolute;
  z-index: 11;
  left: clamp(20px, 5vw, 80px);
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centre-left: vertically centred against the dome */
  max-width: min(92vw, 1300px);
  pointer-events: none;
  will-change: opacity, transform;
}
.hero-overlap h1 {
  font-size: clamp(44px, 5.9vw, 120px);   /* statement curve with extra headroom: the opening line sits above all section headlines */
  margin-left: -0.035em;                  /* optical alignment with the subline */
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.hero-overlap .h1-line { white-space: nowrap; }   /* breaks are set with <br>, not auto-wrap */
.hero-overlap .hero-sub {
  margin-top: 30px;
  font-weight: 300;
  font-size: clamp(1.02rem, 1.6vw, 1.35rem);
  color: var(--muted);
  line-height: 1.7;
}
.hero-steer { margin-top: 38px; }
.hero-steer p {
  font-weight: 300;
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  color: var(--muted);
  line-height: 1.6;
}
.steer-cue {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink);
  animation: bob 1.8s ease-in-out infinite;
}

/* ---------- Journey left rail ---------- */
.journey-menu {
  position: absolute;
  z-index: 10;
  left: clamp(20px, 4.5vw, 72px);
  bottom: clamp(32px, 7vh, 84px);
  width: min(600px, 86vw);
}
.stop { padding: 9px 0; }
.stop-row { display: flex; align-items: center; gap: 18px; }
.stop-num {
  flex: none;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-weight: 600;
  font-size: 12px;
  color: #9A9E9D;                    /* tonal: inactive recedes */
  transition: background 1.9s cubic-bezier(.45,0,.15,1), box-shadow 1.9s cubic-bezier(.45,0,.15,1), color 1.9s cubic-bezier(.45,0,.15,1);
}
.stop h3 {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  color: #9A9E9D;                    /* tonal: inactive recedes */
  transition: font-size 1.9s cubic-bezier(.45,0,.15,1), letter-spacing 1.9s cubic-bezier(.45,0,.15,1), color 1.9s cubic-bezier(.45,0,.15,1);
}
.stop.active .stop-num,
.stop.active h3 { color: var(--ink); }
.stop-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 2.1s cubic-bezier(.45,0,.15,1), opacity 1.5s ease 0.5s;
}
.stop-body p {
  margin: 16px 0 12px 58px;
  padding-left: 20px;
  border-left: 2px solid var(--ink);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
}
.stop.active .stop-num {
  background: var(--white);
  box-shadow: var(--shadow);
}
.stop.active h3 {
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  letter-spacing: 0.03em;
}
.stop.active .stop-body { max-height: 260px; opacity: 1; }

.rail-progress {
  display: none;
  position: absolute;
  z-index: 10;
  right: 18px;
  bottom: 22px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--grey);
}

/* hero frame-load progress: thin ink bar */
.frame-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  z-index: 14;
  background: rgba(14, 14, 14, 0.08);
  transition: opacity 0.5s;
}
.frame-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--ink);
  transition: width 0.3s ease;
}
.frame-progress.done { opacity: 0; }

.scroll-hint {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--grey);
  animation: bob 1.8s ease-in-out infinite;
  transition: opacity 0.4s;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}
/* end-of-journey cue: fades in as stop 04 completes */
.end-hint {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--grey);
  opacity: 0;
  animation: bob 1.8s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
  pointer-events: none;   /* clickable only once visible (driven from journey.js) */
}
.end-hint:hover { color: var(--ink); }

/* ---------- The 1997 passage ---------- */
.passage-inner { max-width: none; margin: 0; }
.passage-inner p {
  font-weight: 300;
  font-size: var(--type-body);
  line-height: 1.65;
  color: var(--muted);   /* matches the definition paragraph - one body colour everywhere */
  margin-bottom: clamp(26px, 3.5vw, 40px);
  max-width: 70ch;   /* same reading measure as all other body copy */
}
.passage-inner .passage-final {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);   /* headline stays ink; only body copy is muted */
  font-size: var(--type-statement);   /* statement moments share the hero headline scale */
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: clamp(40px, 5vw, 64px);
  margin-bottom: 0;
  margin-left: -0.035em;              /* optical alignment with the passage copy */
  max-width: none;                    /* full page width, responsive via the vw clamp */
}

/* ---------- Why now: stacking ink panels (SOHub pattern) ---------- */
.stack { display: grid; gap: 24px; }
.stack-card {
  position: sticky;
  top: calc(96px + var(--i) * 16px);
  border-radius: 36px;
  min-height: 62vh;
  padding: clamp(48px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.78);
}
.stack-card:nth-child(1) { background: #0E0E0E; }
.stack-card:nth-child(2) { background: #191919; }
.stack-card:nth-child(3) { background: #242424; }
.stack-num {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: clamp(28px, 4vw, 56px);
}
.stack-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--type-statement);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: auto;
  margin-left: -0.035em;   /* optical alignment with the card body */
}
.stack-title .t1 { color: #FFFFFF; }
.stack-title .t2 { color: rgba(255, 255, 255, 0.45); }
.stack-body {
  margin-top: clamp(40px, 5vw, 72px);
  font-weight: 300;
  font-size: var(--type-body);
  line-height: 1.8;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.78);
}

/* flowing variant: long-form content (the incident cards) reads top-down.
   Sized to fit one viewport so a card is fully readable before the next stacks over it. */
.stack-card--flow {
  display: block;
  min-height: 0;
  padding: clamp(36px, 3.5vw, 56px) clamp(36px, 4.5vw, 80px);
}
.stack-card--flow .stack-title {
  margin-bottom: 12px;
  font-size: clamp(32px, 3.4vw, 56px);   /* one step down: the content is the point here */
}
.stack-meta {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: clamp(20px, 2.2vw, 32px);
}
.stack-card--flow .stack-body {
  margin: 0 0 14px;
  max-width: 82ch;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.65;
}
.source-link--dark {
  display: inline-block;
  margin: 14px 26px 0 0;
  font-weight: 600;
  font-size: 0.85rem;
  color: #FFFFFF;
  text-decoration: none;
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
}

/* ---------- Three questions - work-grid, ink squares ---------- */
.questions .section-head { margin-bottom: clamp(64px, 8vw, 100px); }
.question-cards {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  align-items: stretch;
}
.q-card {
  background: var(--ink);
  border-radius: 32px;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  padding: clamp(48px, 4vw, 64px);
  transition: transform 450ms cubic-bezier(.22,1,.36,1), box-shadow 250ms ease,
              opacity 0.7s cubic-bezier(.22,1,.36,1);
}
.q-card:hover { transform: translateY(-3px); box-shadow: 0 22px 56px rgba(14, 14, 14, 0.28); }
.q-card-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 6vw, 88px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: clamp(28px, 3vw, 44px);   /* questions share one start line across the row */
}
.q-card p {
  font-weight: 300;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.78);
}
.q-card p strong { font-weight: 600; color: #FFFFFF; }
/* staggered entry: fade + 24px rise, 120ms apart */
.q-card.reveal { transform: translateY(24px); }
.q-card.reveal.in { transform: translateY(0); }
.q-card:nth-child(2).reveal { transition-delay: 120ms; }
.q-card:nth-child(3).reveal { transition-delay: 240ms; }
.question-coda {
  max-width: none;
  margin: clamp(48px, 6vw, 72px) 0 0;
  font-weight: 300;
  font-size: var(--type-body);
  color: var(--grey);
}

/* ---------- Interstitial statements ---------- */
.interstitial {
  min-height: 100vh;
  display: grid;
  place-content: center;
  padding: 120px 6vw;
  background-color: var(--white);
}
.statement {
  font-weight: 700;
  font-size: var(--type-statement);   /* statement moments share the hero headline scale */
  letter-spacing: -0.02em;
  line-height: 1.02;
  max-width: none;                    /* full page width, responsive via the vw clamp */
  text-align: center;
}
.statement .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  transition: opacity 0.6s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.statement.in .w { opacity: 1; transform: translateY(0); }
/* tonal knockback on statements: graded spans tagged by journey.js */
.statement .w.knock { letter-spacing: inherit; }
.statement-sub {
  margin-top: 28px;
  text-align: center;
  font-weight: 300;
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(160px, 16vw, 220px) 6vw;
  background: var(--white);
}
.section--surface { background-color: var(--surface); }

/* full-width, left-aligned content system: rows span the page inside the
   section padding and every section shares the same left edge */
.section-head { max-width: none; margin: 0 0 96px; }
.section-head h2,
.figure-row .figure-side h2,
.definition-inner h2,
.cta-section h2 {
  font-size: var(--type-h2);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: none;   /* 100% page width, responsive via the vw clamp */
  margin-left: -0.035em;   /* optical alignment: cancels the opening glyph's side bearing */
}
.section-head p {
  margin-top: 24px;
  font-weight: 300;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.8;
  max-width: 70ch;
}

/* ---------- Ink panels: full-bleed dark chapters ---------- */
.section--ink {
  background: var(--ink);
  border-radius: 36px;
  margin: 0 24px;
  padding: clamp(96px, 11vw, 140px) calc(6vw - 24px);
  color: rgba(255, 255, 255, 0.78);
}
.section--ink .eyebrow { color: rgba(255, 255, 255, 0.5); }
.section--ink h2, .section--ink h3 { color: #FFFFFF; }
.section--ink .display-figure { color: #FFFFFF; }
.two-tone .t1 { color: inherit; }
.section--ink .two-tone .t2 { color: rgba(255, 255, 255, 0.45); }

/* graded word treatment: gradient text, position driven by page scroll (journey.js) */
.knock {
  background-image: linear-gradient(90deg, #0E0E0E 0%, #9A9E9D 50%, #0E0E0E 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  box-decoration-break: clone;          /* wrapped lines each get the full gradient: no washed-out glyphs */
  -webkit-box-decoration-break: clone;
  padding-bottom: 0.14em;               /* paints below the line box so descenders keep their tails */
  padding-top: 0.06em;
  padding-right: 0.06em;                /* the negative tracking pulls the box inside the last glyph's ink */
  margin-right: -0.06em;                /* layout unchanged: the full stop stays snug */
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.knock--ink {
  background-image: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0.95) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .knock { background: none; color: #9A9E9D; -webkit-text-fill-color: #9A9E9D; }
  .knock--ink { background: none; color: rgba(255,255,255,0.45); -webkit-text-fill-color: rgba(255,255,255,0.45); }
}

/* question cards on ink */
.section--ink .q-card { background: rgba(255, 255, 255, 0.06); }
.section--ink .q-card:hover { box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5); }
.section--ink .q-card-num { color: rgba(255, 255, 255, 0.45); }
.section--ink .q-card p { color: rgba(255, 255, 255, 0.78); }
.section--ink .q-card p strong { color: #FFFFFF; }
.section--ink .question-coda { color: rgba(255, 255, 255, 0.5); }

/* report panels on ink */
.section--ink .report-panel { border-top-color: rgba(255, 255, 255, 0.25); }
.section--ink .rp-head .rp-audience { color: rgba(255, 255, 255, 0.5); }
.section--ink .rp-body p { color: rgba(255, 255, 255, 0.78); }
/* per-report GRC element letter, in the wordmark's tonal fade */
.rp-letter {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 8vw, 130px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}
.rp-letter.rp-g { color: rgba(255, 255, 255, 0.9); }
.rp-letter.rp-r { color: rgba(255, 255, 255, 0.58); }
.rp-letter.rp-c { color: rgba(255, 255, 255, 0.34); }

.report-tags { display: flex; gap: 10px; margin-top: 28px; }
.rtag {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Scroll reveals ---------- */
.reveal, .s-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal.in, .s-item.in { opacity: 1; transform: translateY(0); }

/* ---------- Oversized display figures ---------- */
.display-figure {
  font-weight: 800;
  font-size: clamp(120px, 16vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.figure-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  max-width: none;
  margin: 0 0 96px;
}
.figure-row .figure-side p {
  margin-top: 26px;
  font-weight: 300;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.8;
  max-width: 70ch;
}

/* ---------- Fourteen domains: two-column one-viewport index ---------- */
.accordion {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(40px, 5vw, 88px);
  align-items: start;
}
.acc-col { display: grid; gap: 12px; align-content: start; }
.acc-row {
  background: var(--surface);          /* SOHub list row: soft grey, rounded, spaced */
  border-radius: 16px;
  padding: 0 clamp(18px, 2vw, 28px);
  transition: background 250ms ease;
}
.acc-row:hover, .acc-row.open { background: #E9EBEA; }
.acc-head {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr auto 20px;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
}
.acc-body .head-tag {
  display: inline-block;
  margin: 0 0 22px 64px;     /* aligns with the expansion text */
  padding: 6px 14px;
  background: #FFFFFF;       /* chip reads against the open row's grey */
  border-radius: 999px;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.acc-head .d-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.98rem, 1.3vw, 1.15rem);   /* same scale as the domain name */
  letter-spacing: -0.01em;
  color: #9A9E9D;                               /* knock grey: the index reads as a designed pair */
}
.acc-head h4 {
  font-weight: 600;
  font-size: clamp(0.98rem, 1.3vw, 1.15rem);
  letter-spacing: -0.01em;
}
.acc-mark { position: relative; width: 16px; height: 16px; }
.acc-mark::before, .acc-mark::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 350ms ease;
}
.acc-mark::before { left: 0; top: 7px; width: 16px; height: 2px; }
.acc-mark::after { left: 7px; top: 0; width: 2px; height: 16px; }
.acc-row.open .acc-mark::after { transform: rotate(90deg); }
.acc-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 350ms ease, opacity 350ms ease;
}
.acc-body p {
  margin: 0 0 22px 64px;   /* aligns with the domain name (44px number column + 20px gap) */
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 52ch;
}
.acc-row.open .acc-body { max-height: 200px; opacity: 1; }
/* FAQ variant: single column, long-form answers */
.accordion--faq { grid-template-columns: 1fr; }
.accordion--faq .acc-head { grid-template-columns: 44px 1fr 20px; }
.accordion--faq .acc-head h4 { font-size: clamp(1.05rem, 1.4vw, 1.3rem); }
.accordion--faq .acc-body p { max-width: none; margin-right: clamp(24px, 3vw, 56px); font-size: clamp(1rem, 1.15vw, 1.15rem); }   /* fills the row, clear of the + column */
.accordion--faq .acc-row.open .acc-body { max-height: 720px; }

/* ---------- The three reports - animated cards ---------- */
.report-cards-grid {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  align-items: stretch;
}
.report-card-anim {
  background: var(--ink);
  border-radius: 32px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  transition: transform 450ms cubic-bezier(.22,1,.36,1), box-shadow 250ms ease,
              opacity 0.7s cubic-bezier(.22,1,.36,1);
}
.report-card-anim:hover { transform: translateY(-3px); box-shadow: 0 22px 56px rgba(14, 14, 14, 0.28); }
.rc-content { padding: clamp(48px, 4vw, 64px); }
/* the GRC element letter, in the wordmark's tonal fade */
.rc-letter {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 8vw, 130px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: clamp(28px, 3vw, 44px);
}
.rc-letter.rc-g { color: rgba(255, 255, 255, 0.9); }
.rc-letter.rc-r { color: rgba(255, 255, 255, 0.58); }
.rc-letter.rc-c { color: rgba(255, 255, 255, 0.34); }
.rc-content .eyebrow { margin-bottom: 16px; color: rgba(255, 255, 255, 0.5); }
.rc-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--type-h3);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 10px;
  color: #FFFFFF;
}
.rc-content .rp-audience {
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.rc-content .rc-body { font-weight: 300; color: rgba(255, 255, 255, 0.78); font-size: clamp(1.1rem, 1.3vw, 1.3rem); line-height: 1.7; }

/* ---------- Parity moment: full-width category band ---------- */
.parity {
  padding: clamp(64px, 7vw, 80px) 6vw;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.parity-inner { max-width: none; margin: 0; }
.parity-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 8px;
}
.parity-item {
  padding: 26px clamp(24px, 3vw, 48px);
  border-left: 1px solid var(--hairline);
}
.parity-item:first-child { border-left: none; padding-left: 0; }
.parity-item h4 {
  font-size: var(--type-h3);
  font-weight: 600;
  margin-bottom: 8px;
}
.parity-item p {
  font-weight: 300;
  font-size: var(--type-body);
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Definition beat ---------- */
.definition-inner { max-width: none; margin: 0; }
.definition-inner p {
  margin-top: 36px;
  font-weight: 300;
  font-size: var(--type-body);
  color: var(--muted);
  line-height: 1.8;
  max-width: 70ch;
}

/* ---------- CTA ---------- */
.cta-section { text-align: left; }   /* same left-aligned system as every other section */
.cta-section h2 {
  max-width: none;
  margin: 0 0 0 -0.035em;   /* keep the optical alignment the blanket margin reset was wiping */
}
.cta-section p {
  margin-top: 28px;
  font-weight: 300;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.8;
  max-width: 70ch;
}

/* ---------- Destination footer ---------- */
.site-footer {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  background: var(--ink);   /* inverted: ink destination, same layout and content */
  overflow: hidden;
  /* dark wordmark tokens for the footer lockup */
  --wm-ink: #FFFFFF;
  --wm-g: rgba(255, 255, 255, 0.9);
  --wm-r: rgba(255, 255, 255, 0.58);
  --wm-c: rgba(255, 255, 255, 0.34);
}
.footer-sky {
  position: absolute;
  inset: 0;
  background-image: url("images/footer-sky.jpg");
  background-size: cover;
  background-position: center;
}
.footer-sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.72) 0%, rgba(14, 14, 14, 0.92) 62%, rgba(14, 14, 14, 0.985) 100%);
}
.footer-content {
  position: relative;
  width: 100%;
  padding: clamp(140px, 18vw, 240px) 6vw 48px;
}
.footer-wordmark {
  max-width: none;
  margin: 0 0 24px;
  line-height: 0.9;
}
.wordmark--footer {
  font-size: clamp(64px, 12vw, 160px);
  margin-left: -0.045em;   /* optical alignment: cancels the I's side bearing at display size */
}
/* phone and email in the headline voice, scaled for the footer */
.footer-brand p.footer-reach {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 1.6vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #FFFFFF;
}
.footer-brand .footer-reach a {
  color: #FFFFFF;
  background-image: linear-gradient(#FFFFFF, #FFFFFF);   /* the sweep reads white on ink */
}

.footer-positioning {
  max-width: none;
  /* tucked into the wordmark's descender strip: starts on the u, bottom on the q tail, ends on the C */
  margin: calc(clamp(64px, 12vw, 160px) * -0.24) 0 36px calc(clamp(64px, 12vw, 160px) * 1.1235);
  width: calc(clamp(64px, 12vw, 160px) * 3.7337);
  font-weight: 300;
  font-size: max(12px, calc(clamp(64px, 12vw, 160px) * 0.14));
  line-height: 1.1;
  color: #FFFFFF;
  /* natural spacing, anchored to the right-hand side of the C */
  text-align: right;
}
.footer-positioning { max-width: none; }
.footer-inner {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
}
.footer-bentlebury {
  display: block;
  width: 200px;
  height: auto;
  margin-bottom: 24px;
  opacity: 0.9;   /* true white asset: no CSS invert, crawlers see what users see */
}
.footer-brand p { font-weight: 300; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); line-height: 1.75; margin-bottom: 14px; }
.footer-brand strong { font-weight: 600; color: rgba(255, 255, 255, 0.9); }
.footer-brand a { color: rgba(255, 255, 255, 0.9); }
.footer-links h4 {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.45);
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-weight: 300; font-size: 0.92rem; color: rgba(255, 255, 255, 0.6); }
/* underline sweep inverts on ink */
.site-footer .footer-links a, .site-footer .footer-legal-links a, .site-footer .footer-brand a {
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
}
.footer-bottom {
  max-width: none;
  margin: clamp(72px, 9vw, 110px) 0 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}
.footer-disclaimer { font-weight: 300; font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); line-height: 1.7; max-width: 72ch; }
.footer-legal-links { display: flex; gap: 26px; }
.footer-legal-links a { font-weight: 600; font-size: 0.78rem; color: rgba(255, 255, 255, 0.6); }

/* ---------- Mid-width stacking ---------- */
@media (max-width: 999px) {
  .report-cards-grid { grid-template-columns: 1fr; }
  .report-card-media { aspect-ratio: 16 / 9; }
}
@media (max-width: 899px) {
  .question-cards { grid-template-columns: 1fr; }
  .q-card { aspect-ratio: auto; min-height: 320px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  #loader { display: none; }
  .h1-line, .hero-overlap .eyebrow, .hero-overlap .hero-sub,
  .reveal, .s-item, .statement .w {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .scroll-hint { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1279px) {
  .hero-overlap h1 { font-size: clamp(54px, 8.5vw, 110px); }
}

@media (max-width: 767px) {
  .site-nav { height: 64px; padding: 0 16px; grid-template-columns: auto 1fr; gap: 10px; }
  .wordmark--nav { font-size: 26px; padding: 5px 14px 7px 16px; margin-left: -16px; }
  .nav-actions { gap: 8px; }
  .pill-nav { gap: 8px; padding: 5px 5px 5px 14px; font-size: 9px; letter-spacing: 0.08em; }
  .pn-circle { width: 26px; height: 26px; }
  .pill-nav--cta .pn-circle svg { width: 12px; height: 12px; }

  .hero-overlap { left: 16px; right: 16px; top: 0; bottom: 18vh; }
  .hero-sub .br-3 { display: none; }   /* third line is a desktop nicety; mobile wraps naturally */
  .hero-overlap h1 { font-size: clamp(34px, 10vw, 52px); }
  .hero-overlap .h1-line { white-space: normal; }   /* mobile wraps naturally */
  .hero-overlap .hero-sub { font-size: 0.95rem; max-width: 32ch; }   /* clears the dome, no viewport-edge wrap */

  /* rail → bottom caption, active item only, with progress */
  .journey-menu { left: 16px; right: 76px; width: auto; bottom: 22px; }
  .stop { display: none; padding: 0; }
  .stop.active { display: block; }
  .stop-num { display: none; }
  .stop.active h3 { font-size: 1.15rem; }
  .stop-body p { margin: 10px 0 0; padding-left: 14px; font-size: 0.92rem; max-width: none; }
  .rail-progress { display: block; }
  .scroll-hint { display: none; }

  .cinematic { height: 420vh; }
  .section { padding: clamp(64px, 14vw, 96px) 6vw; }
  .interstitial { min-height: 70vh; padding: 80px 6vw; }
  .figure-row { grid-template-columns: 1fr; align-items: start; gap: 24px; margin-bottom: 56px; }
  .display-figure { font-size: clamp(96px, 24vw, 140px); }

  .accordion { grid-template-columns: 1fr; gap: 12px; }
  .acc-head { grid-template-columns: 40px 1fr 20px; padding: 16px 0; }
  .acc-body p { margin-left: 60px; }
  .acc-body .head-tag { margin-left: 60px; }

  .report-cards-grid { grid-template-columns: 1fr; }

  .section--ink { margin: 0 10px; border-radius: 24px; padding: 72px 6vw; }
  .report-tags { flex-wrap: wrap; }
  .stack-card { min-height: 70vh; border-radius: 24px; top: calc(72px + var(--i) * 10px); }
  .stack-title { font-size: clamp(34px, 9vw, 52px); }
  .parity-row { grid-template-columns: 1fr; }
  .parity-item { border-left: none; border-top: 1px solid var(--hairline); padding: 20px 0; }
  .parity-item:first-child { border-top: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-content { padding-top: 120px; }
}
@media (max-width: 480px) {
  .wordmark--nav { font-size: 22px; }
  .nav-actions { gap: 6px; }
  .pill-nav--cta { padding: 9px 12px; }
  .pill-nav--cta .pn-circle { display: none; }   /* text-only briefing pill, the roundel returns at tablet width */
}

/* ==================== Inner pages (Approach et al) ==================== */
/* static two-tone hero: no scrub, same type system */
.page-hero {
  padding: clamp(180px, 22vw, 280px) 6vw clamp(48px, 6vw, 80px);
}
.page-hero h1 {
  font-size: clamp(44px, 5.9vw, 120px);   /* matches the homepage hero H1 exactly */
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-left: -0.035em;   /* optical alignment */
  max-width: none;
}
.page-hero .standfirst {
  margin-top: 32px;
  font-weight: 300;
  font-size: var(--type-body);
  line-height: 1.8;
  color: var(--muted);
  max-width: 70ch;
}

/* statement-scale closing line usable in any white section */
.statement-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--type-statement);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: clamp(40px, 5vw, 64px);
  margin-left: -0.035em;
  max-width: none;
}

/* two ink cards on white (the does-not-do material, stepped shades) */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(48px, 6vw, 80px);
}
.duo-item {
  border-radius: 36px;
  padding: clamp(40px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.78);
}
.duo-item:nth-child(1) { background: #0E0E0E; }
.duo-item:nth-child(2) { background: #191919; }
.duo-item h4 { font-size: var(--type-h3); font-weight: 600; margin-bottom: 14px; color: #FFFFFF; }
.duo-item p { font-weight: 300; font-size: var(--type-body); color: rgba(255, 255, 255, 0.78); line-height: 1.7; max-width: 60ch; }

/* comparison table (three-ways-to-pay; shared component) */
.cmp-table {
  margin-top: clamp(40px, 5vw, 64px);
}
.cmp-row {
  display: grid;
  grid-template-columns: clamp(150px, 15vw, 230px) 1fr 1fr 1.15fr;
  gap: clamp(16px, 2vw, 32px);
  padding: clamp(18px, 2vw, 28px) clamp(16px, 1.6vw, 24px);
  border-bottom: 1px solid var(--hairline);
}
.cmp-row--head {
  background: var(--surface);
  border-radius: 14px 14px 0 0;
  border-bottom: none;
}
.cmp-row--head > div {
  font-weight: 600;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: var(--ink);
  line-height: 1.4;
}
.cmp-row .cmp-th {
  font-weight: 600;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: var(--ink);
  line-height: 1.5;
}
.cmp-row > div {
  font-weight: 300;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: var(--muted);
  line-height: 1.55;
}
.cmp-cell-label { display: none; }
@media (max-width: 899px) {
  /* each row becomes a stacked card, cells labelled by column */
  .cmp-row {
    grid-template-columns: 1fr;
    gap: 14px;
    background: var(--surface);
    border-bottom: none;
    border-radius: 16px;
    margin-bottom: 12px;
    padding: 22px 20px;
  }
  .cmp-row--head { display: none; }
  .cmp-row .cmp-th { font-size: 1.05rem; }
  .cmp-cell-label {
    display: block;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 3px;
  }
}

/* four supporting ink cards (the ROI return grid) */
.quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}
.quad-item {
  background: #191919;
  border-radius: 24px;
  padding: clamp(40px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.78);
}
.quad-item h4 { font-size: var(--type-h3); font-weight: 600; margin-bottom: 14px; color: #FFFFFF; }
.quad-item p { font-weight: 300; font-size: var(--type-body); color: rgba(255, 255, 255, 0.78); line-height: 1.7; max-width: 60ch; }
@media (max-width: 899px) {
  .quad { grid-template-columns: 1fr; }
}

/* domains index trimmings */
.index-legend {
  margin-top: clamp(32px, 4vw, 48px);
  font-weight: 300;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--grey);
  line-height: 1.7;
  max-width: 90ch;
}
.index-note { margin-top: clamp(32px, 4vw, 48px); font-weight: 300; font-size: var(--type-body); color: var(--muted); max-width: 70ch; }

/* the page's single ink moment: full-bleed inset panel */
.ink-panel {
  margin: 0 24px;
  background: var(--ink);
  border-radius: 36px;
  padding: clamp(56px, 7vw, 110px) calc(6vw - 24px);
  color: rgba(255, 255, 255, 0.78);
}
.ink-panel .stack-title { color: #FFFFFF; }
.refusals {
  margin-top: clamp(40px, 4.5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 2.6vw, 40px) clamp(32px, 4vw, 64px);
}
.refusal h4 { font-size: var(--type-h3); font-weight: 600; color: #FFFFFF; margin-bottom: 8px; }
.refusal p { font-weight: 300; font-size: clamp(1.05rem, 1.2vw, 1.2rem); color: rgba(255, 255, 255, 0.78); line-height: 1.6; max-width: 56ch; }

/* where InquilionGRC sits: grey organisation rows, ink card between them */
.role-rows { margin-top: 0; display: grid; gap: 14px; }   /* the section-head margin carries the gap alone */
.section-head + .role-rows { margin-top: clamp(-48px, -3vw, -28px); }   /* rows belong to their intro: pull back inside the standard section gap */
/* reduce gap between named-engagements and value-case sections */
#named-engagements + #value-case { padding-top: clamp(48px, 5vw, 80px) !important; }
#named-engagements + #value-case .role-rows { margin-top: 0; }
/* linked rows carry a twenty-to-ten-past arrow inline on the right */
.role-row.role-row--linked { grid-template-columns: clamp(180px, 22vw, 320px) 1fr auto; }
.row-arrow {
  display: grid;
  place-items: center;
  align-self: center;
  color: var(--ink);
  transition: transform 220ms cubic-bezier(.22,1,.36,1);
}
.row-arrow svg { width: clamp(56px, 5vw, 84px); height: clamp(56px, 5vw, 84px); stroke: currentColor; stroke-width: 4.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.row-arrow { transition: color 200ms ease, transform 220ms cubic-bezier(.22,1,.36,1); }
.row-arrow:hover { color: #9A9E9D; transform: translate(3px, -3px); }
/* arrow inside an accordion expansion: floats right of the copy, slightly smaller */
.acc-body .row-arrow { float: right; margin: 2px clamp(8px, 1vw, 18px) 12px 24px; }
.acc-body .row-arrow svg { width: 48px; height: 48px; stroke-width: 4; }
/* in-page cue beneath a row set, a la FIND OUT MORE */
.section-cue {
  display: block;
  width: max-content;
  margin: clamp(36px, 4.5vw, 56px) auto 0;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--grey);
  text-decoration: none;
  animation: bob 1.8s ease-in-out infinite;
}
.section-cue:hover { color: var(--ink); }
.role-row {
  display: grid;
  grid-template-columns: clamp(180px, 22vw, 320px) 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  padding: clamp(28px, 3vw, 44px);
  background: var(--surface);
  border-radius: 16px;
}
.role-row h4 {
  font-family: var(--font-display);   /* same voice as the main headings */
  font-weight: 700;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  letter-spacing: -0.02em;
}
.role-row p { font-weight: 300; font-size: var(--type-body); color: var(--muted); line-height: 1.7; max-width: 70ch; }
/* the value-case row: the third, contrasting bar beneath the two named engagements */
.role-row--value { background: var(--ink); }
.role-row--value h4 { color: #FFFFFF; }
.role-row--value p { color: rgba(255, 255, 255, 0.82); }
.role-row--value p a.text-link,
.role-row--value p a.text-link:visited,
.role-row--value p a.text-link:active { color: #FFFFFF; -webkit-text-fill-color: #FFFFFF; }
.role-row--value p a.text-link:hover { text-decoration-color: #FFFFFF; }
.role-row--value .row-arrow { color: #FFFFFF; }
.role-row--value .row-arrow:hover { color: #9A9E9D; }
/* the independent layer: the ink row between the organisation's grey rows */
.role-card {
  background: var(--ink);
  border-radius: 16px;
  padding: clamp(28px, 3vw, 44px);
  display: grid;
  grid-template-columns: clamp(180px, 22vw, 320px) 1fr;   /* same grid as the rows: columns align */
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
.role-card h4 { font-size: clamp(1.7rem, 2.4vw, 2.2rem); font-weight: 600; color: #FFFFFF; }
.role-card p { font-weight: 300; font-size: var(--type-body); color: rgba(255, 255, 255, 0.78); line-height: 1.7; max-width: 70ch; }

/* incident evidence blocks (Why Now) */
.incident {
  border-top: 1px solid var(--hairline);
  padding: clamp(40px, 5vw, 64px) 0 clamp(32px, 4vw, 48px);
}
.incident h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.06;
}
.incident .incident-meta {
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}
.incident p {
  margin-top: 22px;
  font-weight: 300;
  font-size: var(--type-body);
  color: var(--muted);
  line-height: 1.75;
  max-width: 76ch;
}
.incident .source-link {
  display: inline-block;
  margin: 26px 26px 0 0;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--ink), var(--ink));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
.incident-disclaimer {
  margin-top: clamp(40px, 5vw, 56px);
  font-weight: 300;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--grey);
  line-height: 1.7;
  max-width: 90ch;
}
.ink-panel .ink-body {
  margin-top: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  font-size: var(--type-body);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 70ch;
}

/* inline text link: quiet, dotted grey underline */
a.text-link, a.text-link:visited, a.text-link:active {
  color: var(--ink);
  font-weight: inherit;
  text-decoration: underline dotted;
  text-decoration-color: #9A9E9D;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  transition: text-decoration-color 200ms ease;
}
a.text-link:hover { text-decoration-color: var(--ink); }

/* the reports page: extract cards, RAG rows, key-value tables */
.extract-card {
  background: var(--surface);
  border-radius: 24px;
  padding: clamp(36px, 4vw, 64px);
  margin-top: clamp(36px, 4vw, 56px);
}
.extract-card .extract-label {
  display: block;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.extract-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}
/* extract kicker at full h3 scale, knocked back so the finding beneath leads */
.extract-card .extract-kicker-h3 { color: #9A9E9D; margin-bottom: 10px; }
.extract-card p { font-weight: 300; font-size: clamp(1.02rem, 1.2vw, 1.15rem); color: var(--muted); line-height: 1.75; margin-bottom: 14px; max-width: 80ch; }
.extract-card ul { margin: 0 0 14px 22px; }
.extract-card li { font-weight: 300; font-size: clamp(1.02rem, 1.2vw, 1.15rem); color: var(--muted); line-height: 1.7; margin-bottom: 10px; max-width: 78ch; }
.extract-note { margin-top: 20px; font-weight: 300; font-size: clamp(0.98rem, 1.1vw, 1.08rem); color: var(--grey); line-height: 1.7; max-width: 80ch; }

/* paired extract columns on the R-grey (wordmark mid-tone) */
.extract-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(36px, 4vw, 56px);
}
.extract-pair .extract-card { margin-top: 0; }
.extract-card--r {
  background: rgba(14, 14, 14, 0.55);
  --wm-ink: #FFFFFF;
  --wm-g: rgba(255, 255, 255, 0.9);
  --wm-r: rgba(255, 255, 255, 0.58);
  --wm-c: rgba(255, 255, 255, 0.34);
}
.extract-card--r .extract-label { color: rgba(255, 255, 255, 0.65); }
.extract-card--r h3 { color: #FFFFFF; }
.extract-card--r p { color: rgba(255, 255, 255, 0.92); }
.extract-card--r .framework-chips span { background: rgba(255, 255, 255, 0.94); color: var(--ink); }
@media (max-width: 899px) { .extract-pair { grid-template-columns: 1fr; } }

/* RAG chip - restrained colour: the sample report is content, not UI */
.rag {
  display: inline-block;
  min-width: 76px;
  text-align: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rag--red { background: #B3261E; color: #FFFFFF; }
.rag--amber { background: #DFA100; color: #1A1A1A; }
.rag--green { background: #2E7D4F; color: #FFFFFF; }
.rag--na { background: #FFFFFF; color: var(--grey); }

/* domain overview rows (SOHub list, static) */
.rag-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 12px clamp(24px, 2.5vw, 40px); margin-top: clamp(32px, 4vw, 48px); }
.rag-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border-radius: 14px;
  padding: 16px clamp(18px, 2vw, 26px);
}
.rag-row .d-num { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #9A9E9D; }
.rag-row h5 { font-weight: 600; font-size: clamp(0.95rem, 1.1vw, 1.08rem); letter-spacing: -0.01em; }

/* leadership bylines: canon card-header scale, role knocked back */
.section-head .person-h3 { margin-top: clamp(32px, 3.5vw, 52px); }   /* clear of the section heading above */
.person-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.person-h3 .person-role { color: #9A9E9D; }

/* full-width extract card: copy runs the width of the score band above it */
.extract-card--full p { max-width: none; }

/* report cover score band: a facsimile of the document's front strip */
.score-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(12px, 1.4vw, 20px);
  margin: clamp(24px, 2.6vw, 36px) 0;
}
.score-cell {
  background: #FFFFFF;
  border-radius: 14px;
  padding: clamp(20px, 2vw, 28px) clamp(20px, 2.2vw, 32px);
}
.score-cell .score-label {
  display: block;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
.score-cell .score-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.score-cell .score-value .rag { vertical-align: middle; }
.score-cell .score-sub {
  display: block;
  margin-top: 8px;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--grey);
}
.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.2vw, 16px);
  margin: 0 0 clamp(20px, 2.2vw, 28px);
}
.status-cell {
  flex: 1 1 0;
  min-width: 86px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
}
.status-cell .status-n {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1;
  color: var(--ink);
}
.status-cell .status-k {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
@media (max-width: 767px) {
  .score-band { grid-template-columns: 1fr; }
  .status-cell { min-width: 30%; }
}

/* key-value extract table */
.kv { margin-top: 8px; border-top: 1px solid var(--hairline); }
.kv-row {
  display: grid;
  grid-template-columns: clamp(160px, 18vw, 260px) 1fr;
  gap: clamp(18px, 2.5vw, 40px);
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.kv-row dt { font-weight: 600; font-size: clamp(0.98rem, 1.1vw, 1.08rem); color: var(--ink); line-height: 1.6; }   /* same scale as the body: baselines align natively */
.kv-row dd { font-weight: 300; font-size: clamp(0.98rem, 1.1vw, 1.08rem); color: var(--muted); line-height: 1.6; }

/* regulatory framework chips */
.framework-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: clamp(28px, 3vw, 40px) 0; }
.framework-chips span {
  padding: 10px 18px;
  background: var(--surface);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}

/* five questions: numbered grey rows */
.q-rows { display: grid; gap: 14px; margin-top: clamp(40px, 5vw, 64px); }
.q-row {
  display: grid;
  grid-template-columns: clamp(56px, 6vw, 88px) 1fr;
  gap: clamp(18px, 2.5vw, 40px);
  align-items: center;
  background: var(--surface);
  border-radius: 16px;
  padding: clamp(24px, 2.6vw, 40px);
}
.q-row .q-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3vw, 3rem); color: #9A9E9D; line-height: 1; }
.q-row p { font-weight: 300; font-size: var(--type-body); color: var(--ink); line-height: 1.55; }

@media (max-width: 899px) {
  .rag-rows { grid-template-columns: 1fr; }
  .kv-row { grid-template-columns: 1fr; gap: 4px; }
}

/* contact page: form + sidebar */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.contact-form .field { margin-bottom: 22px; }
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.contact-form label .req { color: var(--ink); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 1.02rem;
  color: var(--ink);
  transition: border-color 200ms ease, background 200ms ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--ink);
}
/* tick-box request: reads as running copy, not as a form label */
.contact-form .field--check label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.55;
  cursor: pointer;
  margin-bottom: 0;
}
.contact-form .field--check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 3px;
  accent-color: var(--ink);
  cursor: pointer;
}
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form button.pill { border: none; cursor: pointer; font-family: var(--font-text); }
.contact-note { margin-top: 18px; font-weight: 300; font-size: 0.88rem; color: var(--grey); line-height: 1.6; }
.contact-aside h4 { font-size: var(--type-h3); font-weight: 600; margin-bottom: 12px; }
.contact-aside p { font-weight: 300; font-size: clamp(1.02rem, 1.2vw, 1.15rem); color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.contact-aside .aside-block { margin-bottom: clamp(36px, 4vw, 56px); }
.contact-aside a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--ink); }
@media (max-width: 899px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* legal pages: readable document scale beneath the standard hero */
.legal-content { max-width: 75ch; }
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  letter-spacing: -0.02em;
  margin: clamp(40px, 5vw, 56px) 0 16px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-weight: 300;
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul { margin: 0 0 14px 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--ink); }
.legal-updated { margin-top: clamp(40px, 5vw, 56px); font-size: 0.9rem; color: var(--grey); font-weight: 300; }

@media (max-width: 767px) {
  .duo { grid-template-columns: 1fr; }
  .refusals { grid-template-columns: 1fr; }
  .ink-panel { margin: 0 10px; border-radius: 24px; padding: 64px 6vw; }
  .role-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .role-card { grid-template-columns: 1fr; gap: 12px; padding: 28px; }
}

/* ---------- DSPT subdomain additions: link styling outside legal-content ---------- */
.passage-inner a, .acc-body a, .standfirst a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}
.ink-panel .refusal a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}
.ink-panel .refusal a:hover { border-bottom-color: #FFFFFF; }
