/* ============================================================================
   PayrAdvisors — Insights page (Phase 1)
   Productionized from the approved insights-page.html. Scoped to .insights-page.

   Normalizations vs. the mockup:
     - --serif -> Source Serif 4 (was placeholder Iowan/Palatino)
     - --mono  -> Inter stack (brand: no monospace); tabular numerals retained
     - magenta is #E6007E (correct in source)
   STRICT BRAND (client directive 2026-06-29): the earlier teal/steel exception
   is removed — page uses only the 5 brand colors. Magenta is the sole accent;
   former teal accents -> magenta, former steel -> brand blue.
   Fixed-pixel .wrap/.pad from the mockup are made responsive.
   ============================================================================ */

.insights-page {
  /* Page-scoped palette — strict 5-color brand (no teal/steel) */
  --navy: #002545;
  --navy2: #0A3A63;
  --steel: #1C7FD6;   /* brand blue (was off-brand steel) */
  --steel2: #5C9CE0;  /* lighter brand-blue tint */
  --teal: #E6007E;    /* mapped to magenta — the single accent (was teal) */
  --mag: #E6007E;
  --ink: #1A2330;
  --muted: #6B7888;
  --faint: #9AA6B4;
  --line: #E7ECF3;
  --line2: #EEF2F7;
  --paper: #F6F8FB;
  --card: #FFFFFF;

  /* Fonts normalized to brand (no monospace) */
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  font-family: var(--sans);
  color: var(--ink);
  background: var(--card);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  font-size: 16px;
}

.insights-page * { box-sizing: border-box; }

/* Mobile overflow safeguards: prevent grid/flex children from blowing out the
   viewport width (min-width:auto blowout), and clip any stray horizontal scroll. */
.insights-page { overflow-x: clip; }
.insights-page .hero-grid > *,
.insights-page .main-grid > *,
.insights-page .feat-grid > *,
.insights-page .viz-grid > *,
.insights-page .kpi-row > *,
.insights-page .tcard > * { min-width: 0; }
.insights-page .glass { max-width: 100%; }

.insights-page h1,
.insights-page h2,
.insights-page h3,
.insights-page h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--ink);
}

.insights-page p { margin: 0; max-width: none; }
.insights-page a { color: inherit; text-decoration: none; }
.insights-page img { max-width: 100%; }

.insights-page .mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

.insights-page .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 34px);
}

.insights-page .eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--steel);
  margin: 0;
}
.insights-page .eyebrow-teal { color: var(--teal); }
.insights-page .eyebrow-white { color: #fff; }

.insights-page .pad { padding-block: clamp(3.5rem, 8vw, 84px); }
.insights-page .pad-featured { padding-top: clamp(3rem, 6vw, 64px); }
.insights-page .lede { font-size: 18px; color: var(--muted); line-height: 1.62; }
.insights-page .sec-lede { margin-top: 12px; max-width: 660px; }
.insights-page section { position: relative; }
.insights-page .paper { background: var(--paper); }

/* ---------- Scroll reveal ---------- */
.insights-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.insights-page .reveal.in { opacity: 1; transform: none; }
.insights-page .reveal[data-d] { transition-delay: calc(var(--d, 0) * 70ms); }
@media (prefers-reduced-motion: reduce) {
  .insights-page .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons (page-scoped) ---------- */
.insights-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.16s;
  white-space: nowrap;
}
.insights-page .btn-primary { background: var(--mag); color: #fff; }
.insights-page .btn-primary:hover { background: #c2006a; transform: translateY(-1px); color: #fff; }
.insights-page .btn-navy { background: var(--navy); color: #fff; }
.insights-page .btn-navy:hover { background: #013257; transform: translateY(-1px); }
.insights-page .btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.insights-page .btn-ghost:hover { border-color: var(--navy); }
.insights-page .btn-ghost.on-dark { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.insights-page .btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }
.insights-page .btn:focus-visible { outline: 2px solid var(--mag); outline-offset: 3px; }

/* ===================== HERO ===================== */
.insights-page .hero {
  background:
    radial-gradient(900px 500px at 88% -12%, rgba(230, 0, 126, 0.16), transparent 60%),
    radial-gradient(700px 460px at 4% 120%, rgba(28, 127, 214, 0.22), transparent 60%),
    linear-gradient(180deg, #022f54, var(--navy));
  color: #fff;
  overflow: hidden;
  position: relative;
}
.insights-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(700px 400px at 70% 30%, #000, transparent 75%);
  mask-image: radial-gradient(700px 400px at 70% 30%, #000, transparent 75%);
  pointer-events: none;
}
.insights-page .hero .wrap { position: relative; z-index: 2; padding-block: clamp(96px, 12vw, 118px) clamp(56px, 8vw, 78px); }
.insights-page .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 54px; align-items: center; }
.insights-page .hero h1 { font-size: clamp(52px, 8vw, 104px); line-height: 0.96; letter-spacing: -0.03em; color: #fff; }
.insights-page .hero-title { margin-top: 18px; }
.insights-page .hero .tag { font-size: 19px; color: #BFD3E6; margin-top: 22px; max-width: 30ch; font-family: var(--serif); font-style: italic; }
.insights-page .hero .supp { font-size: 14.5px; color: #90AAC4; margin-top: 20px; max-width: 52ch; line-height: 1.7; }
.insights-page .hero-cta { display: flex; gap: 13px; margin-top: 30px; flex-wrap: wrap; }
.insights-page .hero-stats { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
@media (max-width: 560px) { .insights-page .hero-stats { gap: 20px 28px; } }
.insights-page .hs .n { font-family: var(--mono); font-size: 30px; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.insights-page .hs .n .u { color: var(--teal); }
.insights-page .hs .l { font-size: 12px; color: #8CA6BF; margin-top: 3px; max-width: 18ch; }

/* Hero glass index card */
.insights-page .glass {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 24px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
}
.insights-page .glass .gh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.insights-page .glass .gh .t { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #BFD3E6; }
.insights-page .glass .gh .live { font-family: var(--mono); font-size: 10px; color: var(--teal); display: flex; align-items: center; gap: 6px; }
.insights-page .glass .gh .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: insPulse 2s infinite; }
@keyframes insPulse {
  0% { box-shadow: 0 0 0 0 rgba(230, 0, 126, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(230, 0, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 0, 126, 0); }
}
.insights-page .glass .gval { font-family: var(--mono); font-size: 42px; font-weight: 700; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.insights-page .glass .gval-unit { font-size: 22px; color: var(--teal); }
.insights-page .glass .gsub { font-size: 12.5px; color: #9FB6CC; margin: 4px 0 14px; }
.insights-page .glass .gsub b { color: var(--teal); }
.insights-page .spark { display: flex; align-items: flex-end; gap: 4px; height: 70px; }
.insights-page .spark i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--steel2), var(--steel)); opacity: 0.9; }
.insights-page .spark i:last-child { background: linear-gradient(180deg, #ff5cb0, var(--teal)); }
.insights-page .glass .grow { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: #9FB6CC; margin-top: 10px; }

@media (max-width: 880px) {
  .insights-page .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .insights-page .glass { max-width: 440px; }
}

/* ===================== FEATURED + TRENDING ===================== */
.insights-page .feat-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 26px; align-items: start; }
.insights-page .feature { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--card); transition: 0.25s; cursor: pointer; box-shadow: 0 1px 2px rgba(16, 38, 68, 0.04); }
.insights-page .feature:hover { box-shadow: 0 28px 60px -34px rgba(16, 38, 68, 0.42); transform: translateY(-3px); }
.insights-page .feature .img { height: 340px; position: relative; overflow: hidden; }
.insights-page .cover { width: 100%; height: 100%; position: absolute; inset: 0; overflow: hidden; }
.insights-page .feature .body { padding: 28px 30px 30px; }
.insights-page .feature h2 { font-size: 30px; line-height: 1.1; color: var(--navy); margin: 12px 0 10px; }
.insights-page .feature .sum { font-size: 15.5px; color: var(--muted); line-height: 1.6; }
.insights-page .meta { display: flex; align-items: center; gap: 14px; margin-top: 18px; font-family: var(--mono); font-size: 11.5px; color: var(--faint); }
.insights-page .meta .au { display: flex; align-items: center; gap: 8px; color: var(--ink); }
.insights-page .avatar { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-family: var(--sans); font-size: 11px; font-weight: 700; color: #fff; background: var(--steel); }
.insights-page .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--faint); }

.insights-page .trend-col { display: flex; flex-direction: column; gap: 16px; }
.insights-page .trend-head { display: flex; align-items: center; gap: 10px; margin-bottom: 2px; }
.insights-page .trend-head .eyebrow { color: var(--mag); }
.insights-page .tcard { display: grid; grid-template-columns: 96px 1fr; gap: 16px; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; background: var(--card); cursor: pointer; transition: 0.2s; }
.insights-page .tcard:hover { border-color: var(--steel2); transform: translateX(3px); }
.insights-page .tcard .img { height: 100%; min-height: 104px; position: relative; overflow: hidden; }
.insights-page .tcard .body { padding: 14px 16px 14px 0; }
.insights-page .tcard h4 { font-size: 15.5px; line-height: 1.2; color: var(--navy); margin: 6px 0; }
.insights-page .tcard .sum { font-size: 12.5px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.insights-page .tcard .rt { font-family: var(--mono); font-size: 10.5px; color: var(--faint); margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.insights-page .arw { transition: transform 0.2s; }
.insights-page .tcard:hover .arw { transform: translateX(4px); }

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

/* category tag + type badge */
.insights-page .ctag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--steel); }
.insights-page .badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; padding: 4px 9px; border-radius: 5px; color: #fff; }
.insights-page .badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, 0.85); }

/* ===================== STICKY FILTER + SEARCH ===================== */
.insights-page .filterbar {
  position: sticky;
  top: 68px; /* clears the global fixed header */
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.insights-page .filterbar .row { display: flex; align-items: center; gap: 18px; padding: 14px 0; }
.insights-page .chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: thin; padding-bottom: 2px; flex: 1; }
.insights-page .chips::-webkit-scrollbar { height: 5px; }
.insights-page .chips::-webkit-scrollbar-thumb { background: var(--line); border-radius: 5px; }
.insights-page .chip { appearance: none; border: 1px solid var(--line); background: #fff; color: var(--muted); font-family: var(--sans); font-size: 13px; font-weight: 600; padding: 8px 15px; border-radius: 999px; cursor: pointer; white-space: nowrap; transition: 0.14s; }
.insights-page .chip:hover { border-color: var(--steel2); color: var(--navy); }
.insights-page .chip[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.insights-page .chip[aria-pressed="true"].all { background: var(--mag); border-color: var(--mag); }
.insights-page .search { position: relative; flex: none; width: 260px; }
.insights-page .search input { width: 100%; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px 10px 38px; font-family: var(--sans); font-size: 14px; background: #fff; color: var(--ink); }
.insights-page .search input:focus { outline: 2px solid var(--steel2); outline-offset: 0; border-color: transparent; }
.insights-page .search svg { position: absolute; left: 13px; top: 11px; color: #9AA6B4; }
@media (max-width: 680px) {
  .insights-page .search { display: none; }
}

/* ===================== ARTICLE GRID + SIDEBAR ===================== */
.insights-page .main-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.insights-page .grid-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; }
.insights-page .grid-title { font-size: 24px; color: var(--navy); }
.insights-page #gridCount { font-size: 12px; color: var(--faint); }
.insights-page .grid-more { text-align: center; margin-top: 38px; }
.insights-page .article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.insights-page .acard { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--card); cursor: pointer; position: relative; transition: 0.24s; display: flex; flex-direction: column; }
.insights-page .acard::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--mag); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.insights-page .acard:hover { box-shadow: 0 26px 56px -34px rgba(16, 38, 68, 0.42); transform: translateY(-4px); }
.insights-page .acard:hover::after { transform: scaleX(1); }
.insights-page .acard .img { height: 172px; position: relative; overflow: hidden; }
.insights-page .acard .img .cover { transition: transform 0.5s; }
.insights-page .acard:hover .img .cover { transform: scale(1.06); }
.insights-page .acard .badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.insights-page .acard .tools { position: absolute; top: 10px; right: 10px; z-index: 2; display: flex; gap: 6px; opacity: 0; transition: 0.2s; }
.insights-page .acard:hover .tools { opacity: 1; }
.insights-page .tool { width: 30px; height: 30px; border-radius: 8px; border: 0; background: rgba(255, 255, 255, 0.92); display: grid; place-items: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); }
.insights-page .tool:hover { background: #fff; }
.insights-page .tool.on svg path, .insights-page .tool.on svg { fill: var(--mag); stroke: var(--mag); }
.insights-page .acard .body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.insights-page .acard .ctag { margin-bottom: 8px; }
.insights-page .acard h3 { font-size: 18.5px; line-height: 1.18; color: var(--navy); margin-bottom: 9px; }
.insights-page .acard .sum { font-size: 13.5px; color: var(--muted); line-height: 1.55; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.insights-page .acard .meta { margin-top: 16px; }
.insights-page .empty { padding: 50px; text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: 14px; font-size: 15px; }
.insights-page .empty[hidden] { display: none; }
.insights-page .linklike { background: none; border: 0; color: var(--mag); font-weight: 700; cursor: pointer; font-size: 15px; }

.insights-page .sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 132px; }
.insights-page .side-card { border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.insights-page .side-card.subscribe { background: linear-gradient(165deg, #023056, var(--navy)); border-color: transparent; color: #fff; }
.insights-page .side-card.index { background: var(--navy); border-color: transparent; color: #fff; }
.insights-page .side-sub-copy { font-size: 13.5px; color: #CFE0F0; margin: 8px 0 14px; }
.insights-page .side-sub input { width: 100%; border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.08); color: #fff; border-radius: 8px; padding: 10px 12px; font-size: 13.5px; }
.insights-page .side-sub input::placeholder { color: #9FB6CC; }
.insights-page .side-sub .btn { width: 100%; justify-content: center; margin-top: 8px; }
.insights-page .side-h { font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 14px; }
.insights-page .side-h-white { color: #fff; }
.insights-page .popular { list-style: none; padding: 0; margin: 0; counter-reset: pp; }
.insights-page .popular li { display: flex; gap: 13px; padding: 11px 0; border-top: 1px solid var(--line2); cursor: pointer; }
.insights-page .popular li:first-child { border-top: 0; }
.insights-page .popular li::before { counter-increment: pp; content: counter(pp); font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--steel2); flex: none; }
.insights-page .popular li:hover .pt { color: var(--mag); }
.insights-page .popular .pt { font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.3; transition: 0.15s; }
.insights-page .popular .pm { font-family: var(--mono); font-size: 10.5px; color: var(--faint); margin-top: 3px; }
.insights-page .bench { display: flex; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line2); cursor: pointer; align-items: center; }
.insights-page .bench:first-child { border-top: 0; }
.insights-page .bench .bi { width: 38px; height: 46px; border-radius: 5px; background: linear-gradient(160deg, var(--steel), var(--navy)); flex: none; position: relative; }
.insights-page .bench .bi::after { content: ""; position: absolute; left: 6px; right: 6px; top: 9px; height: 2px; background: rgba(255, 255, 255, 0.55); box-shadow: 0 5px 0 rgba(255, 255, 255, 0.4), 0 10px 0 rgba(255, 255, 255, 0.3), 0 15px 0 rgba(255, 255, 255, 0.25); }
.insights-page .bench .bt { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.insights-page .bench:hover .bt { color: var(--mag); }
.insights-page .bench .bd { font-family: var(--mono); font-size: 10px; color: var(--faint); margin-top: 3px; }
.insights-page .index .ix-row { display: flex; justify-content: space-between; font-size: 13px; color: #CFE0F0; padding: 8px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.insights-page .index .ix-row:first-of-type { border-top: 0; }
.insights-page .index .ix-row b { color: #fff; }
.insights-page .ix-note { font-size: 10px; color: #7E97B0; margin-top: 12px; }

@media (max-width: 1000px) {
  .insights-page .main-grid { grid-template-columns: 1fr; }
  .insights-page .sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .insights-page .side-card { flex: 1; min-width: 240px; }
}
@media (max-width: 560px) {
  .insights-page .article-grid { grid-template-columns: 1fr; }
  .insights-page .sidebar { flex-direction: column; }
}

/* ===================== SECTION HEADS + RESOURCES ===================== */
.insights-page .sec-head { margin-bottom: 40px; }
.insights-page .sec-head .eyebrow { display: block; margin-bottom: 13px; }
.insights-page .big { font-size: clamp(28px, 3.6vw, 40px); color: var(--navy); letter-spacing: -0.02em; }
.insights-page .res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insights-page .res { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 14px; transition: 0.22s; cursor: pointer; }
.insights-page .res:hover { transform: translateY(-4px); box-shadow: 0 26px 56px -34px rgba(16, 38, 68, 0.4); border-color: var(--steel2); }
.insights-page .res .ricon { width: 46px; height: 54px; border-radius: 7px; background: linear-gradient(160deg, var(--steel), var(--navy)); position: relative; box-shadow: 0 8px 18px -8px rgba(0, 37, 69, 0.5); }
.insights-page .res .ricon::after { content: ""; position: absolute; left: 9px; right: 9px; top: 12px; height: 2.5px; background: rgba(255, 255, 255, 0.6); box-shadow: 0 7px 0 rgba(255, 255, 255, 0.45), 0 14px 0 rgba(255, 255, 255, 0.3), 0 21px 0 rgba(255, 255, 255, 0.2); }
.insights-page .res .rt { font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--navy); line-height: 1.2; }
.insights-page .res .rk { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.insights-page .res .rd { font-size: 13px; color: var(--muted); flex: 1; }
.insights-page .res .rl { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--mag); }
.insights-page .res:hover .rl .arw { transform: translateX(4px); }
@media (max-width: 860px) { .insights-page .res-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .insights-page .res-grid { grid-template-columns: 1fr; } }

/* ===================== MONTHLY REPORTS ===================== */
.insights-page .month-list { display: flex; flex-direction: column; gap: 14px; }
.insights-page .month { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; border: 1px solid var(--line); border-radius: 14px; padding: 22px 26px; cursor: pointer; transition: 0.2s; background: #fff; }
.insights-page .month:hover { border-color: var(--navy); transform: translateX(4px); }
.insights-page .month .cad { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: #fff; background: var(--steel); padding: 6px 11px; border-radius: 6px; white-space: nowrap; }
.insights-page .month .cad.q { background: var(--teal); }
.insights-page .month h3 { font-size: 20px; color: var(--navy); margin-bottom: 4px; }
.insights-page .month p { font-size: 13.5px; color: var(--muted); }
.insights-page .month .go { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--mag); white-space: nowrap; }
.insights-page .month:hover .go .arw { transform: translateX(4px); }
@media (max-width: 680px) {
  .insights-page .month { grid-template-columns: 1fr; gap: 10px; }
  .insights-page .month .go { display: none; }
}

/* ===================== SPOTLIGHTS CAROUSEL ===================== */
.insights-page .caro-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.insights-page .caro-eyebrow { display: block; margin-bottom: 13px; }
.insights-page .caro-nav { display: flex; gap: 10px; }
.insights-page .cbtn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 22px; color: var(--navy); cursor: pointer; transition: 0.16s; line-height: 1; }
.insights-page .cbtn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.insights-page .caro { display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth; padding: 6px clamp(20px, 4vw, 34px) 24px; scroll-snap-type: x mandatory; scrollbar-width: none; max-width: 1240px; margin: 0 auto; }
.insights-page .caro::-webkit-scrollbar { display: none; }
.insights-page .spot { flex: 0 0 300px; scroll-snap-align: start; border-radius: 16px; overflow: hidden; position: relative; height: 340px; cursor: pointer; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; transition: 0.25s; }
.insights-page .spot:hover { transform: translateY(-5px); }
.insights-page .spot .sbg { position: absolute; inset: 0; z-index: 0; }
.insights-page .spot .sov { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0, 20, 40, 0) 30%, rgba(0, 20, 40, 0.86)); }
.insights-page .spot > * { position: relative; z-index: 2; }
.insights-page .spot .sk { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: #CFE0F0; }
.insights-page .spot h3 { font-size: 23px; margin: 7px 0 8px; color: #fff; }
.insights-page .spot .smet { font-family: var(--mono); font-size: 12.5px; color: #CFE0F0; }
.insights-page .spot .smet b { color: #fff; }
.insights-page .spot .sgo { margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: #fff; opacity: 0; transform: translateY(6px); transition: 0.2s; }
.insights-page .spot:hover .sgo { opacity: 1; transform: none; }

/* ===================== DATA VISUALIZATIONS ===================== */
.insights-page .kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 24px; }
.insights-page .dkpi { border: 1px solid var(--line); border-radius: 13px; padding: 20px 22px; background: #fff; }
.insights-page .dkpi .dv { font-family: var(--mono); font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; }
.insights-page .dkpi.acc .dv { color: var(--mag); }
.insights-page .dkpi .dl { font-size: 12.5px; color: var(--muted); margin-top: 7px; }
.insights-page .dkpi .dt { font-family: var(--mono); font-size: 11px; color: var(--teal); margin-top: 5px; font-weight: 700; }
.insights-page .viz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.insights-page .viz { border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px 16px; background: #fff; }
.insights-page .viz .vt { font-family: var(--serif); font-weight: 700; font-size: 17px; color: var(--navy); }
.insights-page .viz .vn { font-size: 12px; color: var(--faint); margin: 2px 0 10px; }
.insights-page .cv { position: relative; width: 100%; height: 280px; }
.insights-page .disc { font-family: var(--mono); font-size: 11px; color: var(--faint); margin-top: 16px; }
@media (max-width: 860px) {
  .insights-page .kpi-row { grid-template-columns: 1fr 1fr; }
  .insights-page .viz-grid { grid-template-columns: 1fr; }
}

/* ===================== EXECUTIVE AUTHORS ===================== */
.insights-page .author-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.insights-page .author { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; text-align: center; transition: 0.22s; }
.insights-page .author:hover { transform: translateY(-4px); box-shadow: 0 26px 56px -34px rgba(16, 38, 68, 0.4); }
.insights-page .author .ava { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-family: var(--serif); font-size: 27px; font-weight: 700; color: #fff; box-shadow: 0 12px 26px -12px rgba(0, 37, 69, 0.5); }
.insights-page .author h3 { font-size: 18.5px; color: var(--navy); }
.insights-page .author .role { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); margin-top: 4px; }
.insights-page .author .bio { font-size: 13px; color: var(--muted); margin-top: 12px; line-height: 1.55; }
.insights-page .author .exp { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.insights-page .author .tagx { font-size: 10.5px; font-weight: 600; color: var(--steel); background: #EEF3F9; border-radius: 999px; padding: 4px 10px; }
.insights-page .author .afoot { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line2); font-family: var(--mono); font-size: 11px; color: var(--faint); }
.insights-page .author .li { color: var(--steel); font-weight: 700; cursor: pointer; }
.insights-page .author .li:hover { color: var(--mag); }
@media (max-width: 860px) { .insights-page .author-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .insights-page .author-grid { grid-template-columns: 1fr; } }

/* ===================== NEWSLETTER ===================== */
.insights-page .pad-news { padding-block: clamp(3.5rem, 7vw, 72px); }
.insights-page .news { position: relative; border-radius: 22px; overflow: hidden; padding: clamp(40px, 6vw, 64px) 32px; text-align: center; background: linear-gradient(160deg, #022f54, var(--navy)); }
.insights-page .news-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px); background-size: 40px 40px; -webkit-mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 70%); mask-image: radial-gradient(600px 300px at 50% 0%, #000, transparent 70%); animation: insDrift 30s linear infinite; }
@keyframes insDrift { from { background-position: 0 0, 0 0; } to { background-position: 40px 40px, 40px 40px; } }
.insights-page .news-inner { position: relative; z-index: 2; }
.insights-page .news-title { font-size: clamp(30px, 4vw, 46px); color: #fff; margin-top: 12px; letter-spacing: -0.02em; }
.insights-page .news-copy { color: #BFD3E6; font-size: 17px; margin: 14px auto 0; max-width: 48ch; }
.insights-page .news-form { display: flex; gap: 10px; max-width: 480px; margin: 26px auto 0; }
.insights-page .news-form input { flex: 1; border: 1px solid rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.1); color: #fff; border-radius: 9px; padding: 14px 16px; font-size: 15px; }
.insights-page .news-form input::placeholder { color: #9FB6CC; }
.insights-page .news-form input:focus { outline: 2px solid var(--teal); outline-offset: 0; }
.insights-page .news-msg { font-size: 11px; color: #7E97B0; margin-top: 14px; }
@media (max-width: 560px) { .insights-page .news-form { flex-direction: column; } }

/* ===================== CLOSING CTA ===================== */
.insights-page .closing-cta { background: var(--navy); color: #fff; padding-block: clamp(3.5rem, 8vw, 78px); }
.insights-page .closing-inner { text-align: center; }
.insights-page .closing-title { font-size: clamp(28px, 3.8vw, 44px); letter-spacing: -0.02em; max-width: 20ch; margin: 0 auto; color: #fff; }
.insights-page .closing-lede { color: #AFC6DC; margin: 18px auto 0; max-width: 64ch; }
.insights-page .closing-actions { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

/* ===================== COVER ART (generated motifs) ===================== */
.insights-page .cover svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.insights-page .cmono { position: absolute; left: 16px; bottom: 13px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.78); font-weight: 600; z-index: 3; }
.insights-page .cover .cbig { position: absolute; right: -6px; top: -14px; font-family: var(--serif); font-weight: 700; font-size: 120px; color: rgba(255, 255, 255, 0.07); line-height: 1; z-index: 2; }
