:root {
  --paper: #f4f2eb;
  --white: #fbfaf6;
  --ink: #182326;
  --blue: #153f4c;
  --blue-mid: #55747c;
  --rule: #c9ccc5;
  --rule-dark: #9ea6a2;
  --signal: #c85f3c;
  --muted: #647074;
  --max: 1380px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
svg { display: block; max-width: 100%; }
::selection { color: var(--white); background: var(--blue); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 220ms var(--ease);
}
.site-header.scrolled {
  border-color: var(--rule);
  box-shadow: 0 8px 28px rgb(24 35 38 / 4%);
}
.site-header.header-hidden { transform: translateY(-105%); }
.nav-shell {
  display: flex;
  max-width: var(--max);
  min-height: 82px;
  margin: auto;
  padding: 0 var(--pad);
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; gap: .75rem; align-items: center; }
.brand-mark {
  display: grid;
  width: 37px;
  height: 37px;
  border: 1px solid var(--blue);
  grid-template-rows: 1fr 1fr;
}
.brand-mark b {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 7px;
  line-height: 1;
  letter-spacing: .16em;
}
.brand-mark b:first-child { border-bottom: 1px solid var(--blue); }
.brand-name { font-size: .84rem; font-weight: 750; letter-spacing: .19em; }
.site-nav { display: flex; gap: clamp(1.1rem, 2.2vw, 2.6rem); align-items: center; }
.site-nav a {
  position: relative;
  padding: 1rem 0;
  color: #425054;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .035em;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: .7rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; border: 1px solid var(--rule-dark); color: var(--ink); background: transparent; }

.hero, .section, .page-hero, .contact-section {
  max-width: var(--max);
  margin: auto;
  padding-right: var(--pad);
  padding-left: var(--pad);
}
.hero { padding-top: clamp(2.5rem, 5vw, 5rem); }
.hero-grid {
  display: grid;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: end;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr);
}
.eyebrow, .section-number, .cta-kicker {
  margin: 0 0 2.2rem;
  color: var(--blue-mid);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span, .cta-kicker span { margin-right: 1.3rem; color: var(--signal); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.04em; }
.hero h1 {
  max-width: 720px;
  margin-bottom: 2rem;
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  font-weight: 650;
  line-height: .98;
}
h1 em, h2 em { color: var(--blue-mid); font-weight: 600; }
.lede {
  max-width: 620px;
  margin-bottom: 2.6rem;
  color: #334347;
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  font-weight: 450;
  line-height: 1.58;
}
.hero-actions { display: flex; gap: 2rem; align-items: center; }
.button {
  display: inline-flex;
  min-height: 50px;
  padding: .8rem 1.15rem;
  border: 1px solid var(--blue);
  color: var(--white);
  background: var(--blue);
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  font-size: .78rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.button:hover { color: var(--blue); background: transparent; transform: translateY(-2px); }
.text-link {
  padding-bottom: .25rem;
  border-bottom: 1px solid var(--rule-dark);
  font-size: .78rem;
  font-weight: 650;
}
.text-link:hover { border-color: var(--signal); }
.hero-figure {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.figure-head {
  display: flex;
  padding: .75rem 0;
  color: var(--muted);
  justify-content: space-between;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-figure svg { width: 100%; border: 1px solid var(--rule); background: var(--white); }
.grid-lines path { stroke: #e3e3dd; stroke-width: 1; }
.data-points circle { fill: var(--blue-mid); opacity: .65; }
.trend { fill: none; stroke: var(--signal); stroke-width: 3.5; }
.trend-soft { fill: none; stroke: var(--blue); stroke-dasharray: 4 6; stroke-width: 1.25; opacity: .6; }
.hero-figure text { fill: var(--muted); font-family: Arial, sans-serif; font-size: 10px; letter-spacing: .12em; }
.hero-figure > p { max-width: 480px; margin: 0; padding: 1rem 0; color: var(--muted); font-size: .72rem; }
.hero-index {
  display: grid;
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  grid-template-columns: repeat(4, 1fr);
}
.hero-index span {
  padding: 1rem 1.2rem;
  border-right: 1px solid var(--rule);
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-index span:first-child { padding-left: 0; }
.hero-index span:last-child { border-right: 0; }

.section { padding-top: clamp(6rem, 10vw, 10rem); padding-bottom: clamp(6rem, 10vw, 10rem); }
.question-section, .service-intro, .manifesto, .output-principles { border-bottom: 1px solid var(--rule); }
.question-grid, .manifesto-grid {
  display: grid;
  gap: clamp(3rem, 9vw, 10rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
}
.question-grid h2, .manifesto-lede {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 4.1vw, 4.25rem);
  font-weight: 620;
  line-height: 1.08;
}
.prose { max-width: 570px; }
.prose p { color: #39494d; font-size: clamp(1.05rem, 1.3vw, 1.22rem); line-height: 1.68; }
.prose p + p { margin-top: 1.6rem; }
.section-heading {
  display: flex;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}
.section-heading h2 { margin: 0; font-size: clamp(2.3rem, 3.8vw, 3.9rem); font-weight: 620; line-height: 1.08; }
.section-heading > p { max-width: 450px; margin: 0; color: #465458; font-size: 1.05rem; line-height: 1.65; }
.section-heading.compact { align-items: center; }
.section-heading.compact .section-number { margin-bottom: 1.4rem; }
.capabilities { background-image: linear-gradient(to right, transparent calc(50% - .5px), rgb(201 204 197 / 35%) 50%, transparent calc(50% + .5px)); }
.capability-list { border-top: 1px solid var(--ink); }
.capability {
  display: grid;
  min-height: 190px;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  grid-template-columns: 100px 1fr auto;
  transition: padding 220ms var(--ease), background 220ms ease;
}
.capability:hover { padding-right: 1.5rem; padding-left: 1.5rem; background: rgb(251 250 246 / 70%); }
.cap-index, .capability h3 + p, .work-card-copy > span, .gallery-copy > span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.capability h3 { margin-bottom: .65rem; font-size: clamp(1.55rem, 2.2vw, 2.25rem); font-weight: 650; }
.capability p { max-width: 680px; margin: 0; color: #4c5a5e; font-size: 1rem; }
.cap-symbol { color: var(--blue-mid); font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 650; opacity: .18; }

.stages-section { border-top: 1px solid var(--rule); }
.stages { display: grid; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); grid-template-columns: repeat(4, 1fr); }
.stage {
  position: relative;
  min-height: 390px;
  padding: 1.75rem;
  border-right: 1px solid var(--rule);
  overflow: hidden;
  transition: color 220ms ease, background 220ms ease;
}
.stage:last-child { border-right: 0; }
.stage::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}
.stage.active { color: var(--white); background: var(--blue); }
.stage.active::before { transform: scaleX(1); }
.stage > span { font-size: .64rem; font-weight: 750; letter-spacing: .09em; }
.stage h3 { margin-top: 4.5rem; margin-bottom: 1.25rem; font-size: clamp(1.5rem, 2vw, 2rem); font-weight: 650; line-height: 1.1; }
.stage p { max-width: 250px; margin: 0 0 1.25rem; color: #526165; font-size: .9rem; line-height: 1.6; }
.stage strong { display: block; max-width: 250px; color: var(--blue); font-size: .78rem; font-weight: 700; line-height: 1.5; }
.stage.active p { color: #c6d1d3; }
.stage.active strong { color: var(--white); }

.deliverables-section { border-top: 1px solid var(--rule); }

.deliverables-grid, .fit-grid {
  display: grid;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--rule);
  grid-template-columns: repeat(2, 1fr);
}
.deliverables-grid article, .fit-grid article {
  min-height: 245px;
  padding: 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgb(251 250 246 / 48%);
}
.deliverables-grid article > span, .fit-grid article > span, .included-list article > span {
  color: var(--signal);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .1em;
}
.deliverables-grid h3, .fit-grid h3 {
  margin: 3.4rem 0 .8rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 650;
}
.deliverables-grid p, .fit-grid p {
  max-width: 500px;
  margin: 0;
  color: #4c5a5e;
  font-size: .95rem;
  line-height: 1.65;
}

.work-preview { border-top: 1px solid var(--rule); }
.work-grid, .gallery-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.work-card, .gallery-item { border: 1px solid var(--rule); background: var(--white); }
.work-visual, .gallery-visual { display: grid; min-height: 340px; padding: clamp(1.5rem, 4vw, 3.5rem); border-bottom: 1px solid var(--rule); place-items: center; }
.work-visual svg { width: 100%; max-width: 500px; }
.connections path { fill: none; stroke: var(--rule-dark); stroke-width: 1.2; }
.nodes circle { fill: var(--paper); stroke: var(--blue); stroke-width: 1.8; }
.nodes circle:nth-child(2) { fill: var(--blue); }
.work-card-copy, .gallery-copy { padding: 1.5rem; }
.work-card-copy h3, .gallery-copy h3 { margin: .6rem 0 .75rem; font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 500; }
.work-card-copy p, .gallery-copy p { margin: 0; color: var(--muted); font-size: .72rem; }
.bars-visual { width: 100%; align-content: center; }
.bar-row { display: grid; width: 100%; padding: .8rem 0; border-bottom: 1px solid #dedfd9; align-items: center; grid-template-columns: 55px 1fr 30px; }
.bar-row span, .bar-row b { color: var(--muted); font-size: .64rem; font-weight: 600; }
.bar-row i { width: var(--w); height: 17px; background: var(--blue); }
.bar-row:nth-child(4) i, .bar-row:nth-child(5) i { background: var(--signal); }

.closing-cta {
  position: relative;
  padding: clamp(5rem, 10vw, 10rem) var(--pad);
  color: var(--white);
  background: var(--blue);
  overflow: hidden;
}
.closing-cta::after {
  position: absolute;
  top: -25%;
  right: -5%;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  content: "";
}
.closing-cta > * { position: relative; z-index: 1; max-width: var(--max); margin-right: auto; margin-left: auto; }
.closing-cta .cta-kicker { color: #a9bec3; }
.closing-cta h2 { margin-bottom: 3.2rem; font-size: clamp(3.3rem, 7vw, 7rem); font-weight: 450; line-height: .96; }
.closing-cta h2 {
  max-width: 1050px;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  font-weight: 650;
  line-height: 1;
}
.cta-copy { max-width: 650px; margin-bottom: 2.4rem; color: #c2d0d3; font-size: 1.1rem; line-height: 1.65; }
.button-light { width: max-content; border-color: var(--white); color: var(--blue); background: var(--white); }
.button-light:hover { color: var(--white); background: transparent; }

.page-hero { padding-top: clamp(4rem, 9vw, 8rem); padding-bottom: clamp(5rem, 9vw, 9rem); border-bottom: 1px solid var(--rule); }
.page-hero-grid {
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(3rem, 5.7vw, 5.9rem); font-weight: 650; line-height: 1.02; }
.page-hero-grid > p, .page-hero-copy > p { max-width: 500px; margin: 0; color: #465458; font-size: clamp(1.08rem, 1.4vw, 1.28rem); line-height: 1.68; }
.page-hero-copy { display: flex; align-items: flex-start; flex-direction: column; gap: 1.8rem; }

.raas-fit, .included-section { border-bottom: 1px solid var(--rule); }
.included-list { border-top: 1px solid var(--ink); }
.included-list article {
  display: grid;
  min-height: 128px;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  column-gap: 2rem;
  grid-template-columns: 70px minmax(190px, .65fr) minmax(280px, 1.35fr);
}
.included-list h3 { margin: 0; font-size: 1.35rem; font-weight: 650; }
.included-list p { max-width: 620px; margin: 0; color: #4c5a5e; line-height: 1.65; }
.raas-stages { border-top: 0; }

.engagement-section, .principles-section { border-bottom: 1px solid var(--rule); }
.engagement-grid { display: grid; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); grid-template-columns: repeat(3, 1fr); }
.engagement-grid article { min-height: 450px; padding: 2rem; border-right: 1px solid var(--rule); }
.engagement-grid article:last-child { border-right: 0; }
.engagement-grid article > span, .principles-grid article > span { color: var(--signal); font-size: .64rem; font-weight: 700; letter-spacing: .1em; }
.engagement-grid h3 { margin-top: 4rem; font-size: clamp(1.6rem, 2.3vw, 2.2rem); font-weight: 650; line-height: 1.1; }
.engagement-grid p { color: #4c5a5e; font-size: .95rem; line-height: 1.6; }
.engagement-grid ul { margin: 2rem 0 0; padding: 0; list-style: none; }
.engagement-grid li { padding: .65rem 0; border-top: 1px solid var(--rule); color: #465458; font-size: .75rem; }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.process-list li { display: grid; padding: 1.5rem 0; border-bottom: 1px solid var(--rule); align-items: center; grid-template-columns: 120px 1fr; }
.process-list li > span { color: var(--signal); font-size: .7rem; font-weight: 700; }
.process-list h3 { margin: 0 0 .25rem; font-size: 1.5rem; font-weight: 520; }
.process-list p { margin: 0; color: var(--muted); font-size: .85rem; }

.work-gallery { padding-bottom: 7rem; }
.gallery-grid { gap: 3rem 1.5rem; }
.gallery-visual { min-height: 420px; }
.gallery-visual svg { width: 100%; max-height: 310px; }
.index-chart { width: 90%; }
.index-chart > b { display: block; color: var(--blue); font-size: 3rem; font-weight: 400; }
.index-chart .area { fill: rgb(21 63 76 / 10%); }
.index-chart .line { fill: none; stroke: var(--blue); stroke-width: 2; }
.index-chart > div { display: flex; color: var(--muted); justify-content: space-between; font-size: .65rem; }
.flow-lines path { fill: none; stroke: var(--blue-mid); stroke-width: 13; opacity: .45; }
.flow-lines path:nth-child(2) { stroke: var(--signal); stroke-width: 8; }
.flow-nodes rect { fill: var(--blue); }
.report-cover {
  width: min(270px, 80%);
  min-height: 335px;
  padding: 1.5rem;
  color: var(--white);
  background: var(--blue);
  box-shadow: 18px 18px 0 #d9dbd4;
}
.report-cover span { font-size: .52rem; letter-spacing: .1em; }
.report-cover h4 { margin: 5rem 0 1.5rem; font-size: 2rem; font-weight: 430; line-height: 1.05; }
.report-cover i { display: block; width: 50%; height: 3px; background: var(--signal); }
.report-cover p { margin-top: 4rem; color: #b8c9cd; font-size: .63rem; }
.principle-list p { margin: 0; padding: 1.1rem 0; border-bottom: 1px solid var(--rule); color: #465458; }
.principle-list span { display: inline-block; width: 60px; color: var(--signal); font-size: .68rem; }

.manifesto-lede { font-size: clamp(2.3rem, 4.2vw, 4.5rem); }
.principles-grid { display: grid; border-top: 1px solid var(--ink); grid-template-columns: repeat(2, 1fr); }
.principles-grid article { min-height: 270px; padding: 2rem 2rem 2rem 0; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.principles-grid article:nth-child(even) { padding-right: 0; padding-left: 2rem; border-right: 0; }
.principles-grid h3 { margin: 4rem 0 1rem; font-size: clamp(1.5rem, 2.4vw, 2.3rem); font-weight: 500; }
.principles-grid p { max-width: 480px; color: var(--muted); font-size: .9rem; }
.about-stages { border-top: 0; }
.about-stages .stage { min-height: 245px; }

.about-main-hero {
  display: grid;
  max-width: var(--max);
  margin: auto;
  padding: clamp(3.5rem, 7vw, 7rem) var(--pad) clamp(5rem, 9vw, 9rem);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
}
.about-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 1.8rem;
  font-size: clamp(2.9rem, 4.7vw, 4.9rem);
  font-weight: 650;
  line-height: 1.01;
}
.about-hero-copy .lede { max-width: 650px; }
.about-hero-visual {
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: 18px 18px 0 #e2e1db;
}
.about-visual-head {
  display: flex;
  min-height: 52px;
  padding: 0 1.25rem;
  border-bottom: 1px solid var(--ink);
  color: var(--muted);
  align-items: center;
  justify-content: space-between;
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .1em;
}
.about-visual-head b { color: var(--signal); }
.about-hero-visual svg { width: 100%; background: #f0efe9; }
.about-visual-grid path { fill: none; stroke: #dadcd6; stroke-width: 1; }
.about-source-nodes circle { fill: var(--paper); stroke: var(--blue-mid); stroke-width: 2; }
.about-source-nodes circle:nth-child(3), .about-source-nodes circle:nth-child(5) { fill: var(--signal); stroke: var(--signal); }
.about-flow-lines path { fill: none; stroke: var(--blue-mid); stroke-width: 1.5; opacity: .7; }
.about-lens circle { fill: rgb(21 63 76 / 5%); stroke: var(--blue); stroke-width: 1.5; }
.about-lens circle:nth-child(2) { fill: rgb(21 63 76 / 8%); stroke-dasharray: 4 5; }
.about-lens circle:nth-child(3) { fill: var(--signal); stroke: var(--signal); }
.about-answer-line { fill: none; stroke: var(--signal); stroke-width: 2.5; }
.about-answer-line.secondary { stroke: var(--blue); stroke-dasharray: 5 5; stroke-width: 1.5; }
.about-answer-points circle { fill: var(--white); stroke: var(--blue); stroke-width: 3; }
.about-answer-points circle:first-child { fill: var(--signal); stroke: var(--signal); }
.about-hero-visual text { fill: var(--muted); font-family: Arial, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.about-visual-caption {
  display: flex;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  justify-content: space-between;
  gap: 2rem;
  font-size: .65rem;
}
.about-visual-caption b { color: var(--ink); text-align: right; }

.about-access { color: var(--white); background: var(--blue); }
.about-access-inner {
  display: grid;
  max-width: var(--max);
  margin: auto;
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  gap: clamp(3rem, 9vw, 10rem);
  grid-template-columns: 1.05fr .95fr;
}
.about-access .section-number { color: #9fb6bc; }
.about-access-heading h2 {
  max-width: 750px;
  margin-bottom: 1.6rem;
  font-size: clamp(2.25rem, 3.6vw, 3.75rem);
  font-weight: 650;
  line-height: 1.04;
}
.about-access-heading > p {
  max-width: 650px;
  margin: 0;
  color: #bdcbce;
  font-size: 1rem;
  line-height: 1.72;
}
.about-access-statement {
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgb(255 255 255 / 25%);
  background: #102f39;
}
.about-access-statement > span {
  display: block;
  margin-bottom: 3rem;
  color: #d8a28f;
  font-size: .6rem;
  font-weight: 750;
  letter-spacing: .1em;
}
.about-access-statement > p { margin: 0 0 3rem; color: #d7e0e2; font-size: clamp(1.4rem, 2.2vw, 2.15rem); font-weight: 600; line-height: 1.3; }
.about-access-statement > strong {
  display: block;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 22%);
  color: #9fb6bc;
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.9;
}

.about-four-stages { border-bottom: 1px solid var(--rule); }
.about-four-stages-inner { max-width: var(--max); margin: auto; padding: clamp(6rem, 10vw, 10rem) var(--pad); }
.about-stages-heading {
  display: flex;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}
.about-stages-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.2rem, 3.5vw, 3.65rem);
  font-weight: 650;
  line-height: 1.04;
}
.about-stages-heading > p { max-width: 440px; margin: 0; color: #465458; font-size: 1rem; line-height: 1.7; }
.about-stage-system {
  display: grid;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  grid-template-columns: repeat(4, 1fr);
}
.about-stage-system article {
  display: flex;
  min-height: 500px;
  padding: 1.6rem;
  border-right: 1px solid var(--rule);
  flex-direction: column;
}
.about-stage-system article:last-child { border-right: 0; }
.about-stage-top { display: flex; justify-content: space-between; font-size: .58rem; font-weight: 750; letter-spacing: .08em; }
.about-stage-top span { color: var(--signal); }
.about-stage-top b { color: var(--blue-mid); }
.about-stage-symbol {
  display: grid;
  width: 100%;
  height: 120px;
  margin: 3.5rem 0;
  padding: 1rem;
  border: 1px solid var(--rule);
  background: var(--white);
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: .45rem;
}
.about-stage-symbol i { display: block; background: var(--blue); }
.acquire-symbol i { height: 25%; opacity: .2; }
.acquire-symbol i:nth-child(2) { height: 70%; opacity: .35; }
.acquire-symbol i:nth-child(3) { height: 45%; opacity: .55; }
.acquire-symbol i:nth-child(4) { height: 90%; background: var(--signal); }
.visualise-symbol { align-items: center; }
.visualise-symbol i { height: 2px; transform: rotate(var(--r)); transform-origin: center; }
.visualise-symbol i:nth-child(1) { --r: 32deg; }
.visualise-symbol i:nth-child(2) { --r: -20deg; background: var(--signal); }
.visualise-symbol i:nth-child(3) { --r: 18deg; }
.visualise-symbol i:nth-child(4) { --r: -35deg; opacity: .35; }
.interact-symbol { align-items: center; }
.interact-symbol i { height: 24px; border: 1px solid var(--blue); border-radius: 50%; background: transparent; }
.interact-symbol i:nth-child(2) { height: 42px; background: var(--signal); border-color: var(--signal); }
.interact-symbol i:nth-child(3) { height: 64px; }
.interact-symbol i:nth-child(4) { height: 34px; opacity: .45; }
.retrieve-symbol { align-items: stretch; grid-template-columns: 1fr; }
.retrieve-symbol i { height: auto; border-left: 3px solid var(--signal); background: rgb(21 63 76 / 12%); }
.retrieve-symbol i:nth-child(2) { width: 82%; }
.retrieve-symbol i:nth-child(3) { width: 65%; }
.retrieve-symbol i:nth-child(4) { width: 45%; }
.about-stage-system h3 { margin: 0 0 1rem; font-size: clamp(1.55rem, 2vw, 2rem); font-weight: 650; line-height: 1.08; }
.about-stage-system p { margin: 0; color: #526165; font-size: .84rem; line-height: 1.65; }
.about-stage-system strong {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  color: var(--blue);
  font-size: .7rem;
  line-height: 1.5;
}

.about-quality { color: var(--white); background: #102f39; }
.about-quality-inner { max-width: var(--max); margin: auto; padding: clamp(6rem, 10vw, 10rem) var(--pad); }
.about-quality-heading {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  gap: 3rem;
  grid-template-columns: .45fr 1.25fr .7fr;
}
.about-quality .section-number { color: #9fb6bc; }
.about-quality-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.5vw, 3.65rem);
  font-weight: 650;
  line-height: 1.04;
}
.about-quality-heading > p { margin: .55rem 0 0; color: #bdcbce; font-size: 1rem; line-height: 1.7; }
.about-quality-grid { display: grid; border-top: 1px solid rgb(255 255 255 / 25%); grid-template-columns: repeat(2, 1fr); }
.about-quality-grid article { min-height: 250px; padding: 2rem; border-right: 1px solid rgb(255 255 255 / 20%); border-bottom: 1px solid rgb(255 255 255 / 20%); }
.about-quality-grid article:nth-child(even) { border-right: 0; }
.about-quality-grid span { color: #d8a28f; font-size: .62rem; font-weight: 750; }
.about-quality-grid h3 { margin: 3.5rem 0 .8rem; font-size: clamp(1.5rem, 2.2vw, 2.1rem); font-weight: 650; }
.about-quality-grid p { max-width: 500px; margin: 0; color: #aebfc3; font-size: .86rem; line-height: 1.65; }

.about-business { background: var(--white); }
.about-business-grid { display: grid; gap: clamp(3rem, 9vw, 10rem); grid-template-columns: 1fr .85fr; }
.about-business-copy h2 { max-width: 730px; margin-bottom: 1.5rem; font-size: clamp(2.2rem, 3.5vw, 3.65rem); font-weight: 650; line-height: 1.04; }
.about-business-copy > p { max-width: 620px; margin: 0; color: #465458; font-size: 1rem; line-height: 1.7; }
.about-business-moments { border-top: 1px solid var(--ink); }
.about-business-moments article { display: grid; min-height: 78px; padding: 1rem 0; border-bottom: 1px solid var(--rule); align-items: center; grid-template-columns: 48px 1fr; }
.about-business-moments span { color: var(--signal); font-size: .62rem; font-weight: 750; }
.about-business-moments p { margin: 0; font-size: 1rem; font-weight: 650; }

.research-form { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--rule); background: var(--white); }
.research-form label { display: block; margin-bottom: 2rem; }
.research-form label span { display: block; margin-bottom: .65rem; color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.research-form input, .research-form textarea { width: 100%; padding: .8rem 0; border: 0; border-bottom: 1px solid var(--rule-dark); border-radius: 0; outline: 0; color: var(--ink); background: transparent; resize: vertical; }
.research-form input:focus, .research-form textarea:focus { border-color: var(--blue); box-shadow: 0 1px 0 var(--blue); }
.research-form .button { cursor: pointer; }

.contact-main-hero {
  display: grid;
  max-width: var(--max);
  margin: auto;
  padding: clamp(3.5rem, 7vw, 7rem) var(--pad) clamp(5rem, 9vw, 9rem);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: 1.12fr .88fr;
}
.contact-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 1.8rem;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  font-weight: 650;
  line-height: 1.01;
}
.contact-hero-copy .lede { max-width: 690px; }
.contact-route {
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 #e2e1db;
}
.contact-route-head {
  display: flex;
  min-height: 54px;
  padding: 0 1.4rem;
  border-bottom: 1px solid var(--ink);
  color: var(--muted);
  align-items: center;
  justify-content: space-between;
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .1em;
}
.contact-route-head b { color: var(--signal); }
.contact-route > a {
  display: block;
  padding: clamp(1.5rem, 3vw, 2.4rem) 1.4rem;
  border-bottom: 1px solid var(--rule);
  color: var(--blue);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 650;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}
.contact-route > a:hover { color: var(--signal); }
.contact-route dl { margin: 0; }
.contact-route dl div {
  display: grid;
  min-height: 64px;
  padding: .9rem 1.4rem;
  border-top: 1px solid var(--rule);
  align-items: center;
  grid-template-columns: 118px 1fr;
}
.contact-route dl div:first-child { border-top: 0; }
.contact-route dt { color: var(--muted); font-size: .62rem; text-transform: uppercase; }
.contact-route dd { margin: 0; font-size: .75rem; font-weight: 650; }

.contact-brief { border-top: 1px solid var(--rule); background: var(--white); }
.contact-brief-inner { max-width: var(--max); margin: auto; padding: clamp(6rem, 10vw, 10rem) var(--pad); }
.contact-brief-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  grid-template-columns: .78fr 1.22fr;
}
.brief-guide { border: 1px solid var(--rule); background: var(--paper); }
.brief-guide-head, .form-head {
  display: flex;
  min-height: 54px;
  padding: 0 1.4rem;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  justify-content: space-between;
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .1em;
}
.brief-guide-head b, .form-head b { color: var(--signal); }
.brief-guide ol { margin: 0; padding: 0 1.4rem; list-style: none; }
.brief-guide li {
  display: grid;
  min-height: 112px;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  grid-template-columns: 48px 1fr;
}
.brief-guide li > span { color: var(--signal); font-size: .62rem; font-weight: 750; }
.brief-guide h3 { margin: 0 0 .35rem; font-size: 1.1rem; font-weight: 650; }
.brief-guide li p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.brief-note { margin: 0; padding: 1.5rem 1.4rem; color: #465458; font-size: .8rem; line-height: 1.65; }
.brief-note strong { color: var(--ink); }

.contact-email-panel {
  display: flex;
  min-height: 100%;
  border: 1px solid var(--ink);
  background: var(--white);
  flex-direction: column;
}
.contact-email-head {
  display: flex;
  min-height: 54px;
  padding: 0 1.4rem;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  justify-content: space-between;
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .1em;
}
.contact-email-head b { color: var(--signal); }
.contact-email-main { padding: clamp(1.5rem, 4vw, 3rem); }
.contact-email-main > span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--signal);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .1em;
}
.contact-email-main > a {
  display: block;
  color: var(--blue);
  font-size: clamp(1.65rem, 3.7vw, 3.8rem);
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: 1;
  overflow-wrap: anywhere;
}
.contact-email-main > a:hover { color: var(--signal); }
.contact-email-main p {
  max-width: 620px;
  margin: 1.5rem 0 0;
  color: #465458;
  font-size: 1rem;
  line-height: 1.7;
}
.contact-email-details {
  display: grid;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  grid-template-columns: repeat(3, 1fr);
}
.contact-email-details article {
  min-height: 210px;
  padding: 1.4rem;
  border-right: 1px solid var(--rule);
}
.contact-email-details article:last-child { border-right: 0; }
.contact-email-details span { color: var(--signal); font-size: .62rem; font-weight: 750; }
.contact-email-details h3 { margin: 3rem 0 .7rem; font-size: 1.25rem; font-weight: 650; line-height: 1.1; }
.contact-email-details p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.58; }
.contact-email-panel > .button {
  width: max-content;
  margin: 1.6rem;
}
.form-row { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
.form-row label { min-width: 0; }
.research-form input::placeholder { color: #9aa3a0; }
.form-submit {
  display: flex;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--rule);
  align-items: center;
  gap: 2rem;
}
.form-submit p { max-width: 280px; margin: 0 auto 0 0; color: var(--muted); font-size: .7rem; line-height: 1.5; }

.site-footer { max-width: var(--max); margin: auto; padding: clamp(4rem, 7vw, 7rem) var(--pad) 2rem; }
.footer-grid { display: grid; padding-bottom: 5rem; grid-template-columns: 2fr 1fr 1fr; }
.footer-brand { margin-bottom: 1.5rem; }
.footer-grid > div > p { color: var(--muted); font-size: .78rem; }
.footer-meta { display: flex; align-items: flex-start; flex-direction: column; gap: .7rem; font-size: .75rem; }
.footer-meta span:not(.label) { color: var(--muted); line-height: 1.5; }
.footer-meta .label { margin-bottom: .5rem; color: var(--muted); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-meta a:hover { color: var(--signal); }
.footer-base { display: flex; padding-top: 1.5rem; border-top: 1px solid var(--rule); color: var(--muted); justify-content: space-between; font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-shell { min-height: 70px; }
  .nav-toggle { display: flex; min-width: 90px; min-height: 40px; padding: .65rem .8rem; align-items: center; justify-content: space-between; gap: .8rem; cursor: pointer; }
  .nav-toggle span { font-size: .68rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
  .nav-toggle i { position: relative; display: block; width: 18px; height: 12px; border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); transition: border-color 180ms ease; }
  .nav-toggle i::after { position: absolute; top: 4px; left: 0; display: block; width: 18px; height: 1.5px; content: ""; background: var(--ink); transition: transform 180ms ease; }
  .nav-toggle[aria-expanded="true"] { color: var(--white); border-color: var(--blue); background: var(--blue); }
  .nav-toggle[aria-expanded="true"] i { border-color: transparent; }
  .nav-toggle[aria-expanded="true"] i::after { background: var(--white); transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] i::before { position: absolute; top: 4px; left: 0; width: 18px; height: 1.5px; content: ""; background: var(--white); transform: rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 69px;
    right: 0;
    left: 0;
    display: none;
    padding: .5rem var(--pad) 2rem;
    border-bottom: 1px solid var(--rule);
    background: var(--paper);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 1.1rem 0; border-bottom: 1px solid var(--rule); font-size: 1rem; font-weight: 650; }
  .site-nav a::after { display: none; }
  .hero-grid, .page-hero-grid, .question-grid, .manifesto-grid { grid-template-columns: 1fr; }
  .hero-grid { align-items: start; }
  .hero-figure { max-width: 650px; }
  .section-heading { align-items: start; flex-direction: column; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--rule); }
  .engagement-grid article:last-child { border-bottom: 0; }
  .engagement-grid h3 { margin-top: 3rem; }
  .stages { grid-template-columns: repeat(2, 1fr); }
  .stage:nth-child(2) { border-right: 0; }
  .stage:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .footer-grid { gap: 3rem; grid-template-columns: 2fr 1fr; }
  .included-list article { grid-template-columns: 50px 1fr; }
  .included-list p { margin-top: .5rem; grid-column: 2; }
  .about-main-hero, .about-access-inner, .about-business-grid { grid-template-columns: 1fr; }
  .about-hero-visual, .about-access-statement { max-width: 760px; }
  .about-stages-heading { align-items: flex-start; flex-direction: column; }
  .about-stages-heading > p { max-width: 680px; }
  .about-stage-system { grid-template-columns: repeat(2, 1fr); }
  .about-stage-system article:nth-child(2) { border-right: 0; }
  .about-stage-system article:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .about-quality-heading { grid-template-columns: 1fr; }
  .about-quality-heading .section-number { margin-bottom: -1rem; }
  .about-quality-heading > p { max-width: 680px; }
  .contact-main-hero, .contact-brief-grid { grid-template-columns: 1fr; }
  .contact-route, .brief-guide { max-width: 760px; }
  .contact-route { box-shadow: 10px 10px 0 #e2e1db; }
  .contact-email-details { grid-template-columns: 1fr; }
  .contact-email-details article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .contact-email-details article:last-child { border-bottom: 0; }
  .contact-email-details h3 { margin-top: 1.8rem; }
  .work-index-hero, .report-hero, .musk-path-grid, .energy-story-grid, .report-two-col { grid-template-columns: 1fr; }
  .work-index-system, .report-hero-panel { max-width: 760px; box-shadow: 10px 10px 0 #e2e1db; }
  .report-card-grid { grid-template-columns: 1fr; }
  .work-method-grid, .report-metric-strip { grid-template-columns: 1fr; }
  .work-method-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 20%); }
  .work-method-grid article:last-child { border-bottom: 0; }
  .dependency-board, .constraint-grid { grid-template-columns: repeat(2, 1fr); }
  .dependency-board article:nth-child(even), .constraint-grid article:nth-child(even) { border-right: 0; }
  .report-source-note { grid-template-columns: 1fr; }
  .report-card-grid.compact .report-card a { grid-template-columns: 1fr; }
  .report-card-grid.compact .report-card-visual { border-right: 0; border-bottom: 1px solid var(--rule); }
  .work-portfolio-hero, .musk-story-hero, .portfolio-intent-grid, .story-split, .wealth-stack-grid, .scale-check-grid { grid-template-columns: 1fr; }
  .portfolio-feature-card, .musk-scale-machine { max-width: 760px; box-shadow: 10px 10px 0 #e2e1db; }
  .portfolio-process-grid, .watch-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-process-grid article:nth-child(even), .watch-grid article:nth-child(even) { border-right: 0; }
  .machine-diagram { grid-template-columns: 1fr; }
  .machine-diagram > i { width: 1px; height: 40px; margin: auto; }
  .machine-stage { min-height: 230px; border-bottom: 1px solid rgb(255 255 255 / 20%); }
  .machine-stage:last-child { border-bottom: 0; }
}

@media (max-width: 620px) {
  .brand-name { font-size: .75rem; }
  .hero { padding-top: 3.5rem; }
  .hero h1, .page-hero h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
  .hero-index { grid-template-columns: repeat(2, 1fr); }
  .hero-index span:nth-child(2) { border-right: 0; }
  .hero-index span:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .hero-index span:nth-child(3) { padding-left: 0; }
  .question-grid h2 { font-size: 2.35rem; }
  .capabilities { background-image: none; }
  .capability { min-height: 160px; grid-template-columns: 45px 1fr; }
  .cap-symbol { display: none; }
  .stages { grid-template-columns: 1fr; }
  .stage { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .stage:nth-child(3) { border-bottom: 1px solid var(--rule); }
  .stage:last-child { border-bottom: 0; }
  .stage h3 { margin-top: 3rem; }
  .work-grid, .gallery-grid, .principles-grid { grid-template-columns: 1fr; }
  .deliverables-grid, .fit-grid { grid-template-columns: 1fr; }
  .deliverables-grid article, .fit-grid article { min-height: 220px; }
  .work-visual, .gallery-visual { min-height: 300px; }
  .principles-grid article, .principles-grid article:nth-child(even) { min-height: 230px; padding: 1.5rem 0; border-right: 0; }
  .principles-grid h3 { margin-top: 2.5rem; }
  .process-list li { grid-template-columns: 55px 1fr; }
  .about-main-hero { padding-top: 3rem; }
  .about-hero-copy h1 { font-size: clamp(2.4rem, 10.8vw, 3.55rem); }
  .about-hero-visual { box-shadow: 8px 8px 0 #e2e1db; }
  .about-visual-caption { align-items: flex-start; flex-direction: column; gap: .4rem; }
  .about-visual-caption b { text-align: left; }
  .about-access-statement { padding: 1.5rem; }
  .about-stage-system { grid-template-columns: 1fr; }
  .about-stage-system article,
  .about-stage-system article:nth-child(2) {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .about-stage-system article:last-child { border-bottom: 0; }
  .about-quality-grid { grid-template-columns: 1fr; }
  .about-quality-grid article,
  .about-quality-grid article:nth-child(even) { min-height: 220px; border-right: 0; }
  .contact-main-hero { padding-top: 3rem; }
  .contact-hero-copy h1 { font-size: clamp(2.4rem, 10.8vw, 3.55rem); }
  .contact-route dl div { grid-template-columns: 90px 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-email-main { padding: 1.5rem 1.3rem; }
  .contact-email-panel > .button { width: calc(100% - 2.6rem); margin: 1.3rem; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .form-submit p { margin-right: 0; }
  .research-form { padding: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { align-items: flex-start; flex-direction: column; gap: .7rem; }
  .work-index-hero, .report-hero { padding-top: 3rem; }
  .work-index-copy h1, .report-hero h1 { font-size: clamp(2.4rem, 10.8vw, 3.55rem); }
  .work-system-grid { grid-template-columns: 1fr; }
  .work-system-grid span { min-height: 56px; }
  .work-system-line { display: none; }
  .report-filter { overflow-x: auto; }
  .report-filter button { flex: 0 0 auto; }
  .report-card a { grid-template-rows: 280px 1fr; }
  .report-card-copy h2 { margin-top: 2rem; }
  .report-card-bottom { align-items: flex-start; flex-direction: column; }
  .valuation-ladder { min-height: 210px; }
  .report-hero-panel > strong { font-size: clamp(3.5rem, 18vw, 5.2rem); }
  .report-meta-row span { width: 100%; }
  .report-metric-strip article { min-height: 160px; }
  .runway-track { min-height: 270px; margin: 1.4rem; }
  .runway-track b { font-size: 1rem; }
  .runway-track em { white-space: normal; width: 90px; }
  .dependency-board, .constraint-grid { grid-template-columns: 1fr; }
  .dependency-board article, .constraint-grid article { min-height: 230px; border-right: 0; }
  .proof-gap div { grid-template-columns: 1fr; }
  .proof-gap b { max-width: 100%; }
  .energy-bars { min-height: 280px; padding: 1.3rem; }
  .work-portfolio-hero, .musk-story-hero { padding-top: 3rem; }
  .work-portfolio-copy h1, .musk-story-copy h1 { font-size: clamp(2.45rem, 11vw, 3.65rem); }
  .portfolio-scale-visual { min-height: 280px; }
  .scale-dot.large { width: 240px; height: 240px; }
  .portfolio-scale-visual strong { font-size: clamp(3.7rem, 18vw, 5.2rem); }
  .portfolio-process-grid, .watch-grid { grid-template-columns: 1fr; }
  .portfolio-process-grid article, .watch-grid article { min-height: 220px; border-right: 0; }
  .coin-field { min-height: 250px; grid-template-columns: repeat(8, 1fr); gap: .28rem; }
  .story-split h2, .story-copy h2, .scale-copy h2 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .wealth-stack { min-height: 430px; }
  .scale-ruler div { grid-template-columns: 60px 1fr; }
  .scale-ruler b { grid-column: 2; }
}

@media (max-width: 900px) {
  .work-list-hero { grid-template-columns: 1fr; }
  .work-list-index { max-width: 760px; box-shadow: 10px 10px 0 #e2e1db; }
  .work-list-grid { grid-template-columns: 1fr; }
  .musk-editorial-kicker { align-items: flex-start; flex-direction: column; }
  .ownership-machine { grid-template-columns: 1fr; }
  .ownership-machine i { width: 1px; height: 40px; margin: auto; }
  .dot-layout { grid-template-columns: 1fr; }
  .dot-grid { width: min(100%, 430px); margin: auto; }
  .dot-callout-rail {
    display: grid;
    padding-top: 0;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .dot-callout-rail.left { text-align: left; order: 2; }
  .dot-callout-rail.right { order: 3; }
  .dot-callout-rail article::after { width: 100%; }
  .dot-callout-rail.left article::after { margin-left: 0; }
  .driver-board,
  .comparison-board { min-height: 0; grid-template-columns: 1fr; }
  .asset-stack-v2 { grid-template-columns: 1fr; }
  .asset-bars article { grid-template-columns: 120px 1fr; }
  .asset-bars b { grid-column: 2; }
  .asset-bars i { max-width: 100%; }
  .rich-grid { max-width: 640px; }
  .rich-grid-years { position: static; display: grid; grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); order: 20; margin-top: 1rem; }
  .rich-grid-years span:nth-child(2) { text-align: center; }
  .rich-grid-years span:nth-child(3) { text-align: right; }
  .terminal-board { grid-template-columns: 1fr; }
  .terminal-controls { border-right: 0; border-bottom: 1px solid var(--ink); }
  .terminal-board > p { grid-column: auto; }
  .uk-report-hero,
  .uk-asset-grid.two,
  .uk-asset-grid.three { grid-template-columns: 1fr; }
  .uk-hero-panel { max-width: 760px; box-shadow: 10px 10px 0 #e2e1db; }
  .uk-region-mosaic { min-height: 440px; }
  .uk-region-scorecards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .uk-region-scorecards article { min-height: 150px; }
  .quadrant-plane { min-height: 460px; }
  .uk-company-lens article { grid-template-columns: 130px 1fr 140px; }
  .benchmark-key { padding-left: calc(130px + 1rem); }
  .benchmark-grid article { grid-template-columns: 130px 1fr 170px; }
  .uk-playbook { grid-template-columns: repeat(2, 1fr); }
  .uk-playbook article:nth-child(2) { border-right: 0; }
  .uk-playbook article:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}

@media (max-width: 620px) {
  .work-list-hero { padding-top: 3rem; }
  .work-list-copy h1, .musk-editorial-title h1 { font-size: clamp(2.45rem, 11vw, 3.65rem); }
  .work-list-index div:not(.work-list-index-head) { grid-template-columns: 1fr; gap: .3rem; }
  .timeline-axis { padding-right: 0; padding-left: 34px; font-size: .68rem; }
  .timeline-plot { min-height: 980px; }
  .timeline-note {
    width: min(230px, 38%);
    padding-left: 35px;
    padding-right: 0;
    font-size: .78rem;
    text-align: left !important;
  }
  .timeline-note.left,
  .timeline-note.right { right: 4px; left: auto; padding-left: 35px; }
  .timeline-note.left::before,
  .timeline-note.right::before { right: auto; left: 0; width: 28px; }
  .timeline-note.n1,
  .timeline-note.n3 { left: 44px; right: auto; padding-left: 0; padding-right: 30px; text-align: right !important; }
  .timeline-note.n1::before,
  .timeline-note.n3::before { left: auto; right: 0; }
  .year-labels { font-size: .8rem; }
  .dot-grid { gap: 5px; }
  .dot-grid i { width: 9px; height: 9px; }
  .dot-callout-rail { grid-template-columns: 1fr; }
  .scale-controls { margin-top: -1rem; }
  .scale-controls button { flex: 0 0 auto; }
  .driver-board article,
  .comparison-board div { padding: 1.25rem; }
  .rich-grid { gap: 3px; }
  .rich-grid-labels { font-size: .9rem; }
  .rich-grid p { font-size: 1rem; }
  .terminal-visual div { grid-template-columns: 1fr; }
  .terminal-visual i { max-width: 100%; }
  .uk-report-hero { padding-top: 3rem; }
  .uk-report-title h1 { font-size: clamp(2.45rem, 11vw, 3.65rem); }
  .uk-hero-grid { grid-template-columns: 1fr; }
  .uk-hero-grid article,
  .uk-hero-grid article:nth-child(even),
  .uk-hero-grid article:nth-child(n+3) { border-right: 0; border-bottom: 1px solid var(--rule); }
  .uk-hero-grid article:last-child { border-bottom: 0; }
  .uk-section { padding-right: var(--pad); padding-left: var(--pad); }
  .uk-region-mosaic { grid-template-columns: 1fr; grid-template-rows: none; min-height: auto; }
  .uk-region-mosaic article,
  .uk-region-mosaic .london,
  .uk-region-mosaic .south-east,
  .uk-region-mosaic .east,
  .uk-region-mosaic .scotland,
  .uk-region-mosaic .north,
  .uk-region-mosaic .wales { min-height: 130px; grid-column: auto; grid-row: auto; }
  .uk-region-scorecards { grid-template-columns: 1fr; }
  .uk-region-scorecards article { min-height: 142px; }
  .uk-share-bars div:not(.uk-map-head),
  .uk-capital-rank li,
  .uk-efficiency article,
  .uk-density-bars article,
  .uk-company-lens article { grid-template-columns: 1fr; }
  .uk-share-bars i,
  .uk-capital-rank i,
  .uk-efficiency i,
  .uk-density-bars i,
  .uk-company-lens i { max-width: 100%; }
  .uk-company-lens i,
  .uk-company-lens em { grid-column: auto; grid-row: auto; }
  .deal-dot-grid { grid-template-columns: repeat(10, 1fr); }
  .scatter-plane { min-height: 360px; margin: 1rem; }
  .quadrant-plane { min-height: 420px; margin: 1rem; }
  .quadrant-plane .q-label { max-width: 112px; font-size: .5rem; }
  .quadrant-plane .bubble b { top: calc(100% + .45rem); left: 50%; right: auto; transform: translateX(-50%); }
  .quadrant-plane .bubble.london b,
  .quadrant-plane .bubble.nw b { right: auto; left: 50%; }
  .heat-head,
  .heat-row { grid-template-columns: 110px repeat(4, 1fr); }
  .heat-head span { font-size: .5rem; padding: .55rem .35rem; }
  .heat-row b { font-size: .65rem; padding: .7rem .4rem; }
  .benchmark-grid article { grid-template-columns: 1fr; }
  .benchmark-key { display: none; }
  .benchmark-grid b { text-align: left; }
  .uk-playbook { grid-template-columns: 1fr; }
  .uk-playbook article,
  .uk-playbook article:nth-child(2),
  .uk-playbook article:nth-child(-n+2) { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .uk-playbook article:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Work reports */
.work-index-hero {
  display: grid;
  max-width: var(--max);
  margin: auto;
  padding: clamp(3.5rem, 7vw, 7rem) var(--pad) clamp(5rem, 9vw, 9rem);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
}
.work-index-copy h1 {
  max-width: 850px;
  margin-bottom: 1.8rem;
  font-size: clamp(2.9rem, 5vw, 5.3rem);
  font-weight: 650;
  line-height: 1.01;
}
.work-index-copy .lede { max-width: 700px; margin-bottom: 0; }
.work-index-system {
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 #e2e1db;
}
.work-system-head {
  display: flex;
  min-height: 54px;
  padding: 0 1.4rem;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .1em;
}
.work-system-head b { color: var(--signal); }
.work-system-grid {
  display: grid;
  padding: 1.4rem;
  gap: .7rem;
  grid-template-columns: repeat(5, 1fr);
}
.work-system-grid span {
  display: grid;
  min-height: 86px;
  border: 1px solid var(--rule);
  place-items: center;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 750;
  text-transform: uppercase;
}
.work-system-line {
  display: grid;
  padding: 0 1.4rem 1.2rem;
  gap: .7rem;
  grid-template-columns: repeat(4, 1fr);
}
.work-system-line i { display: block; height: 4px; background: var(--signal); }
.work-index-system p { margin: 0; padding: 1.4rem; border-top: 1px solid var(--rule); color: #465458; font-size: .88rem; line-height: 1.65; }

.work-report-index { border-top: 1px solid var(--rule); background: var(--white); }
.work-report-index-inner, .work-method-inner, .more-work-inner {
  max-width: var(--max);
  margin: auto;
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
}
.report-filter {
  display: flex;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.report-filter button {
  min-height: 58px;
  padding: 0 1.25rem;
  border: 0;
  border-right: 1px solid var(--rule);
  color: #526165;
  background: transparent;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.report-filter button.active { color: var(--white); background: var(--blue); }
.report-card-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.report-card[hidden] { display: none; }
.report-card { border: 1px solid var(--rule); background: var(--paper); }
.report-card a { display: grid; min-height: 100%; grid-template-rows: 360px 1fr; }
.report-card-visual {
  display: grid;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--rule);
  background: #edf0eb;
  place-items: stretch;
}
.report-card-visual.signal { background: #f0ebe5; }
.valuation-ladder {
  display: grid;
  height: 100%;
  min-height: 260px;
  align-items: end;
  gap: .9rem;
  grid-template-columns: repeat(4, 1fr);
}
.valuation-ladder span {
  display: flex;
  min-height: var(--h);
  padding: .8rem;
  color: var(--white);
  background: var(--blue);
  justify-content: flex-end;
  flex-direction: column;
}
.valuation-ladder span:nth-child(4) { background: var(--signal); }
.valuation-ladder b { font-size: clamp(1.2rem, 2vw, 2rem); line-height: 1; }
.energy-ribbon { display: flex; justify-content: center; flex-direction: column; gap: 1rem; }
.energy-ribbon span { display: grid; align-items: center; gap: 1rem; grid-template-columns: 70px 1fr 52px; }
.energy-ribbon b, .energy-ribbon em { color: var(--muted); font-size: .64rem; font-style: normal; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.energy-ribbon i { display: block; width: var(--w); height: 24px; background: var(--blue); }
.energy-ribbon span:nth-child(2) i { background: var(--signal); }
.portfolio-mini-report {
  position: relative;
  min-height: 100%;
  padding: 1.2rem;
  background:
    linear-gradient(to right, rgb(201 204 197 / 45%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(201 204 197 / 45%) 1px, transparent 1px),
    #f0efe9;
  background-size: 48px 48px;
  overflow: hidden;
}
.mini-dot-matrix {
  display: grid;
  width: 44%;
  gap: 5px;
  grid-template-columns: repeat(8, 1fr);
}
.mini-dot-matrix i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9dd6e6;
}
.mini-dot-matrix i.hot { background: #d70fc8; }
.mini-report-line {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 50%;
  height: 70%;
  border-left: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.mini-report-line span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--signal);
}
.mini-report-line span + span::before {
  position: absolute;
  right: 10px;
  top: 5px;
  width: 58px;
  height: 2px;
  content: "";
  background: var(--signal);
  transform: rotate(-22deg);
  transform-origin: right;
}
.portfolio-mini-report strong {
  position: absolute;
  right: 1.2rem;
  top: 1.1rem;
  color: var(--blue);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: .9;
}
.uk-card-map {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 1.5rem;
  background:
    linear-gradient(to right, rgb(201 204 197 / 45%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(201 204 197 / 45%) 1px, transparent 1px),
    #edf0eb;
  background-size: 48px 48px;
  justify-content: space-between;
  flex-direction: column;
}
.uk-card-bars {
  display: grid;
  min-height: 210px;
  align-items: end;
  gap: .7rem;
  grid-template-columns: repeat(5, 1fr);
}
.uk-card-bars span {
  display: flex;
  height: var(--h);
  min-height: 24px;
  padding: .55rem;
  color: var(--white);
  background: var(--blue);
  align-items: flex-end;
}
.uk-card-bars span:first-child { background: var(--signal); }
.uk-card-bars b { font-size: .56rem; letter-spacing: .06em; text-transform: uppercase; }
.uk-card-map strong { color: var(--blue); font-size: clamp(2.7rem, 5vw, 5.2rem); line-height: .9; }
.uk-card-map p { margin: .4rem 0 0; color: var(--muted); font-size: .72rem; font-weight: 750; text-transform: uppercase; }
.report-card-copy { padding: clamp(1.4rem, 3vw, 2rem); }
.report-card-meta, .report-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.report-card-meta b { color: var(--signal); }
.report-card-copy h2 { max-width: 720px; margin: 3rem 0 1rem; font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 650; line-height: 1.04; }
.report-card-copy p { max-width: 650px; margin: 0 0 2.5rem; color: #465458; font-size: .95rem; line-height: 1.7; }
.report-card-bottom { padding-top: 1rem; border-top: 1px solid var(--rule); }
.report-card-bottom strong { color: var(--blue); }
.report-card:hover .report-card-bottom strong { color: var(--signal); }
.work-method-band { color: var(--white); background: #102f39; }
.work-method-inner h2 { max-width: 900px; margin: 0 0 4rem; font-size: clamp(2.5rem, 4.5vw, 4.8rem); font-weight: 650; line-height: 1.03; }
.work-method-band .section-number { color: #9fb6bc; }
.work-method-grid { display: grid; border-top: 1px solid rgb(255 255 255 / 25%); grid-template-columns: repeat(3, 1fr); }
.work-method-grid article { min-height: 260px; padding: 1.6rem; border-right: 1px solid rgb(255 255 255 / 20%); }
.work-method-grid article:last-child { border-right: 0; }
.work-method-grid span { color: #d8a28f; font-size: .62rem; font-weight: 750; }
.work-method-grid h3 { margin: 3.6rem 0 .8rem; font-size: 1.45rem; font-weight: 650; }
.work-method-grid p { margin: 0; color: #bdcbce; font-size: .85rem; line-height: 1.65; }

.report-hero {
  display: grid;
  max-width: var(--max);
  margin: auto;
  padding: clamp(3.5rem, 7vw, 7rem) var(--pad) clamp(5rem, 9vw, 9rem);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
}
.report-hero h1 {
  max-width: 850px;
  margin-bottom: 1.7rem;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  font-weight: 650;
  line-height: 1.01;
}
.report-hero .lede { max-width: 720px; }
.report-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.report-meta-row span {
  padding: .55rem .75rem;
  border: 1px solid var(--rule-dark);
  color: var(--muted);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.report-hero-panel {
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 #e2e1db;
}
.report-panel-head, .visual-head {
  display: flex;
  min-height: 54px;
  padding: 0 1.4rem;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .1em;
}
.report-panel-head b, .visual-head b { color: var(--signal); }
.report-hero-panel > strong {
  display: block;
  padding: 1.6rem 1.4rem .2rem;
  color: var(--blue);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 650;
  line-height: .9;
  letter-spacing: 0;
}
.report-hero-panel > p { margin: 0; padding: 0 1.4rem 2rem; color: var(--muted); font-size: .8rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.report-hero-panel h2 { margin: 0; padding: 2rem 1.4rem 1rem; border-top: 1px solid var(--rule); font-size: clamp(1.5rem, 2.4vw, 2.35rem); font-weight: 650; line-height: 1.08; }
.report-hero-panel small { display: block; padding: 0 1.4rem 1.6rem; color: #465458; font-size: .9rem; line-height: 1.65; }
.report-section { border-top: 1px solid var(--rule); }
.report-section.alt { background: var(--white); }
.report-section-inner, .report-source-note, .more-work-inner {
  max-width: var(--max);
  margin: auto;
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
}
.report-metric-strip {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--rule);
  grid-template-columns: repeat(3, 1fr);
}
.report-metric-strip article { min-height: 190px; padding: 1.5rem; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: rgb(251 250 246 / 55%); }
.report-metric-strip span { color: var(--signal); font-size: .62rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.report-metric-strip strong { display: block; margin: 2.4rem 0 .7rem; color: var(--blue); font-size: clamp(2rem, 3.7vw, 4rem); line-height: .95; }
.report-metric-strip p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.6; }
.musk-path-grid, .energy-story-grid, .report-two-col {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
  grid-template-columns: 1.08fr .92fr;
}
.musk-runway, .energy-demand-panel, .musk-thesis, .energy-thesis, .proof-gap, .location-scoreboard {
  border: 1px solid var(--rule);
  background: var(--white);
}
.runway-track {
  position: relative;
  min-height: 360px;
  margin: 2rem;
  border-bottom: 2px solid var(--ink);
  background-image: linear-gradient(to right, rgb(201 204 197 / 55%) 1px, transparent 1px);
  background-size: 25% 100%;
}
.runway-track span {
  position: absolute;
  bottom: 0;
  left: var(--x);
  width: 1px;
  height: calc(var(--x) * .8 + 80px);
  background: var(--blue);
}
.runway-track span:last-child { background: var(--signal); }
.runway-track b, .runway-track em {
  position: absolute;
  left: .65rem;
  white-space: nowrap;
}
.runway-track b { top: 0; color: var(--blue); font-size: 1.35rem; }
.runway-track em { top: 2rem; color: var(--muted); font-size: .62rem; font-style: normal; font-weight: 750; text-transform: uppercase; }
.musk-runway > p, .energy-demand-panel > p { margin: 0; padding: 1.4rem; border-top: 1px solid var(--rule); color: #465458; font-size: .9rem; line-height: 1.65; }
.musk-thesis, .energy-thesis { padding: clamp(1.8rem, 4vw, 3rem); }
.musk-thesis > span, .energy-thesis > span { color: var(--signal); font-size: .62rem; font-weight: 750; letter-spacing: .1em; }
.musk-thesis h2, .energy-thesis h2, .report-copy-block h2 { margin: 3rem 0 1rem; font-size: clamp(2rem, 3.5vw, 3.6rem); font-weight: 650; line-height: 1.04; }
.musk-thesis p, .energy-thesis p, .report-copy-block p { margin: 0; color: #465458; font-size: 1rem; line-height: 1.72; }
.dependency-board, .constraint-grid {
  display: grid;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--rule);
  grid-template-columns: repeat(4, 1fr);
}
.dependency-board article, .constraint-grid article { min-height: 300px; padding: 1.5rem; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.dependency-board span, .constraint-grid span { color: var(--signal); font-size: .62rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.dependency-board h3, .constraint-grid b { display: block; margin: 3.8rem 0 .8rem; font-size: 1.45rem; font-weight: 650; line-height: 1.1; }
.dependency-board p, .constraint-grid p { margin: 0; color: #526165; font-size: .84rem; line-height: 1.65; }
.dependency-board b { display: block; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--rule); color: var(--blue-mid); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; }
.report-copy-block { align-self: center; }
.proof-gap, .location-scoreboard { padding: 1.5rem; }
.proof-gap div { display: grid; padding: 1rem 0; border-bottom: 1px solid var(--rule); gap: .8rem; grid-template-columns: 150px 1fr; }
.proof-gap div:last-child, .location-scoreboard div:last-child { border-bottom: 0; }
.proof-gap span, .location-scoreboard span { color: var(--muted); font-size: .65rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.proof-gap b { display: block; width: var(--w); min-width: 115px; padding: .45rem .6rem; color: var(--white); background: var(--blue); font-size: .68rem; font-weight: 750; }
.proof-gap div:nth-child(4) b, .proof-gap div:nth-child(5) b { background: var(--signal); }
.energy-bars { display: grid; min-height: 360px; padding: 2rem; align-items: end; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
.energy-bars div { display: flex; min-height: 100%; justify-content: flex-end; flex-direction: column; }
.energy-bars i { display: block; height: var(--h); min-height: 80px; background: var(--blue); }
.energy-bars div:nth-child(2) i { background: var(--signal); }
.energy-bars span, .energy-bars b { display: block; color: var(--muted); font-size: .68rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.energy-bars b { margin-top: .6rem; color: var(--blue); font-size: 2rem; }
.constraint-grid article.high { background: #f3ebe6; }
.constraint-grid article.medium { background: #f7f5ef; }
.location-scoreboard div { position: relative; padding: 1.1rem 0; border-bottom: 1px solid var(--rule); }
.location-scoreboard b { display: block; margin-top: .45rem; color: var(--blue); font-size: 1.1rem; }
.location-scoreboard i { display: block; width: 100%; height: 5px; margin-top: 1rem; background: linear-gradient(to right, var(--signal), var(--blue-mid), var(--blue)); }
.report-source-note {
  display: grid;
  border-top: 1px solid var(--rule);
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
}
.report-source-note span { color: var(--signal); font-size: .62rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.report-source-note p { max-width: 720px; margin: 1rem 0 0; color: #465458; line-height: 1.7; }
.report-source-note ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.report-source-note li { padding: 1rem 0; border-bottom: 1px solid var(--rule); font-size: .85rem; font-weight: 650; }
.report-source-note a:hover { color: var(--signal); }
.more-work { border-top: 1px solid var(--rule); background: var(--white); }
.more-work h2 { margin: 0 0 3rem; font-size: clamp(2rem, 3.6vw, 3.7rem); font-weight: 650; line-height: 1.05; }
.report-card-grid.compact { grid-template-columns: minmax(0, 1fr); }
.report-card-grid.compact .report-card a { grid-template-columns: .75fr 1.25fr; grid-template-rows: auto; }
.report-card-grid.compact .report-card-visual { min-height: 280px; border-right: 1px solid var(--rule); border-bottom: 0; }

/* Portfolio work page */
.work-portfolio-hero {
  display: grid;
  max-width: var(--max);
  margin: auto;
  padding: clamp(3.5rem, 7vw, 7rem) var(--pad) clamp(5rem, 9vw, 9rem);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 1fr) minmax(430px, .95fr);
}
.work-portfolio-copy h1 {
  max-width: 860px;
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 650;
  line-height: 1;
}
.portfolio-feature-card {
  display: block;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 #e2e1db;
}
.portfolio-feature-head, .machine-head {
  display: flex;
  min-height: 54px;
  padding: 0 1.4rem;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.portfolio-feature-head b, .machine-head b { color: var(--signal); }
.portfolio-scale-visual {
  position: relative;
  min-height: 360px;
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(to right, rgb(201 204 197 / 45%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(201 204 197 / 45%) 1px, transparent 1px),
    #f0efe9;
  background-size: 64px 64px;
  overflow: hidden;
}
.scale-dot {
  position: absolute;
  display: block;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: rgb(21 63 76 / 8%);
}
.scale-dot.small { right: 68%; bottom: 28%; width: 42px; height: 42px; }
.scale-dot.medium { right: 38%; bottom: 22%; width: 115px; height: 115px; }
.scale-dot.large { right: -6%; bottom: -18%; width: 330px; height: 330px; border-color: var(--signal); background: rgb(200 95 60 / 10%); }
.portfolio-scale-visual strong {
  position: absolute;
  right: 1.4rem;
  bottom: 1.2rem;
  color: var(--blue);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 650;
  line-height: .9;
}
.portfolio-feature-copy { padding: 1.6rem; }
.portfolio-feature-copy > span { color: var(--signal); font-size: .62rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.portfolio-feature-copy h2 { margin: 2rem 0 1rem; font-size: clamp(1.9rem, 3vw, 3rem); font-weight: 650; line-height: 1.04; }
.portfolio-feature-copy p { margin: 0 0 2rem; color: #465458; line-height: 1.7; }
.portfolio-feature-copy b { display: block; padding-top: 1rem; border-top: 1px solid var(--rule); color: var(--blue); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.portfolio-intent { border-top: 1px solid var(--rule); background: var(--white); }
.portfolio-intent-inner, .portfolio-process-inner {
  max-width: var(--max);
  margin: auto;
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
}
.portfolio-intent-grid {
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
}
.portfolio-intent-grid h2 { margin: 0; font-size: clamp(2.5rem, 4.4vw, 4.7rem); font-weight: 650; line-height: 1.04; }
.portfolio-intent-grid p { color: #465458; font-size: 1rem; line-height: 1.75; }
.portfolio-process { border-top: 1px solid var(--rule); }
.portfolio-process-grid {
  display: grid;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--rule);
  grid-template-columns: repeat(4, 1fr);
}
.portfolio-process-grid article {
  min-height: 285px;
  padding: 1.5rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgb(251 250 246 / 55%);
}
.portfolio-process-grid span, .watch-grid span { color: var(--signal); font-size: .62rem; font-weight: 750; }
.portfolio-process-grid h3, .watch-grid h3 { margin: 3.7rem 0 .8rem; font-size: 1.35rem; font-weight: 650; line-height: 1.12; }
.portfolio-process-grid p, .watch-grid p { margin: 0; color: #526165; font-size: .84rem; line-height: 1.65; }

/* Musk visual story */
.musk-story-hero {
  display: grid;
  max-width: var(--max);
  margin: auto;
  padding: clamp(3.5rem, 7vw, 7rem) var(--pad) clamp(5rem, 9vw, 9rem);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 1fr) minmax(440px, .95fr);
}
.musk-story-copy h1 {
  max-width: 900px;
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 650;
  line-height: .98;
}
.musk-scale-machine {
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 #e2e1db;
}
.machine-body { padding: 1.4rem; }
.coin-field {
  display: grid;
  min-height: 330px;
  padding: 1rem;
  gap: .42rem;
  align-content: start;
  grid-template-columns: repeat(8, 1fr);
  background: #f0efe9;
}
.coin-field i {
  aspect-ratio: 1;
  border: 1px solid rgb(21 63 76 / 30%);
  background: rgb(21 63 76 / 9%);
}
.coin-field i:nth-child(7n) { border-color: rgb(200 95 60 / 55%); background: rgb(200 95 60 / 14%); }
.machine-body p { margin: 1.2rem 0 0; color: #465458; font-size: .9rem; line-height: 1.65; }
.story-chapter { border-top: 1px solid var(--rule); }
.story-chapter.alt { background: var(--white); }
.story-chapter-inner, .wealth-machine-inner {
  max-width: var(--max);
  margin: auto;
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
}
.story-split, .wealth-stack-grid, .scale-check-grid {
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
}
.story-split h2, .story-copy h2, .scale-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.7rem);
  font-weight: 650;
  line-height: 1.04;
}
.story-copy p, .scale-copy p { color: #465458; font-size: 1rem; line-height: 1.75; }
.wealth-machine-section { color: var(--white); background: #102f39; }
.machine-diagram {
  display: grid;
  align-items: stretch;
  border: 1px solid rgb(255 255 255 / 24%);
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
}
.machine-stage { min-height: 300px; padding: 1.6rem; }
.machine-stage span { color: #d8a28f; font-size: .62rem; font-weight: 750; }
.machine-stage h3 { margin: 4rem 0 .8rem; font-size: clamp(1.6rem, 2.4vw, 2.35rem); font-weight: 650; }
.machine-stage p { color: #bdcbce; font-size: .9rem; line-height: 1.65; }
.machine-diagram > i { display: block; align-self: center; height: 1px; background: rgb(255 255 255 / 32%); }
.wealth-stack {
  display: flex;
  min-height: 540px;
  border: 1px solid var(--ink);
  background: var(--white);
  flex-direction: column;
}
.stack-layer, .stack-total {
  display: flex;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--rule);
  justify-content: space-between;
  flex-direction: column;
}
.stack-layer span, .stack-total span { font-size: .68rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.stack-layer b { color: var(--muted); font-size: .75rem; text-transform: uppercase; }
.stack-layer.spacex { flex: 5; color: var(--white); background: var(--blue); }
.stack-layer.tesla { flex: 3; color: var(--white); background: var(--blue-mid); }
.stack-layer.other { flex: 1.1; background: #e8e5dc; }
.stack-total { min-height: 120px; border-bottom: 0; background: #f3ebe6; }
.stack-total strong { color: var(--signal); font-size: clamp(3rem, 6vw, 6rem); line-height: .9; }
.scale-ruler {
  padding: 1.5rem;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.scale-ruler div { display: grid; padding: 1rem 0; border-bottom: 1px solid var(--rule); align-items: center; gap: 1rem; grid-template-columns: 80px 1fr 120px; }
.scale-ruler div:last-child { border-bottom: 0; }
.scale-ruler span, .scale-ruler b { color: var(--muted); font-size: .65rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.scale-ruler i { display: block; width: var(--w); min-width: 4px; height: 24px; background: var(--blue); }
.scale-ruler div:last-child i { background: var(--signal); }
.watch-grid {
  display: grid;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--rule);
  grid-template-columns: repeat(4, 1fr);
}
.watch-grid article {
  min-height: 285px;
  padding: 1.5rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgb(251 250 246 / 55%);
}

/* Scalable work list */
.work-list-hero {
  display: grid;
  max-width: var(--max);
  margin: auto;
  padding: clamp(3.5rem, 7vw, 7rem) var(--pad) clamp(5rem, 9vw, 9rem);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
}
.work-list-copy h1 {
  max-width: 880px;
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  font-weight: 650;
  line-height: 1;
}
.work-list-index {
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 #e2e1db;
}
.work-list-index-head {
  display: flex;
  min-height: 54px;
  padding: 0 1.4rem;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.work-list-index-head b { color: var(--signal); }
.work-list-index dl { margin: 0; }
.work-list-index div:not(.work-list-index-head) {
  display: grid;
  min-height: 74px;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  gap: 1rem;
  grid-template-columns: 96px 1fr;
}
.work-list-index div:last-child { border-bottom: 0; }
.work-list-index dt { color: var(--muted); font-size: .62rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.work-list-index dd { margin: 0; font-size: .82rem; font-weight: 650; line-height: 1.45; }
.work-list-section { border-top: 1px solid var(--rule); background: var(--white); }
.work-list-inner {
  max-width: var(--max);
  margin: auto;
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
}
.work-list-heading {
  display: flex;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
  justify-content: space-between;
}
.work-list-heading h2 { margin: 0; font-size: clamp(2.4rem, 4vw, 4.2rem); font-weight: 650; line-height: 1.05; }
.work-list-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Musk editorial article */
.musk-article { background: #f7f6f1; }
.musk-editorial-hero {
  max-width: 980px;
  margin: auto;
  padding: clamp(3.5rem, 7vw, 7rem) var(--pad) clamp(4rem, 7vw, 7rem);
}
.musk-editorial-kicker {
  display: flex;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.musk-editorial-title h1 {
  max-width: 920px;
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  font-weight: 650;
  line-height: .98;
}
.musk-editorial-title p { max-width: 720px; color: #334347; font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.65; }
.musk-story-block, .musk-timeline-section, .musk-dot-section, .musk-stack-section, .musk-grid-section {
  border-top: 1px solid var(--rule);
}
.musk-story-block.intro { border-top: 0; }
.musk-narrow, .musk-viz-title, .ownership-machine, .musk-timeline, .dot-story, .asset-stack, .rich-grid {
  max-width: 980px;
  margin: auto;
}
.musk-story-block, .musk-timeline-section, .musk-dot-section, .musk-stack-section, .musk-grid-section {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
}
.musk-narrow { max-width: 720px; }
.musk-narrow h2, .musk-viz-title h2 {
  margin: 0 0 1.3rem;
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 650;
  line-height: 1.05;
}
.musk-narrow p, .musk-viz-title p {
  color: #2f3f43;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}
.story-lede { font-size: clamp(1.35rem, 2vw, 1.8rem) !important; line-height: 1.55 !important; }
.musk-viz-title { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.musk-timeline {
  padding: clamp(1rem, 2vw, 2rem);
  background: #f2f1ed;
}
.timeline-axis {
  display: grid;
  padding: .8rem 13% .8rem 26%;
  color: var(--ink);
  font-size: clamp(.74rem, 1.4vw, 1.15rem);
  font-weight: 750;
  grid-template-columns: repeat(6, 1fr);
}
.timeline-plot {
  position: relative;
  min-height: 1120px;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.timeline-plot svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.timeline-grid path { fill: none; stroke: #deddd8; stroke-width: 1; }
.timeline-area { fill: rgb(113 176 210 / 42%); }
.timeline-line { fill: none; stroke: #d310c9; stroke-width: 5; }
.year-labels {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  color: #253235;
  font-weight: 650;
}
.timeline-note {
  position: absolute;
  width: min(235px, 24%);
  color: #111;
  font-size: clamp(.88rem, 1.2vw, 1.05rem);
  line-height: 1.35;
  z-index: 2;
}
.timeline-note::before {
  position: absolute;
  top: .7rem;
  width: clamp(34px, 4vw, 58px);
  height: 1px;
  content: "";
  background: #333;
}
.timeline-note.left {
  left: 52px;
  padding-right: clamp(42px, 5vw, 70px);
  text-align: right;
}
.timeline-note.left::before { right: 0; }
.timeline-note.right {
  right: 12px;
  padding-left: clamp(42px, 5vw, 70px);
}
.timeline-note.right::before { left: 0; }
.timeline-note b { display: block; color: #8b8d8c; font-size: .8rem; }
.timeline-note.n1 { top: 5%; }
.timeline-note.n2 { top: 21%; }
.timeline-note.n3 { top: 43%; }
.timeline-note.n4 { top: 65%; }
.timeline-note.n5 { top: 84%; }
.ownership-machine {
  display: grid;
  margin-top: clamp(3rem, 6vw, 5rem);
  align-items: stretch;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
}
.ownership-machine div {
  min-height: 220px;
  padding: 1.5rem;
  border: 1px solid var(--rule);
  background: var(--white);
}
.ownership-machine span { color: var(--signal); font-size: .62rem; font-weight: 750; }
.ownership-machine h3 { margin: 3rem 0 .6rem; font-size: 1.5rem; font-weight: 650; }
.ownership-machine p { margin: 0; color: var(--muted); }
.ownership-machine i { align-self: center; height: 1px; background: var(--rule-dark); }
.dot-story { max-width: 1180px; margin: auto; }
.scale-controls {
  display: flex;
  max-width: 980px;
  margin: -2rem auto 3rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
}
.scale-controls button {
  min-height: 58px;
  padding: 0 1rem;
  border: 0;
  border-right: 1px solid var(--rule);
  color: #526165;
  background: transparent;
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.scale-controls button.active { color: var(--white); background: var(--blue); }
.driver-board,
.comparison-board {
  display: grid;
  min-height: 620px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--rule);
  grid-template-columns: repeat(2, 1fr);
}
.driver-board[hidden],
.comparison-board[hidden] { display: none; }
.driver-board article,
.comparison-board div {
  padding: 1.6rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgb(251 250 246 / 68%);
}
.driver-board span,
.comparison-board span { color: var(--signal); font-size: .62rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.driver-board h3,
.comparison-board b { display: block; margin: 3rem 0 .8rem; font-size: clamp(1.5rem, 2.8vw, 2.4rem); font-weight: 650; line-height: 1.05; }
.driver-board b {
  display: block;
  width: var(--w);
  min-width: 150px;
  margin: 1rem 0;
  padding: .55rem .7rem;
  color: var(--white);
  background: var(--blue);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.driver-board article:first-child b { background: var(--signal); }
.driver-board p,
.comparison-board p { margin: 0; color: #526165; font-size: .9rem; line-height: 1.65; }
.dot-layout {
  display: grid;
  align-items: start;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(180px, 1fr) minmax(340px, 430px) minmax(180px, 1fr);
}
.dot-grid {
  display: grid;
  gap: 8px;
  align-content: start;
  grid-template-columns: repeat(20, 1fr);
  padding: 1rem;
  border: 1px solid var(--rule);
  background: #f2f1ed;
}
.dot-grid i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #9dd6e6;
}
.dot-grid i.hot {
  border: 1px solid #572052;
  background: #d70fc8;
}
.dot-callout-rail {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: 3rem;
}
.dot-callout-rail article {
  color: #111;
  font-size: clamp(.95rem, 1.2vw, 1.15rem);
  line-height: 1.25;
}
.dot-callout-rail.left { text-align: right; }
.dot-callout-rail b { display: block; font-size: 1.55em; letter-spacing: 0; }
.dot-callout-rail article::after {
  display: block;
  width: 90px;
  height: 1px;
  margin-top: .7rem;
  content: "";
  background: #222;
}
.dot-callout-rail.left article::after { margin-left: auto; }
.asset-stack-v2 {
  display: grid;
  max-width: 980px;
  margin: auto;
  border: 1px solid var(--ink);
  background: var(--white);
  grid-template-columns: minmax(260px, .75fr) 1.25fr;
}
.asset-total {
  display: flex;
  padding: clamp(1.6rem, 4vw, 3rem);
  color: var(--white);
  background: var(--blue);
  justify-content: space-between;
  flex-direction: column;
}
.asset-total span { color: #a9bec3; font-size: .62rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.asset-total strong { font-size: clamp(4rem, 8vw, 7rem); line-height: .9; letter-spacing: 0; }
.asset-total p { max-width: 360px; margin: 2rem 0 0; color: #c5d1d4; font-size: .9rem; line-height: 1.65; }
.asset-bars { padding: clamp(1.4rem, 3vw, 2rem); }
.asset-bars article {
  display: grid;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  gap: 1rem;
  grid-template-columns: 140px 1fr 150px;
}
.asset-bars article:last-child { border-bottom: 0; }
.asset-bars span { font-size: 1.05rem; font-weight: 650; }
.asset-bars b { color: var(--muted); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.asset-bars i { display: block; width: var(--w); height: 28px; background: var(--blue); }
.asset-bars .spacex i { background: #d70fc8; }
.asset-bars .xai i { background: var(--blue-mid); }
.asset-bars .smaller i { background: var(--rule-dark); }
.rich-grid {
  position: relative;
  display: grid;
  max-width: 860px;
  gap: 4px;
  grid-template-columns: repeat(10, 1fr);
}
.rich-grid-labels {
  display: grid;
  grid-column: 1 / -1;
  margin-bottom: .7rem;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 1.2rem;
  font-weight: 750;
}
.rich-grid-labels span:nth-child(2) { text-align: center; }
.rich-grid-labels span:nth-child(3) { text-align: right; }
.rich-grid i {
  display: block;
  aspect-ratio: 1;
  background: #dedede;
}
.rich-grid i.tech { background: #70afd3; }
.rich-grid i.musk { outline: 4px solid #d70fc8; outline-offset: -4px; }
.rich-grid-years {
  position: absolute;
  top: 42px;
  bottom: 48px;
  left: -70px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  font-size: 1.2rem;
  font-weight: 650;
}
.rich-grid p {
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 1.5rem 0 0 auto;
  color: #d70fc8;
  font-size: 1.2rem;
  font-weight: 750;
  line-height: 1.35;
}
.musk-terminal-section {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  border-top: 1px solid var(--rule);
  background: var(--white);
}
.terminal-board {
  display: grid;
  max-width: 980px;
  margin: auto;
  border: 1px solid var(--ink);
  background: var(--paper);
  grid-template-columns: 260px 1fr;
}
.terminal-controls {
  display: flex;
  border-right: 1px solid var(--ink);
  flex-direction: column;
}
.terminal-controls button {
  min-height: 82px;
  padding: 1rem;
  border: 0;
  border-bottom: 1px solid var(--rule);
  color: #526165;
  background: transparent;
  text-align: left;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.terminal-controls button.active { color: var(--white); background: var(--blue); }
.terminal-visual { padding: clamp(1.5rem, 4vw, 3rem); }
.terminal-visual div {
  display: grid;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  gap: 1rem;
  grid-template-columns: 170px 1fr 90px;
}
.terminal-visual span,
.terminal-visual b {
  color: var(--muted);
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.terminal-visual i {
  display: block;
  width: var(--w);
  height: 28px;
  background: var(--blue);
  transition: width 240ms var(--ease);
}
.terminal-visual div:first-child i { background: var(--signal); }
.terminal-board > p {
  margin: 0;
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--ink);
  color: #334347;
  line-height: 1.7;
  grid-column: 2;
}

/* UK regional tech report */
.uk-tech-report { background: #f7f6f1; }
.uk-report-hero {
  display: grid;
  max-width: var(--max);
  margin: auto;
  padding: clamp(3.5rem, 7vw, 7rem) var(--pad) clamp(5rem, 9vw, 9rem);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
}
.uk-report-title h1 {
  max-width: 920px;
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 5.6vw, 6rem);
  font-weight: 650;
  line-height: .98;
}
.uk-report-title > p { max-width: 720px; color: #334347; font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.65; }
.uk-hero-panel {
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 #e2e1db;
}
.uk-panel-head,
.uk-map-head {
  display: flex;
  min-height: 54px;
  padding: 0 1.25rem;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.uk-panel-head b,
.uk-map-head b { color: var(--signal); }
.uk-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.uk-hero-grid article {
  min-height: 190px;
  padding: 1.4rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.uk-hero-grid article:nth-child(even) { border-right: 0; }
.uk-hero-grid article:nth-child(n+3) { border-bottom: 0; }
.uk-hero-grid span { color: var(--signal); font-size: .62rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.uk-hero-grid strong { display: block; margin: 2rem 0 .5rem; color: var(--blue); font-size: clamp(2rem, 4vw, 4rem); line-height: .9; }
.uk-hero-grid p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.uk-section {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  border-top: 1px solid var(--rule);
}
.uk-section.alt { background: var(--white); }
.uk-section-title {
  max-width: 980px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.uk-section-title h2 {
  max-width: 900px;
  margin: 0 0 1.2rem;
  font-size: clamp(2.3rem, 4.3vw, 4.6rem);
  font-weight: 650;
  line-height: 1.04;
}
.uk-section-title p { max-width: 720px; color: #334347; font-size: 1.05rem; line-height: 1.75; }
.uk-asset-grid {
  display: grid;
  max-width: 1180px;
  margin: auto;
  gap: 1.5rem;
}
.uk-asset-grid.two { grid-template-columns: 1.1fr .9fr; }
.uk-asset-grid.three { grid-template-columns: 1fr 1fr .85fr; }
.uk-map-mosaic,
.uk-thesis-card,
.uk-share-bars,
.uk-capital-rank,
.uk-deal-dots,
.uk-efficiency,
.uk-insight-note,
.uk-scatter,
.uk-density-bars,
.uk-heatmap,
.uk-quadrant,
.uk-company-lens,
.uk-benchmark,
.uk-playbook,
.asset-stack-v2 {
  border: 1px solid var(--rule);
  background: var(--white);
}
.uk-region-scorecards {
  display: grid;
  padding: 1rem;
  gap: .8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.uk-region-scorecards article {
  display: flex;
  min-height: 158px;
  padding: 1rem;
  border: 1px solid var(--rule);
  background: #f4f5f0;
  justify-content: space-between;
  flex-direction: column;
}
.uk-region-scorecards article.primary {
  color: var(--white);
  background: var(--blue);
}
.uk-region-scorecards span {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.uk-region-scorecards article.primary span,
.uk-region-scorecards article.primary p { color: #dce8eb; }
.uk-region-scorecards strong {
  display: block;
  margin-top: 1.8rem;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: .95;
}
.uk-region-scorecards p {
  min-height: 2.6em;
  margin: .45rem 0 .9rem;
  color: #526165;
  font-size: .78rem;
  line-height: 1.35;
}
.uk-region-scorecards i {
  display: block;
  width: var(--w);
  height: 8px;
  background: var(--signal);
}
.uk-region-scorecards article:not(.primary) i { background: var(--blue); }
.uk-region-mosaic {
  display: grid;
  min-height: 520px;
  padding: 1.3rem;
  gap: .75rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
}
.uk-region-mosaic article {
  position: relative;
  display: flex;
  padding: 1rem;
  color: var(--white);
  background: var(--blue);
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
}
.uk-region-mosaic article::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: var(--s);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: rgb(255 255 255 / 18%);
}
.uk-region-mosaic .london { grid-column: 2 / 5; grid-row: 3 / 5; background: var(--signal); }
.uk-region-mosaic .south-east { grid-column: 3 / 5; grid-row: 2; }
.uk-region-mosaic .east { grid-column: 4; grid-row: 1; }
.uk-region-mosaic .scotland { grid-column: 1 / 3; grid-row: 1 / 3; background: var(--blue-mid); }
.uk-region-mosaic .north { grid-column: 3; grid-row: 1; }
.uk-region-mosaic .wales { grid-column: 1; grid-row: 3 / 5; background: #6f878d; }
.uk-region-mosaic span { position: relative; z-index: 1; font-size: .72rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.uk-region-mosaic b { position: relative; z-index: 1; font-size: clamp(1.3rem, 2.4vw, 2.3rem); line-height: 1; }
.uk-thesis-card {
  display: flex;
  padding: clamp(1.6rem, 4vw, 3rem);
  justify-content: center;
  flex-direction: column;
}
.uk-thesis-card > span,
.uk-insight-note > span { color: var(--signal); font-size: .62rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.uk-thesis-card h2 { margin: 3rem 0 1rem; font-size: clamp(2rem, 3.4vw, 3.4rem); font-weight: 650; line-height: 1.05; }
.uk-thesis-card p,
.uk-insight-note p { color: #465458; line-height: 1.75; }
.uk-share-bars { padding-bottom: 1.2rem; }
.uk-share-bars div:not(.uk-map-head) {
  display: grid;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  gap: 1rem;
  grid-template-columns: 180px 1fr 68px;
}
.uk-share-bars span,
.uk-capital-rank span,
.uk-efficiency span,
.uk-density-bars span { color: #526165; font-size: .68rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.uk-share-bars i,
.uk-capital-rank i,
.uk-efficiency i,
.uk-density-bars i { display: block; width: var(--w); height: 24px; background: var(--blue); }
.uk-share-bars div:nth-child(5) i,
.uk-capital-rank li:first-child i,
.uk-efficiency article:first-of-type i { background: var(--signal); }
.uk-share-bars b,
.uk-capital-rank b,
.uk-efficiency b,
.uk-density-bars b { font-size: .78rem; }
.uk-capital-rank ol { margin: 0; padding: 1.2rem 1.4rem 1.4rem; list-style: none; }
.uk-capital-rank li {
  display: grid;
  padding: .8rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  gap: 1rem;
  grid-template-columns: 145px 1fr 80px;
}
.uk-deal-dots { padding-bottom: 1.4rem; }
.deal-dot-grid {
  display: grid;
  padding: 1.5rem;
  gap: 7px;
  grid-template-columns: repeat(13, 1fr);
}
.deal-dot-grid i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #a9dce8;
}
.deal-dot-grid i.london { background: var(--signal); }
.deal-dot-grid i.south-east { background: var(--blue); }
.deal-dot-grid i.east { background: var(--blue-mid); }
.deal-dot-grid i.scotland { background: #6f878d; }
.uk-deal-dots p { margin: 0; padding: 0 1.4rem; color: var(--muted); font-size: .8rem; line-height: 1.6; }
.uk-efficiency,
.uk-density-bars { padding-bottom: 1rem; }
.uk-efficiency article,
.uk-density-bars article {
  display: grid;
  padding: 1rem 1.3rem;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  gap: 1rem;
  grid-template-columns: 135px 1fr 70px;
}
.uk-insight-note {
  display: flex;
  padding: 1.6rem;
  justify-content: center;
  flex-direction: column;
}
.uk-insight-note h3 { margin: 3rem 0 1rem; font-size: clamp(1.6rem, 2.5vw, 2.5rem); line-height: 1.05; }
.scatter-plane {
  position: relative;
  min-height: 480px;
  margin: 1.5rem;
  border-left: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(to right, rgb(201 204 197 / 45%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(201 204 197 / 45%) 1px, transparent 1px);
  background-size: 25% 25%;
}
.scatter-plane .axis {
  position: absolute;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scatter-plane .x { right: 0; bottom: -1.8rem; }
.scatter-plane .y { top: .2rem; left: .6rem; }
.scatter-plane .point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
}
.scatter-plane .point.london { width: 22px; height: 22px; background: var(--signal); }
.scatter-plane .point b {
  position: absolute;
  left: 16px;
  top: -6px;
  white-space: nowrap;
  color: #253235;
  font-size: .66rem;
}
.quadrant-plane {
  position: relative;
  min-height: 520px;
  margin: 1.5rem;
  border-left: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(to right, rgb(201 204 197 / 52%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(201 204 197 / 52%) 1px, transparent 1px),
    linear-gradient(135deg, #f8f7f2 0%, #f8f7f2 48%, #edf3f4 48%, #edf3f4 100%);
  background-size: 50% 50%, 50% 50%, auto;
}
.quadrant-plane::before,
.quadrant-plane::after {
  position: absolute;
  content: "";
  background: rgb(21 48 58 / 40%);
}
.quadrant-plane::before { left: 50%; top: 0; width: 1px; height: 100%; }
.quadrant-plane::after { left: 0; top: 50%; width: 100%; height: 1px; }
.quadrant-plane .q-label {
  position: absolute;
  z-index: 1;
  max-width: 160px;
  color: #526165;
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}
.quadrant-plane .q1 { right: 1rem; top: 1rem; text-align: right; }
.quadrant-plane .q2 { left: 1rem; top: 1rem; }
.quadrant-plane .q3 { left: 1rem; bottom: 1rem; }
.quadrant-plane .q4 { right: 1rem; bottom: 1rem; text-align: right; }
.quadrant-plane .bubble {
  position: absolute;
  z-index: 2;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--ink);
  transform: translate(-50%, -50%);
}
.quadrant-plane .bubble.london { background: var(--signal); }
.quadrant-plane .bubble.east { background: var(--blue-mid); }
.quadrant-plane .bubble.scot { background: #6f878d; }
.quadrant-plane .bubble b {
  position: absolute;
  left: calc(100% + .55rem);
  top: 50%;
  padding: .22rem .35rem;
  border: 1px solid var(--rule);
  white-space: nowrap;
  color: #253235;
  background: rgb(247 246 241 / 92%);
  font-size: .62rem;
  font-style: normal;
  line-height: 1;
  transform: translateY(-50%);
}
.quadrant-plane .bubble.london b,
.quadrant-plane .bubble.nw b { right: calc(100% + .55rem); left: auto; }
.uk-company-lens { padding-bottom: 1rem; }
.uk-company-lens article {
  display: grid;
  padding: 1rem 1.3rem;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  gap: .75rem 1rem;
  grid-template-columns: 135px 1fr 150px;
}
.uk-company-lens article:last-child { border-bottom: 0; }
.uk-company-lens span,
.uk-company-lens em,
.benchmark-grid span,
.benchmark-grid b {
  color: #526165;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.uk-company-lens b {
  color: #253235;
  font-size: .9rem;
}
.uk-company-lens i {
  display: block;
  grid-column: 2;
  width: var(--w);
  height: 22px;
  background: var(--blue);
}
.uk-company-lens article:first-of-type i { background: var(--signal); }
.uk-company-lens em {
  grid-column: 3;
  grid-row: 1 / span 2;
  font-style: normal;
  line-height: 1.35;
}
.uk-heatmap {
  max-width: 980px;
  margin: auto;
}
.heat-head,
.heat-row {
  display: grid;
  grid-template-columns: 180px repeat(4, 1fr);
}
.heat-head span {
  padding: .8rem;
  border-bottom: 1px solid var(--ink);
  color: var(--muted);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.heat-row b {
  padding: .9rem .8rem;
  border-bottom: 1px solid var(--rule);
  font-size: .85rem;
}
.heat-row i {
  min-height: 42px;
  border-left: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: #d8d8d8;
}
.heat-row.london i { background: var(--signal); }
.heat-row.se i:nth-child(2), .heat-row.se i:nth-child(3), .heat-row.se i:nth-child(4), .heat-row.se i:nth-child(5) { background: #70afd3; }
.heat-row.east i:nth-child(2), .heat-row.east i:nth-child(3), .heat-row.east i:nth-child(4), .heat-row.east i:nth-child(5) { background: #83bfdc; }
.heat-row.scotland i:nth-child(2), .heat-row.scotland i:nth-child(4), .heat-row.scotland i:nth-child(5) { background: #8fc7df; }
.heat-row.nw i:nth-child(2), .heat-row.nw i:nth-child(3), .heat-row.nw i:nth-child(4) { background: #a4d2e3; }
.heat-row.westmid i:nth-child(2), .heat-row.westmid i:nth-child(3) { background: #b9dce8; }
.uk-benchmark {
  max-width: 1180px;
  margin: auto;
}
.benchmark-key {
  display: grid;
  margin: 1rem 1.2rem 0;
  padding-left: calc(145px + 1rem);
  gap: .38rem;
  grid-template-columns: 1fr;
}
.benchmark-key span {
  color: #526165;
  font-size: .56rem;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 9px;
  text-transform: uppercase;
}
.benchmark-grid {
  display: grid;
  padding: 1.2rem;
  gap: .75rem;
}
.benchmark-grid article {
  display: grid;
  padding: 1rem;
  border: 1px solid var(--rule);
  align-items: center;
  gap: 1rem;
  grid-template-columns: 145px 1fr 190px;
}
.benchmark-grid article.london {
  color: var(--white);
  background: var(--blue);
}
.benchmark-grid article.london span,
.benchmark-grid article.london b { color: #dce8eb; }
.benchmark-grid article > div {
  display: grid;
  gap: .38rem;
}
.benchmark-grid i {
  display: block;
  width: var(--w);
  height: 9px;
  background: var(--blue);
}
.benchmark-grid article.london i { background: var(--signal); }
.benchmark-grid b { color: #253235; text-align: right; }
.uk-playbook {
  display: grid;
  max-width: 1180px;
  margin: auto;
  border-left: 1px solid var(--rule);
  grid-template-columns: repeat(4, 1fr);
}
.uk-playbook article {
  min-height: 260px;
  padding: 1.5rem;
  border-right: 1px solid var(--rule);
}
.uk-playbook span { color: var(--signal); font-size: .62rem; font-weight: 750; }
.uk-playbook h3 { margin: 3.5rem 0 .8rem; font-size: 1.35rem; line-height: 1.12; }
.uk-playbook p { color: var(--muted); font-size: .86rem; line-height: 1.65; }

/* Homepage research interfaces */
.research-lens { margin-top: clamp(4rem, 8vw, 8rem); border: 1px solid var(--rule); background: var(--white); }
.lens-tabs { display: grid; border-bottom: 1px solid var(--ink); grid-template-columns: repeat(4, 1fr); }
.lens-tabs button {
  display: flex;
  min-height: 72px;
  padding: 1rem 1.4rem;
  border: 0;
  border-right: 1px solid var(--rule);
  color: #526165;
  background: transparent;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}
.lens-tabs button:last-child { border-right: 0; }
.lens-tabs button span { color: var(--signal); font-size: .64rem; letter-spacing: .1em; }
.lens-tabs button.active { color: var(--white); background: var(--blue); }
.lens-tabs button.active span { color: #d8a28f; }
.lens-tabs button:focus-visible { outline: 2px solid var(--signal); outline-offset: -3px; }
.lens-panel { display: grid; min-height: 390px; grid-template-columns: .85fr 1.15fr; }
.lens-copy { display: flex; padding: clamp(2rem, 4vw, 4rem); border-right: 1px solid var(--rule); justify-content: center; flex-direction: column; }
.lens-label { margin-bottom: 1.5rem; color: var(--signal); font-size: .65rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.lens-copy h2 { max-width: 520px; margin-bottom: 1.3rem; font-size: clamp(2rem, 3.3vw, 3.4rem); font-weight: 650; line-height: 1.05; }
.lens-copy > p:not(.lens-label) { max-width: 560px; margin-bottom: 2rem; color: #465458; font-size: 1rem; line-height: 1.7; }
.lens-signals { display: flex; flex-wrap: wrap; gap: .5rem; }
.lens-signals span { padding: .45rem .65rem; border: 1px solid var(--rule); color: #526165; font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.lens-visual { display: flex; padding: clamp(2rem, 4vw, 4rem); justify-content: center; flex-direction: column; background: #f0efe9; }
.lens-axis { display: flex; margin-bottom: .8rem; color: var(--muted); justify-content: space-between; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.lens-visual svg { width: 100%; border-bottom: 1px solid var(--rule-dark); }
.lens-grid path { stroke: #d9dbd5; stroke-width: 1; }
[data-lens-bars] rect { fill: var(--blue); opacity: .2; transition: height 280ms var(--ease), y 280ms var(--ease), opacity 180ms ease; }
[data-lens-bars] rect:nth-child(4), [data-lens-bars] rect:nth-child(5) { opacity: .65; }
.lens-line { fill: none; stroke: var(--signal); stroke-width: 3; }
[data-lens-point] { fill: var(--signal); stroke: var(--paper); stroke-width: 4; transition: cx 280ms var(--ease), cy 280ms var(--ease); }
.lens-visual > p { display: flex; margin: 1rem 0 0; color: var(--muted); justify-content: space-between; gap: 2rem; font-size: .64rem; }
.lens-visual > p b { color: #465458; font-weight: 650; text-align: right; }

.problem-heading { display: grid; margin-bottom: clamp(3rem, 6vw, 6rem); column-gap: 3rem; grid-template-columns: .55fr 1.55fr .9fr; }
.problem-heading .section-number { margin: .65rem 0 0; }
.problem-heading h2 { margin: 0; font-size: clamp(2.5rem, 4.2vw, 4.4rem); font-weight: 650; line-height: 1.05; }
.problem-heading > p { margin: .55rem 0 0; color: #465458; font-size: 1.05rem; line-height: 1.7; }
.problem-board { display: grid; min-height: 430px; border: 1px solid var(--rule); background: var(--white); grid-template-columns: 1fr 140px 1fr; }
.problem-source, .problem-result { padding: clamp(1.5rem, 3vw, 3rem); }
.problem-board-head { display: flex; padding-bottom: 1.2rem; border-bottom: 1px solid var(--ink); justify-content: space-between; gap: 1rem; }
.problem-board-head span { color: var(--muted); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.problem-board-head b { font-size: .72rem; }
.problem-source ul { margin: 2rem 0 0; padding: 0; list-style: none; }
.problem-source li { display: grid; padding: 1rem 0; border-bottom: 1px solid var(--rule); color: #465458; grid-template-columns: 45px 1fr; font-size: .9rem; }
.problem-source li span { color: var(--signal); font-size: .64rem; font-weight: 700; }
.problem-transform { display: flex; padding: 2rem 0; color: var(--white); background: var(--blue); align-items: center; justify-content: space-around; flex-direction: column; }
.problem-transform span { font-size: .62rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.problem-transform i { width: 1px; height: 35px; background: rgb(255 255 255 / 25%); }
.problem-result { background: #ecebe5; }
.problem-result blockquote { max-width: 480px; margin: 3rem 0 2.5rem; color: var(--blue); font-size: clamp(1.55rem, 2.4vw, 2.3rem); font-weight: 650; line-height: 1.25; }
.answer-lines { display: grid; margin-bottom: 2rem; gap: .6rem; }
.answer-lines i { display: block; width: 100%; height: 7px; background: var(--blue); opacity: .12; }
.answer-lines i:nth-child(2) { width: 84%; opacity: .2; }
.answer-lines i:nth-child(3) { width: 92%; opacity: .3; }
.answer-lines i:nth-child(4) { width: 64%; background: var(--signal); opacity: .8; }
.problem-result > p { max-width: 460px; margin: 0; color: #465458; font-size: .9rem; line-height: 1.65; }

.question-section { padding-top: clamp(4rem, 6vw, 6.5rem); padding-bottom: clamp(4rem, 6vw, 6.5rem); }
.problem-diagnosis { display: grid; border-top: 1px solid var(--ink); border-left: 1px solid var(--rule); grid-template-columns: repeat(3, 1fr); }
.problem-diagnosis > article {
  min-height: 265px;
  padding: 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgb(251 250 246 / 55%);
}
.problem-diagnosis > article > span { color: var(--signal); font-size: .64rem; font-weight: 750; letter-spacing: .1em; }
.problem-diagnosis h3 { margin: 3.5rem 0 .8rem; font-size: clamp(1.35rem, 1.9vw, 1.85rem); font-weight: 650; line-height: 1.15; }
.problem-diagnosis article p { max-width: 420px; margin: 0; color: #526165; font-size: .9rem; line-height: 1.65; }
.problem-resolution {
  display: grid;
  min-height: 112px;
  padding: 1.5rem 2rem;
  color: var(--white);
  background: var(--blue);
  align-items: center;
  grid-column: 1 / -1;
  grid-template-columns: 110px 1.1fr 70px .9fr;
}
.problem-resolution > span { color: #d8a28f; font-size: .64rem; font-weight: 750; letter-spacing: .1em; }
.problem-resolution p { margin: 0; color: #c5d1d4; font-size: .92rem; line-height: 1.55; }
.problem-resolution p b { color: var(--white); font-weight: 650; }
.problem-resolution i { color: #d8a28f; font-size: 1.3rem; font-style: normal; text-align: center; }

.problem-board-v2 { min-height: 390px; grid-template-columns: 1fr 116px 1fr; }
.problem-board-v2 .problem-source, .problem-board-v2 .problem-result { display: flex; justify-content: space-between; flex-direction: column; }
.problem-board-v2 .problem-source > p { max-width: 430px; margin: 1.5rem 0 0; color: #526165; font-size: .86rem; line-height: 1.6; }
.source-stack { display: grid; margin-top: 2rem; gap: .55rem; }
.source-stack > div {
  display: grid;
  min-height: 48px;
  padding: .65rem .8rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  align-items: center;
  grid-template-columns: 75px 1fr 1fr;
  gap: .7rem;
  transform: translateX(var(--shift, 0));
}
.source-stack > div:nth-child(2) { --shift: 12px; }
.source-stack > div:nth-child(3) { --shift: -5px; }
.source-stack > div:nth-child(4) { --shift: 7px; }
.source-stack span { color: var(--blue); font-size: .58rem; font-weight: 750; letter-spacing: .08em; }
.source-stack i { display: block; width: var(--source); height: 5px; background: var(--blue-mid); opacity: .3; }
.source-stack i:last-child { background: var(--signal); opacity: .45; }
.problem-board-v2 .problem-transform { padding: 1.5rem 0; }
.problem-board-v2 .problem-transform span {
  display: flex;
  align-items: center;
  gap: .45rem;
  writing-mode: initial;
  transform: none;
}
.problem-board-v2 .problem-transform span b { color: #d8a28f; font-size: .52rem; }
.answer-statement { margin: auto 0; padding: 2rem 0; }
.answer-statement small { display: block; margin-bottom: 1.2rem; color: var(--signal); font-size: .58rem; font-weight: 750; letter-spacing: .1em; }
.answer-statement p { margin: 0; color: var(--blue); font-size: clamp(1.55rem, 2.25vw, 2.2rem); font-weight: 650; line-height: 1.3; }
.answer-statement p:nth-of-type(3) { color: var(--blue-mid); }
.confidence-line { display: grid; border-top: 1px solid var(--rule-dark); grid-template-columns: repeat(3, 1fr); }
.confidence-line span { padding: .8rem .5rem .2rem 0; color: #526165; font-size: .6rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.question-section:has(.problem-impact) {
  max-width: none;
  padding: 0;
  border-bottom: 0;
  color: var(--white);
  background: #102f39;
}
.problem-impact {
  max-width: var(--max);
  margin: auto;
  padding: clamp(5rem, 8vw, 8rem) var(--pad);
}
.problem-impact-head {
  display: grid;
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  column-gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: .45fr 1.35fr .7fr;
}
.problem-impact-head .section-number { margin: .65rem 0 0; color: #9cb2b8; }
.problem-impact-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 4.9vw, 5rem);
  font-weight: 650;
  line-height: 1.02;
}
.problem-impact-head > p {
  max-width: 430px;
  margin: .6rem 0 0;
  color: #b9c9cd;
  font-size: 1.08rem;
  line-height: 1.7;
}
.false-confidence {
  display: grid;
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  align-items: end;
  column-gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: 1fr 1fr .8fr;
}
.confidence-meter > div, .evidence-meter > div {
  display: flex;
  margin-bottom: .8rem;
  align-items: end;
  justify-content: space-between;
}
.confidence-meter span, .evidence-meter span {
  color: #9cb2b8;
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .11em;
}
.confidence-meter b, .evidence-meter b {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1;
}
.confidence-meter > i, .evidence-meter > i {
  display: block;
  width: 100%;
  height: 12px;
  background: rgb(255 255 255 / 12%);
}
.confidence-meter em, .evidence-meter em { display: block; height: 100%; background: var(--signal); }
.confidence-meter em { width: 92%; }
.evidence-meter em { width: 31%; background: #89a4ab; }
.false-confidence > p {
  margin: 0;
  color: #b9c9cd;
  font-size: .9rem;
  line-height: 1.7;
}
.failure-grid { display: grid; border-bottom: 1px solid rgb(255 255 255 / 20%); grid-template-columns: repeat(3, 1fr); }
.failure-grid article {
  display: flex;
  min-height: 350px;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  border-right: 1px solid rgb(255 255 255 / 20%);
  flex-direction: column;
}
.failure-grid article:first-child { padding-left: 0; }
.failure-grid article:last-child { padding-right: 0; border-right: 0; }
.failure-grid article > span {
  color: #d8a28f;
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .1em;
}
.failure-grid h3 {
  margin: 4.5rem 0 1rem;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 650;
  line-height: 1.08;
}
.failure-grid p { max-width: 390px; margin: 0; color: #b9c9cd; font-size: .92rem; line-height: 1.7; }
.failure-grid strong {
  max-width: 390px;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 18%);
  color: var(--white);
  font-size: .8rem;
  line-height: 1.55;
}
.problem-turn {
  display: grid;
  padding-top: clamp(2.5rem, 5vw, 5rem);
  align-items: end;
  column-gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: 1.05fr .85fr auto;
}
.problem-turn > div > span { color: #d8a28f; font-size: .64rem; font-weight: 750; letter-spacing: .1em; }
.problem-turn h3 { max-width: 620px; margin: 1rem 0 0; font-size: clamp(2rem, 3.2vw, 3.3rem); font-weight: 650; line-height: 1.06; }
.problem-turn > p { max-width: 520px; margin: 0; color: #b9c9cd; font-size: .9rem; line-height: 1.7; }
.problem-turn > a {
  padding-bottom: .35rem;
  border-bottom: 1px solid #8da6ac;
  white-space: nowrap;
  font-size: .74rem;
  font-weight: 700;
}
.problem-turn > a:hover { border-color: var(--signal); }

.questions-list { border-top: 1px solid var(--ink); }
.research-question { border-bottom: 1px solid var(--rule); }
.research-question > button {
  display: grid;
  width: 100%;
  min-height: 112px;
  padding: 1.5rem 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  align-items: center;
  grid-template-columns: 90px 1fr 40px;
  text-align: left;
  cursor: pointer;
}
.research-question > button > span { color: var(--signal); font-size: .68rem; font-weight: 750; }
.research-question h3 { margin: 0; font-size: clamp(1.35rem, 2.1vw, 2.15rem); font-weight: 650; letter-spacing: -.025em; }
.research-question button i { position: relative; width: 30px; height: 30px; border: 1px solid var(--rule-dark); border-radius: 50%; }
.research-question button i::before, .research-question button i::after { position: absolute; top: 14px; left: 8px; width: 12px; height: 1px; content: ""; background: var(--ink); transition: transform 180ms ease; }
.research-question button i::after { transform: rotate(90deg); }
.research-question.active button i { border-color: var(--blue); background: var(--blue); }
.research-question.active button i::before, .research-question.active button i::after { background: var(--white); }
.research-question.active button i::after { transform: rotate(0); }
.question-answer {
  display: grid;
  max-height: 0;
  padding: 0 70px 0 90px;
  overflow: hidden;
  column-gap: clamp(2rem, 7vw, 8rem);
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  transition: max-height 350ms var(--ease), padding 350ms var(--ease), opacity 200ms ease;
}
.research-question.active .question-answer { max-height: 280px; padding-top: .5rem; padding-bottom: 2.2rem; opacity: 1; }
.question-answer > p { max-width: 580px; margin: 0; color: #465458; font-size: 1rem; line-height: 1.7; }
.question-answer ul { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(2, 1fr); list-style: none; }
.question-answer li { padding: .7rem 0; border-bottom: 1px solid var(--rule); color: #526165; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.stages-heading { align-items: end; }
.stages-heading > div:first-child { max-width: 850px; }
.stages-heading > div:first-child > p { max-width: 760px; margin: 1.5rem 0 0; color: #465458; font-size: 1.05rem; line-height: 1.7; }
.stage-controls { display: flex; min-width: 180px; align-items: center; justify-content: space-between; }
.stage-controls button { display: grid; width: 42px; height: 42px; border: 1px solid var(--rule-dark); color: var(--ink); background: transparent; place-items: center; cursor: pointer; }
.stage-controls button:hover { color: var(--white); background: var(--blue); }
.stage-controls span { color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .1em; }
.stage-controls b { color: var(--signal); }

.outputs-grid { display: grid; border-top: 1px solid var(--ink); border-left: 1px solid var(--rule); grid-template-columns: repeat(3, 1fr); }
.output-featured { display: grid; min-height: 500px; padding: clamp(2rem, 4vw, 4rem); border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--blue); grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
.output-copy { display: flex; color: var(--white); justify-content: center; flex-direction: column; }
.output-copy > span, .output-card > span { color: #d8a28f; font-size: .65rem; font-weight: 750; letter-spacing: .1em; }
.output-copy h3 { max-width: 580px; margin: 2rem 0 1rem; font-size: clamp(2.6rem, 4.2vw, 4.5rem); font-weight: 650; line-height: 1; }
.output-copy p { max-width: 560px; color: #c5d1d4; font-size: 1rem; line-height: 1.7; }
.output-copy ul { display: flex; margin: 2rem 0 0; padding: 0; flex-wrap: wrap; gap: .55rem; list-style: none; }
.output-copy li { padding: .45rem .65rem; border: 1px solid rgb(255 255 255 / 25%); font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.report-stack { position: relative; display: grid; min-height: 360px; place-items: center; }
.report-stack > i { position: absolute; width: 260px; height: 340px; border: 1px solid rgb(255 255 255 / 18%); background: #315864; transform: rotate(7deg) translate(20px, -3px); }
.report-stack > i:nth-child(2) { background: #244b57; transform: rotate(3deg) translate(10px, 0); }
.report-stack > div { position: relative; z-index: 2; display: flex; width: 260px; height: 340px; padding: 1.7rem; color: var(--ink); background: var(--paper); justify-content: space-between; flex-direction: column; box-shadow: 0 25px 50px rgb(0 0 0 / 18%); }
.report-stack small { font-size: .5rem; font-weight: 750; letter-spacing: .08em; }
.report-stack b { max-width: 200px; font-size: 1.85rem; line-height: 1.02; }
.report-stack span { color: #526165; font-size: .65rem; line-height: 1.5; }
.report-stack em { padding-top: .8rem; border-top: 3px solid var(--signal); color: var(--muted); font-size: .55rem; font-style: normal; }
.output-card { position: relative; display: flex; min-height: 325px; padding: 2rem; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); justify-content: flex-start; flex-direction: column; background: rgb(251 250 246 / 55%); overflow: hidden; transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease); }
.output-card:hover { color: var(--white); background: var(--blue); }
.output-card:focus-visible { outline: 3px solid var(--signal); outline-offset: -3px; }
.output-card h3 { margin: 4rem 0 .8rem; font-size: clamp(1.45rem, 2vw, 2rem); font-weight: 650; }
.output-card p { margin: 0 0 1.5rem; color: #526165; font-size: .9rem; line-height: 1.65; }
.output-card b { margin-top: auto; color: var(--blue-mid); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.output-card em {
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  color: #c5d1d4;
  font-size: .75rem;
  font-style: normal;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 220ms var(--ease), margin 220ms var(--ease), padding 220ms var(--ease), opacity 180ms ease, transform 220ms var(--ease);
}
.output-card:hover, .output-card:focus { transform: translateY(-4px); }
.output-card:hover p, .output-card:hover b, .output-card:focus p, .output-card:focus b { color: #c5d1d4; }
.output-card:hover em, .output-card:focus em {
  max-height: 90px;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-color: rgb(255 255 255 / 22%);
  opacity: 1;
  transform: none;
}
.output-custom { color: var(--white); background: var(--signal); }
.output-custom > span, .output-custom b { color: #ffe7de; }
.output-custom p { color: #fff1ec; }
.output-custom:hover, .output-custom:focus { background: #a8482d; }

.home-closing { display: grid; gap: clamp(3rem, 6vw, 7rem); grid-template-columns: 1.2fr .8fr; }
.home-closing > * { width: 100%; margin-right: 0; margin-left: 0; }
.home-closing::after { width: 35vw; height: 35vw; }
.closing-intro h2 { max-width: 850px; margin-bottom: 2rem; }
.closing-intro > p { max-width: 720px; margin: 0; color: #c2d0d3; font-size: 1.1rem; line-height: 1.7; }
.brief-prompts { display: grid; align-content: end; }
.brief-prompts article { display: grid; padding: 1.2rem 0; border-top: 1px solid rgb(255 255 255 / 25%); grid-template-columns: 45px 1fr; }
.brief-prompts article:last-child { border-bottom: 1px solid rgb(255 255 255 / 25%); }
.brief-prompts span { color: #d8a28f; font-size: .65rem; font-weight: 750; }
.brief-prompts p { margin: 0; font-size: 1rem; font-weight: 600; }
.closing-action { display: flex; padding-top: 2rem; border-top: 1px solid rgb(255 255 255 / 25%); align-items: center; grid-column: 1 / -1; gap: 2rem; }
.closing-action > p { max-width: 660px; margin: 0 auto 0 0; color: #c2d0d3; font-size: .88rem; line-height: 1.65; }
.closing-action > p strong { color: var(--white); }
.closing-email { padding-bottom: .2rem; border-bottom: 1px solid rgb(255 255 255 / 40%); font-size: .75rem; }

@media (max-width: 900px) {
  .lens-panel { grid-template-columns: 1fr; }
  .lens-copy { border-right: 0; border-bottom: 1px solid var(--rule); }
  .problem-heading { grid-template-columns: 1fr; }
  .problem-heading .section-number { margin-bottom: 1.5rem; }
  .problem-heading > p { max-width: 650px; margin-top: 1.5rem; }
  .problem-board { grid-template-columns: 1fr; }
  .problem-transform { min-height: 90px; padding: 1rem 2rem; flex-direction: row; }
  .problem-transform span { writing-mode: initial; transform: none; }
  .problem-transform i { width: 35px; height: 1px; }
  .question-answer { grid-template-columns: 1fr; row-gap: 1.5rem; }
  .research-question.active .question-answer { max-height: 420px; }
  .output-featured { grid-template-columns: 1fr; }
  .outputs-grid { grid-template-columns: repeat(2, 1fr); }
  .home-closing { grid-template-columns: 1fr; }
  .closing-action { align-items: flex-start; flex-direction: column; }
  .closing-action > p { margin-right: 0; }
  .problem-diagnosis { grid-template-columns: 1fr; }
  .problem-diagnosis > article { min-height: 220px; }
  .problem-resolution { grid-template-columns: 90px 1fr; row-gap: 1rem; }
  .problem-resolution i { display: none; }
  .problem-resolution p:last-child { grid-column: 2; }
  .problem-board-v2 { grid-template-columns: 1fr; }
  .problem-board-v2 .problem-transform { display: grid; min-height: 84px; padding: 1rem; grid-template-columns: repeat(4, 1fr); }
  .problem-board-v2 .problem-transform span { justify-content: center; }
  .problem-board-v2 .problem-transform i { display: none; }
  .problem-impact-head { grid-template-columns: 1fr; }
  .problem-impact-head .section-number { margin-bottom: 1.5rem; }
  .problem-impact-head > p { max-width: 650px; margin-top: 1.5rem; }
  .false-confidence { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .false-confidence > p { max-width: 650px; grid-column: 1 / -1; }
  .failure-grid { grid-template-columns: 1fr; }
  .failure-grid article, .failure-grid article:first-child, .failure-grid article:last-child {
    min-height: 280px;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
  }
  .failure-grid article:last-child { border-bottom: 0; }
  .failure-grid h3 { margin-top: 2.5rem; }
  .problem-turn { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
  .problem-turn > a { width: max-content; grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .lens-tabs { grid-template-columns: repeat(2, 1fr); }
  .lens-tabs button:nth-child(2) { border-right: 0; }
  .lens-tabs button:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .lens-copy, .lens-visual { padding: 1.5rem; }
  .lens-panel { min-height: 0; }
  .lens-copy h2 { font-size: 2.25rem; }
  .problem-board-head { align-items: flex-start; flex-direction: column; }
  .problem-transform { display: grid; grid-template-columns: repeat(4, 1fr); }
  .problem-transform i { display: none; }
  .research-question > button { min-height: 100px; grid-template-columns: 42px 1fr 34px; }
  .research-question h3 { padding-right: .75rem; font-size: 1.22rem; }
  .question-answer { padding-right: 0; padding-left: 42px; }
  .research-question.active .question-answer { max-height: 520px; padding-bottom: 2rem; }
  .question-answer ul { grid-template-columns: 1fr; }
  .stages-heading { align-items: flex-start; }
  .stage-controls { min-width: 160px; }
  .outputs-grid { grid-template-columns: 1fr; }
  .output-featured { padding: 2rem 1.5rem; }
  .report-stack > i, .report-stack > div { width: 220px; height: 300px; }
  .output-card { min-height: 250px; }
  .home-closing { padding-top: 5rem; padding-bottom: 5rem; }
  .problem-heading h2 { font-size: 2.35rem; }
  .problem-resolution { padding: 1.5rem; grid-template-columns: 1fr; }
  .problem-resolution p:last-child { grid-column: auto; }
  .output-card em { max-height: 90px; margin-top: 1.2rem; padding-top: 1rem; border-color: var(--rule); color: #526165; opacity: 1; transform: none; }
  .output-card:hover em, .output-card:focus em { border-color: rgb(255 255 255 / 22%); color: #c5d1d4; }
  .output-custom em { color: #fff1ec; border-color: rgb(255 255 255 / 30%); }
  .source-stack > div { grid-template-columns: 65px 1fr 1fr; transform: none; }
  .problem-board-v2 .problem-transform { grid-template-columns: repeat(2, 1fr); row-gap: .8rem; }
  .problem-board-v2 .problem-transform span { padding: .55rem; border: 1px solid rgb(255 255 255 / 18%); }
  .confidence-line { grid-template-columns: 1fr; }
  .confidence-line span { padding: .65rem 0; border-bottom: 1px solid var(--rule); }
  .problem-impact { padding-top: 4rem; padding-bottom: 4rem; }
  .problem-impact-head h2 { font-size: 2.7rem; }
  .false-confidence { grid-template-columns: 1fr; }
  .false-confidence > p { grid-column: auto; }
  .confidence-meter b, .evidence-meter b { font-size: 2.7rem; }
  .problem-turn { grid-template-columns: 1fr; }
  .problem-turn > a { grid-column: auto; white-space: normal; }
}

/* Research as a Service */
.raas-main-hero {
  display: grid;
  max-width: var(--max);
  margin: auto;
  padding: clamp(3rem, 6vw, 6.5rem) var(--pad) clamp(5rem, 8vw, 8rem);
  align-items: end;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: 1.15fr .85fr;
}
.raas-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 1.7rem;
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  font-weight: 650;
  line-height: 1.02;
}
.raas-hero-copy .lede { max-width: 720px; }
.research-desk { border: 1px solid var(--rule); background: var(--white); box-shadow: 18px 18px 0 #e2e1db; }
.desk-head { display: flex; min-height: 50px; padding: 0 1.25rem; border-bottom: 1px solid var(--ink); align-items: center; justify-content: space-between; }
.desk-head span, .desk-head b { font-size: .58rem; font-weight: 750; letter-spacing: .1em; }
.desk-head b { color: var(--signal); }
.desk-question { padding: 2rem 1.5rem; border-bottom: 1px solid var(--rule); }
.desk-question > span, .desk-output > span { color: var(--signal); font-size: .6rem; font-weight: 750; letter-spacing: .1em; }
.desk-question h2 { margin: 2.8rem 0 .7rem; font-size: clamp(1.7rem, 2.5vw, 2.5rem); font-weight: 650; line-height: 1.08; }
.desk-question p { margin: 0; color: var(--muted); font-size: .8rem; }
.desk-flow { display: grid; padding: 1.5rem; border-bottom: 1px solid var(--rule); align-items: center; grid-template-columns: 1fr 25px 1fr 25px 1fr; }
.desk-flow div { display: flex; min-height: 75px; border: 1px solid var(--rule); align-items: center; justify-content: center; flex-direction: column; }
.desk-flow span { color: var(--blue); font-size: 1.5rem; font-weight: 650; }
.desk-flow small { color: var(--muted); font-size: .48rem; letter-spacing: .08em; }
.desk-flow i { height: 1px; background: var(--rule-dark); }
.desk-output { padding: 1.5rem; }
.desk-output > div { display: grid; margin: 1.8rem 0 1rem; gap: .5rem; }
.desk-output i { display: block; height: 6px; background: var(--blue); opacity: .16; }
.desk-output i:nth-child(2) { width: 83%; opacity: .25; }
.desk-output i:nth-child(3) { width: 92%; opacity: .35; }
.desk-output i:nth-child(4) { width: 58%; background: var(--signal); opacity: .9; }
.desk-output b { font-size: .72rem; }

.raas-reality { color: var(--white); background: var(--blue); }
.raas-reality-inner { max-width: var(--max); margin: auto; padding: clamp(5rem, 9vw, 9rem) var(--pad); }
.raas-reality-heading { display: grid; margin-bottom: clamp(3rem, 6vw, 6rem); gap: 3rem; grid-template-columns: .45fr 1.25fr .7fr; }
.raas-reality-heading .section-number { margin: .6rem 0 0; color: #a8bcc1; }
.raas-reality-heading h2 { margin: 0; font-size: clamp(2.7rem, 4.6vw, 4.8rem); font-weight: 650; line-height: 1.03; }
.raas-reality-heading > p { margin: .55rem 0 0; color: #bdcbce; font-size: 1rem; line-height: 1.7; }
.source-field { display: grid; border-top: 1px solid rgb(255 255 255 / 25%); grid-template-columns: 1.3fr .7fr; }
.source-types { display: grid; border-left: 1px solid rgb(255 255 255 / 20%); grid-template-columns: repeat(2, 1fr); }
.source-types article { min-height: 175px; padding: 1.5rem; border-right: 1px solid rgb(255 255 255 / 20%); border-bottom: 1px solid rgb(255 255 255 / 20%); }
.source-types article:last-child { grid-column: 1 / -1; }
.source-types span { color: #d8a28f; font-size: .6rem; font-weight: 750; }
.source-types b { display: block; margin: 2.2rem 0 .5rem; font-size: 1.25rem; }
.source-types p { margin: 0; color: #aebfc3; font-size: .8rem; line-height: 1.55; }
.source-conclusion { display: flex; padding: clamp(2rem, 4vw, 4rem); background: #0e2a33; justify-content: center; flex-direction: column; }
.source-conclusion > span { color: #d8a28f; font-size: .62rem; font-weight: 750; letter-spacing: .1em; }
.source-conclusion h3 { margin: 3rem 0 1rem; font-size: clamp(2rem, 3vw, 3.1rem); font-weight: 650; line-height: 1.05; }
.source-conclusion p { margin: 0; color: #bdcbce; font-size: .9rem; line-height: 1.7; }

.raas-definition { border-bottom: 1px solid var(--rule); }
.definition-lead { display: grid; margin-bottom: clamp(3rem, 6vw, 6rem); gap: 3rem; grid-template-columns: .45fr 1.25fr .7fr; }
.definition-lead .section-number { margin: .6rem 0 0; }
.definition-lead h2 { margin: 0; font-size: clamp(2.6rem, 4.3vw, 4.5rem); font-weight: 650; line-height: 1.04; }
.definition-lead > p { margin: .55rem 0 0; color: #465458; font-size: 1.05rem; line-height: 1.7; }
.definition-grid { display: grid; border-top: 1px solid var(--ink); border-left: 1px solid var(--rule); grid-template-columns: repeat(2, 1fr); }
.definition-grid article { display: flex; min-height: 310px; padding: 2rem; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); flex-direction: column; }
.definition-grid article > span { color: var(--signal); font-size: .65rem; font-weight: 750; }
.definition-grid h3 { margin: 4rem 0 .8rem; font-size: clamp(1.6rem, 2.3vw, 2.3rem); font-weight: 650; }
.definition-grid p { max-width: 540px; margin: 0; color: #526165; font-size: .92rem; line-height: 1.65; }
.definition-grid b { margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--rule); color: var(--blue-mid); font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }

.raas-questions { border-bottom: 1px solid var(--rule); }
.raas-question-grid { display: grid; border-top: 1px solid var(--ink); border-left: 1px solid var(--rule); grid-template-columns: repeat(3, 1fr); }
.raas-question-grid article { min-height: 290px; padding: 2rem; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: rgb(251 250 246 / 45%); }
.raas-question-grid span { color: var(--signal); font-size: .65rem; font-weight: 750; }
.raas-question-grid h3 { margin: 4rem 0 .9rem; font-size: clamp(1.4rem, 2vw, 1.95rem); font-weight: 650; line-height: 1.14; }
.raas-question-grid p { margin: 0; color: #526165; font-size: .88rem; line-height: 1.65; }

.raas-capability { border-bottom: 1px solid var(--rule); }
.capability-matrix { border-top: 1px solid var(--ink); }
.matrix-head, .capability-matrix article { display: grid; grid-template-columns: .55fr 1.35fr 1.1fr; column-gap: 2rem; }
.matrix-head { padding: .8rem 0; border-bottom: 1px solid var(--rule); color: var(--muted); font-size: .58rem; font-weight: 750; letter-spacing: .1em; }
.capability-matrix article { min-height: 125px; padding: 1.5rem 0; border-bottom: 1px solid var(--rule); align-items: center; }
.capability-matrix article > span { color: var(--signal); font-size: .62rem; font-weight: 750; letter-spacing: .06em; }
.capability-matrix h3 { margin: 0; font-size: 1.35rem; font-weight: 650; }
.capability-matrix p { margin: 0; color: #526165; font-size: .88rem; line-height: 1.6; }
.capability-matrix b { display: none; }

.raas-dedicated {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.raas-dedicated-inner {
  display: grid;
  max-width: var(--max);
  margin: auto;
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  gap: clamp(3rem, 6vw, 6rem);
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
}
.dedicated-heading h2 {
  max-width: 580px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 650;
  line-height: 1.04;
}
.dedicated-heading > p {
  max-width: 530px;
  margin: 0;
  color: #465458;
  font-size: 1.02rem;
  line-height: 1.72;
}
.dedicated-interface {
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 #dedfd9;
}
.dedicated-interface-head {
  display: flex;
  min-height: 58px;
  padding: 0 1.4rem;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  justify-content: space-between;
}
.dedicated-interface-head span,
.dedicated-interface-head b,
.dedicated-label {
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .1em;
}
.dedicated-interface-head b, .dedicated-label b { color: var(--signal); }
.dedicated-interface-body { display: grid; grid-template-columns: 1.35fr .65fr; }
.dedicated-queue { padding: 1.5rem; border-right: 1px solid var(--rule); }
.dedicated-label {
  display: flex;
  padding-bottom: 1rem;
  color: var(--muted);
  justify-content: space-between;
}
.dedicated-queue article {
  display: grid;
  min-height: 82px;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  align-items: center;
  grid-template-columns: 42px 1fr auto;
  gap: 1rem;
}
.dedicated-queue article > span { color: var(--signal); font-size: .62rem; font-weight: 750; }
.dedicated-queue article p { margin: 0; font-size: .88rem; font-weight: 650; }
.dedicated-queue article > b { color: var(--blue-mid); font-size: .54rem; letter-spacing: .08em; }
.dedicated-summary {
  display: flex;
  padding: 1.5rem;
  background: #edf0eb;
  flex-direction: column;
}
.dedicated-summary > span { margin-bottom: 2rem; color: var(--muted); font-size: .58rem; font-weight: 750; letter-spacing: .1em; }
.dedicated-summary strong { color: var(--blue); font-size: 2.7rem; font-weight: 650; line-height: 1; }
.dedicated-summary p { margin: .25rem 0 1.4rem; color: var(--muted); font-size: .68rem; }
.dedicated-summary a { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--rule-dark); font-size: .7rem; font-weight: 750; }
.dedicated-values {
  display: grid;
  border-top: 1px solid var(--ink);
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
}
.dedicated-values article {
  min-height: 280px;
  padding: 1.75rem;
  border-right: 1px solid var(--rule);
}
.dedicated-values article:last-child { border-right: 0; }
.dedicated-values span { color: var(--signal); font-size: .6rem; font-weight: 750; letter-spacing: .08em; }
.dedicated-values h3 { margin: 4rem 0 .8rem; font-size: 1.35rem; font-weight: 650; line-height: 1.12; }
.dedicated-values p { margin: 0; color: #526165; font-size: .8rem; line-height: 1.65; }

.raas-model { color: var(--white); background: #102f39; }
.raas-model-inner { max-width: var(--max); margin: auto; padding: clamp(5rem, 9vw, 9rem) var(--pad); }
.raas-model .section-heading h2 { color: var(--white); }
.raas-model .section-heading > p { color: #bdcbce; }
.raas-model .section-number { color: #9fb6bc; }
.model-interface { border: 1px solid rgb(255 255 255 / 24%); }
.model-tabs { display: grid; border-bottom: 1px solid rgb(255 255 255 / 24%); grid-template-columns: repeat(3, 1fr); }
.model-tabs button { display: flex; min-height: 75px; padding: 1rem 1.3rem; border: 0; border-right: 1px solid rgb(255 255 255 / 24%); color: #b9c9cd; background: transparent; align-items: center; gap: 1rem; font-weight: 700; cursor: pointer; }
.model-tabs button:last-child { border-right: 0; }
.model-tabs button span { color: #d8a28f; font-size: .6rem; }
.model-tabs button.active { color: var(--blue); background: var(--paper); }
.model-tabs button:focus-visible { outline: 2px solid var(--signal); outline-offset: -3px; }
.model-panel { display: grid; min-height: 470px; grid-template-columns: 1.2fr .8fr; }
.model-copy { display: flex; padding: clamp(2rem, 5vw, 5rem); border-right: 1px solid rgb(255 255 255 / 24%); justify-content: center; flex-direction: column; }
.model-label { margin-bottom: 2rem; color: #d8a28f; font-size: .64rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.model-copy h3 { max-width: 650px; margin: 0 0 1.2rem; font-size: clamp(2.2rem, 3.7vw, 3.8rem); font-weight: 650; line-height: 1.05; }
.model-copy > p:not(.model-label) { max-width: 620px; margin-bottom: 2rem; color: #bdcbce; line-height: 1.7; }
.model-copy ul { display: grid; max-width: 650px; margin: 0; padding: 0; grid-template-columns: repeat(2, 1fr); column-gap: 1.5rem; list-style: none; }
.model-copy li { padding: .8rem 0; border-top: 1px solid rgb(255 255 255 / 20%); color: #d5dfe1; font-size: .76rem; }
.model-spec { display: grid; background: #0d2932; }
.model-spec div { display: flex; padding: 1.5rem 2rem; border-bottom: 1px solid rgb(255 255 255 / 18%); justify-content: center; flex-direction: column; }
.model-spec div:last-child { border-bottom: 0; }
.model-spec span { margin-bottom: .6rem; color: #829fa6; font-size: .56rem; font-weight: 750; letter-spacing: .1em; }
.model-spec b { font-size: 1.05rem; font-weight: 600; }

.raas-outputs { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.raas-output-grid { display: grid; border-top: 1px solid var(--ink); border-left: 1px solid var(--rule); grid-template-columns: repeat(3, 1fr); }
.raas-output-grid article { min-height: 260px; padding: 2rem; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.raas-output-primary { display: grid; min-height: 340px !important; color: var(--white); background: var(--blue); grid-column: 1 / -1; grid-template-columns: .55fr 1fr 1fr; align-items: center; column-gap: 3rem; }
.raas-output-grid article > span { color: var(--signal); font-size: .62rem; font-weight: 750; letter-spacing: .09em; }
.raas-output-primary > span { color: #d8a28f; }
.raas-output-grid h3 { margin: 4rem 0 .8rem; font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 650; }
.raas-output-primary h3 { margin: 0; font-size: clamp(2.4rem, 3.5vw, 3.6rem); line-height: 1.03; }
.raas-output-grid p { margin: 0; color: #526165; font-size: .88rem; line-height: 1.65; }
.raas-output-primary p { color: #bdcbce; font-size: 1rem; }
.raas-output-primary > div { display: grid; grid-template-columns: repeat(2, 1fr); }
.raas-output-primary b { padding: 1rem 0; border-top: 1px solid rgb(255 255 255 / 22%); color: #dce5e7; font-size: .65rem; font-weight: 650; }

.raas-working { border-bottom: 1px solid var(--rule); }
.working-rhythm { display: grid; margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; grid-template-columns: repeat(4, 1fr); }
.working-rhythm li { display: flex; min-height: 360px; padding: 1.8rem; border-right: 1px solid var(--rule); flex-direction: column; }
.working-rhythm li:last-child { border-right: 0; }
.working-rhythm li > span { color: var(--signal); font-size: .65rem; font-weight: 750; }
.working-rhythm li > div { margin-top: auto; }
.working-rhythm small { color: var(--blue-mid); font-size: .58rem; font-weight: 750; letter-spacing: .1em; }
.working-rhythm h3 { margin: 1rem 0 .8rem; font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 650; line-height: 1.1; }
.working-rhythm p { margin: 0; color: #526165; font-size: .85rem; line-height: 1.65; }

.raas-closing { display: grid; gap: clamp(3rem, 8vw, 9rem); grid-template-columns: 1.15fr .85fr; }
.raas-closing > * { width: 100%; margin: 0; }
.raas-brief { display: flex; padding: 2rem; border: 1px solid rgb(255 255 255 / 25%); flex-direction: column; }
.raas-brief > span { margin-bottom: 2rem; color: #d8a28f; font-size: .62rem; font-weight: 750; letter-spacing: .1em; }
.raas-brief > p { margin: 0; padding: 1rem 0; border-top: 1px solid rgb(255 255 255 / 22%); font-size: 1rem; font-weight: 600; }
.raas-brief .button { margin-top: auto; }

@media (max-width: 900px) {
  .raas-main-hero { grid-template-columns: 1fr; }
  .research-desk { max-width: 650px; }
  .raas-dedicated-inner { grid-template-columns: 1fr; }
  .dedicated-heading > p { max-width: 680px; }
  .dedicated-interface { max-width: 760px; }
  .dedicated-values { grid-template-columns: repeat(2, 1fr); }
  .dedicated-values article:nth-child(2) { border-right: 0; }
  .dedicated-values article:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .raas-reality-heading, .definition-lead { grid-template-columns: 1fr; }
  .raas-reality-heading .section-number, .definition-lead .section-number { margin-bottom: -1rem; }
  .raas-reality-heading > p, .definition-lead > p { max-width: 650px; }
  .source-field { grid-template-columns: 1fr; }
  .definition-grid { grid-template-columns: 1fr; }
  .definition-grid article { min-height: 260px; }
  .raas-question-grid { grid-template-columns: repeat(2, 1fr); }
  .matrix-head { display: none; }
  .capability-matrix article { grid-template-columns: 90px 1fr; row-gap: .7rem; }
  .capability-matrix p { grid-column: 2; }
  .model-panel { grid-template-columns: 1fr; }
  .model-copy { border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 24%); }
  .model-spec { grid-template-columns: repeat(2, 1fr); }
  .model-spec div:nth-child(odd) { border-right: 1px solid rgb(255 255 255 / 18%); }
  .raas-output-primary { grid-template-columns: 1fr; row-gap: 2rem; }
  .working-rhythm { grid-template-columns: repeat(2, 1fr); }
  .working-rhythm li:nth-child(2) { border-right: 0; }
  .working-rhythm li:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .raas-closing { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .raas-main-hero { padding-top: 3rem; }
  .raas-hero-copy h1 { font-size: clamp(2.35rem, 10.5vw, 3.45rem); }
  .research-desk { box-shadow: 8px 8px 0 #e2e1db; }
  .dedicated-interface { box-shadow: 8px 8px 0 #dedfd9; }
  .dedicated-interface-body { grid-template-columns: 1fr; }
  .dedicated-queue { border-right: 0; border-bottom: 1px solid var(--rule); }
  .dedicated-queue article { grid-template-columns: 32px 1fr; }
  .dedicated-queue article > b { grid-column: 2; }
  .dedicated-summary { min-height: 260px; }
  .dedicated-values { grid-template-columns: 1fr; }
  .dedicated-values article,
  .dedicated-values article:nth-child(2) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .dedicated-values article:last-child { border-bottom: 0; }
  .desk-flow { grid-template-columns: 1fr; gap: .5rem; }
  .desk-flow i { width: 1px; height: 15px; margin: auto; }
  .source-types { grid-template-columns: 1fr; }
  .source-types article:last-child { grid-column: auto; }
  .raas-question-grid { grid-template-columns: 1fr; }
  .raas-question-grid article { min-height: 240px; }
  .capability-matrix article { grid-template-columns: 1fr; }
  .capability-matrix p { grid-column: auto; }
  .capability-matrix h3 { margin-top: .5rem; }
  .model-tabs { grid-template-columns: 1fr; }
  .model-tabs button { min-height: 62px; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 24%); }
  .model-tabs button:last-child { border-bottom: 0; }
  .model-copy ul { grid-template-columns: 1fr; }
  .model-spec { grid-template-columns: 1fr; }
  .model-spec div:nth-child(odd) { border-right: 0; }
  .raas-output-grid { grid-template-columns: 1fr; }
  .raas-output-primary { min-height: 400px !important; }
  .raas-output-primary > div { grid-template-columns: 1fr; }
  .working-rhythm { grid-template-columns: 1fr; }
  .working-rhythm li, .working-rhythm li:nth-child(2) { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .working-rhythm li:last-child { border-bottom: 0; }
}
