.insights-simple {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
  padding: 82px 0 108px;
}

.insights-simple-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 58px;
}

.insights-simple-hero h1 {
  max-width: 800px;
  margin: 16px 0 0;
  font-size: clamp(46px, 5.5vw, 78px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.insights-simple-intro {
  display: grid;
  gap: 22px;
  padding-bottom: 7px;
}

.insights-simple-intro p {
  max-width: 430px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.insights-simple-intro > span {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.insights-simple-intro > span b {
  margin-right: 7px;
  color: var(--accent);
  font-size: 13px;
}

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

.insight-page-card {
  --page-accent: #67e8f9;
  --page-accent-rgb: 103, 232, 249;
  position: relative;
  min-width: 0;
  min-height: 510px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  perspective: 1500px;
  cursor: pointer;
}

.insight-page-card--ph {
  --page-accent: #ff8755;
  --page-accent-rgb: 255, 135, 85;
}

.insight-page-card--geo {
  --page-accent: #a78bfa;
  --page-accent-rgb: 167, 139, 250;
}

.insight-paper {
  position: absolute;
  inset: 12px 0 0 14px;
  display: block;
  border: 1px solid rgba(var(--page-accent-rgb), .13);
  border-radius: 22px;
  background: rgba(255,255,255,.025);
  pointer-events: none;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.insight-paper--back {
  transform: translate(8px, 10px) rotate(2.2deg);
  opacity: .55;
}

.insight-paper--mid {
  transform: translate(3px, 5px) rotate(.9deg);
  opacity: .78;
}

.insight-page-card:hover .insight-paper--back,
.insight-page-card:focus-visible .insight-paper--back {
  transform: translate(12px, 13px) rotate(3.4deg);
}

.insight-page-card:hover .insight-paper--mid,
.insight-page-card:focus-visible .insight-paper--mid {
  transform: translate(6px, 7px) rotate(1.5deg);
}

.insight-card-inner {
  position: absolute;
  inset: 0;
  display: block;
  transform-style: preserve-3d;
  transition: transform .72s cubic-bezier(.2,.78,.18,1);
}

.insight-page-card.is-flipped .insight-card-inner {
  transform: rotateY(-180deg);
}

.insight-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(var(--page-accent-rgb), .2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 14%, rgba(var(--page-accent-rgb), .15), transparent 34%),
    linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
    #090d12;
  box-shadow: 0 28px 78px rgba(0,0,0,.3), 0 1px 0 rgba(255,255,255,.09) inset;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.insight-card-face::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 56px;
  height: 56px;
  background:
    linear-gradient(135deg, transparent 49%, rgba(var(--page-accent-rgb), .18) 50%, rgba(255,255,255,.08) 100%);
  border-radius: 20px 0 20px 0;
  box-shadow: -7px -7px 20px rgba(0,0,0,.2);
  transition: width .3s ease, height .3s ease;
}

.insight-page-card:hover .insight-card-face::after,
.insight-page-card:focus-visible .insight-card-face::after {
  width: 68px;
  height: 68px;
}

.insight-page-card:focus-visible .insight-card-face {
  border-color: rgba(var(--page-accent-rgb), .55);
  box-shadow: 0 0 0 3px rgba(var(--page-accent-rgb), .12), 0 28px 78px rgba(0,0,0,.3);
}

.insight-card-back {
  transform: rotateY(180deg);
  background:
    linear-gradient(rgba(var(--page-accent-rgb), .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--page-accent-rgb), .035) 1px, transparent 1px),
    radial-gradient(circle at 15% 88%, rgba(var(--page-accent-rgb), .12), transparent 36%),
    #091016;
  background-size: 100% 30px, 30px 100%, auto, auto;
}

.insight-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.insight-card-top b {
  color: var(--page-accent);
  font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.insight-card-top i {
  padding: 4px 9px;
  border: 1px solid rgba(var(--page-accent-rgb), .25);
  border-radius: 100px;
  color: var(--page-accent);
  font-style: normal;
  font-weight: 700;
}

.insight-card-top em {
  margin-left: auto;
  font-style: normal;
}

.insight-card-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 62px 0 42px;
  border: 1px solid rgba(var(--page-accent-rgb), .24);
  border-radius: 50%;
  color: var(--page-accent);
  background: rgba(var(--page-accent-rgb), .055);
  box-shadow: 0 0 40px rgba(var(--page-accent-rgb), .12);
  font-size: 32px;
}

.insight-card-face > strong {
  position: relative;
  z-index: 1;
  max-width: 320px;
  color: #f5f8fa;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.insight-card-deck {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.75;
}

.insight-card-action {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 24px;
  color: var(--page-accent);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .04em;
}

.insight-card-action b {
  margin-left: 5px;
  font-size: 14px;
}

.insight-card-back > strong {
  margin-top: 64px;
}

.insight-card-summary {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.82;
}

.insights-update-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.insights-update-note span {
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 9px;
  letter-spacing: .12em;
}

.insights-update-note p {
  color: var(--text-muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  .insights-simple-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .insight-page-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .insight-page-card {
    min-height: 470px;
  }
}

@media (max-width: 680px) {
  .insights-simple {
    width: calc(100% - 48px);
    padding: 56px 0 78px;
  }

  .insights-simple-hero {
    margin-bottom: 42px;
  }

  .insights-simple-hero h1 {
    font-size: 44px;
  }

  .insight-page-card {
    min-height: 510px;
  }

  .insight-card-face {
    padding: 24px;
  }

  .insight-card-mark {
    margin: 56px 0 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .insight-card-inner,
  .insight-paper,
  .insight-card-face::after {
    transition: none;
  }
}
