/* MSITC Insights — readable editorial UX inside the existing cosmic system. */
.insights-page,
.article-page {
  --insight-cyan: #76eaf4;
  --insight-blue: #7092ff;
  --insight-violet: #a174ff;
  --insight-pink: #ff648f;
  --insight-text: #d9dce7;
  --insight-muted: #989dab;
  --insight-panel: rgba(8, 11, 20, .82);
  --insight-line: rgba(155, 173, 231, .15);
  color: #f7f8fc;
}

.insights-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--insight-line);
}

.subpage-shell .insights-page .insights-hero,
.subpage-shell .article-page .article-hero {
  background:
    radial-gradient(ellipse 48% 58% at 80% 18%, rgba(116, 87, 255, .19), transparent 72%),
    radial-gradient(ellipse 35% 48% at 8% 84%, rgba(77, 151, 255, .11), transparent 74%),
    linear-gradient(145deg, rgba(8, 13, 28, .99), rgba(5, 8, 17, .98) 55%, rgba(12, 7, 20, .98)) !important;
}

/* Insights index */
.insights-hero {
  min-height: min(760px, calc(100vh - 104px));
  padding: 74px 0 94px;
}

.insights-hero .content-shell {
  min-height: 570px;
}

.insights-hero .content-eyebrow {
  margin-top: clamp(64px, 9vw, 112px);
}

.insights-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1090px;
  margin: .17em 0 .25em;
  font-size: clamp(58px, 8.3vw, 120px);
  line-height: .88;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.insights-hero .content-lead {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #c8ccd8;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.58;
}

.insights-hero__status {
  position: absolute;
  bottom: 0;
  left: var(--content-gutter, 0);
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(190, 198, 220, .56);
  font: 650 9px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.insights-hero__status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--insight-cyan);
  box-shadow: 0 0 14px rgba(118, 234, 244, .55);
}

.insights-list {
  position: relative;
  padding: clamp(82px, 10vw, 130px) 0;
  background:
    radial-gradient(ellipse 45% 26% at 95% 25%, rgba(105, 80, 230, .07), transparent 74%),
    radial-gradient(ellipse 36% 26% at 5% 82%, rgba(52, 135, 207, .065), transparent 75%),
    rgba(5, 8, 14, .5);
}

.insights-list__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 410px);
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(42px, 6vw, 70px);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--insight-line);
}

.insights-list__head .content-eyebrow {
  margin-bottom: 13px;
}

.insights-list__head h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -.052em;
}

.insights-list__head > p {
  margin: 0;
  color: var(--insight-muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.insight-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 580px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--insight-line);
  background: linear-gradient(145deg, rgba(12, 16, 28, .92), rgba(7, 9, 17, .9));
  box-shadow: 0 34px 84px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .025);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), border-color .35s ease, box-shadow .35s ease;
}

.insight-card:hover,
.insight-card:focus-within {
  border-color: rgba(118, 234, 244, .31);
  box-shadow: 0 38px 90px rgba(0, 0, 0, .28), 0 0 54px rgba(104, 104, 255, .055);
  transform: translateY(-4px);
}

.insight-card--featured {
  display: grid;
  min-height: 500px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, .92fr);
}

.insight-card__visual {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(115, 136, 210, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 136, 210, .045) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(136, 74, 255, .2), transparent 43%),
    #070a13;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.insight-card--featured .insight-card__visual {
  min-height: 500px;
}

.insight-card__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(145deg, transparent 46%, rgba(7, 9, 16, .38));
}

.insight-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}

.insight-card:hover .insight-card__visual img,
.insight-card:focus-within .insight-card__visual img {
  transform: scale(1.025);
}

.insight-card__visual > span {
  color: rgba(238, 242, 255, .11);
  font-size: clamp(100px, 15vw, 210px);
  font-weight: 850;
  letter-spacing: -.08em;
}

.insight-card__visual > i {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(118, 234, 244, .14);
  border-radius: 50%;
  transform: rotate(-12deg) scaleY(.55);
}

.insight-card__visual > i:nth-of-type(2) {
  width: 48%;
  border-color: rgba(255, 100, 143, .2);
  transform: rotate(22deg) scaleY(.75);
}

.insight-card__visual > b {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(118, 234, 244, .2);
  background: rgba(5, 8, 15, .76);
  color: var(--insight-cyan);
  font: 700 9px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.insight-card__content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: clamp(26px, 4vw, 48px);
}

.insight-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7f8596;
  font: 650 9px/1.3 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.insight-card__meta > * + *::before {
  margin-right: 12px;
  color: rgba(118, 234, 244, .45);
  content: "/";
}

.insight-card h3 {
  margin: 24px 0 18px;
  font-size: clamp(29px, 3.5vw, 48px);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.insight-card:not(.insight-card--featured) h3 {
  font-size: clamp(27px, 3vw, 40px);
}

.insight-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.insight-card__content > p {
  margin: 0;
  color: #aeb2c0;
  font-size: 15px;
  line-height: 1.72;
}

.insight-card footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 34px;
}

.insight-author {
  color: #8c91a0;
  font-size: 12px;
}

.insight-author:hover,
.insight-author:focus-visible {
  color: #fff;
}

/* Article cosmic depth. */
.subpage-shell main.article-page {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(79, 126, 219, .025), transparent 18%, transparent 82%, rgba(174, 78, 207, .024)),
    linear-gradient(180deg, #070a12, #080a12 34%, #060810 70%, #08070f) !important;
}

.subpage-shell .article-hero :is(h1, .content-lead) {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.article-cosmos {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.article-cosmos::before,
.article-cosmos::after {
  position: absolute;
  inset: 0;
  content: "";
}

.article-cosmos::before {
  opacity: .46;
  background-image:
    radial-gradient(circle, rgba(244, 247, 255, .74) 0 .65px, transparent 1.1px),
    radial-gradient(circle, rgba(120, 180, 255, .5) 0 .7px, transparent 1.2px),
    radial-gradient(circle, rgba(223, 178, 255, .42) 0 .55px, transparent 1px),
    radial-gradient(circle, rgba(255, 127, 174, .28) 0 .5px, transparent .95px);
  background-position: 23px 37px, 113px 89px, 207px 151px, 317px 61px;
  background-size: 223px 223px, 337px 337px, 467px 467px, 641px 641px;
  mask-image: linear-gradient(180deg, #000, rgba(0, 0, 0, .72) 42%, rgba(0, 0, 0, .3));
}

.article-cosmos::after {
  opacity: .34;
  background:
    linear-gradient(rgba(119, 142, 215, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 142, 215, .035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, #000, transparent 78%);
}

.article-cosmos i {
  position: absolute;
  display: block;
  width: min(820px, 68vw);
  aspect-ratio: 1;
  border: 1px solid rgba(118, 234, 244, .08);
  border-radius: 50%;
}

.article-cosmos i:nth-child(1) {
  top: 16%;
  left: -29%;
  transform: rotate(18deg) scaleY(.46);
}

.article-cosmos i:nth-child(2) {
  top: 47%;
  right: -31%;
  border-color: rgba(161, 116, 255, .09);
  transform: rotate(-24deg) scaleY(.58);
}

.article-cosmos i:nth-child(3) {
  bottom: 7%;
  left: 14%;
  width: min(630px, 58vw);
  border-color: rgba(255, 100, 143, .065);
  transform: rotate(9deg) scaleY(.34);
}

.article-cosmos > span {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: .8;
}

.article-cosmos > span:nth-of-type(1) {
  top: 15%;
  right: -18%;
  width: 620px;
  height: 980px;
  background: radial-gradient(ellipse, rgba(78, 104, 220, .11), rgba(139, 74, 230, .035) 44%, transparent 72%);
}

.article-cosmos > span:nth-of-type(2) {
  top: 49%;
  left: -23%;
  width: 650px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(46, 137, 198, .09), rgba(76, 90, 201, .03) 50%, transparent 72%);
}

.article-cosmos > span:nth-of-type(3) {
  right: 2%;
  bottom: 5%;
  width: 560px;
  height: 740px;
  background: radial-gradient(ellipse, rgba(184, 66, 151, .07), rgba(108, 64, 196, .025) 48%, transparent 72%);
}

.article-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 220;
  height: 2px;
  pointer-events: none;
  background: rgba(255, 255, 255, .035);
}

.article-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--insight-cyan), #9b86ff, var(--insight-pink));
  box-shadow: 0 0 16px rgba(118, 234, 244, .34);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Article hero */
.article-hero {
  padding: 68px 0 clamp(78px, 9vw, 120px);
}

.article-hero__inner {
  position: relative;
  max-width: 1180px;
}

.article-hero .content-breadcrumb {
  max-width: 980px;
  margin-bottom: clamp(54px, 7vw, 90px);
}

.article-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: var(--insight-cyan);
  font: 750 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.article-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.01;
  letter-spacing: -.054em;
  text-wrap: balance;
}

.article-hero .content-lead {
  position: relative;
  z-index: 1;
  max-width: 790px;
  margin: 30px 0 0;
  color: #c7ccd8;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.6;
}

.article-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 0;
  max-width: 1000px;
  margin: 46px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(190, 202, 239, .15);
  list-style: none;
}

.article-meta li {
  display: grid;
  min-width: 160px;
  gap: 5px;
  margin-right: 28px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, .09);
  color: #f2f3f7;
  font-size: 13px;
}

.article-meta li:last-child {
  border-right: 0;
}

.article-meta span {
  color: #7e8495;
  font: 650 9px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.article-meta b {
  font-weight: 550;
}

.article-meta a {
  color: #fff;
}

.article-meta a:hover,
.article-meta a:focus-visible {
  color: var(--insight-cyan);
}

.article-cover {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 60px 0 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(176, 193, 239, .18);
  background: #06080e;
  box-shadow: 0 42px 95px rgba(0, 0, 0, .35), 0 0 60px rgba(91, 96, 220, .075);
}

.article-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02);
}

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

.article-hero__constellation {
  position: absolute;
  top: 112px;
  right: -3%;
  width: clamp(300px, 36vw, 520px);
  aspect-ratio: 1.35;
  z-index: 0;
  opacity: .62;
  pointer-events: none;
}

.article-hero__constellation::before,
.article-hero__constellation::after,
.article-hero__constellation i {
  position: absolute;
  content: "";
}

.article-hero__constellation::before {
  inset: 10% 5%;
  border: 1px solid rgba(118, 234, 244, .11);
  border-radius: 50%;
  transform: rotate(-8deg) scaleY(.58);
}

.article-hero__constellation::after {
  top: 49%;
  left: 7%;
  width: 88%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 234, 244, .2), rgba(161, 116, 255, .14), transparent);
  transform: rotate(17deg);
}

.article-hero__constellation i:first-child {
  inset: 22% 19%;
  border: 1px solid rgba(161, 116, 255, .14);
  transform: rotate(36deg);
}

.article-hero__constellation i:nth-child(2) {
  top: 15%;
  right: 16%;
  width: 24%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 100, 143, .15);
  border-radius: 50%;
}

.article-hero__constellation span {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(118, 234, 244, .58);
  border-radius: 50%;
  background: #080d18;
  box-shadow: 0 0 18px rgba(118, 234, 244, .22);
}

.article-hero__constellation span:nth-of-type(1) { top: 17%; left: 22%; }
.article-hero__constellation span:nth-of-type(2) { top: 54%; left: 54%; }
.article-hero__constellation span:nth-of-type(3) { right: 10%; bottom: 18%; border-color: rgba(255, 100, 143, .55); }

.article-hero__constellation b {
  position: absolute;
  right: 5%;
  bottom: 0;
  color: rgba(205, 216, 245, .33);
  font: 600 8px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .15em;
}

/* Reading layout */
.article-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 840px);
  justify-content: center;
  align-items: start;
  gap: clamp(44px, 6vw, 82px);
  padding-block: clamp(78px, 9vw, 126px);
}

.article-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  align-self: start;
  gap: 30px;
}

.article-page .article-toc {
  position: static;
  display: block;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(190, 202, 239, .16);
  border-bottom: 1px solid rgba(190, 202, 239, .09);
  background: transparent;
  box-shadow: none;
}

.article-toc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 0;
  color: #f7f8fb;
  cursor: pointer;
  font: 700 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .15em;
  list-style: none;
  text-transform: uppercase;
}

.article-toc summary::-webkit-details-marker { display: none; }

.article-toc summary span:last-child {
  color: var(--insight-cyan);
  font-size: 18px;
  font-weight: 300;
  transition: transform .25s ease;
}

.article-toc[open] summary span:last-child { transform: rotate(45deg); }
.article-toc nav { padding: 2px 0 17px; }

.article-page .article-toc ol {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc li { min-width: 0; }
.article-toc li.is-subsection { padding-left: 17px; }

.article-toc a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 8px 0;
  color: #9298a8;
  font-size: 12px;
  line-height: 1.45;
  transition: color .2s ease, transform .2s ease;
}

.article-toc a span {
  color: #555d70;
  font: 600 9px/1.45 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.article-toc a:hover,
.article-toc a:focus-visible,
.article-toc a[aria-current] {
  color: #fff;
  transform: translateX(3px);
}

.article-toc a[aria-current] span { color: var(--insight-cyan); }

.article-services {
  display: grid;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.article-services .content-eyebrow { margin-bottom: 3px; }

.article-services a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  color: #aeb2bf;
  font-size: 13px;
}

.article-services a:hover,
.article-services a:focus-visible { color: #fff; }

.article-column {
  position: relative;
  min-width: 0;
  max-width: 840px;
  padding: clamp(34px, 4.2vw, 54px);
  background:
    linear-gradient(90deg, rgba(8, 12, 22, .73), rgba(9, 12, 21, .9) 12%, rgba(9, 11, 19, .92) 88%, rgba(8, 11, 20, .7));
  box-shadow: 0 50px 120px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .025);
}

.article-column::before,
.article-column::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  pointer-events: none;
}

.article-column::before {
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(118, 234, 244, .22), rgba(161, 116, 255, .18), transparent);
}

.article-column::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(161, 116, 255, .13), transparent);
}

.article-summary {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  margin-bottom: clamp(52px, 7vw, 78px);
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(118, 234, 244, .14);
  border-left: 2px solid var(--insight-cyan);
  background: linear-gradient(112deg, rgba(118, 234, 244, .075), rgba(109, 93, 211, .04) 52%, rgba(255, 255, 255, .012));
}

.article-summary::after {
  position: absolute;
  top: -62px;
  right: -58px;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(118, 234, 244, .1);
  content: "";
  transform: rotate(45deg);
}

.article-summary__mark {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(118, 234, 244, .22);
  border-radius: 50%;
}

.article-summary__mark span,
.article-summary__mark i {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(161, 116, 255, .24);
  content: "";
  transform: rotate(45deg);
}

.article-summary__mark i {
  inset: 17px;
  border: 0;
  border-radius: 50%;
  background: var(--insight-cyan);
  box-shadow: 0 0 15px rgba(118, 234, 244, .55);
}

.article-summary .content-eyebrow { margin-bottom: 12px; }

.article-summary > div:last-child > p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #f0f1f6;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.64;
}

/* Article typography and living section rhythm. */
.article-body {
  max-width: none;
  color: var(--insight-text);
  font-size: 18px;
  line-height: 1.78;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .16);
}

.article-body > p {
  margin: 0 0 1.55em;
}

.article-body h2,
.article-body h3 {
  position: relative;
  scroll-margin-top: 116px;
  text-wrap: balance;
}

.article-page .article-body h2 {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  align-items: start;
  gap: 10px;
  margin: 2.35em 0 .82em;
  padding-top: 24px;
  color: #fff;
  font-size: clamp(29px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -.037em;
}

.article-page .article-body h2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--insight-cyan), rgba(161, 116, 255, .14));
  box-shadow: 0 0 14px rgba(118, 234, 244, .16);
}

.article-body h3 {
  margin: 2.1em 0 .66em;
  color: #f4f5f8;
  font-size: clamp(21px, 2.4vw, 27px);
  line-height: 1.28;
  letter-spacing: -.025em;
}

.article-heading-number {
  padding-top: .55em;
  color: rgba(118, 234, 244, .68);
  font: 650 10px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .1em;
}

.article-heading-text { min-width: 0; }

.article-heading-anchor {
  align-self: start;
  margin-top: .14em;
  padding: 4px;
  color: #596276;
  font-size: 17px;
  opacity: 0;
  text-decoration: none !important;
  transition: opacity .2s ease, color .2s ease;
}

.article-body h2:hover .article-heading-anchor,
.article-heading-anchor:focus-visible {
  color: var(--insight-cyan);
  opacity: 1;
}

.article-body a {
  color: #a9f7ff;
  text-decoration: underline;
  text-decoration-color: rgba(169, 247, 255, .36);
  text-underline-offset: .18em;
}

.article-body a:hover,
.article-body a:focus-visible {
  color: #fff;
  text-decoration-color: #fff;
}

.article-body strong { color: #f8f9fc; font-weight: 700; }
.article-body em { color: #e7e2f1; }

.article-body ul,
.article-body ol {
  margin: 1.45em 0 1.9em;
  padding: 22px 26px 22px 48px;
  border-left: 1px solid rgba(161, 116, 255, .24);
  background: linear-gradient(90deg, rgba(105, 82, 200, .065), transparent 78%);
}

.article-body ol { border-left-color: rgba(118, 234, 244, .23); }
.article-body li { margin: .62em 0; padding-left: .35em; }
.article-body li::marker { color: var(--insight-cyan); font-weight: 700; }

.article-body blockquote {
  position: relative;
  margin: 2.5em -24px;
  padding: 32px 36px 32px 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 100, 143, .16);
  border-left: 2px solid var(--insight-pink);
  background: linear-gradient(115deg, rgba(255, 100, 143, .07), rgba(161, 116, 255, .04) 54%, transparent);
  color: #f3f1f6;
  font-size: clamp(21px, 2.5vw, 29px);
  line-height: 1.56;
}

.article-body blockquote::before {
  position: absolute;
  top: -8px;
  left: 15px;
  color: rgba(255, 100, 143, .25);
  content: "“";
  font: 800 76px/1 Georgia, serif;
}

.article-body blockquote p { margin: 0; }

.article-body code {
  padding: .12em .35em;
  border: 1px solid rgba(118, 234, 244, .13);
  background: rgba(4, 8, 15, .72);
  color: #cef8fb;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .9em;
}

.article-body pre {
  max-width: 100%;
  margin: 2.2em 0;
  padding: 24px;
  overflow: auto;
  border: 1px solid rgba(150, 167, 222, .16);
  background: #050810;
  color: #d0f3f6;
  font-size: 14px;
  line-height: 1.68;
  box-shadow: inset 3px 0 0 rgba(118, 234, 244, .28);
}

.article-body pre code {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: inherit;
}

.article-section {
  position: relative;
  isolation: isolate;
  margin: 0 -26px;
  padding: 1px 26px 54px;
}

.article-section + .article-section {
  margin-top: 14px;
  border-top: 1px solid rgba(175, 190, 232, .07);
}

.article-section::before {
  position: absolute;
  inset: 20px -28px 8px;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: .48;
  background: radial-gradient(ellipse 48% 70% at 0 50%, rgba(61, 141, 205, .075), transparent 74%);
  transition: opacity .7s ease;
}

.article-section:nth-of-type(even)::before {
  background: radial-gradient(ellipse 48% 70% at 100% 50%, rgba(130, 80, 220, .07), transparent 74%);
}

.article-section:nth-of-type(3n)::before {
  background: radial-gradient(ellipse 42% 68% at 15% 55%, rgba(183, 65, 139, .055), transparent 75%);
}

.article-section::after {
  position: absolute;
  top: 38px;
  right: 2px;
  color: rgba(187, 199, 231, .17);
  content: "SECTION / " attr(data-article-section);
  pointer-events: none;
  font: 600 8px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .13em;
}

.article-section[data-in-view="true"]::before { opacity: .92; }

/* Reusable editorial components available from the CMS body field. */
.article-component-label {
  margin: 0 0 10px !important;
  color: var(--insight-cyan) !important;
  font: 750 9px/1.3 ui-monospace, SFMono-Regular, Consolas, monospace !important;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-callout {
  position: relative;
  margin: 2.35em -18px;
  padding: 28px 32px;
  overflow: hidden;
  border: 1px solid rgba(118, 234, 244, .16);
  border-left: 2px solid var(--insight-cyan);
  background: linear-gradient(112deg, rgba(118, 234, 244, .07), rgba(56, 100, 160, .025) 68%, transparent);
}

.article-callout::after {
  position: absolute;
  top: -46px;
  right: -42px;
  width: 108px;
  aspect-ratio: 1;
  border: 1px solid rgba(118, 234, 244, .1);
  border-radius: 50%;
  content: "";
}

.article-callout--important {
  border-color: rgba(255, 100, 143, .17);
  border-left-color: var(--insight-pink);
  background: linear-gradient(112deg, rgba(255, 100, 143, .075), rgba(151, 58, 126, .025) 68%, transparent);
}

.article-callout--important .article-component-label { color: #ff93b1 !important; }

.article-callout--takeaway,
.article-callout--highlight {
  border-color: rgba(161, 116, 255, .19);
  border-left-color: var(--insight-violet);
  background: linear-gradient(112deg, rgba(161, 116, 255, .085), rgba(73, 68, 157, .03) 70%, transparent);
}

.article-callout--takeaway .article-component-label,
.article-callout--highlight .article-component-label { color: #bba2ff !important; }

.article-callout > div > :last-child { margin-bottom: 0; }

.article-stat {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, .42fr) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  margin: 2.5em -28px;
  padding: 32px 36px;
  border-top: 1px solid rgba(118, 234, 244, .2);
  border-bottom: 1px solid rgba(161, 116, 255, .16);
  background: linear-gradient(100deg, rgba(56, 137, 183, .07), rgba(100, 72, 176, .055), transparent);
}

.article-stat > strong {
  color: #fff;
  font-size: clamp(48px, 7vw, 78px);
  line-height: .9;
  letter-spacing: -.07em;
  text-shadow: 0 0 35px rgba(118, 234, 244, .16);
}

.article-stat > div > :last-child { margin-bottom: 0; }

.article-image-break {
  width: calc(100% + 96px);
  margin: 3em -48px;
}

.article-image-break img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(171, 187, 229, .17);
  background: #06080d;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .3);
}

.article-image-break figcaption {
  margin-top: 11px;
  color: #777e8e;
  font: 600 10px/1.5 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .06em;
}

.article-table-wrap {
  max-width: 100%;
  margin: 2.2em 0;
  overflow-x: auto;
  border: 1px solid rgba(160, 178, 224, .13);
  background: rgba(5, 8, 15, .72);
}

.article-body table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: 15px;
}

.article-body th,
.article-body td {
  min-width: 140px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  text-align: left;
}

.article-body th {
  color: #fff;
  background: rgba(118, 234, 244, .045);
  font: 700 10px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.article-body tr:last-child td { border-bottom: 0; }

.article-faq {
  display: grid;
  gap: 10px;
  margin: 1.5em 0 2.5em;
}

.article-faq__item {
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.article-faq__item summary {
  position: relative;
  padding: 19px 42px 19px 0;
  color: #f3f4f7;
  cursor: pointer;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.4;
  list-style: none;
}

.article-faq__item summary::-webkit-details-marker { display: none; }

.article-faq__item summary::after {
  position: absolute;
  top: 18px;
  right: 3px;
  color: var(--insight-cyan);
  content: "+";
  font-size: 21px;
  font-weight: 300;
  transition: transform .22s ease;
}

.article-faq__item[open] summary::after { transform: rotate(45deg); }
.article-faq__answer { padding: 0 38px 18px 0; color: #c9ccd5; }
.article-faq__answer > :last-child { margin-bottom: 0; }

/* Author and related content */
.article-author-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  margin-top: clamp(70px, 9vw, 108px);
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.article-author-card__mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(118, 234, 244, .3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 234, 244, .11), transparent 70%);
  color: var(--insight-cyan);
  font: 700 20px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.article-author-card .content-eyebrow { margin-bottom: 7px; }
.article-author-card h2 { margin: 0; color: #fff; font-size: 27px; line-height: 1.15; }
.article-author-card__role { margin: 5px 0 13px; color: #8d92a1; font-size: 13px; }
.article-author-card > div > p:not(.content-eyebrow):not(.article-author-card__role) { max-width: 60ch; margin: 0; color: #c3c6d0; }
.article-author-card .content-text-link { margin-top: 12px; }

.article-more {
  position: relative;
  padding: clamp(78px, 9vw, 118px) 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background:
    radial-gradient(ellipse 38% 64% at 100% 50%, rgba(120, 78, 210, .065), transparent 74%),
    rgba(5, 7, 12, .42);
}

.article-more__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.article-more__head .content-eyebrow { margin-bottom: 7px; }
.article-more__head h2 { margin: 0; font-size: clamp(38px, 5.4vw, 68px); line-height: .98; letter-spacing: -.05em; }
.article-more__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

.article-more-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(145deg, rgba(255, 255, 255, .032), rgba(255, 255, 255, .012));
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.article-more-card:hover,
.article-more-card:focus-within {
  border-color: rgba(118, 234, 244, .25);
  background: linear-gradient(145deg, rgba(118, 234, 244, .045), rgba(161, 116, 255, .018));
  transform: translateY(-4px);
}

.article-more-card > p:first-child {
  margin: 0;
  color: var(--insight-cyan);
  font: 700 9px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-more-card h3 { margin: 22px 0 15px; font-size: clamp(23px, 2.4vw, 31px); line-height: 1.08; letter-spacing: -.035em; }
.article-more-card h3 a::after { position: absolute; inset: 0; content: ""; }
.article-more-card > p:not(:first-child) { margin: 0; color: #aaafbd; font-size: 14px; line-height: 1.65; }
.article-more-card .content-text-link { position: relative; z-index: 1; margin-top: auto; padding-top: 28px; }

.article-related {
  padding: 90px 0;
  border-top: 1px solid var(--content-line);
  background: rgba(8, 9, 15, .82);
}

.article-cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  border-top: 1px solid var(--content-line);
  text-align: center;
}

.article-cta::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(920px, 90vw);
  height: 390px;
  border: 1px solid rgba(118, 234, 244, .09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%) scaleY(.42) rotate(-6deg);
}

.article-cta h2 {
  position: relative;
  max-width: 850px;
  margin: 0 auto .7em;
  font-size: clamp(42px, 7vw, 88px);
  line-height: .95;
  letter-spacing: -.055em;
}

@media (min-width: 901px) {
  .article-toc > summary { pointer-events: none; }
  .article-toc > summary span:last-child { display: none; }
}

@media (max-width: 1000px) {
  .insight-card--featured { grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); }
  .article-layout { grid-template-columns: minmax(190px, 220px) minmax(0, 760px); gap: 38px; }
  .article-column { padding-inline: clamp(28px, 4vw, 42px); }
}

@media (max-width: 900px) {
  .insights-hero { min-height: 0; }
  .insights-hero .content-shell { min-height: 560px; }
  .insights-list__head { grid-template-columns: 1fr; gap: 24px; }
  .insights-list__head > p { max-width: 560px; }
  .insight-card--featured { grid-template-columns: 1fr; }
  .insight-card--featured .insight-card__visual { min-height: 360px; }
  .article-hero__constellation { right: -17%; opacity: .42; }
  .article-layout { grid-template-columns: minmax(0, 840px); gap: 42px; }
  .article-sidebar { position: static; }
  .article-services { display: none; }
  .article-page .article-toc { border: 1px solid rgba(155, 173, 231, .13); background: rgba(8, 11, 20, .72); }
  .article-toc summary { padding-inline: 18px; }
  .article-toc nav { padding-inline: 18px; }
  .article-more__grid { grid-template-columns: 1fr 1fr; }
  .article-more-card { min-height: 280px; }
}

@media (max-width: 700px) {
  .insights-hero { padding-top: 40px; }
  .insights-hero .content-shell { min-height: 520px; }
  .insights-hero h1 { font-size: clamp(48px, 15.5vw, 76px); }
  .insights-hero__status { position: static; margin-top: 36px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card,
  .insight-card--featured { min-height: 0; grid-column: auto; }
  .insight-card__visual,
  .insight-card--featured .insight-card__visual { min-height: 260px; }
  .insight-card footer { align-items: flex-start; flex-direction: column; gap: 14px; }

  .article-cosmos::after { opacity: .18; background-size: 112px 112px; }
  .article-cosmos i:nth-child(n+2),
  .article-cosmos > span:nth-of-type(n+2) { display: none; }
  .article-hero { padding-top: 40px; }
  .article-hero .content-breadcrumb b:last-child,
  .article-hero .content-breadcrumb span:nth-last-child(2) { display: none; }
  .article-hero .content-breadcrumb { margin-bottom: 48px; }
  .article-hero h1 { font-size: clamp(38px, 11.3vw, 54px); line-height: 1.03; }
  .article-hero .content-lead { font-size: 18px; line-height: 1.62; }
  .article-hero__constellation { top: 120px; right: -42%; opacity: .25; }
  .article-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .article-meta li { min-width: 0; margin: 0; padding: 14px 10px 14px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .article-cover { margin-top: 44px; }
  .article-layout,
  .article-related,
  .article-cta,
  .article-more { padding-block: 68px; }
  .article-column { padding: 28px 18px; }
  .article-summary { grid-template-columns: 1fr; gap: 17px; margin-bottom: 48px; padding: 22px; }
  .article-summary__mark { width: 42px; height: 42px; }
  .article-body { font-size: 17px; line-height: 1.74; }
  .article-page .article-body h2 { grid-template-columns: 31px minmax(0, 1fr); margin-top: 2.2em; font-size: clamp(27px, 8.5vw, 35px); }
  .article-heading-anchor { display: none; }
  .article-section { margin-inline: -9px; padding-inline: 9px; }
  .article-section::after { display: none; }
  .article-section::before { inset-inline: -8px; opacity: .5; }
  .article-body blockquote { margin-inline: -8px; padding: 29px 24px 29px 39px; }
  .article-callout { margin-inline: -6px; padding: 24px 22px; }
  .article-stat { grid-template-columns: 1fr; gap: 18px; margin-inline: -8px; padding: 28px 24px; }
  .article-image-break { width: calc(100% + 20px); margin-inline: -10px; }
  .article-author-card { grid-template-columns: 52px minmax(0, 1fr); gap: 16px; }
  .article-author-card__mark { width: 50px; height: 50px; }
  .article-more__head { display: block; }
  .article-more__grid { grid-template-columns: 1fr; }
  .article-more-card { min-height: 0; }
  .article-cta h2 { font-size: clamp(38px, 12vw, 58px); }
}

@media (max-width: 420px) {
  .article-column { margin-inline: -4px; padding-inline: 14px; }
  .article-summary { margin-inline: -2px; }
  .article-body ul,
  .article-body ol { padding: 18px 18px 18px 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .insight-card,
  .insight-card__visual img,
  .article-toc summary span:last-child,
  .article-toc a,
  .article-heading-anchor,
  .article-section::before,
  .article-faq__item summary::after,
  .article-more-card { transition: none; }
  .insight-card:hover,
  .insight-card:focus-within,
  .insight-card:hover .insight-card__visual img,
  .insight-card:focus-within .insight-card__visual img,
  .article-more-card:hover,
  .article-more-card:focus-within,
  .article-toc a:hover,
  .article-toc a:focus-visible,
  .article-toc a[aria-current] { transform: none; }
  .article-section::before,
  .article-section[data-in-view="true"]::before { opacity: .65; }
}
