:root {
  --navy: #253746;
  --deep: #141e26;
  --green: #1a6b57;
  --mint: #9bd2c1;
  --ink: #253746;
  --muted: #5e6b77;
  --line: #e3e1dc;
  --paper: #fff;
  --wash: #f7f6f3;
  --mono: "JetBrains Mono", monospace;
  --gutter: clamp(22px, 4vw, 80px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  text-wrap: pretty;
}
h1 {
  font-size: clamp(36px, 4.9vw, 74px);
  font-weight: 600;
  letter-spacing: -0.038em;
  max-width: 24ch;
}
h2 {
  font-size: clamp(26px, 2.9vw, 42px);
  letter-spacing: -0.03em;
  font-weight: 600;
  max-width: 32ch;
}
h3 {
  font-size: clamp(21px, 2vw, 26px);
  letter-spacing: -0.022em;
  font-weight: 600;
}
h4 {
  font-size: 20px;
}
p + p {
  margin-top: 20px;
}
a:hover {
  color: var(--green);
}
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 5px;
}
::selection {
  background: var(--mint);
  color: var(--deep);
}
[hidden] {
  display: none !important;
}
.container {
  width: 100%;
  max-width: 1560px;
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.eyebrow {
  font: 500 12px/1.6 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.muted {
  color: var(--muted);
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  background: #fff;
  padding: 16px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  min-height: 48px;
  font: 500 12px/1.5 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.button:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.button.outline {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.button:disabled {
  opacity: 0.5;
  cursor: wait;
}
.text-link {
  display: inline-block;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  padding-block: 10px;
  border: 0;
  background: transparent;
}
.preview-banner {
  text-align: center;
  background: var(--mint);
  color: var(--deep);
  font: 12px/1.6 var(--mono);
  padding: 7px 20px;
}
.site-header {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 90px;
  padding: 20px var(--gutter);
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}
.brand {
  flex: 0 0 auto;
}
.logo {
  height: 28px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  gap: clamp(18px, 2.6vw, 38px);
  align-items: center;
}
.desktop-nav a {
  font: 500 12px/1.6 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-block: 5px;
  border-bottom: 1px solid transparent;
}
.desktop-nav a[aria-current] {
  border-color: var(--green);
  font-weight: 700;
}
.compact {
  padding: 11px 20px;
  min-height: 44px;
}
.mobile-nav {
  display: none;
  margin-left: auto;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}
.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-art > img,
.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video {
  filter: grayscale(1) contrast(1.15);
  opacity: 0.55;
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(15, 23, 31, 0.9),
      rgba(15, 23, 31, 0.55) 55%,
      rgba(15, 23, 31, 0.4)
    ),
    linear-gradient(0deg, #253746, transparent 55%);
}
.hero-content {
  position: relative;
  padding-top: clamp(64px, 8vw, 124px);
  padding-bottom: clamp(48px, 5vw, 80px);
}
.hero-content > .eyebrow {
  color: #b9dcd2;
  margin-bottom: 26px;
}
.hero-intro {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid #89a99e88;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.7;
  color: #fffffff0;
}
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 44px);
  margin-top: clamp(50px, 6vw, 88px);
}
.hero-pillars .eyebrow {
  color: #b9dcd2;
}
.hero-pillars h2 {
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 12px 0;
}
.hero-pillars p {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffffe6;
}
.logo-band {
  background: var(--navy);
  color: white;
  padding-block: 30px;
}
.logo-band .eyebrow {
  color: #d3e4df;
  margin-bottom: 20px;
}
.logo-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  overflow-x: auto;
  padding: 10px 0;
}
.logo-rail a {
  flex: 0 0 140px;
  display: grid;
  place-items: center;
}
.company-mark {
  height: 32px;
  width: 140px;
  object-fit: contain;
}
.section {
  padding-block: clamp(58px, 7vw, 112px);
  border-bottom: 1px solid var(--line);
}
.section-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
}
.section-label {
  color: var(--muted);
  padding-top: 7px;
}
.section-content {
  min-width: 0;
}
.section-content > h2 {
  margin-bottom: 24px;
}
.section-intro {
  max-width: 68ch;
  margin-bottom: 40px;
}
.prose {
  color: #4a5763;
  white-space: pre-line;
  line-height: 1.75;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 36px;
}
.card {
  padding: clamp(24px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-width: 0;
  transition:
    background 0.3s,
    color 0.3s;
}
.card > .number {
  display: block;
  color: var(--green);
  margin-bottom: 24px;
}
.card h3 {
  margin-bottom: 16px;
}
.card .prose {
  font-size: 16px;
}
.card-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 20px;
}
.card dl {
  margin: 28px 0 0;
  font-size: 14px;
}
.card dl > div {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.card dt {
  font: 11px/1.6 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.card dd {
  margin: 0;
  text-align: right;
  font-weight: 600;
}
.card .text-link {
  margin-top: 18px;
}
.cards.products .card:hover {
  background: var(--navy);
  color: white;
}
.cards.products .card:hover .prose,
.cards.products .card:hover dt {
  color: #e0e9e7;
}
.cards.products .card:hover .number {
  color: var(--mint);
}
.cards.audiences {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cards.numbered .card {
  padding-left: 0;
  padding-right: 32px;
  border-left: 0;
  border-right: 0;
}
.cards.numbered {
  border-left: 0;
  gap: 0 30px;
}
.text-with-image {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
}
.editorial-image {
  height: 100%;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 24px;
  margin-top: 36px;
}
.portrait {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  object-position: top;
  background: var(--wash);
  filter: grayscale(1);
}
.person h3 {
  font-size: 18px;
  margin: 18px 0 6px;
}
.person-role {
  font-size: 14px;
  color: var(--muted);
}
.biography {
  margin-top: 12px;
  font-size: 14px;
}
.biography summary {
  font-weight: 600;
  color: var(--green);
  padding: 6px 0;
}
.biography p {
  margin-top: 14px;
}
.featured-rail {
  display: flex;
  gap: 24px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  margin-top: 36px;
}
.featured-card {
  flex: 0 0 min(390px, 85%);
  border: 1px solid var(--line);
  scroll-snap-align: start;
  color: var(--ink);
}
.featured-art {
  height: 225px;
  position: relative;
  overflow: hidden;
  background: var(--deep);
}
.featured-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}
.featured-mark {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 52px;
  width: 230px;
  object-fit: contain;
  object-position: left;
}
.featured-copy {
  padding: 28px;
}
.featured-copy h3 {
  margin: 12px 0 18px;
}
.featured-copy p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
  color: var(--muted);
}
.badge {
  display: inline-block;
  font: 10px/1.5 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
  border: 1px solid var(--line);
  white-space: nowrap;
}
.filters {
  display: flex;
  gap: 20px;
  align-items: end;
  flex-wrap: wrap;
  margin: 32px 0;
}
.filters label {
  display: grid;
  gap: 6px;
  font: 12px/1.6 var(--mono);
  text-transform: uppercase;
  color: var(--muted);
}
select {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 12px;
  min-width: 150px;
  font:
    14px/1.5 Manrope,
    Arial,
    sans-serif;
}
.filters p {
  font-size: 13px;
}
.portfolio-list {
  border-top: 1px solid var(--line);
}
.company-row {
  border-bottom: 1px solid var(--line);
}
.company-row summary {
  display: grid;
  grid-template-columns: 2fr 1fr auto 20px;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  list-style: none;
}
.company-row summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}
.company-name {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
}
.portfolio-logo {
  height: 30px;
  width: 85px;
  object-fit: contain;
}
.company-sector {
  font-size: 13px;
  color: var(--muted);
}
.plus {
  font: 22px/1 var(--mono);
  color: var(--green);
  transition: transform 0.2s;
}
details[open] > summary .plus {
  transform: rotate(45deg);
}
.company-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  padding: 0 30px 30px;
  background: var(--wash);
  font-size: 15px;
}
.company-row[open] summary {
  background: var(--wash);
}
.company-detail > p {
  max-width: 65ch;
  padding-top: 20px;
}
.company-detail > div {
  padding-top: 20px;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 24px;
  margin-top: 30px;
}
.insight-art {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 1.5;
}
.insight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.insight-card a:hover img {
  transform: scale(1.035);
}
.insight-art .badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--deep);
  color: white;
  border: 0;
}
.insight-card h3 {
  font-size: 20px;
  line-height: 1.35;
  margin: 20px 0 12px;
}
.insight-card p {
  font-size: 14px;
  color: var(--muted);
}
.insight-card time {
  display: block;
  font: 11px/1.6 var(--mono);
  color: var(--muted);
  margin-top: 16px;
}
.thesis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}
.thesis-layer {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-width: 0;
}
.thesis-copy {
  padding: 30px;
}
.thesis-copy > .eyebrow {
  color: var(--green);
}
.thesis-copy h3 {
  margin: 16px 0 10px;
}
.thesis-copy .kicker {
  color: var(--green);
  font-size: 14px;
  margin-bottom: 20px;
}
.thesis-copy > p {
  font-size: 15px;
  line-height: 1.7;
}
.connection {
  color: var(--green);
  font-size: 13px !important;
}
.chart-detail > summary {
  padding: 18px 30px;
  background: var(--wash);
  color: var(--green);
  font-size: 14px;
}
.chart-content {
  padding: 30px;
}
.chart-content > p {
  font-size: 13px;
  color: var(--muted);
}
.chart-delta {
  display: block;
  font-size: 24px;
  margin-top: 20px;
  color: var(--green);
}
.chart {
  display: flex;
  gap: 12px;
  height: 210px;
  margin: 40px 0 45px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.chart-column {
  display: flex;
  flex: 1;
  position: relative;
  align-items: end;
}
.chart-bar {
  display: block;
  width: 100%;
  background: var(--green);
  position: relative;
  min-height: 2px;
}
.chart-bar > span {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  font: 10px/1.5 var(--mono);
  padding-bottom: 5px;
  white-space: nowrap;
}
.chart-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font: 10px/1.5 var(--mono);
  padding-top: 10px;
  white-space: nowrap;
}
.chart-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--green);
  overflow: visible;
}
.line-chart .chart-bar {
  background: transparent;
}
.line-chart .chart-bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: var(--green);
}
.chart-content ul {
  padding-left: 18px;
  font-size: 14px;
}
.chart-content li + li {
  margin-top: 12px;
}
.chart-source {
  font: 11px/1.5 var(--mono);
}
.faq-list {
  border-top: 1px solid var(--line);
  margin-top: 36px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-weight: 600;
  list-style: none;
}
.faq-list .prose {
  padding: 0 30px 25px 0;
}
.contact-section {
  background: var(--wash);
  padding-block: clamp(60px, 7vw, 100px);
  border-bottom: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 7vw, 110px);
}
.contact-grid h2 {
  margin: 20px 0;
}
.contact-grid p {
  color: var(--muted);
}
.contact-grid .button {
  margin-top: 22px;
}
form {
  margin-top: 26px;
}
form label:not(.consent) {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
input:not([type="checkbox"]),
textarea {
  display: block;
  min-width: 0;
  width: 100%;
  padding: 12px;
  border: 1px solid #bec5c8;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  margin: 7px 0 18px;
  font-size: 16px;
}
textarea {
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.consent {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
.consent input {
  margin-top: 4px;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--green);
}
.consent a {
  text-decoration: underline;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
}
.form-status {
  font-size: 14px;
  margin-top: 15px;
}
.form-status[data-error] {
  color: #9f2828;
}
.newsletter {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 64px);
}
.site-footer {
  background: white;
  padding: 48px 0 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.footer-brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-offices h3 {
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-offices p {
  font-size: 13px;
  color: var(--muted);
  white-space: pre-line;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom nav {
  display: flex;
  gap: 20px;
}
.article-page {
  padding-block: 50px 100px;
  max-width: 1200px;
}
.breadcrumbs {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 55px;
}
.article-page > h1 {
  margin: 20px 0 28px;
  font-size: clamp(34px, 4.5vw, 64px);
  max-width: 26ch;
}
.article-excerpt {
  font-size: 20px;
  line-height: 1.65;
  max-width: 68ch;
}
.article-meta {
  display: flex;
  gap: 22px;
  font: 12px/1.6 var(--mono);
  margin: 30px 0;
  color: var(--muted);
}
.article-cover {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.article-body {
  max-width: 740px;
  margin: 55px auto;
  font-size: 18px;
  white-space: normal;
}
.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 42px 0 20px;
}
.article-body h2 {
  font-size: 32px;
}
.article-body a {
  text-decoration: underline;
  color: var(--green);
}
.article-body blockquote {
  margin: 35px 0;
  border-left: 3px solid var(--green);
  padding: 5px 30px;
  font-size: 22px;
}
.article-body pre {
  overflow: auto;
  padding: 20px;
  background: var(--wash);
}
.article-body figure {
  margin: 30px 0;
}
.draft-note {
  padding: 28px;
  background: var(--wash);
  margin: 30px 0;
}
.utility-page {
  padding-block: 100px;
  min-height: 60vh;
}
.utility-page h1 {
  margin: 25px 0;
}
.utility-page p {
  max-width: 65ch;
}
.utility-page .button {
  margin-top: 30px;
}
@media (min-width: 1800px) {
  .site-header {
    padding-inline: max(var(--gutter), calc((100% - 1400px) / 2));
  }
}
@media (max-width: 1100px) {
  .section-layout {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 30px;
  }
  .cards.audiences {
    grid-template-columns: 1fr;
  }
  .team-grid,
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .text-with-image {
    grid-template-columns: 1fr;
  }
  .editorial-image {
    min-height: 250px;
    max-height: 350px;
  }
  .desktop-nav {
    gap: 18px;
  }
  .desktop-nav a {
    font-size: 11px;
  }
  .site-header {
    gap: 20px;
  }
  .logo {
    max-width: 190px;
  }
}
@media (max-width: 800px) {
  .desktop-nav,
  .contact-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .mobile-nav > summary {
    padding: 12px;
    font: 13px/1.5 var(--mono);
    text-transform: uppercase;
  }
  .mobile-nav nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    padding: 20px var(--gutter);
    box-shadow: 0 15px 20px #0001;
    display: grid;
    gap: 10px;
  }
  .mobile-nav nav a {
    padding: 10px 0;
  }
  .hero-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-layout {
    display: block;
  }
  .section-label {
    margin-bottom: 22px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .newsletter {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 40px 0 0;
  }
  .footer-offices {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .site-header {
    min-height: 78px;
  }
  .company-row summary {
    grid-template-columns: 1fr auto 18px;
    gap: 12px;
  }
  .company-sector {
    display: none;
  }
  .company-detail {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .portfolio-logo {
    width: 64px;
  }
  .company-name {
    gap: 15px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 36px;
  }
  .hero-pillars {
    gap: 26px 20px;
  }
  .hero-pillars p {
    font-size: 13px;
  }
  .hero-pillars h2 {
    font-size: 16px;
  }
  .cards,
  .thesis-grid {
    grid-template-columns: 1fr;
  }
  .cards.numbered {
    gap: 0;
  }
  .team-grid {
    gap: 30px 16px;
  }
  .person h3 {
    font-size: 16px;
  }
  .person-role {
    font-size: 12px;
  }
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-top,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
  .filters {
    gap: 12px;
  }
  .filters label {
    flex: 1;
    min-width: 120px;
  }
  select {
    width: 100%;
    min-width: 0;
  }
  .company-row .badge {
    font-size: 9px;
  }
  .company-name {
    font-size: 14px;
  }
  .portfolio-logo {
    width: 45px;
  }
  .hero-intro {
    font-size: 16px;
  }
  .chart-content {
    padding: 24px;
  }
  .featured-card {
    flex-basis: 90%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero-video {
    display: none;
  }
}
.article-reading {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 50px;
}
.article-reading .article-body {
  flex: 1;
  min-width: 0;
  margin: 0 auto 55px;
}
.article-toc {
  position: sticky;
  top: 30px;
  flex: 0 0 190px;
  font-size: 13px;
  line-height: 1.6;
}
.article-toc .eyebrow {
  margin-bottom: 18px;
  color: var(--muted);
}
.article-toc a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.related-insights {
  border-top: 1px solid var(--line);
  margin-top: 50px;
  padding-top: 45px;
}
@media (max-width: 800px) {
  .article-reading {
    display: block;
  }
  .article-toc {
    position: static;
    margin-bottom: 40px;
  }
  .article-reading .article-body {
    font-size: 17px;
  }
}
