.insights-page {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: #020609;
}

.insights-main {
  width: 100%;
  max-width: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 7%, rgba(0, 191, 255, 0.18), transparent 28%),
    radial-gradient(circle at 12% 58%, rgba(124, 20, 255, 0.08), transparent 23%),
    #020609;
}

.insights-hero,
.insights-figure,
.insights-support,
.insights-principles,
.insights-conclusion,
.insights-return {
  width: min(100% - 48px, 1180px);
  margin-right: auto;
  margin-left: auto;
}

.insights-hero {
  padding: clamp(88px, 10vw, 138px) 0 56px;
}

.insights-eyebrow,
.insights-kicker,
.insights-section-label p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 1.7px;
}

.insights-hero h1 {
  max-width: 1050px;
  margin: 20px 0 30px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 400;
  line-height: 0.96;
}

.insights-hero h1 span {
  color: var(--gold);
}

.insights-lead {
  max-width: 990px;
  margin: 0;
  color: #e2e5e6;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.58;
}

.insights-figure {
  margin-top: 34px;
  margin-bottom: clamp(82px, 10vw, 126px);
  padding: clamp(8px, 1.2vw, 14px);
  border: 1px solid rgba(0, 204, 255, 0.48);
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.11), transparent 36%),
    rgba(2, 8, 13, 0.96);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.46);
}

.insights-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(79, 217, 255, 0.22);
}

.insights-figure figcaption {
  padding: 14px 6px 3px;
  color: #aeb8bc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.insights-support {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  padding: clamp(82px, 10vw, 126px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.insights-section-label span {
  display: block;
  width: 56px;
  padding-top: 10px;
  border-top: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
}

.insights-section-label p {
  margin-top: 16px;
}

.insights-support h2,
.insights-section-heading h2,
.insights-conclusion h2 {
  max-width: 930px;
  margin: 0 0 26px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
}

.insights-support > div:last-child > p,
.insight-card p,
.insights-message > p:last-child {
  margin: 0;
  color: #cbd1d3;
  font-size: 17px;
  line-height: 1.78;
}

.insights-support > div:last-child > p {
  max-width: 930px;
  font-size: 19px;
}

.insights-principles {
  padding: clamp(80px, 10vw, 126px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.insights-section-heading {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  margin-bottom: 54px;
}

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

.insight-card {
  position: relative;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(0, 127, 181, 0.16), transparent 48%),
    rgba(3, 9, 13, 0.91);
}

.insight-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 64px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.insight-card-number {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.insight-card h3 {
  margin: 18px 0 22px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.12;
}

.insights-conclusion {
  padding: 0 0 clamp(90px, 11vw, 138px);
}

.insights-message {
  padding: clamp(46px, 7vw, 76px);
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-left: 4px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.075), transparent 38%),
    rgba(3, 10, 14, 0.94);
}

.insights-message h2 {
  margin-top: 12px;
}

.insights-return {
  display: block;
  padding-bottom: 90px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.insights-return:hover,
.insights-return:focus-visible {
  color: #fff;
}

@media (max-width: 900px) {
  .insights-support,
  .insights-section-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .insights-hero,
  .insights-figure,
  .insights-support,
  .insights-principles,
  .insights-conclusion,
  .insights-return {
    width: min(100% - 36px, 1180px);
  }

  .insights-hero {
    padding-top: 68px;
  }

  .insights-hero h1 {
    font-size: clamp(49px, 15vw, 70px);
  }

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

  .insights-message {
    padding: 38px 26px;
  }
}
