@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/_vinext_fonts/geist-8ac0455e797f/geist-ff2310f5.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/_vinext_fonts/geist-mono-00e989178794/geist-mono-013b2f2f.woff2") format("woff2");
}

.insights-page {
  --insight-acid: #c7ff31;
  --insight-black: #050605;
  --insight-paper: #f2f1ed;
  --insight-ink: #121312;
  --insight-muted: #666a66;
  font-family: "Geist", Arial, sans-serif;
  background: var(--insight-black);
  color: #fff;
}

.insights-page .eyebrow,
.insights-page .section-label,
.insights-page .article-meta,
.insights-page .breadcrumb,
.insights-page .toc-title,
.insights-page .card-kicker {
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insights-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 5.2vw 90px;
  background:
    radial-gradient(circle at 78% 30%, rgba(199, 255, 49, 0.14), transparent 27%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--insight-black);
  background-size: auto, 68px 68px, 68px 68px, auto;
}

.insights-hero {
  min-height: 68svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.insights-hero::after,
.article-hero::after {
  content: "";
  position: absolute;
  width: min(34vw, 520px);
  aspect-ratio: 1;
  right: -7vw;
  bottom: -48%;
  border: 1px solid rgba(199, 255, 49, 0.65);
  border-radius: 50%;
  pointer-events: none;
}

.insights-hero > *,
.article-hero > * {
  position: relative;
  z-index: 1;
}

.insights-hero .eyebrow,
.article-hero .eyebrow {
  margin: 0 0 24px;
  color: var(--insight-acid);
  font-size: 12px;
}

.insights-hero h1,
.article-hero h1 {
  max-width: 1140px;
  margin: 0;
  font-weight: 360;
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.insights-hero h1 {
  font-size: clamp(58px, 9vw, 156px);
}

.insights-hero h1 span,
.article-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
}

.insights-hero .hero-summary,
.article-hero .article-deck {
  max-width: 720px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
}

.insights-index,
.article-shell,
.related-insights {
  background: var(--insight-paper);
  color: var(--insight-ink);
}

.insights-index {
  padding: 110px 5.2vw 130px;
}

.insights-index-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 64px;
}

.insights-index-heading h2,
.related-insights h2 {
  margin: 0;
  font-size: clamp(42px, 5.7vw, 92px);
  font-weight: 380;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.insights-index-heading p {
  margin: 0;
  color: var(--insight-muted);
  font-size: 18px;
  line-height: 1.65;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #c9cbc6;
  border-left: 1px solid #c9cbc6;
}

.insight-card {
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #c9cbc6;
  border-bottom: 1px solid #c9cbc6;
  color: inherit;
  text-decoration: none;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.insight-card:hover,
.insight-card:focus-visible {
  background: var(--insight-black);
  color: #fff;
  transform: translateY(-5px);
}

.insight-card:focus-visible {
  outline: 3px solid var(--insight-acid);
  outline-offset: -3px;
}

.card-kicker {
  color: #777b77;
  font-size: 10px;
}

.insight-card:hover .card-kicker,
.insight-card:focus-visible .card-kicker {
  color: var(--insight-acid);
}

.insight-card h2,
.insight-card h3 {
  margin: 34px 0 20px;
  font-size: clamp(28px, 2.2vw, 39px);
  font-weight: 430;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.insight-card p {
  margin: 0;
  color: #626662;
  line-height: 1.62;
}

.insight-card:hover p,
.insight-card:focus-visible p {
  color: rgba(255, 255, 255, 0.68);
}

.card-link {
  margin-top: auto;
  padding-top: 38px;
  font-size: 14px;
  font-weight: 650;
}

.article-hero {
  min-height: 72svh;
  padding-bottom: 95px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 58px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--insight-acid);
}

.article-hero h1 {
  max-width: 1260px;
  font-size: clamp(46px, 6.5vw, 112px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 820px);
  justify-content: center;
  gap: clamp(50px, 8vw, 130px);
  padding: 105px 5.2vw 130px;
}

.article-toc {
  align-self: start;
  position: sticky;
  top: 120px;
  border-top: 2px solid var(--insight-ink);
  padding-top: 20px;
}

.toc-title {
  display: block;
  margin-bottom: 22px;
  font-size: 10px;
}

.article-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.article-toc li {
  counter-increment: toc;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 5px;
  margin: 0 0 15px;
  color: #666a66;
  font-size: 13px;
  line-height: 1.38;
}

.article-toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: #9a9d98;
  font-family: "Geist Mono", monospace;
  font-size: 9px;
  padding-top: 3px;
}

.article-toc a {
  color: inherit;
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--insight-ink);
  text-decoration: underline;
  text-decoration-color: var(--insight-acid);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.article-content {
  min-width: 0;
  font-size: 18px;
  line-height: 1.78;
}

.article-content > p:first-child {
  margin-top: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.article-content h2 {
  scroll-margin-top: 120px;
  margin: 78px 0 24px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 440;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.article-content h3 {
  margin: 42px 0 14px;
  font-size: clamp(23px, 2.1vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.article-content p,
.article-content li {
  color: #3f433f;
}

.article-content a {
  color: inherit;
  text-decoration-color: #86b400;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-content a:hover,
.article-content a:focus-visible {
  background: var(--insight-acid);
  color: var(--insight-ink);
  outline: none;
}

.article-content ul,
.article-content ol {
  padding-left: 1.25em;
}

.article-content li + li {
  margin-top: 10px;
}

.article-callout,
.article-checklist,
.article-cta {
  margin: 48px 0;
  padding: 30px;
  border: 1px solid #c8cac5;
}

.article-callout {
  border-left: 6px solid var(--insight-acid);
  background: #fff;
}

.article-callout strong,
.article-checklist strong {
  display: block;
  margin-bottom: 10px;
  color: var(--insight-ink);
  font-size: 20px;
}

.article-checklist {
  background: #e7e8e3;
}

.article-checklist ul {
  margin-bottom: 0;
  columns: 2;
  column-gap: 44px;
}

.article-cta {
  background: var(--insight-black);
  color: #fff;
}

.article-cta h2,
.article-cta h3 {
  margin-top: 0;
  color: #fff;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.article-cta a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin-top: 10px;
  padding: 0 22px;
  background: var(--insight-acid);
  color: var(--insight-black);
  font-weight: 700;
  text-decoration: none;
}

.related-insights {
  padding: 0 5.2vw 130px;
}

.related-insights > h2 {
  margin-bottom: 50px;
  font-size: clamp(40px, 5vw, 76px);
}

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

.related-insights .insight-card {
  min-height: 320px;
}

.insights-page footer {
  background: var(--insight-black);
}

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

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

  .article-toc {
    position: static;
    max-width: 520px;
  }

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

@media (max-width: 620px) {
  .insights-hero,
  .article-hero {
    padding: 145px 22px 68px;
  }

  .insights-hero {
    min-height: 70svh;
  }

  .insights-hero h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .article-hero h1 {
    font-size: clamp(42px, 12.5vw, 62px);
  }

  .insights-index,
  .article-shell,
  .related-insights {
    padding-left: 22px;
    padding-right: 22px;
  }

  .insights-index,
  .article-shell {
    padding-top: 72px;
    padding-bottom: 90px;
  }

  .insight-card {
    min-height: 330px;
    padding: 27px;
  }

  .article-content {
    font-size: 17px;
    line-height: 1.72;
  }

  .article-content h2 {
    margin-top: 60px;
  }

  .article-checklist ul {
    columns: 1;
  }
}

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