.insights-page {
  overflow-x: hidden;
}

.insights-page::before {
  opacity: .72;
}

.insights-page .site-header {
  border-bottom-color: color-mix(in srgb,var(--line) 72%,transparent);
  background: color-mix(in srgb,var(--bg) 78%,transparent);
}

.insights-page .site-header .main-nav {
  margin-inline: auto;
}

.insights-page .site-header .main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 4px;
}

.insights-page .site-header .main-nav a[aria-current="page"] {
  color: var(--text);
}

.insight-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--faint);
  font-size: 11px;
}

.insight-breadcrumbs a {
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
}

.insight-breadcrumbs a:hover { color: var(--text); }

.insight-breadcrumbs a:focus-visible,
.insight-card a:focus-visible,
.insight-prose a:focus-visible,
.insight-article-aside a:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.insights-hero {
  width: min(1240px,calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(64px,8vw,118px) 0 clamp(82px,10vw,148px);
}

.insights-admin-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1240px,calc(100% - 64px));
  margin: 24px auto 0;
  border: 1px solid rgba(249,115,22,.24);
  border-radius: 18px;
  padding: 13px 15px 13px 18px;
  background: var(--orange-soft);
  color: var(--muted);
  font-size: 11px;
}

.insights-admin-bar > span { line-height: 1.5; }
.insights-admin-bar > div { display: flex; flex-wrap: wrap; gap: 8px; }
.insights-admin-bar :is(.primary-button,.secondary-button) { min-height: 38px; border-radius: 11px; padding-inline: 13px; font-size: 10px; }

.insights-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.25fr) minmax(300px,.55fr);
  align-items: end;
  gap: clamp(48px,8vw,132px);
  margin-top: clamp(58px,7vw,100px);
}

.insights-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(55px,7.4vw,105px);
  line-height: .92;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.insights-hero-grid > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(17px,1.8vw,21px);
  line-height: 1.62;
}

.insights-library,
.related-insights {
  width: min(1240px,calc(100% - 64px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: clamp(82px,10vw,144px) 0;
}

.insights-library > header,
.related-insights > header {
  max-width: 760px;
}

.insights-library > header h2,
.related-insights > header h2 {
  margin: 0;
  font-size: clamp(38px,5vw,68px);
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
  margin-top: 62px;
}

.insight-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(27px,3.3vw,44px);
  background:
    linear-gradient(145deg,rgba(255,255,255,.045),transparent 50%),
    var(--panel);
  box-shadow: inset 0 1px rgba(255,255,255,.04);
  transition: transform .2s,border-color .2s,box-shadow .2s;
}

.insight-card::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(249,115,22,.15),transparent 68%);
  pointer-events: none;
}

.insight-card:hover {
  border-color: rgba(249,115,22,.34);
  box-shadow: 0 25px 70px rgba(0,0,0,.22),inset 0 1px rgba(255,255,255,.05);
  transform: translateY(-3px);
}

.insight-card-topline,
.insight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--faint);
  font-size: 10px;
}

.insight-card-topline span:first-child {
  color: var(--orange);
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.insight-card h2,
.insight-card h3 {
  max-width: 650px;
  margin: 30px 0 0;
  font-size: clamp(31px,3.6vw,48px);
  line-height: 1.04;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.insight-card h3 { font-size: clamp(28px,3vw,42px); }

.insight-card h2 a,
.insight-card h3 a {
  text-decoration: none;
}

.insight-card h2 a::after,
.insight-card h3 a::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
}

.insight-card > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.insight-card-footer {
  margin-top: auto;
  padding-top: 35px;
}

.insight-card-footer a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 7px;
  color: var(--orange);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.insight-card-footer a span { transition: transform .18s; }
.insight-card-footer a:hover span { transform: translateX(3px); }

.insights-cta {
  width: min(1180px,calc(100% - 64px));
  margin: 0 auto clamp(90px,12vw,170px);
  border: 1px solid rgba(249,115,22,.26);
  border-radius: 38px;
  padding: clamp(38px,6vw,82px);
  background:
    radial-gradient(circle at 80% 30%,rgba(249,115,22,.18),transparent 38%),
    linear-gradient(145deg,rgba(255,255,255,.05),transparent 48%),
    var(--panel);
  text-align: center;
  box-shadow: var(--shadow),inset 0 1px rgba(255,255,255,.05);
}

.insights-cta h2 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(42px,6.5vw,82px);
  line-height: .96;
  letter-spacing: -.068em;
  text-wrap: balance;
}

.insights-cta > p {
  max-width: 650px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.insights-cta > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-top: 34px;
}

.insight-article {
  width: min(1240px,calc(100% - 64px));
  margin: 0 auto;
}

.insight-article-hero {
  max-width: 1040px;
  padding: clamp(54px,7vw,100px) 0 clamp(70px,9vw,132px);
}

.insight-article-hero > .eyebrow {
  margin-top: clamp(58px,7vw,95px);
}

.insight-article-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(51px,7.2vw,96px);
  line-height: .94;
  letter-spacing: -.073em;
  text-wrap: balance;
}

.insight-article-hero > p {
  max-width: 790px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: clamp(18px,2vw,23px);
  line-height: 1.57;
}

.insight-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 23px;
  margin-top: 32px;
  color: var(--faint);
  font-size: 11px;
}

.insight-article-meta span:first-child {
  color: var(--muted);
  font-weight: 680;
}

.insight-article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0,760px);
  justify-content: center;
  gap: clamp(54px,8vw,116px);
  border-top: 1px solid var(--line);
  padding: clamp(70px,8vw,115px) 0 clamp(100px,12vw,170px);
}

.insight-article-aside {
  position: sticky;
  top: 105px;
  align-self: start;
  border-top: 2px solid var(--orange);
  padding-top: 19px;
}

.insight-article-aside > span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.insight-article-aside p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.insight-article-aside a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  border-radius: 7px;
  color: var(--orange);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.insight-prose {
  min-width: 0;
  color: color-mix(in srgb,var(--text) 92%,var(--muted));
  font-size: clamp(17px,1.5vw,19px);
  line-height: 1.78;
}

.insight-prose > :first-child { margin-top: 0; }
.insight-prose > :last-child { margin-bottom: 0; }

.insight-prose p {
  margin: 0 0 1.45em;
}

.insight-prose h2 {
  margin: 2.25em 0 .7em;
  scroll-margin-top: 100px;
  color: var(--text);
  font-size: clamp(31px,3.5vw,46px);
  line-height: 1.08;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.insight-prose h3 {
  margin: 2em 0 .65em;
  scroll-margin-top: 100px;
  color: var(--text);
  font-size: clamp(22px,2.4vw,29px);
  line-height: 1.2;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.insight-prose ul,
.insight-prose ol {
  display: grid;
  gap: .72em;
  margin: 0 0 1.65em;
  padding-left: 1.35em;
}

.insight-prose li { padding-left: .28em; }
.insight-prose li::marker { color: var(--orange); font-weight: 750; }

.insight-prose a {
  border-radius: 5px;
  color: var(--orange-bright);
  text-decoration-color: rgba(249,115,22,.42);
  text-underline-offset: .18em;
}

.insight-prose a:hover { text-decoration-color: currentColor; }

.insight-prose blockquote {
  position: relative;
  margin: 2em 0;
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 22px;
  padding: 26px 28px 26px 31px;
  background: var(--orange-soft);
  color: var(--text);
  font-size: 1.02em;
  font-weight: 570;
  line-height: 1.65;
}

.insight-prose blockquote::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.insight-prose strong { color: var(--text); }

.insight-inline-cta {
  width: min(1120px,calc(100% - 64px));
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: end;
  gap: 55px;
  margin: 0 auto clamp(100px,12vw,170px);
  border: 1px solid rgba(249,115,22,.24);
  border-radius: 34px;
  padding: clamp(34px,5vw,62px);
  background:
    radial-gradient(circle at 90% 10%,rgba(249,115,22,.17),transparent 40%),
    var(--panel);
  box-shadow: inset 0 1px rgba(255,255,255,.045);
}

.insight-inline-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px,5vw,62px);
  line-height: .99;
  letter-spacing: -.062em;
  text-wrap: balance;
}

.insight-inline-cta p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.insight-inline-cta > div:last-child {
  display: grid;
  gap: 10px;
}

.related-insights {
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 920px) {
  .insights-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .insights-hero-grid > p { max-width: 720px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-article-layout { grid-template-columns: 1fr; }
  .insight-article-aside { position: static; max-width: 520px; }
  .insight-inline-cta { grid-template-columns: 1fr; align-items: start; }
  .insight-inline-cta > div:last-child { grid-template-columns: repeat(2,max-content); }
}

@media (max-width: 640px) {
  .insights-page .site-header { min-height: 62px; }
  .insights-page .brand > span:last-child { display: none; }
  .insights-hero,
  .insights-library,
  .related-insights,
  .insight-article,
  .insight-inline-cta,
  .insights-cta { width: min(100% - 28px,1240px); }
  .insights-hero { padding-top: 42px; }
  .insights-hero-grid { margin-top: 48px; }
  .insights-admin-bar { align-items: stretch; flex-direction: column; width: min(100% - 28px,1240px); }
  .insights-admin-bar > div { display: grid; grid-template-columns: 1fr; }
  .insights-hero h1 { font-size: clamp(48px,14vw,66px); }
  .insights-grid { margin-top: 42px; }
  .insight-card { min-height: 390px; border-radius: 24px; padding: 25px; }
  .insight-card-topline { align-items: flex-start; flex-direction: column; gap: 7px; }
  .insight-card-footer { align-items: flex-start; flex-direction: column; }
  .insights-cta { border-radius: 27px; }
  .insights-cta > div { display: grid; }
  .insight-article-hero { padding-top: 40px; }
  .insight-article-hero > .eyebrow { margin-top: 48px; }
  .insight-article-hero h1 { font-size: clamp(46px,13.3vw,64px); }
  .insight-article-meta { display: grid; gap: 6px; }
  .insight-article-layout { padding-top: 65px; }
  .insight-prose { font-size: 17px; line-height: 1.72; }
  .insight-prose h2 { font-size: 32px; }
  .insight-prose h3 { font-size: 23px; }
  .insight-prose blockquote { border-radius: 18px; padding: 22px 21px 22px 25px; }
  .insight-inline-cta { border-radius: 26px; }
  .insight-inline-cta > div:last-child { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .insight-card { transition: none; }
}
