/* ═══════════════════════════════════════════════════════════
   Homepage — "Insights" highlight section
   Three candidate directions (A / B / C) for replacing the fixed
   "What AI is really doing to your organisation" section.

   Purely additive. All selectors new and prefixed .ih-* so nothing
   else on the site is affected. Load after styles.css + additions.css.
   ═══════════════════════════════════════════════════════════ */

/* ── Shared: section head ──────────────────────────────────── */
.ih-lede {
  margin: 26px 0 0;
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.5;
  color: rgba(64, 31, 76, 0.82);
  max-width: 52ch;
  text-wrap: pretty;
}
.ih-lede b { font-weight: 800; color: var(--purple); }

/* "All insights" arrow link, in the site's existing CTA language */
.ih-all {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--purple);
  transition: gap .2s ease;
}
.ih-all svg { width: 30px; height: 14px; flex: none; }
.ih-all svg path { stroke: currentColor; }
.ih-all:hover { gap: 18px; }

/* Freshness marker — the whole point of the section */
.ih-when {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ih-when::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--turquoise);
  flex: none;
}

/* ═══ A · Editorial rows ═══════════════════════════════════════
   Hairline-separated full-width rows, echoing the Insights index
   itself. Quietest of the three; reads as a publication. */
.ih-rows { margin-top: 56px; border-top: 2px solid var(--purple); }
.ih-row { border-bottom: 1px solid rgba(64, 31, 76, 0.18); }
.ih-row > a {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 44px;
  align-items: baseline;
  padding: 38px 0;
  color: inherit;
  transition: padding-left .25s ease;
}
.ih-row:hover > a { padding-left: 18px; }
.ih-row__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(64, 31, 76, 0.55);
}
.ih-row__pillar { color: var(--purple); }
.ih-row__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--purple);
  max-width: 30ch;
  text-wrap: balance;
  transition: color .2s ease;
}
.ih-row:hover .ih-row__title { color: #6b3d7a; }
.ih-row__dek {
  margin: 14px 0 0;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(64, 31, 76, 0.78);
  max-width: 58ch;
}
.ih-row__arrow {
  align-self: center;
  width: 34px;
  height: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.ih-row__arrow path { stroke: var(--purple); }
.ih-row:hover .ih-row__arrow { opacity: 1; transform: none; }

/* ═══ B · Split — lede left, stacked cards right ════════════════
   Echoes the asymmetric rhythm of the section it replaces:
   argument on the left, the evidence stacked on the right. */
.ih-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
.ih-split__stack { display: flex; flex-direction: column; gap: 22px; }
.ih-card {
  display: block;
  background: var(--purple);
  color: var(--white);
  border-radius: 20px;
  padding: 36px 38px 34px;
  transition: transform .22s ease;
}
.ih-card:hover { transform: translateY(-3px); }
.ih-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.ih-card__pillar {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turquoise);
}
.ih-card .ih-when { color: rgba(255, 255, 255, 0.6); }
.ih-card__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--white);
  text-wrap: balance;
}
.ih-card__dek {
  margin: 16px 0 0;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
}
.ih-card__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--turquoise);
  transition: gap .2s ease;
}
.ih-card__more svg { width: 26px; height: 12px; flex: none; }
.ih-card__more svg path { stroke: var(--turquoise); }
.ih-card:hover .ih-card__more { gap: 16px; }

/* ═══ C · Featured + secondary ═════════════════════════════════
   The newest piece takes the width; the previous one sits beside
   it, outlined. Strongest signal of "this is fresh". */
.ih-feature {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 26px;
  margin-top: 56px;
  align-items: stretch;
}
.ih-feature .ih-card { display: flex; flex-direction: column; }
.ih-feature .ih-card--lead { padding: 48px 50px 44px; }
.ih-feature .ih-card--lead .ih-card__title { font-size: clamp(28px, 2.9vw, 42px); }
.ih-feature .ih-card--lead .ih-card__more { margin-top: auto; padding-top: 30px; }
/* Secondary: outlined, so the featured card carries the weight */
.ih-card--quiet {
  background: var(--white);
  border: 1.5px solid rgba(64, 31, 76, 0.2);
  color: var(--purple);
}
.ih-card--quiet .ih-card__pillar { color: var(--purple); }
.ih-card--quiet .ih-when { color: rgba(64, 31, 76, 0.55); }
.ih-card--quiet .ih-card__title { color: var(--purple); }
.ih-card--quiet .ih-card__dek { color: rgba(64, 31, 76, 0.78); }
.ih-card--quiet .ih-card__more { color: var(--purple); margin-top: auto; padding-top: 30px; }
.ih-card--quiet .ih-card__more svg path { stroke: var(--purple); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ih-split { grid-template-columns: 1fr; gap: 40px; }
  .ih-feature { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .ih-row > a { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .ih-row:hover > a { padding-left: 0; }
  .ih-row__meta { flex-direction: row; gap: 16px; align-items: center; }
  .ih-row__arrow { display: none; }
}
@media (max-width: 640px) {
  .ih-card { padding: 30px 28px 30px; }
  .ih-feature .ih-card--lead { padding: 34px 30px 32px; }
  .ih-card__top { flex-direction: column; align-items: flex-start; gap: 10px; }
}
