/* ──────────────────────────────────────────────────────────
   Analyseize — What We Do
   Five practices expanded into a full editorial page, with
   bespoke visuals per practice + a sectors atlas + dark CTA.
   ────────────────────────────────────────────────────────── */

/* ─── 0 · Hero ────────────────────────────────────────────── */
.wwd-hero {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.wwd-hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
.wwd-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.4vw, 104px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0;
  color: var(--ink-900);
}
.wwd-hero__title em {
  font-style: italic;
  color: var(--forest-700);
}
.wwd-hero__side {
  padding-bottom: 12px;
}
.wwd-hero__side p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 24px;
  color: var(--ink-900);
  max-width: 460px;
}
.wwd-hero__links {
  display: flex;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.wwd-hero__links a {
  font-size: 13px;
}

/* ─── 1 · Sticky overview — five practices at a glance ────── */
.wwd-overview {
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  padding: 40px 0;
  background: linear-gradient(180deg, var(--sand-100) 0%, var(--bg) 100%);
  position: sticky;
  top: 68px;
  z-index: 25;
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}
.wwd-overview__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: stretch;
}
.wwd-overview__cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 24px;
  border-left: 1px solid var(--rule);
  color: var(--ink-900);
  transition: background 0.15s;
  position: relative;
  text-decoration: none;
}
.wwd-overview__cell:first-child {
  padding-left: 0;
  border-left: 0;
}
.wwd-overview__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  transition: color 0.15s;
}
.wwd-overview__cell.is-active .wwd-overview__num {
  color: var(--terracotta-600);
}
.wwd-overview__title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}
.wwd-overview__desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}
.wwd-overview__underline {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -8px;
  height: 2px;
  background: var(--terracotta-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-std);
}
.wwd-overview__cell:first-child .wwd-overview__underline { left: 0; }
.wwd-overview__cell.is-active .wwd-overview__underline { transform: scaleX(1); }

/* ─── 2 · Service spread (shared) ─────────────────────────── */
.service-spread {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule-strong);
}
.service-spread.is-alt { background: var(--sand-100); }
.service-spread__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: baseline;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule-strong);
}
.service-spread__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 132px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
  color: var(--terracotta-600);
}
.service-spread__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  max-width: 880px;
  color: var(--ink-900);
}
.service-spread__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
}

.service-spread__body {
  display: grid;
  gap: 80px;
  align-items: start;
}
.service-spread__body.is-visual-right { grid-template-columns: 1.05fr 1fr; }
.service-spread__body.is-visual-left  { grid-template-columns: 1fr 1.05fr; }
.service-spread__body.is-visual-left  .service-spread__copy   { order: 2; }
.service-spread__body.is-visual-left  .service-spread__visual { order: 1; }

.service-spread__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--terracotta-600);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.service-spread__lede {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.32;
  margin-bottom: 32px;
  color: var(--ink-900);
}
.service-spread__body p {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 16px;
  color: var(--ink-900);
  max-width: 580px;
}
.service-spread__methods {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.service-spread__methods .eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-spread__methods-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-spread__method {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 2px;
  background: var(--bg);
  color: var(--ink-900);
  border: 1px solid var(--rule-strong);
  letter-spacing: 0.04em;
}

/* Visual containers — shared frame */
.vis-card {
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  padding: 0;
}
.vis-card--dark {
  background: var(--ink-900);
  color: var(--ivory-50);
  border: none;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.vis-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 24px 12px;
  border-bottom: 1px solid var(--rule);
}
.vis-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--terracotta-600);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.vis-card__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
}
.vis-card--dark .vis-card__tag { color: var(--ochre-500); }
.vis-card--dark .vis-card__meta { color: rgba(247, 243, 236, 0.5); }

/* ─── 01 · Methodology matrix ─────────────────────────────── */
.vis-matrix__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  gap: 16px;
  padding: 16px 24px;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.vis-matrix__row:first-of-type { border-top: 0; }
.vis-matrix__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}
.vis-matrix__cell {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.vis-matrix__cell--accent {
  color: var(--terracotta-600);
  text-align: right;
}
.vis-matrix__footer {
  border-top: 1px solid var(--rule);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vis-matrix__footer .eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 2px;
  background: var(--sand-100);
  color: var(--ink-900);
  border: 1px solid var(--rule);
}
.chip--outline {
  background: var(--bg);
  border: 1px solid currentColor;
}

/* ─── 02 · Flagship list (dark card) ──────────────────────── */
.vis-flagships {
  /* uses .vis-card--dark frame */
}
.vis-flagships__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 8px 0 24px;
  color: var(--ivory-50);
}
.vis-flagships__title em {
  font-style: italic;
  color: var(--ochre-500);
}
.vis-flagships__list { display: grid; gap: 0; }
.vis-flagships__row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(247, 243, 236, 0.10);
  align-items: center;
  color: var(--ivory-50);
  text-decoration: none;
}
.vis-flagships__row:first-of-type {
  border-top: 1px solid rgba(247, 243, 236, 0.18);
}
.vis-flagships__year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(247, 243, 236, 0.55);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.vis-flagships__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.008em;
}
.vis-flagships__sector {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(247, 243, 236, 0.5);
  letter-spacing: 0.06em;
}
.vis-flagships__row.is-hi .vis-flagships__year,
.vis-flagships__row.is-hi .vis-flagships__name { color: var(--ochre-500); }
.vis-flagships__badge {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ochre-500);
}
.vis-flagships__footer {
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid rgba(247, 243, 236, 0.14);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(247, 243, 236, 0.55);
}
.vis-flagships__footer a {
  font-family: var(--font-mono);
  color: var(--ochre-500);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
}

/* ─── 03 · Library bar chart ──────────────────────────────── */
.vis-library__header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--rule);
}
.vis-library__header .vis-card__tag { margin-bottom: 4px; }
.vis-library__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.014em;
  line-height: 1.2;
}
.vis-library__title em {
  font-style: italic;
  color: var(--forest-700);
}
.vis-library__chart {
  padding: 28px 28px 20px;
}
.vis-library__bars {
  position: relative;
  height: 160px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.vis-library__bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.vis-library__bar-value {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-900);
}
.vis-library__bar-fill {
  width: 100%;
  background: var(--sand-200);
  border: 1px solid var(--rule);
  border-bottom: none;
}
.vis-library__bar.is-hi .vis-library__bar-fill {
  background: var(--terracotta-600);
  border: none;
}
.vis-library__bar-year {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
}
.vis-library__kpis {
  border-top: 1px solid var(--rule);
  padding: 16px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vis-library__kpi-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
}
.vis-library__kpi-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.vis-library__footer {
  border-top: 1px solid var(--rule);
  padding: 14px 28px;
  background: var(--sand-100);
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}
.vis-library__footer a {
  font-family: var(--font-mono);
  color: var(--terracotta-600);
  font-weight: 600;
  text-decoration: none;
}

/* ─── 04 · Roundtable ─────────────────────────────────────── */
.vis-roundtable__header {
  padding: 24px 28px 12px;
  border-bottom: 1px solid var(--rule);
}
.vis-roundtable__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.014em;
  line-height: 1.2;
}
.vis-roundtable__title em {
  font-style: italic;
  color: var(--forest-700);
}
.vis-roundtable__diagram {
  padding: 32px 28px;
  display: flex;
  justify-content: center;
  background: var(--sand-100);
  border-bottom: 1px solid var(--rule);
}
.vis-roundtable__diagram svg { max-width: 360px; height: auto; }
.vis-roundtable__participants,
.vis-roundtable__outputs {
  padding: 20px 28px;
}
.vis-roundtable__participants {
  border-bottom: 1px solid var(--rule);
}
.vis-roundtable__participants .eyebrow,
.vis-roundtable__outputs .eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vis-roundtable__participants-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vis-roundtable__participant {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vis-roundtable__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vis-roundtable__role {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-900);
}
.vis-roundtable__from {
  font-size: 11px;
  color: var(--muted);
}
.vis-roundtable__output {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.vis-roundtable__output:last-child { border-bottom: none; }
.vis-roundtable__output-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-900);
}
.vis-roundtable__output-desc {
  font-size: 12px;
  color: var(--muted);
}
.vis-roundtable__output-duration {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--terracotta-600);
  letter-spacing: 0.06em;
}

/* ─── 05 · Tool cards ─────────────────────────────────────── */
.vis-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tool-card {
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  color: var(--ink-900);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 32, 28, 0.1);
}
.tool-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.tool-card__kind {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.tool-card__status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border: 1px solid currentColor;
  border-radius: 2px;
}
.tool-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.014em;
  line-height: 1.18;
  margin: 8px 0 0;
}
.tool-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.tool-card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tool-card__footer .label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ─── 6 · Sectors spread ─────────────────────────────────── */
.wwd-sectors-section {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.wwd-sectors-header {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule-strong);
}
.wwd-sectors-header h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
}
.wwd-sectors-header h2 em {
  font-style: italic;
  color: var(--forest-700);
}
.wwd-sectors-header p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  color: var(--ink-900);
  max-width: 480px;
  padding-bottom: 6px;
}
.wwd-sectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule-strong);
}
.wwd-sector {
  background: var(--bg);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
  color: var(--ink-900);
  position: relative;
  transition: background 0.15s;
  text-decoration: none;
}
.wwd-sector:hover { background: var(--sand-100); }
.wwd-sector__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  flex-shrink: 0;
}
.wwd-sector__num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.wwd-sector h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.014em;
  line-height: 1.18;
  margin: 0 0 10px;
}
.wwd-sector p {
  font-size: 14px;
  color: var(--ink-900);
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 420px;
}
.wwd-sector__themes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wwd-sector__theme {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 2px;
  background: var(--sand-100);
  color: var(--muted);
  border: 1px solid var(--rule);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.15s;
}
.wwd-sector:hover .wwd-sector__theme { background: var(--bg); }
.wwd-sector__count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border: 1px solid currentColor;
  border-radius: 2px;
  white-space: nowrap;
}
.wwd-sector__right {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.wwd-sector__arrow {
  transition: transform 0.2s;
}
.wwd-sector:hover .wwd-sector__arrow { transform: translateX(4px); }
.wwd-sector__underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  transition: width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.wwd-sector:hover .wwd-sector__underline { width: 100%; }

/* Intersection note */
.wwd-intersection {
  margin-top: 56px;
  padding: 32px 36px;
  background: var(--sand-100);
  border: 1px solid var(--rule-strong);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}
.wwd-intersection__glyph {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 500;
  line-height: 0.8;
  color: var(--terracotta-600);
  letter-spacing: -0.04em;
  font-style: italic;
}
.wwd-intersection__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--terracotta-600);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.wwd-intersection__quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.35;
  color: var(--ink-900);
}

/* ─── 7 · Engage strip (dark CTA) ────────────────────────── */
.wwd-engage {
  padding: 104px 0;
  background: var(--ink-900);
  color: var(--ivory-50);
}
.wwd-engage__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: end;
}
.wwd-engage h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 16px;
  color: var(--ivory-50);
}
.wwd-engage h2 em {
  font-style: italic;
  color: var(--ochre-500);
}
.wwd-engage__side {
  padding-bottom: 12px;
}
.wwd-engage__side p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(247, 243, 236, 0.75);
  margin: 0 0 28px;
  max-width: 460px;
}
.wwd-engage__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.wwd-engage__ctas .btn--ghost {
  color: var(--ivory-50);
  border-color: rgba(247, 243, 236, 0.3);
}
.wwd-engage__ctas .btn--ghost:hover {
  background: var(--ivory-50);
  color: var(--ink-900);
}

/* Make the section-tag label visible on the dark engage strip */
.wwd-engage .section-tag__label { color: var(--ivory-50); }

/* ─── Responsive collapses ─────────────────────────────── */
@media (max-width: 1180px) {
  .wwd-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .service-spread__header { grid-template-columns: 1fr; gap: 16px; }
  .service-spread__meta { text-align: left; }
  .service-spread__body { grid-template-columns: 1fr !important; gap: 48px; }
  .service-spread__body .service-spread__copy,
  .service-spread__body .service-spread__visual { order: unset; }
  .wwd-overview__row { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
  .wwd-overview__cell { padding-left: 12px; padding-right: 12px; }
  .wwd-overview__cell:first-child { padding-left: 12px; }
  .wwd-sectors-header { grid-template-columns: 1fr; gap: 32px; }
  .wwd-sectors { grid-template-columns: 1fr; }
  .wwd-engage__grid { grid-template-columns: 1fr; gap: 32px; }
  .vis-matrix__row { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 12px; padding: 14px 18px; }
  .vis-matrix__footer { grid-template-columns: 1fr; padding: 18px; }
  .vis-tools { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .wwd-overview { display: none; } /* hide sticky strip on tiny screens — too cramped */
  .wwd-intersection { grid-template-columns: 1fr; gap: 16px; }
  .vis-roundtable__participants-grid { grid-template-columns: 1fr; }
  .vis-library__kpis { grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
  .vis-matrix__row { grid-template-columns: 1fr; gap: 4px; }
  .wwd-sector { grid-template-columns: 1fr; gap: 14px; }
  .wwd-sector__right { flex-direction: row; align-items: center; justify-content: flex-start; gap: 10px; }
}
