/* WIA Management v3 - editorial case control */
:root {
  --v3-ink: #101820;
  --v3-ink-soft: #2f3a43;
  --v3-paper: #f4f0e8;
  --v3-paper-light: #fcfaf5;
  --v3-white: #ffffff;
  --v3-blue: #1d55d5;
  --v3-blue-dark: #173c91;
  --v3-blue-pale: #dce6ff;
  --v3-rust: #d95d32;
  --v3-rust-pale: #f6ded4;
  --v3-mint: #bfe6d5;
  --v3-line: #cfd2cc;
  --v3-line-dark: #808991;
  --v3-shadow: 0 22px 60px rgba(16, 24, 32, 0.10);
  --v3-shell: min(1200px, calc(100vw - 48px));
  --v3-section: clamp(5rem, 9vw, 9rem);
}

html {
  background: var(--v3-paper);
}

body,
body.page-home,
body.page-calculator,
body.page-knowledge,
body.page-about,
body.page-request {
  color: var(--v3-ink-soft);
  background: var(--v3-paper);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.58;
}

body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1100px;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(16, 24, 32, 0.026) 1px, transparent 1px);
  background-size: 100% 32px;
  opacity: 0.75;
}

h1,
h2,
h3,
h4 {
  color: var(--v3-ink);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.045em;
}

.site-shell {
  width: var(--v3-shell);
}

.section {
  padding: var(--v3-section) 0;
}

.section--compact {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section--dark {
  position: relative;
  color: #dfe6ec;
  background: var(--v3-ink);
  overflow: hidden;
}

.section--dark::before {
  content: "RISICO / DOSSIER / TERMIJN";
  position: absolute;
  right: -0.25em;
  top: 0.05em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.section--dark .section-intro {
  color: #b9c3cb;
}

.section-head {
  max-width: 850px;
  gap: 1.2rem;
  margin-bottom: clamp(2.75rem, 5vw, 4.75rem);
}

.section-kicker,
.hero-eyebrow,
.case-label,
.knowledge-tag,
.result-eyebrow {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--v3-blue);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before,
.hero-eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 0;
  background: currentColor;
  box-shadow: none;
}

.section-title {
  max-width: 18ch;
  font-size: clamp(2.55rem, 5.5vw, 5.25rem);
  line-height: 0.96;
}

.section-intro {
  max-width: 65ch;
  color: var(--v3-ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

/* Header */
.site-header {
  height: 82px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.14);
  background: rgba(244, 240, 232, 0.94);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  gap: 2rem;
}

.site-logo {
  color: var(--v3-ink);
}

.site-logo-mark {
  width: 39px;
  height: 39px;
  border: 0;
  border-radius: 4px;
  color: var(--v3-white);
  background: var(--v3-blue);
  box-shadow: 6px 6px 0 var(--v3-rust);
}

.site-logo-text strong {
  color: var(--v3-ink);
  font-size: 0.99rem;
  letter-spacing: -0.03em;
}

.site-logo-text > span {
  color: #667079;
  font-size: 0.69rem;
}

.site-nav {
  gap: 1.65rem;
}

.site-nav a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--v3-ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;
  height: 2px;
  background: var(--v3-rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.site-nav a.is-current {
  color: var(--v3-ink);
}

.btn,
.button,
.ghost-button {
  min-height: 3.25rem;
  padding: 0.9rem 1.25rem;
  border-radius: 5px;
  font-size: 0.89rem;
  box-shadow: none;
}

.btn::after,
.button::after {
  content: "\2192";
  font-size: 1.15em;
  transition: transform 180ms ease;
}

.btn:hover::after,
.button:hover::after {
  transform: translateX(4px);
}

.btn--primary {
  color: #fff;
  background: var(--v3-blue);
  box-shadow: none;
}

.btn--primary:hover {
  background: var(--v3-blue-dark);
  box-shadow: 5px 5px 0 var(--v3-rust);
}

.btn--secondary,
.btn--surface,
.btn--ghost,
.ghost-button {
  border: 1px solid var(--v3-ink);
  color: var(--v3-ink);
  background: transparent;
}

.section--dark .btn--secondary,
.final-panel .btn--secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.header-cta {
  min-height: 2.85rem;
  padding-inline: 1.1rem;
}

/* Hero */
.risk-hero,
.page-hero {
  position: relative;
  padding: clamp(4.75rem, 8vw, 8.25rem) 0 clamp(5.5rem, 9vw, 9rem);
  color: var(--v3-ink-soft);
  background:
    linear-gradient(90deg, transparent 0 67%, rgba(29, 85, 213, 0.055) 67%),
    var(--v3-paper);
  isolation: isolate;
}

.risk-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: calc(50% - 600px);
  width: 1px;
  background: rgba(16, 24, 32, 0.13);
  box-shadow: 300px 0 rgba(16, 24, 32, 0.06), 600px 0 rgba(16, 24, 32, 0.06), 900px 0 rgba(16, 24, 32, 0.06), 1200px 0 rgba(16, 24, 32, 0.13);
}

.hero-grid,
.page-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(3.5rem, 8vw, 8rem);
}

.hero-copy,
.page-hero-copy {
  max-width: 670px;
}

.page-breadcrumb,
.page-breadcrumb a {
  color: #6d777f;
}

.hero-title,
.page-hero h1 {
  max-width: 12ch;
  color: var(--v3-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 5.35vw, 5.65rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.page-hero h1 {
  font-size: clamp(3.25rem, 5.5vw, 5.8rem);
}

.hero-body,
.page-hero-copy > p {
  max-width: 59ch;
  color: var(--v3-ink-soft);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 3.25rem;
  border-top: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
}

.hero-trust li {
  min-height: 3.5rem;
  padding: 1rem 0.75rem 1rem 0;
  color: var(--v3-ink);
  font-size: 0.8rem;
  font-weight: 650;
}

.hero-trust li:nth-child(even) {
  padding-left: 1rem;
  border-left: 1px solid var(--v3-line);
}

.hero-trust-marker {
  width: 7px;
  height: 7px;
  background: var(--v3-rust);
  box-shadow: none;
}

.hero-stat-band,
.floating-badge {
  display: none;
}

.hero-visual-wrap {
  min-height: 590px;
  display: grid;
  place-items: center;
}

.case-overview-v3 {
  position: relative;
  width: min(100%, 540px);
  min-height: 570px;
}

.case-overview-v3::before {
  content: "";
  position: absolute;
  inset: 54px -32px -24px 58px;
  z-index: -1;
  background: var(--v3-blue);
}

.case-sheet-v3 {
  position: relative;
  min-height: 530px;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid var(--v3-ink);
  background: var(--v3-paper-light);
  box-shadow: 18px 18px 0 rgba(16, 24, 32, 0.12);
  overflow: hidden;
}

.case-sheet-v3::after {
  content: "WIA";
  position: absolute;
  right: -0.08em;
  bottom: -0.19em;
  color: rgba(16, 24, 32, 0.045);
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
}

.case-sheet-head-v3,
.case-sheet-status-v3,
.case-sheet-metric-v3,
.case-sheet-timeline-v3 {
  position: relative;
  z-index: 1;
}

.case-sheet-head-v3 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--v3-line);
}

.case-sheet-head-v3 span,
.case-sheet-metric-v3 span,
.case-sheet-timeline-v3 span {
  color: #69737b;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-sheet-head-v3 strong {
  max-width: 15ch;
  color: var(--v3-ink);
  font-size: 1.12rem;
  line-height: 1.2;
}

.case-sheet-code-v3 {
  color: var(--v3-blue);
  font-size: 0.75rem;
  font-weight: 700;
}

.case-sheet-status-v3 {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 1rem;
  padding: 2rem 0 2.25rem;
}

.case-status-line-v3 {
  width: 3px;
  height: 100%;
  background: var(--v3-rust);
}

.case-sheet-status-v3 small {
  color: var(--v3-rust);
  font-weight: 700;
}

.case-sheet-status-v3 h2 {
  max-width: 11ch;
  margin-top: 0.35rem;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 400;
  line-height: 0.98;
}

.case-sheet-metric-v3 {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
}

.case-sheet-metric-v3 strong {
  color: var(--v3-ink);
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.case-sheet-meter-v3 {
  grid-column: 1 / -1;
  height: 6px;
  background: linear-gradient(90deg, var(--v3-mint) 0 34%, #f1cf8f 34% 66%, var(--v3-rust) 66%);
}

.case-sheet-timeline-v3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 2rem;
}

.case-sheet-timeline-v3 span {
  position: relative;
  padding-top: 1rem;
  font-size: 0.55rem;
  letter-spacing: 0.06em;
}

.case-sheet-timeline-v3 span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border: 2px solid var(--v3-paper-light);
  border-radius: 50%;
  background: var(--v3-blue);
  box-shadow: 0 0 0 1px var(--v3-blue);
}

.case-sheet-timeline-v3 span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  width: calc(100% - 8px);
  height: 1px;
  background: var(--v3-line-dark);
}

.case-note-v3 {
  position: absolute;
  right: -18px;
  bottom: 44px;
  z-index: 3;
  width: 180px;
  padding: 1.1rem 1.2rem;
  color: #fff;
  background: var(--v3-rust);
  box-shadow: 10px 10px 0 rgba(16, 24, 32, 0.16);
}

.case-note-v3 span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-note-v3 strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
}

/* Surfaces become editorial blocks instead of nested cards */
.surface-card,
.panel-card,
.metric-card,
.knowledge-card,
.case-card,
.trust-card,
.faq-item,
.story-card,
.person-card,
.article-tile,
.filter-chip,
.audience-card,
.expertise-card,
.process-step,
.intake-card,
.tool-panel,
.about-panel,
.page-panel,
.support-card {
  border-radius: 0;
  border-color: var(--v3-line);
  background: transparent;
  box-shadow: none;
}

.intake-section {
  background: var(--v3-white);
}

.intake-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.intake-card {
  padding: clamp(1.75rem, 4vw, 3.5rem);
  border: 1px solid var(--v3-ink);
  background: var(--v3-paper-light);
}

.intake-card-header h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.45rem, 4vw, 4.2rem);
  font-weight: 400;
}

.intake-stepper {
  gap: 0;
  border-top: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
}

.intake-step {
  padding: 1rem;
  border: 0;
  border-right: 1px solid var(--v3-line);
  border-radius: 0;
  background: transparent;
}

.intake-step:last-child {
  border-right: 0;
}

.intake-step.is-current {
  color: #fff;
  background: var(--v3-blue);
}

.medical-data-notice,
.form-help,
.privacy-note {
  border-radius: 0;
  border-left: 3px solid var(--v3-rust);
  color: #6e3e2d;
  background: var(--v3-rust-pale);
}

.intake-choices {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--v3-line);
}

.intake-choice {
  min-height: 96px;
  padding: 1.25rem 0;
  border: 0;
  border-bottom: 1px solid var(--v3-line);
  border-radius: 0;
  background: transparent;
  text-align: left;
}

.intake-choice:hover,
.intake-choice.is-selected,
.intake-choice[aria-pressed="true"] {
  padding-left: 1rem;
  color: var(--v3-ink);
  background: var(--v3-blue-pale);
  transform: none;
}

.intake-choice-icon,
.expertise-icon,
.trust-card-icon {
  border-radius: 2px;
  color: #fff;
  background: var(--v3-blue);
  box-shadow: none;
}

.field input,
.field select,
.field textarea,
.search-input,
.slider-block,
.segment-group {
  border-radius: 3px;
  border-color: var(--v3-line-dark);
  background: #fff;
  box-shadow: none;
}

.field input,
.field select,
.field textarea,
.search-input {
  min-height: 3.4rem;
}

.consent-card {
  border-radius: 3px;
  border-color: var(--v3-line-dark);
  background: #fff;
}

.post-intake-strip {
  position: sticky;
  top: 110px;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.post-intake-copy > h2 {
  max-width: 11ch;
  margin-top: 1rem;
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
}

.post-intake-steps {
  display: block;
  margin-top: 2rem;
  border-top: 1px solid var(--v3-ink);
}

.post-intake-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--v3-line);
}

.post-intake-step-index {
  grid-row: 1 / 3;
  color: var(--v3-rust);
  font-size: 0.78rem;
  font-weight: 700;
}

.post-intake-step h3 {
  font-size: 1rem;
}

.post-intake-step p {
  margin-top: 0.3rem;
  font-size: 0.86rem;
}

.post-intake-visual {
  display: none;
}

/* Risk, process and expertise sections */
.problem-layout {
  gap: clamp(2rem, 6vw, 6rem);
}

.risk-matrix {
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.risk-row {
  grid-template-columns: 18px 1fr auto;
  padding: 1.35rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  background: transparent;
}

.risk-chip {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 2px;
  color: #fff;
  background: transparent;
}

.solution-card {
  border-radius: 0;
  color: var(--v3-ink);
  background: var(--v3-rust-pale);
  box-shadow: 12px 12px 0 var(--v3-rust);
}

.process-line {
  gap: 0;
  border-top: 1px solid var(--v3-ink);
}

.process-step {
  padding: 2rem 1.5rem 2rem 0;
  border: 0;
  border-right: 1px solid var(--v3-line);
}

.process-step:last-child {
  border-right: 0;
  padding-left: 1.5rem;
}

.process-step-index,
.timeline-year {
  color: var(--v3-rust);
  font-family: Georgia, serif;
}

.audience-grid,
.expertise-grid,
.trust-grid,
.case-grid,
.value-grid,
.person-grid {
  gap: 0;
  border-top: 1px solid var(--v3-ink);
  border-left: 1px solid var(--v3-line);
}

.audience-card,
.expertise-card,
.trust-card,
.case-card,
.value-grid > *,
.person-card {
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 0;
  border-right: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
  background: transparent;
}

.audience-card--featured {
  color: #fff;
  background: var(--v3-blue);
}

.audience-card--featured h3 {
  color: #fff;
}

.expertise-card:hover,
.trust-card:hover,
.audience-card:hover {
  background: var(--v3-paper-light);
  transform: none;
  box-shadow: inset 0 -4px var(--v3-blue);
}

/* Calculator */
.calculator-section,
.page-calculator .section:first-of-type {
  background: var(--v3-paper-light);
}

.calculator-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.tool-panel {
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border: 1px solid var(--v3-ink);
  background: #fff;
}

.tool-panel--dark,
.result-board {
  position: sticky;
  top: 108px;
  border: 0;
  color: #fff;
  background: var(--v3-ink);
  box-shadow: 14px 14px 0 var(--v3-blue);
}

.result-board h2,
.result-board h3,
.result-main-label,
.result-meta-row span,
.tool-panel--dark h2,
.tool-panel--dark h3 {
  color: #fff;
}

.result-main {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

.money-value,
.result-main-value {
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 400;
}

.risk-meter-track {
  height: 8px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--v3-mint), #efcf91 55%, var(--v3-rust));
}

.risk-meter-fill {
  background: transparent;
}

.risk-meter-marker {
  width: 3px;
  border-radius: 0;
  background: #fff;
}

.segment-option {
  border-radius: 2px;
}

input[type="range"] {
  accent-color: var(--v3-blue);
}

/* Knowledge as an editorial index */
.knowledge-grid,
.knowledge-home-grid {
  gap: 0;
  border-top: 1px solid var(--v3-ink);
}

.knowledge-card,
.article-tile {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 0.62fr);
  min-height: 270px;
  border: 0;
  border-bottom: 1px solid var(--v3-line);
  background: transparent;
  overflow: hidden;
}

.knowledge-card:hover,
.article-tile:hover {
  background: var(--v3-paper-light);
  transform: none;
  box-shadow: inset 5px 0 var(--v3-rust);
}

.knowledge-cover,
.article-tile > .knowledge-cover {
  min-height: 100%;
  border-radius: 0;
  background-color: var(--v3-blue-pale);
}

.knowledge-content,
.article-tile-content {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.knowledge-content h3,
.article-tile-content h2,
.article-tile-content h3 {
  margin-top: 0.7rem;
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
}

.toolbar,
.filter-row {
  border-radius: 0;
  border: 0;
  border-top: 1px solid var(--v3-ink);
  border-bottom: 1px solid var(--v3-line);
  background: transparent;
  box-shadow: none;
}

.filter-chip {
  border-radius: 2px;
}

.filter-chip.is-active {
  color: #fff;
  background: var(--v3-blue);
}

/* FAQ, stories, about */
.faq-list,
.story-list {
  border-top: 1px solid var(--v3-ink);
}

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--v3-line);
  background: transparent;
}

.faq-question {
  min-height: 76px;
  padding: 1.25rem 0;
  color: var(--v3-ink);
  font-size: 1.05rem;
}

.faq-icon {
  border: 0;
  border-radius: 2px;
  color: #fff;
  background: var(--v3-blue);
}

.faq-answer {
  padding: 0 4rem 1.5rem 0;
}

.story-grid {
  gap: clamp(2.5rem, 6vw, 6rem);
}

.story-card,
.about-panel,
.page-panel {
  padding: clamp(1.75rem, 4vw, 3.5rem);
  border: 1px solid var(--v3-ink);
  background: var(--v3-paper-light);
}

.page-hero .page-panel {
  border: 0;
  color: #cbd4db;
  background: var(--v3-ink);
  box-shadow: 12px 12px 0 var(--v3-blue);
}

.page-hero .page-panel h2,
.page-hero .page-panel h3,
.page-hero .page-panel strong,
.page-hero .page-panel .story-list strong,
.page-hero .page-panel .command-metric strong,
.page-hero .page-panel .network-summary strong {
  color: #fff;
}

.page-hero .page-panel p,
.page-hero .page-panel li,
.page-hero .page-panel span,
.page-hero .page-panel .story-list span,
.page-hero .page-panel .command-metric span,
.page-hero .page-panel .network-summary span {
  color: #cbd4db;
}

.page-hero .page-panel .story-list,
.page-hero .page-panel .command-metrics,
.page-hero .page-panel .network-summary {
  border-color: rgba(255, 255, 255, 0.22);
}

.page-hero .page-panel .story-list li {
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
}

.page-hero .page-panel .page-panel-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.page-hero .page-panel .page-panel-strip span {
  padding: 0.85rem 0.65rem 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.68rem;
}

.story-stats {
  gap: 0;
  border-top: 1px solid var(--v3-line);
}

.story-stat {
  border-radius: 0;
  border: 0;
  border-right: 1px solid var(--v3-line);
  background: transparent;
}

.network-figure,
.network-map {
  border-radius: 0;
  background: var(--v3-blue-pale);
  box-shadow: 12px 12px 0 var(--v3-blue);
}

/* CTA and footer */
.final-panel {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  padding: clamp(2.5rem, 6vw, 5.5rem);
  border-radius: 0;
  color: #fff;
  background: var(--v3-blue);
  box-shadow: 16px 16px 0 var(--v3-rust);
}

.final-panel h2 {
  max-width: 11ch;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
}

.final-visual {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.final-visual-card {
  padding: 1.2rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  background: transparent;
}

.site-footer {
  padding-top: clamp(4rem, 8vw, 7rem);
  color: #c8d0d6;
  background: var(--v3-ink);
}

.site-footer .site-logo-text strong,
.site-footer .footer-heading {
  color: #fff;
}

.footer-grid {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-business,
.footer-bottom {
  border-color: rgba(255, 255, 255, 0.16);
}

.cookie-banner {
  right: 1.25rem;
  bottom: 1.25rem;
  left: auto;
  width: min(430px, calc(100vw - 2.5rem));
  padding: 1.5rem;
  border: 1px solid var(--v3-ink);
  border-radius: 0;
  background: var(--v3-paper-light);
  box-shadow: 10px 10px 0 var(--v3-blue);
}

.cookie-banner,
.cookie-banner p,
.cookie-banner strong,
.cookie-preferences label,
.cookie-preferences label small {
  color: var(--v3-ink-soft);
}

.cookie-banner strong {
  color: var(--v3-ink);
}

.cookie-banner-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.cookie-banner-actions .btn,
.cookie-banner-actions button {
  min-width: 0;
  min-height: 3rem;
  padding: 0.7rem 0.45rem;
  font-size: 0.76rem;
  line-height: 1.2;
}

.cookie-preferences label {
  border: 1px solid var(--v3-line);
  border-radius: 3px;
  background: #fff;
}

.mobile-action-bar {
  background: var(--v3-paper-light);
  border-top: 1px solid var(--v3-ink);
}

/* Motion */
[data-reveal] {
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root {
    --v3-shell: min(100% - 36px, 1040px);
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .site-logo-text > span {
    display: none;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 3rem;
  }

  .hero-title {
    font-size: clamp(3.35rem, 5vw, 5rem);
  }
}

@media (max-width: 960px) {
  .site-header,
  .header-inner {
    height: 72px;
    min-height: 72px;
  }

  .site-nav {
    top: 72px;
    padding: 1.25rem 18px 2rem;
    border-bottom: 1px solid var(--v3-ink);
    background: var(--v3-paper-light);
  }

  .site-nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--v3-line);
    color: var(--v3-ink);
    font-size: 1rem;
  }

  .menu-toggle {
    border: 1px solid var(--v3-ink);
    border-radius: 3px;
    color: var(--v3-ink);
    background: transparent;
  }

  .menu-toggle-line {
    background: var(--v3-ink);
  }

  .risk-hero,
  .page-hero {
    padding-top: 4.5rem;
  }

  .hero-grid,
  .page-hero-grid,
  .intake-grid,
  .calculator-layout,
  .final-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .page-hero-copy {
    max-width: 760px;
  }

  .hero-title,
  .page-hero h1 {
    max-width: 14ch;
  }

  .hero-visual-wrap {
    min-height: 520px;
  }

  .case-overview-v3 {
    max-width: 620px;
  }

  .post-intake-strip,
  .tool-panel--dark,
  .result-board {
    position: static;
  }

  .knowledge-grid,
  .knowledge-home-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --v3-shell: calc(100vw - 28px);
    --v3-section: 4.25rem;
  }

  body {
    padding-bottom: 70px;
  }

  .site-logo-mark {
    width: 34px;
    height: 34px;
    box-shadow: 4px 4px 0 var(--v3-rust);
  }

  .site-logo-text strong {
    font-size: 0.86rem;
  }

  .risk-hero,
  .page-hero {
    padding: 3.5rem 0 4.75rem;
    background: var(--v3-paper);
  }

  .hero-title,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 11.8vw, 3.7rem);
    line-height: 0.94;
    overflow-wrap: normal;
  }

  .hero-eyebrow,
  .section-kicker {
    max-width: 100%;
    white-space: normal;
    line-height: 1.45;
  }

  .hero-body,
  .page-hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions,
  .final-actions,
  .tool-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .final-actions .btn,
  .tool-cta-row .btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-trust li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-trust li + li {
    border-top: 1px solid var(--v3-line);
  }

  .hero-visual-wrap {
    min-height: 440px;
  }

  .case-overview-v3 {
    min-height: 430px;
  }

  .case-overview-v3::before {
    inset: 34px -10px -14px 34px;
  }

  .case-sheet-v3 {
    min-height: 410px;
    padding: 1.5rem;
    box-shadow: 9px 9px 0 rgba(16, 24, 32, 0.12);
  }

  .case-sheet-status-v3 {
    padding: 1.3rem 0;
  }

  .case-sheet-status-v3 h2 {
    font-size: 2rem;
  }

  .case-sheet-metric-v3 strong {
    font-size: 2.3rem;
  }

  .case-sheet-timeline-v3 {
    padding-top: 1.4rem;
  }

  .case-sheet-timeline-v3 span {
    overflow: hidden;
    font-size: 0;
  }

  .case-sheet-timeline-v3 span::after {
    width: calc(100% - 7px);
  }

  .case-note-v3 {
    right: -7px;
    bottom: 26px;
    width: 160px;
    padding: 0.85rem 1rem;
  }

  .intake-card,
  .tool-panel,
  .story-card,
  .about-panel,
  .page-panel {
    padding: 1.35rem;
  }

  .intake-step span {
    display: none;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .process-line,
  .audience-grid,
  .expertise-grid,
  .trust-grid,
  .case-grid,
  .value-grid,
  .person-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:last-child {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--v3-line);
  }

  .risk-row {
    grid-template-columns: 14px 1fr;
  }

  .risk-chip {
    grid-column: 2;
    justify-self: start;
  }

  .knowledge-card,
  .article-tile {
    grid-template-columns: 1fr;
  }

  .knowledge-cover,
  .article-tile > .knowledge-cover {
    min-height: 175px;
  }

  .final-panel {
    padding: 2rem 1.35rem;
    box-shadow: 8px 8px 0 var(--v3-rust);
  }

  .final-panel h2 {
    font-size: 2.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    right: 14px;
    bottom: 84px;
    width: calc(100vw - 28px);
  }

  .cookie-banner-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .cookie-banner-actions .btn,
  .cookie-banner-actions button {
    min-height: 3.35rem;
    padding-inline: 0.25rem;
    font-size: 0.66rem;
  }
}

@media (max-width: 380px) {
  :root {
    --v3-shell: calc(100vw - 22px);
  }

  .hero-title,
  .page-hero h1 {
    font-size: 2.65rem;
  }

  .case-sheet-v3 {
    padding: 1.15rem;
  }

  .case-sheet-head-v3 strong {
    font-size: 0.95rem;
  }

  .case-note-v3 {
    width: 142px;
  }
}

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