.insights-shell {
  position: relative;
  background:
    radial-gradient(900px 520px at 8% 6%, rgba(3, 193, 176, 0.09), transparent 68%),
    radial-gradient(860px 540px at 94% 19%, rgba(124, 92, 255, 0.09), transparent 70%),
    var(--landing-bg);
}

.insights-shell .landing-nav__links a.is-active {
  color: var(--landing-text);
  background: rgba(3, 193, 176, 0.1);
  box-shadow: inset 0 0 0 1px rgba(3, 193, 176, 0.18);
}

.insights-kicker {
  margin: 0;
  color: var(--landing-teal);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.insights-hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(74px, 10vw, 126px) 24px clamp(58px, 8vw, 92px);
  overflow: hidden;
  text-align: center;
}

.insights-hero__glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(760px, 90vw);
  aspect-ratio: 1.8;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 193, 176, 0.1), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
  transform: translateX(-50%);
}

.insights-hero > *:not(.insights-hero__glow) {
  position: relative;
}

.insights-hero h1 {
  max-width: 900px;
  margin: 20px auto 0;
  color: var(--landing-text);
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

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

.insights-hero > p:last-child {
  max-width: 760px;
  margin: 24px auto 0;
  color: #a5afc1;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  text-wrap: balance;
}

.insights-index {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px clamp(76px, 10vw, 122px);
}

.insights-index__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.insights-index__header h2 {
  margin: 13px 0 0;
  color: var(--landing-text);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.insights-count {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid rgba(3, 193, 176, 0.2);
  border-radius: 999px;
  background: rgba(13, 21, 37, 0.76);
  color: #aeb8ca;
  font-size: 13px;
  font-weight: 700;
}

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

.insight-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--landing-border);
  border-radius: 20px;
  background:
    radial-gradient(420px 180px at 14% 0%, rgba(3, 193, 176, 0.045), transparent 72%),
    linear-gradient(145deg, rgba(16, 26, 46, 0.93), rgba(10, 16, 32, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 42px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.insight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(3, 193, 176, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 22px 48px rgba(0, 0, 0, 0.27),
    0 0 30px rgba(3, 193, 176, 0.04);
}

.insight-card__media {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--landing-border);
  background:
    radial-gradient(circle at 50% 30%, rgba(3, 193, 176, 0.08), transparent 65%),
    #080e1b;
}

.insight-card__media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 300ms ease;
}

.insight-card:hover .insight-card__media > img {
  transform: scale(1.015);
}

.insight-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(3, 193, 176, 0.06), rgba(124, 92, 255, 0.07)),
    #080e1b;
}

.insight-card__placeholder img {
  width: min(190px, 62%);
  height: auto;
  opacity: 0.72;
}

.insight-card__body {
  display: flex;
  min-height: 268px;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 11px;
  color: #8792a6;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.055em;
  line-height: 1.4;
  text-transform: uppercase;
}

.insight-meta > * + *::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 11px 3px 0;
  border-radius: 999px;
  background: rgba(3, 193, 176, 0.68);
}

.insight-card h3 {
  margin: 17px 0 0;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.018em;
}

.insight-card h3 a {
  color: var(--landing-text);
  text-decoration: none;
}

.insight-card__body > p {
  display: -webkit-box;
  margin: 14px 0 0;
  overflow: hidden;
  color: #9ca7b9;
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.insight-card__read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--landing-teal);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.insight-card__read span {
  transition: transform 180ms ease;
}

.insight-card:hover .insight-card__read span {
  transform: translateX(3px);
}

.insights-empty {
  padding: clamp(58px, 8vw, 84px) 24px;
  border: 1px solid var(--landing-border);
  border-radius: 20px;
  background: rgba(10, 16, 32, 0.72);
  text-align: center;
}

.insights-empty h2 {
  max-width: 680px;
  margin: 17px auto 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.insights-empty > p:last-child {
  margin: 14px auto 0;
  color: #939eb1;
}

.insights-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 38px;
  color: #8792a6;
  font-size: 14px;
}

.insights-pagination a {
  color: var(--landing-teal);
  font-weight: 700;
  text-decoration: none;
}

.insights-cta {
  display: flex;
  max-width: 1152px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto clamp(72px, 9vw, 110px);
  padding: clamp(30px, 5vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(3, 193, 176, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(540px 260px at 8% 0%, rgba(3, 193, 176, 0.1), transparent 72%),
    radial-gradient(540px 260px at 92% 100%, rgba(124, 92, 255, 0.12), transparent 74%),
    linear-gradient(145deg, rgba(13, 21, 37, 0.94), rgba(6, 11, 20, 0.97));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.25);
}

.insights-cta h2 {
  max-width: 710px;
  margin: 14px 0 0;
  color: var(--landing-text);
  font-size: clamp(28px, 4vw, 43px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.insights-cta .landing-button {
  flex: 0 0 auto;
}

.article-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(68px, 10vw, 118px) 24px clamp(74px, 9vw, 112px);
}

.article-header {
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}

.article-back {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--landing-teal);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.insight-meta--centered {
  justify-content: center;
}

.article-header h1 {
  margin: 22px 0 0;
  color: var(--landing-text);
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.article-deck {
  max-width: 800px;
  margin: 24px auto 0;
  color: #a5afc1;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.62;
  text-wrap: balance;
}

.article-byline {
  margin: 22px 0 0;
  color: #dce4f4;
  font-size: 14px;
  font-weight: 700;
}

.article-cover {
  display: grid;
  max-width: 1080px;
  margin: clamp(42px, 7vw, 72px) auto 0;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--landing-border);
  border-radius: 24px;
  background: #080e1b;
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.3);
}

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 280px);
  align-items: start;
  justify-content: center;
  gap: clamp(40px, 7vw, 84px);
  margin-top: clamp(48px, 7vw, 78px);
}

.article-body {
  min-width: 0;
  color: #cbd4e5;
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.8;
}

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

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

.article-body h2,
.article-body h3,
.article-body h4 {
  color: var(--landing-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.article-body h2 {
  margin: 2.15em 0 0.72em;
  font-size: clamp(28px, 3.2vw, 38px);
}

.article-body h3 {
  margin: 1.9em 0 0.68em;
  font-size: clamp(22px, 2.6vw, 29px);
}

.article-body h4 {
  margin: 1.7em 0 0.6em;
  font-size: 20px;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body pre,
.article-body table {
  margin: 0 0 1.35em;
}

.article-body ul,
.article-body ol {
  padding-left: 1.35em;
}

.article-body li + li {
  margin-top: 0.45em;
}

.article-body a {
  color: var(--landing-teal);
  text-decoration-color: rgba(3, 193, 176, 0.38);
  text-underline-offset: 3px;
}

.article-body strong {
  color: var(--landing-text);
}

.article-body blockquote {
  padding: 6px 0 6px 24px;
  border-left: 3px solid rgba(3, 193, 176, 0.52);
  color: #e0e7f4;
  font-size: 1.08em;
}

.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2em auto;
  border: 1px solid var(--landing-border);
  border-radius: 16px;
}

.article-body pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 20px;
  border: 1px solid var(--landing-border);
  border-radius: 14px;
  background: #050a13;
  color: #dcfffb;
  font-size: 14px;
}

.article-body code {
  overflow-wrap: anywhere;
  color: #dcfffb;
}

.article-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.article-body th,
.article-body td {
  padding: 12px 14px;
  border: 1px solid var(--landing-border);
  text-align: left;
}

.article-body th {
  background: rgba(3, 193, 176, 0.08);
  color: var(--landing-text);
}

.article-related {
  position: sticky;
  top: 102px;
  padding: 22px;
  border: 1px solid var(--landing-border);
  border-radius: 18px;
  background: rgba(13, 21, 37, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.article-related ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.article-related a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: #cbd4e5;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.article-related a:hover {
  color: var(--landing-teal);
}

.article-faq {
  max-width: 930px;
  margin: clamp(70px, 9vw, 112px) auto 0;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--landing-border);
  border-radius: 24px;
  background: rgba(13, 21, 37, 0.72);
}

.article-faq > h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.article-faq__list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.article-faq__list article {
  padding: 22px;
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  background: rgba(6, 11, 20, 0.56);
}

.article-faq__list h3 {
  margin: 0;
  font-size: 19px;
}

.article-faq__list p {
  margin: 10px 0 0;
  color: #a7b0c1;
  line-height: 1.65;
}

@media (max-width: 1020px) {
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: minmax(0, 760px);
  }

  .article-related {
    position: static;
  }
}

@media (max-width: 760px) {
  .insights-hero {
    padding-top: 62px;
  }

  .insights-index__header,
  .insights-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .insights-cta {
    margin-right: 16px;
    margin-left: 16px;
    border-radius: 18px;
  }

  .insights-cta .landing-button {
    width: 100%;
  }

  .article-cover,
  .article-faq {
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-card__body {
    min-height: 0;
  }

  .article-body {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .insight-card,
  .insight-card__media > img,
  .insight-card__read span {
    transition: none !important;
    transform: none !important;
  }
}
