/* TCI Express Insights — vivid homepage
   Brand: blue #0054A5 · red #E30613
**************************************/

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --ih-blue: #0054a5;
  --ih-blue-deep: #003366;
  --ih-red: #e30613;
  --ih-cyan: #00c2d7;
  --ih-ink: #0f1724;
  --ih-muted: #5a6b7d;
  --ih-soft: #f0f6fc;
  --ih-white: #ffffff;
  --ih-radius: 1.25rem;
  --ih-shadow: 0 18px 50px rgba(0, 51, 102, 0.14);
  --ih-font: "Manrope", system-ui, sans-serif;
  --ih-display: "Sora", "Manrope", system-ui, sans-serif;
}

.insights-home {
  --bs-body-font-family: var(--ih-font);
  color: var(--ih-ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(0, 194, 215, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(227, 6, 19, 0.08), transparent 50%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 35%, #f4f8fc 100%);
  font-family: var(--ih-font);
  overflow-x: clip;
}

.insights-home a {
  color: inherit;
  text-decoration: none;
}

.insights-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ih-wrap {
  width: min(90%, calc(100% - 2.5rem));
  max-width: 90%;
  margin-inline: auto;
}

/* ——— Hero ——— */
.ih-hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: grid;
  align-items: center;
  isolation: isolate;
  color: var(--ih-white);
  overflow: hidden;
}

.ih-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, var(--ih-blue-deep), var(--ih-blue) 45%, #0a7cc7);
}

.ih-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ih-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(0, 26, 54, 0.92) 0%,
      rgba(0, 51, 102, 0.78) 38%,
      rgba(0, 84, 165, 0.45) 62%,
      rgba(227, 6, 19, 0.28) 100%
    ),
    linear-gradient(180deg, rgba(0, 26, 54, 0.35) 0%, transparent 40%, rgba(0, 26, 54, 0.55) 100%);
}

.ih-hero__content {
  width: min(90%, calc(100% - 2.5rem));
  max-width: 90%;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.15fr);
  grid-template-areas:
    "intro card"
    "actions card";
  column-gap: clamp(1.5rem, 4vw, 3rem);
  row-gap: 1.15rem;
  align-items: center;
}

.ih-hero__intro {
  grid-area: intro;
  min-width: 0;
  align-self: end;
}

.ih-hero__actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  align-self: start;
}

.ih-hero__card {
  position: relative;
  display: block;
  grid-area: card;
  align-self: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--ih-radius) + 0.35rem);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 20, 50, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 30, 60, 0.35);
  color: #fff !important;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ih-hero__card:hover,
.ih-hero__card:focus {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 20, 50, 0.5);
  color: #fff !important;
}

.ih-hero__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.ih-hero__card:hover img,
.ih-hero__card:focus img {
  transform: scale(1.05);
}

.ih-hero__card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 194, 215, 0.95);
  color: #04222a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ih-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  max-width: 100%;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 194, 215, 0.12);
  border: 1px solid rgba(0, 194, 215, 0.55);
  color: rgba(0, 210, 230, 0.95);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ih-kicker__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--ih-cyan);
  box-shadow: 0 0 0 4px rgba(0, 194, 215, 0.25);
  animation: ih-pulse 2s ease-in-out infinite;
}

.ih-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
  font-family: var(--ih-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.ih-brand__logo {
  display: block;
  width: clamp(14rem, 28vw, 22rem);
  height: auto;
  padding: 5px;
  background: #fff;
  border-radius: 0.45rem;
  box-shadow: 0 8px 24px rgba(0, 20, 50, 0.28);
}

.ih-brand span {
  display: block;
  color: var(--ih-cyan);
}

.ih-hero__title {
  max-width: 18ch;
  margin: 0 0 1rem;
  font-family: var(--ih-display);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ih-hero__lede {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.55;
}

.ih-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ih-btn:hover {
  transform: translateY(-2px);
}

.ih-btn--primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--ih-red), #ff4d3a);
  box-shadow: 0 12px 28px rgba(227, 6, 19, 0.35);
}

.ih-btn--ghost {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ih-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.ih-hero__meta {
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ——— Section chrome ——— */
.ih-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.ih-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ih-section__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--ih-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ih-section__title {
  margin: 0;
  font-family: var(--ih-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.ih-section__link {
  color: var(--ih-blue) !important;
  font-weight: 700;
}

.ih-section__link:hover {
  color: var(--ih-red) !important;
}

/* ——— Featured secondary strip ——— */
.ih-featured-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: -3.25rem;
  position: relative;
  z-index: 2;
}

.ih-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--ih-radius);
  overflow: hidden;
  box-shadow: var(--ih-shadow);
  background: #fff;
  color: var(--ih-ink) !important;
  border: 1px solid rgba(15, 35, 60, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ih-feature-card:hover,
.ih-feature-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 35, 60, 0.14);
  color: var(--ih-ink) !important;
}

.ih-feature-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #123;
}

.ih-feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.ih-feature-card:hover .ih-feature-card__media img {
  transform: scale(1.06);
}

.ih-feature-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.95rem 1rem 1.1rem;
  background: #fff;
}

.ih-feature-card__label {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 194, 215, 0.18);
  color: #066a76;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ih-feature-card h3 {
  margin: 0;
  font-family: var(--ih-display);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--ih-ink);
}

/* ——— Latest grid ——— */
.ih-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.ih-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  background: var(--ih-white);
  border: 1px solid rgba(0, 84, 165, 0.08);
  border-radius: var(--ih-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 40, 70, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ih-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 51, 102, 0.12);
}

.ih-card--wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
}

.ih-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ih-soft);
}

.ih-card--wide .ih-card__media {
  aspect-ratio: auto;
  min-height: 100%;
  height: 100%;
  align-self: stretch;
}

.ih-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ih-card:hover .ih-card__media img {
  transform: scale(1.06);
}

.ih-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 1.3rem 1.4rem;
  flex: 1;
}

.ih-card__date {
  color: var(--ih-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.ih-card h3 {
  margin: 0;
  font-family: var(--ih-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.ih-card--wide h3 {
  font-size: 1.45rem;
}

.ih-card__more {
  margin-top: auto;
  color: var(--ih-blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.ih-card:hover .ih-card__more {
  color: var(--ih-red);
}

/* ——— Topics ——— */
.ih-topics {
  background:
    linear-gradient(120deg, rgba(0, 84, 165, 0.06), rgba(0, 194, 215, 0.08)),
    #fff;
  border-block: 1px solid rgba(0, 84, 165, 0.08);
}

.ih-topics__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ih-topics__list a,
.ih-topics__list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 84, 165, 0.14);
  color: var(--ih-ink) !important;
  font-weight: 650;
  font-size: 0.92rem;
  box-shadow: 0 6px 16px rgba(0, 51, 102, 0.04);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ih-topics__list a:hover {
  border-color: var(--ih-blue);
  color: var(--ih-blue) !important;
  transform: translateY(-2px);
}

/* ——— CTA band ——— */
.ih-cta {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--ih-radius) + 0.35rem);
  padding: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  background:
    radial-gradient(600px 280px at 100% 0%, rgba(0, 194, 215, 0.35), transparent 50%),
    linear-gradient(115deg, var(--ih-blue-deep), var(--ih-blue) 55%, #0a6db8);
  box-shadow: var(--ih-shadow);
}

.ih-cta h2 {
  margin: 0 0 0.65rem;
  max-width: 16ch;
  font-family: var(--ih-display);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.03em;
}

.ih-cta p {
  margin: 0 0 1.4rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.ih-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Empty ——— */
.ih-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--ih-muted);
  background: #fff;
  border: 1px dashed rgba(0, 84, 165, 0.25);
  border-radius: var(--ih-radius);
}

/* ——— Motion ——— */
.ih-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: ih-rise 0.7s ease forwards;
}

.ih-reveal:nth-child(2) { animation-delay: 0.08s; }
.ih-reveal:nth-child(3) { animation-delay: 0.16s; }
.ih-reveal:nth-child(4) { animation-delay: 0.24s; }
.ih-reveal:nth-child(5) { animation-delay: 0.32s; }
.ih-reveal:nth-child(6) { animation-delay: 0.4s; }

@keyframes ih-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ih-kenburns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@keyframes ih-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 194, 215, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0, 194, 215, 0.08); }
}

@media (prefers-reduced-motion: reduce) {
  .ih-hero__video {
    display: none;
  }

  .ih-reveal,
  .ih-kicker__dot {
    animation: none !important;
  }

  .ih-reveal {
    opacity: 1;
    transform: none;
  }

  .ih-card:hover,
  .ih-btn:hover,
  .ih-feature-card:hover .ih-feature-card__media img,
  .ih-card:hover .ih-card__media img,
  .ih-hero__card:hover,
  .ih-hero__card:hover img {
    transform: none;
  }
}

/* ——— Responsive ——— */
@media (max-width: 1199.98px) {
  .ih-featured-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .ih-hero__content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "card"
      "actions";
    row-gap: 1.15rem;
    padding-top: 4.5rem;
  }

  .ih-hero__intro,
  .ih-hero__actions,
  .ih-hero__card {
    align-self: stretch;
    margin: 0;
  }

  .ih-featured-row {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .ih-card,
  .ih-card--wide {
    grid-column: span 12;
  }

  .ih-card--wide {
    grid-template-columns: 1fr;
  }

  .ih-card--wide .ih-card__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .ih-hero {
    min-height: 0;
  }

  .ih-hero__content {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }

  .ih-brand {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .ih-brand__logo {
    width: clamp(11.5rem, 58vw, 16rem);
  }
}
