:root {
  --insight-max: 1280px;
  --reading-width: 760px;
}

.insight-page {
  background: var(--paper);
}

.insight-page .insight-site-header {
  position: absolute;
}

.insight-page .desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.insights-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.insights-kicker::before {
  width: 34px;
  height: 1px;
  background: var(--acid);
  content: "";
}

.insights-hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.insights-hero__media {
  position: absolute;
  inset: 0 0 0 46%;
  opacity: 0.52;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 30%);
  mask-image: linear-gradient(90deg, transparent, black 30%);
}

.insights-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(10 11 11 / 68%), transparent 58%);
  content: "";
}

.insights-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.08);
}

.insights-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 6%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 6%) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  -webkit-mask-image: linear-gradient(90deg, black, transparent 88%);
  mask-image: linear-gradient(90deg, black, transparent 88%);
}

.insights-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: max(760px, 100svh);
  padding: 170px var(--gutter) 70px;
  flex-direction: column;
  justify-content: center;
}

.insights-hero h1 {
  max-width: 1180px;
  margin-top: clamp(45px, 7vh, 85px);
  font-size: clamp(62px, 8.5vw, 154px);
  font-weight: 570;
  letter-spacing: -0.085em;
  line-height: 0.94;
}

.insights-hero h1 span,
.category-hero h1 span,
.service-hero h1 span {
  color: var(--acid);
}

.insights-hero__bottom {
  display: flex;
  max-width: 1120px;
  margin-top: clamp(62px, 9vh, 105px);
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.insights-hero__bottom p {
  max-width: 660px;
  padding-left: 24px;
  color: rgb(255 255 255 / 66%);
  border-left: 1px solid var(--acid);
  font-size: clamp(13px, 1.2vw, 17px);
  line-height: 2;
}

.insights-hero__bottom > span {
  color: rgb(255 255 255 / 38%);
  font-size: 8px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.category-nav {
  position: sticky;
  z-index: 80;
  top: 0;
  display: flex;
  min-height: 78px;
  padding: 0 var(--gutter);
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid var(--line-dark);
  background: rgb(241 240 233 / 92%);
  backdrop-filter: blur(18px);
}

.category-nav a {
  display: inline-flex;
  min-width: 180px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--line-dark);
  font-size: 11px;
  font-weight: 650;
}

.category-nav a:first-child {
  border-left: 1px solid var(--line-dark);
}

.category-nav a[aria-current="page"] {
  background: var(--ink);
  color: white;
}

.category-nav a span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-size: 8px;
}

.insights-section {
  max-width: calc(var(--insight-max) + var(--gutter) * 2);
  margin-inline: auto;
  padding: clamp(100px, 11vw, 190px) var(--gutter);
}

.insights-section--grid {
  border-top: 1px solid var(--line-dark);
}

.insights-section__head {
  display: grid;
  margin-bottom: clamp(65px, 8vw, 120px);
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: clamp(45px, 8vw, 130px);
  align-items: end;
}

.insights-section__head > div {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgb(10 11 11 / 45%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.insights-section__head > div i {
  width: 48px;
  height: 1px;
  background: currentColor;
}

.insights-section__head > h2 {
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 580;
  letter-spacing: -0.075em;
  line-height: 1.06;
}

.insights-section__head h2 span {
  position: relative;
  z-index: 0;
}

.insights-section__head h2 span::after {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.03em;
  left: -0.04em;
  height: 0.19em;
  background: var(--acid);
  content: "";
  transform: skewX(-10deg);
}

.insight-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  border: 1px solid var(--line-dark);
  background: #f7f6ef;
  box-shadow: 0 26px 70px rgb(10 11 11 / 7%);
}

.insight-card__media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--ink);
}

.insight-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgb(10 11 11 / 58%));
  content: "";
}

.insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
  transition: transform 0.9s var(--ease-out), filter 0.7s;
}

.insight-card:hover .insight-card__media img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.035);
}

.insight-card__media > span {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 20px;
  color: var(--acid);
  font-size: clamp(70px, 8vw, 130px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.insight-card__body {
  display: flex;
  min-height: 610px;
  padding: clamp(38px, 5vw, 74px);
  flex-direction: column;
}

.insight-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 18px;
  color: rgb(10 11 11 / 45%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.insight-card__meta span:first-child {
  color: var(--ink);
}

.insight-card__body h2 {
  margin-top: clamp(45px, 5vw, 70px);
  font-size: clamp(34px, 3.4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.2;
}

.insight-card__body > p {
  max-width: 570px;
  margin-top: 28px;
  color: rgb(10 11 11 / 58%);
  font-size: 13px;
  line-height: 2;
}

.insight-card__link {
  display: flex;
  min-height: 58px;
  margin-top: auto;
  padding-top: 40px;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.insight-card__link i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  font-size: 18px;
  font-style: normal;
}

.insight-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.insight-card--compact {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.insight-card--compact .insight-card__media {
  min-height: 0;
  aspect-ratio: 1.45;
}

.insight-card--compact .insight-card__media > span {
  right: 22px;
  bottom: 15px;
  font-size: clamp(58px, 6vw, 88px);
}

.insight-card--compact .insight-card__body {
  min-height: 430px;
  padding: clamp(28px, 3.4vw, 48px);
}

.insight-card--compact .insight-card__body h2 {
  margin-top: 36px;
  font-size: clamp(27px, 2.3vw, 38px);
}

.insight-card--compact .insight-card__body > p {
  font-size: 12px;
}

.category-hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 76% 36%, rgb(223 255 56 / 13%), transparent 25%),
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 9vw 9vw, 9vw 9vw, auto;
}

.category-hero::after {
  position: absolute;
  right: -7vw;
  bottom: -25vw;
  width: 62vw;
  max-width: 920px;
  aspect-ratio: 1;
  border: 1px solid rgb(223 255 56 / 20%);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgb(255 255 255 / 2%), 0 0 0 14vw rgb(255 255 255 / 2%);
  content: "";
}

.category-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin-inline: auto;
  padding: 170px var(--gutter) 100px;
}

.category-hero__number {
  display: block;
  margin-top: 90px;
  color: transparent;
  font-size: clamp(90px, 12vw, 210px);
  letter-spacing: -0.08em;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgb(255 255 255 / 24%);
}

.category-hero h1 {
  max-width: 1120px;
  margin-top: 55px;
  font-size: clamp(60px, 8vw, 140px);
  font-weight: 570;
  letter-spacing: -0.08em;
  line-height: 0.96;
}

.category-hero__inner > p:last-child {
  max-width: 660px;
  margin: 64px 0 0 auto;
  padding-left: 24px;
  color: rgb(255 255 255 / 64%);
  border-left: 1px solid var(--acid);
  line-height: 2;
}

.stage-map {
  max-width: calc(var(--insight-max) + var(--gutter) * 2);
  margin-inline: auto;
  padding: clamp(100px, 11vw, 190px) var(--gutter);
}

.stage-map__head {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 60px;
  align-items: end;
}

.stage-map__head > span {
  color: rgb(10 11 11 / 42%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.stage-map__head h2 {
  font-size: clamp(42px, 5.5vw, 84px);
  font-weight: 580;
  letter-spacing: -0.07em;
  line-height: 1.08;
}

.stage-map ol {
  display: grid;
  margin-top: clamp(65px, 8vw, 115px);
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark);
}

.stage-map li {
  position: relative;
  min-height: 310px;
  padding: clamp(28px, 3vw, 45px);
  border-right: 1px solid var(--line-dark);
}

.stage-map li:last-child {
  border-right: 0;
}

.stage-map li::after {
  position: absolute;
  top: 50%;
  right: -8px;
  z-index: 1;
  width: 15px;
  height: 15px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  background: var(--paper);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.stage-map li:last-child::after {
  display: none;
}

.stage-map li > span {
  color: rgb(10 11 11 / 35%);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.stage-map li strong {
  display: block;
  margin-top: 70px;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.stage-map li p {
  margin-top: 20px;
  color: rgb(10 11 11 / 56%);
  font-size: 11px;
  line-height: 1.9;
}

.article-hero {
  padding: 170px var(--gutter) clamp(75px, 8vw, 125px);
  color: white;
  background: var(--ink);
}

.article-hero__inner,
.article-hero__media {
  max-width: var(--insight-max);
  margin-inline: auto;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgb(255 255 255 / 42%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.article-breadcrumb a:hover {
  color: var(--acid);
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(70px, 8vw, 115px);
  gap: 12px 22px;
  color: rgb(255 255 255 / 46%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.article-hero__meta span:first-child {
  color: var(--acid);
}

.article-hero h1 {
  max-width: 1100px;
  margin-top: 34px;
  font-size: clamp(48px, 6.5vw, 104px);
  font-weight: 590;
  letter-spacing: -0.075em;
  line-height: 1.09;
  text-wrap: balance;
}

.article-hero__inner > p {
  max-width: 760px;
  margin: 58px 0 0 auto;
  padding-left: 26px;
  color: rgb(255 255 255 / 64%);
  border-left: 1px solid var(--acid);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 2;
}

.article-hero__media {
  position: relative;
  height: min(63vw, 740px);
  margin-top: clamp(70px, 8vw, 115px);
  overflow: hidden;
}

.article-hero__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 15%);
  content: "";
}

.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__media figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  padding: 8px 11px;
  color: var(--ink);
  background: var(--acid);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.article-layout {
  display: grid;
  max-width: calc(1120px + var(--gutter) * 2);
  margin-inline: auto;
  padding: clamp(90px, 10vw, 160px) var(--gutter);
  grid-template-columns: 250px minmax(0, var(--reading-width));
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
  justify-content: center;
}

.article-rail {
  position: sticky;
  top: 105px;
  max-height: calc(100svh - 125px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.article-rail nav {
  max-height: none;
  overflow: visible;
}

.article-rail > p,
.article-rail__author > span {
  color: rgb(10 11 11 / 40%);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.article-rail ol {
  margin-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.article-rail li {
  border-bottom: 1px solid var(--line-dark);
}

.article-rail li a {
  display: grid;
  padding: 14px 0;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  color: rgb(10 11 11 / 60%);
  font-size: 10px;
  line-height: 1.65;
}

.article-rail li a:hover {
  color: var(--ink);
}

.article-rail li a[aria-current="location"] {
  color: var(--ink);
  font-weight: 650;
}

.article-rail li a[aria-current="location"] span {
  color: var(--ink);
}

.article-rail li span {
  color: rgb(10 11 11 / 32%);
  font-size: 8px;
}

.article-rail__author {
  margin-top: 45px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  background: #f7f6ef;
}

.article-rail__author strong {
  display: block;
  margin-top: 15px;
  font-size: 14px;
}

.article-rail__author p {
  margin-top: 11px;
  color: rgb(10 11 11 / 56%);
  font-size: 10px;
  line-height: 1.8;
}

.article-content {
  min-width: 0;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 450;
  line-height: 2.05;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content .article-lead {
  padding-bottom: clamp(55px, 6vw, 82px);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.9;
  border-bottom: 1px solid var(--line-dark);
}

.article-content h2,
.service-article h2 {
  margin-top: clamp(90px, 11vw, 150px);
  padding-top: 24px;
  border-top: 4px solid var(--ink);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.35;
  text-wrap: pretty;
  scroll-margin-top: 95px;
}

.article-content h3,
.service-article h3 {
  margin-top: clamp(55px, 7vw, 85px);
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.5;
  scroll-margin-top: 95px;
}

.article-content h4 {
  margin-top: 44px;
  font-size: 20px;
  font-weight: 650;
}

.article-content p,
.service-article p {
  margin-top: 28px;
}

.article-content a:not(.article-cta a),
.service-article a:not(.article-cta a) {
  text-decoration: underline;
  text-decoration-color: rgb(10 11 11 / 28%);
  text-underline-offset: 5px;
}

.article-content a:hover,
.service-article a:hover {
  text-decoration-color: var(--ink);
}

.article-content ul,
.article-content ol:not(.roadmap-list),
.service-article ul,
.service-article ol {
  display: grid;
  margin-top: 30px;
  gap: 14px;
}

.article-content ul > li,
.service-article ul > li {
  position: relative;
  padding-left: 30px;
}

.article-content ul > li::before,
.service-article ul > li::before {
  position: absolute;
  top: 0.86em;
  left: 2px;
  width: 11px;
  height: 3px;
  background: var(--acid);
  box-shadow: 0 0 0 1px rgb(10 11 11 / 15%);
  content: "";
}

.article-content ol:not(.roadmap-list) {
  counter-reset: article-list;
}

.article-content ol:not(.roadmap-list) > li {
  position: relative;
  padding-left: 42px;
  counter-increment: article-list;
}

.article-content ol:not(.roadmap-list) > li::before {
  position: absolute;
  top: 0.28em;
  left: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  content: counter(article-list, decimal-leading-zero);
  font-size: 8px;
  font-weight: 700;
}

.article-content strong,
.service-article strong {
  font-weight: 700;
}

.article-content blockquote {
  margin: 50px 0;
  padding: 32px 38px;
  border-left: 5px solid var(--acid);
  background: #e8e7de;
  font-size: 1.08em;
  font-weight: 560;
}

.article-note {
  margin: 52px 0;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--ink);
  background: var(--acid);
}

.article-note > span,
.article-note > strong:first-child {
  display: block;
  margin-bottom: 14px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.article-note p {
  margin-top: 0;
}

.insight-figure {
  margin: clamp(58px, 8vw, 90px) 0;
  border: 1px solid var(--line-dark);
  background: #f8f7f1;
}

.figure__title {
  display: flex;
  min-height: 56px;
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.figure__title::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
  content: "";
}

.figure__body {
  padding: clamp(25px, 4vw, 42px);
}

.insight-figure .figure__body > ol,
.insight-figure .figure__body > ul {
  display: grid;
  margin: 0;
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.insight-figure .figure__body > ol > li,
.insight-figure .figure__body > ul > li {
  display: grid;
  padding: 18px 20px;
  grid-template-columns: minmax(105px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  background: var(--paper);
}

.insight-figure .figure__body > ol > li::before,
.insight-figure .figure__body > ul > li::before {
  display: none;
}

.insight-figure .figure__body > ol strong,
.insight-figure .figure__body > ul strong,
.decision-steps strong {
  font-size: 14px;
  font-weight: 700;
}

.insight-figure .figure__body > ol span,
.insight-figure .figure__body > ul span,
.decision-steps span {
  color: rgb(10 11 11 / 58%);
  font-size: 12px;
  line-height: 1.75;
}

.decision-steps {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
}

.decision-steps > div {
  display: grid;
  padding: 21px 22px;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  background: var(--paper);
}

.insight-figure figcaption {
  padding: 0 clamp(25px, 4vw, 42px) 24px;
  color: rgb(10 11 11 / 50%);
  font-size: 10px;
  line-height: 1.75;
}

.insight-figure figcaption a {
  text-underline-offset: 3px;
}

.table-scroll {
  max-width: 100%;
  margin: 42px 0;
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  background: #f8f7f1;
  -webkit-overflow-scrolling: touch;
}

.table-scroll table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.7;
}

.table-scroll th,
.table-scroll td {
  padding: 17px 18px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.table-scroll th {
  color: white;
  background: var(--ink);
  font-size: 11px;
  font-weight: 650;
}

.table-scroll tr:last-child td {
  border-bottom: 0;
}

.table-scroll th:last-child,
.table-scroll td:last-child {
  border-right: 0;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  border: 1px solid var(--line-dark);
}

.figure__body > .process-flow {
  grid-template-columns: repeat(3, 1fr);
}

.figure__body > .process-flow > div:nth-child(-n + 3) {
  border-bottom: 1px solid var(--line-dark);
}

.figure__body > .process-flow > div:nth-child(3n) {
  border-right: 0;
}

.figure__body > .process-flow > div:nth-child(3n)::after {
  display: none;
}

.process-flow > div {
  position: relative;
  min-width: 0;
  padding: 28px 18px;
  border-right: 1px solid var(--line-dark);
}

.process-flow > div:last-child {
  border-right: 0;
}

.process-flow > div:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -10px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: var(--acid);
  content: "→";
  font-size: 10px;
  transform: translateY(-50%);
}

.process-flow span,
.metric-bars span,
.decision-grid span {
  color: rgb(10 11 11 / 42%);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.process-flow strong {
  display: block;
  margin-top: 13px;
  font-size: 16px;
  line-height: 1.5;
}

.process-flow p {
  margin-top: 10px;
  color: rgb(10 11 11 / 55%);
  font-size: 10px;
  line-height: 1.7;
}

.metric-bars {
  display: grid;
  gap: 28px;
}

.metric-bar {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1.3fr) 56px;
  gap: 16px;
  align-items: center;
}

.metric-bar__track {
  height: 28px;
  overflow: hidden;
  background: #ddddd5;
}

.metric-bar__track i {
  display: block;
  width: var(--value);
  height: 100%;
  background: var(--acid);
  border-right: 2px solid var(--ink);
}

.metric-bar strong {
  font-size: 18px;
  text-align: right;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.decision-grid > div {
  padding: 28px 24px;
  background: var(--paper);
}

.decision-grid strong {
  display: block;
  margin-top: 15px;
  font-size: 24px;
}

.decision-grid p {
  margin-top: 12px;
  color: rgb(10 11 11 / 58%);
  font-size: 11px;
  line-height: 1.8;
}

.checklist {
  display: grid;
  gap: 1px;
  margin: 42px 0;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.checklist > li {
  display: grid;
  padding: 19px 22px 19px 58px !important;
  background: #f8f7f1;
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.checklist > li::before {
  top: 19px !important;
  left: 20px !important;
  width: 22px !important;
  height: 22px !important;
  border: 1px solid var(--ink);
  background: var(--acid) !important;
  box-shadow: inset 0 0 0 5px #f8f7f1 !important;
}

.source-link {
  font-size: 0.9em;
}

.faq-list {
  display: grid;
  margin-top: 45px;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.faq-list details {
  background: #f8f7f1;
}

.faq-list summary {
  position: relative;
  padding: 23px 58px 23px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "+";
  color: rgb(10 11 11 / 50%);
  font-size: 22px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  padding: 0 24px 26px;
  color: rgb(10 11 11 / 64%);
  font-size: 14px;
}

.article-package {
  margin-top: clamp(100px, 12vw, 170px);
}

.article-package__visual {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  min-height: 540px;
  color: white;
  background: var(--ink);
  text-decoration: none !important;
}

.article-package__visual::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(10 11 11 / 96%) 0%, rgb(10 11 11 / 88%) 46%, rgb(10 11 11 / 25%) 100%);
  content: "";
}

.article-package__visual > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}

.article-package__visual:hover > img {
  filter: brightness(1.04);
  transform: scale(1.012);
}

.article-package__copy {
  display: flex;
  width: min(100%, 650px);
  min-height: 540px;
  padding: clamp(38px, 6vw, 64px);
  flex-direction: column;
  justify-content: center;
}

.article-package__eyebrow {
  color: var(--acid);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.article-content .article-package__visual h2 {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  color: white;
  font-size: clamp(31px, 4.2vw, 46px);
  font-weight: 610;
  letter-spacing: -0.055em;
  line-height: 1.37;
}

.article-package__visual h2 strong {
  display: block;
  color: var(--acid);
}

.article-content .article-package__visual p {
  max-width: 585px;
  margin-top: 22px;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
  line-height: 1.9;
}

.article-content .article-package__scope {
  display: flex;
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 7px;
}

.article-content .article-package__scope > li {
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 24%);
  color: rgb(255 255 255 / 82%);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.article-content .article-package__scope > li::before,
.article-content .article-package__proof-list > li::before {
  display: none;
}

.article-package__action {
  display: flex;
  width: min(100%, 405px);
  min-height: 64px;
  margin-top: 30px;
  padding: 0 10px 0 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--acid);
  font-size: 11px;
  font-weight: 750;
}

.article-package__action i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(10 11 11 / 30%);
  font-size: 17px;
  font-style: normal;
  transition: transform 0.3s var(--ease-out);
}

.article-package__visual:hover .article-package__action i {
  transform: translate(2px, -2px);
}

.article-package__proof {
  padding: clamp(32px, 5vw, 52px);
  border: 1px solid var(--line-dark);
  border-top: 0;
  background: #f7f6ef;
}

.article-content .article-package__proof-label {
  margin-top: 0;
  color: rgb(10 11 11 / 46%);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.article-content .article-package__proof h3 {
  margin-top: 18px;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.45;
}

.article-content .article-package__proof-list {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.article-content .article-package__proof-list > li {
  padding: 20px 18px 20px 30px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
  line-height: 1.7;
}

.article-content .article-package__proof-list > li:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
}

.article-content .article-package__proof-note {
  margin-top: 28px;
  color: rgb(10 11 11 / 66%);
  font-size: 13px;
  line-height: 1.9;
}

.article-content .article-package__proof-caveat {
  margin-top: 18px;
  color: rgb(10 11 11 / 43%);
  font-size: 10px;
  line-height: 1.75;
}

.article-cta {
  margin-top: clamp(100px, 12vw, 170px);
  padding: clamp(38px, 6vw, 70px);
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgb(223 255 56 / 16%), transparent 30%),
    var(--ink);
}

.article-cta > span {
  color: var(--acid);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.article-cta h2 {
  margin-top: 34px;
  padding: 0;
  border: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.35;
}

.article-cta > p {
  max-width: 590px;
  margin-top: 24px;
  color: rgb(255 255 255 / 62%);
  font-size: 13px;
  line-height: 1.9;
}

.article-cta > a,
.service-hero__inner > a,
.insights-cta > a {
  display: flex;
  min-height: 68px;
  margin-top: 38px;
  padding: 0 12px 0 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--acid);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none !important;
}

.article-cta > a i,
.service-hero__inner > a i,
.insights-cta > a i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgb(10 11 11 / 30%);
  font-size: 18px;
  font-style: normal;
}

.related-insights {
  padding: clamp(90px, 10vw, 150px) var(--gutter);
  color: white;
  background: var(--ink);
}

.related-insights__head,
.related-insights__grid {
  max-width: var(--insight-max);
  margin-inline: auto;
}

.related-insights__head > span {
  color: var(--acid);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.related-insights__head h2 {
  margin-top: 20px;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 580;
  letter-spacing: -0.065em;
}

.related-insights__grid {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  color: var(--ink);
}

.related-insights .insight-card--compact .insight-card__media {
  min-height: 220px;
}

.related-insights .insight-card--compact .insight-card__body {
  min-height: 365px;
  padding: 28px;
}

.related-insights .insight-card--compact .insight-card__body h2 {
  font-size: 27px;
}

.related-insights .insight-card__body > p {
  display: none;
}

.insights-cta {
  display: grid;
  min-height: 620px;
  padding: clamp(80px, 10vw, 150px) var(--gutter);
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 80px;
  align-items: center;
  color: white;
  background:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
    var(--ink);
  background-size: 10vw 10vw, 10vw 10vw, auto;
}

.insights-cta > div {
  max-width: 900px;
}

.insights-cta > div > span {
  color: var(--acid);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.insights-cta h2 {
  margin-top: 35px;
  font-size: clamp(48px, 6.5vw, 105px);
  font-weight: 580;
  letter-spacing: -0.075em;
  line-height: 1.05;
}

.insights-cta p {
  max-width: 650px;
  margin-top: 35px;
  color: rgb(255 255 255 / 60%);
  line-height: 2;
}

.insights-cta > a {
  margin-top: 0;
}

.service-hero {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.service-hero__media {
  position: absolute;
  inset: 0;
  opacity: 0.44;
}

.service-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(10 11 11 / 96%) 8%, rgb(10 11 11 / 60%) 58%, rgb(10 11 11 / 45%));
  content: "";
}

.service-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1440px;
  min-height: max(780px, 100svh);
  margin-inline: auto;
  padding: 165px var(--gutter) 80px;
  flex-direction: column;
  justify-content: center;
}

.service-hero h1 {
  max-width: 1160px;
  margin-top: 65px;
  font-size: clamp(54px, 7.4vw, 126px);
  font-weight: 580;
  letter-spacing: -0.08em;
  line-height: 1.02;
}

.service-hero h1 small {
  display: block;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
}

.service-hero__inner > p:not(.insights-kicker) {
  max-width: 680px;
  margin-top: 55px;
  padding-left: 24px;
  color: rgb(255 255 255 / 67%);
  border-left: 1px solid var(--acid);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 2;
}

.service-hero__inner > a {
  width: min(100%, 340px);
}

.service-article {
  max-width: calc(var(--reading-width) + var(--gutter) * 2);
  margin-inline: auto;
  padding: clamp(95px, 11vw, 170px) var(--gutter);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 450;
  line-height: 2.05;
}

.service-article > .article-lead {
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(21px, 2.1vw, 29px);
  font-weight: 560;
  letter-spacing: -0.025em;
}

.service-loop {
  display: grid;
  margin: 50px 0;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line-dark);
}

.service-loop > div {
  position: relative;
  min-height: 145px;
  padding: 22px 12px;
  border-right: 1px solid var(--line-dark);
}

.service-loop > div:last-child {
  border-right: 0;
}

.service-loop span {
  color: rgb(10 11 11 / 38%);
  font-size: 8px;
}

.service-loop strong {
  display: block;
  margin-top: 38px;
  font-size: 14px;
}

.roadmap-list {
  display: grid;
  margin: 45px 0;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.roadmap-list > li {
  display: grid;
  padding: 26px;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  background: #f8f7f1;
}

.roadmap-list > li > span {
  color: rgb(10 11 11 / 43%);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.roadmap-list h3 {
  margin-top: 0;
  font-size: 21px;
}

.roadmap-list p {
  margin-top: 10px;
  color: rgb(10 11 11 / 58%);
  font-size: 13px;
  line-height: 1.85;
}

.service-output-grid,
.fit-grid {
  display: grid;
  margin: 45px 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.service-output-grid > div,
.fit-grid > div {
  padding: 28px;
  background: #f8f7f1;
}

.service-output-grid span,
.fit-grid span {
  color: rgb(10 11 11 / 42%);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.service-output-grid h3,
.fit-grid h3 {
  margin-top: 15px;
  font-size: 21px;
}

.service-output-grid p,
.fit-grid p {
  margin-top: 12px;
  color: rgb(10 11 11 / 60%);
  font-size: 12px;
  line-height: 1.8;
}

.insight-footer {
  border-top-color: rgb(255 255 255 / 14%);
}

@media (max-width: 1050px) {
  .article-layout {
    max-width: calc(var(--reading-width) + var(--gutter) * 2);
    grid-template-columns: 1fr;
  }

  .article-rail {
    position: static;
    display: grid;
    max-height: none;
    overflow: visible;
    grid-template-columns: 1fr 260px;
    gap: 36px;
  }

  .article-rail nav {
    max-height: none;
    overflow: visible;
  }

  .insights-section--featured .insight-card {
    grid-template-columns: 1fr;
  }

  .insights-section--featured .insight-card__media {
    min-height: 0;
    aspect-ratio: 1.5;
  }

  .insights-section--featured .insight-card__body {
    min-height: 460px;
  }

  .article-rail__author {
    margin-top: 0;
  }

  .related-insights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-insights__grid .insight-card:last-child {
    width: calc((100% - 18px) / 2);
    justify-self: center;
    grid-column: 1 / -1;
  }

  .insights-cta {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .insights-cta > a {
    width: min(100%, 340px);
  }

  .service-loop {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-loop > div:nth-child(3) {
    border-right: 0;
  }

  .service-loop > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 820px) {
  .insights-section__head,
  .stage-map__head {
    grid-template-columns: 1fr;
  }

  .insight-card {
    grid-template-columns: 1fr;
  }

  .insight-card__media {
    min-height: auto;
    aspect-ratio: 1.35;
  }

  .insight-card__body {
    min-height: 470px;
  }

  .stage-map ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .stage-map li:nth-child(2) {
    border-right: 0;
  }

  .stage-map li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .stage-map li:nth-child(2)::after {
    display: none;
  }

  .article-rail {
    display: block;
  }

  .article-rail__author {
    margin-top: 40px;
  }

  .process-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow > div {
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .process-flow > div:nth-child(even) {
    border-right: 0;
  }

  .process-flow > div:last-child,
  .process-flow > div:nth-last-child(2):nth-child(odd) {
    border-bottom: 0;
  }

  .process-flow > div::after {
    display: none;
  }

  .figure__body > .process-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .figure__body > .process-flow > div:nth-child(3n) {
    border-right: 1px solid var(--line-dark);
  }

  .figure__body > .process-flow > div:nth-child(even) {
    border-right: 0;
  }

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

  .insights-cta {
    grid-template-columns: 1fr;
  }

  .insights-cta > a {
    width: min(100%, 340px);
  }
}

@media (max-width: 680px) {
  .insights-hero,
  .insights-hero__inner {
    min-height: max(690px, 100svh);
  }

  .insights-hero__inner {
    padding-top: 135px;
    padding-bottom: 42px;
    justify-content: flex-end;
  }

  .insights-hero__media {
    inset: 0;
    opacity: 0.38;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .insights-hero__grid {
    background-size: 25vw 25vw;
  }

  .insights-hero h1 {
    margin-top: 35px;
    font-size: clamp(44px, 13.5vw, 62px);
    line-height: 1.03;
  }

  .insights-hero__bottom {
    display: block;
    margin-top: 45px;
  }

  .insights-hero__bottom p {
    padding-left: 17px;
    font-size: 12px;
    line-height: 1.85;
  }

  .insights-hero__bottom > span {
    display: none;
  }

  .category-nav {
    min-height: 62px;
    overflow-x: auto;
    padding: 0 20px;
  }

  .category-nav a {
    min-width: max-content;
    padding: 0 20px;
    font-size: 10px;
  }

  .insights-section {
    padding-block: 90px;
  }

  .insights-section__head {
    margin-bottom: 55px;
    gap: 30px;
  }

  .insights-section__head > h2 {
    font-size: clamp(37px, 11vw, 52px);
  }

  .insight-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .insight-card__body,
  .insight-card--compact .insight-card__body {
    min-height: 410px;
    padding: 28px 24px;
  }

  .insight-card__body h2,
  .insight-card--compact .insight-card__body h2 {
    margin-top: 31px;
    font-size: clamp(28px, 8.4vw, 38px);
  }

  .insight-card__body > p {
    font-size: 12px;
  }

  .insight-card--compact .insight-card__media {
    min-height: auto;
  }

  .category-hero {
    min-height: 720px;
    background-size: auto, 25vw 25vw, 25vw 25vw, auto;
  }

  .category-hero__inner {
    padding-top: 135px;
    padding-bottom: 70px;
  }

  .category-hero__number {
    margin-top: 65px;
  }

  .category-hero h1 {
    margin-top: 44px;
    font-size: clamp(44px, 13vw, 64px);
    line-height: 1.04;
  }

  .category-hero__inner > p:last-child {
    margin-top: 48px;
    padding-left: 17px;
    font-size: 12px;
  }

  .stage-map {
    padding-block: 90px;
  }

  .stage-map ol {
    grid-template-columns: 1fr;
  }

  .stage-map li {
    min-height: auto;
    padding: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .stage-map li:last-child {
    border-bottom: 0;
  }

  .stage-map li::after {
    display: none;
  }

  .stage-map li strong {
    margin-top: 32px;
  }

  .article-hero {
    padding-top: 125px;
    padding-bottom: 75px;
  }

  .article-hero__meta {
    margin-top: 65px;
  }

  .article-hero h1 {
    font-size: clamp(38px, 10.8vw, 54px);
    line-height: 1.19;
  }

  .article-hero__inner > p {
    margin-top: 42px;
    padding-left: 17px;
    font-size: 13px;
    line-height: 1.85;
  }

  .article-hero__media {
    height: auto;
    aspect-ratio: 4 / 3;
    margin-top: 55px;
  }

  .article-layout {
    padding-block: 75px 100px;
    gap: 70px;
  }

  .article-content {
    font-size: 16px;
    line-height: 2;
  }

  .article-content .article-lead {
    font-size: 20px;
    line-height: 1.8;
  }

  .article-content h2,
  .service-article h2 {
    margin-top: 85px;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.42;
  }

  .article-content h3,
  .service-article h3 {
    margin-top: 55px;
    font-size: clamp(23px, 6.8vw, 30px);
  }

  .figure__body {
    padding: 22px 18px;
  }

  .insight-figure .figure__body > ol > li,
  .insight-figure .figure__body > ul > li,
  .decision-steps > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .insight-figure figcaption {
    padding: 0 18px 20px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow > div {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-flow > div:last-child {
    border-bottom: 0;
  }

  .process-flow > div::after {
    display: none !important;
  }

  .figure__body > .process-flow > div:nth-child(n) {
    border-right: 0;
  }

  .metric-bar {
    grid-template-columns: 1fr 50px;
  }

  .metric-bar > span {
    grid-column: 1 / -1;
  }

  .article-note {
    margin-inline: -5px;
    padding: 25px 22px;
  }

  .article-package {
    margin-inline: -5px;
  }

  .article-package__visual,
  .article-package__copy {
    min-height: 700px;
  }

  .article-package__visual::after {
    background: linear-gradient(180deg, rgb(10 11 11 / 66%) 0%, rgb(10 11 11 / 88%) 48%, rgb(10 11 11 / 98%) 100%);
  }

  .article-package__visual > img {
    object-position: 68% center;
  }

  .article-package__copy {
    padding: 34px 24px;
    justify-content: flex-end;
  }

  .article-content .article-package__visual h2 {
    margin-top: 22px;
    font-size: clamp(27px, 8.2vw, 34px);
  }

  .article-content .article-package__visual p {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.8;
  }

  .article-content .article-package__scope {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .article-content .article-package__scope > li {
    padding: 7px 6px;
    text-align: center;
  }

  .article-package__action {
    width: 100%;
    margin-top: 24px;
    font-size: 10px;
  }

  .article-package__proof {
    padding: 30px 24px;
  }

  .article-content .article-package__proof h3 {
    font-size: clamp(25px, 7.5vw, 30px);
  }

  .article-content .article-package__proof-list {
    grid-template-columns: 1fr;
  }

  .article-content .article-package__proof-list > li {
    padding: 18px 4px 18px 27px;
  }

  .article-content .article-package__proof-list > li:nth-child(odd) {
    border-right: 0;
  }

  .article-cta {
    margin-inline: -5px;
    padding: 35px 24px;
  }

  .article-cta h2 {
    font-size: 29px;
  }

  .related-insights {
    padding-block: 85px;
  }

  .related-insights__grid {
    grid-template-columns: 1fr;
  }

  .related-insights__grid .insight-card:last-child {
    display: flex;
    width: 100%;
    grid-column: auto;
  }

  .related-insights .insight-card--compact .insight-card__media {
    min-height: auto;
  }

  .insights-cta {
    min-height: 600px;
    padding-block: 85px;
    gap: 45px;
  }

  .insights-cta h2 {
    font-size: clamp(43px, 12vw, 60px);
  }

  .service-hero,
  .service-hero__inner {
    min-height: max(720px, 100svh);
  }

  .service-hero__inner {
    padding-top: 130px;
    padding-bottom: 55px;
    justify-content: flex-end;
  }

  .service-hero h1 {
    margin-top: 40px;
    font-size: clamp(42px, 11.5vw, 58px);
    line-height: 1.11;
  }

  .service-hero h1 small {
    margin-bottom: 16px;
  }

  .service-hero__inner > p:not(.insights-kicker) {
    margin-top: 36px;
    padding-left: 17px;
    font-size: 12px;
  }

  .service-hero__inner > a {
    margin-top: 30px;
  }

  .service-article {
    padding-block: 85px 110px;
    font-size: 16px;
  }

  .service-loop {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-loop > div:nth-child(n) {
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .service-loop > div:nth-child(2n) {
    border-right: 0;
  }

  .service-loop > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .roadmap-list > li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-output-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .article-hero h1 {
    font-size: clamp(34px, 10.2vw, 40px);
  }

  .category-hero h1 {
    font-size: clamp(40px, 12.5vw, 52px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .insight-card__media img,
  .article-package__visual > img,
  .article-package__action i {
    transition: none;
  }
}
