/* Dark hero band under the header on the dashboard.
   Style taken from the reference the operator sent: pitch-black background,
   a white headline with a muted-grey second line, a small green accent badge,
   an electric-blue primary button, a dark charcoal pill as the secondary, and
   a "showcase" row of real media below it.

   Scope: everything here is namespaced to .nx-hero, so it cannot leak into the
   rest of the light-themed dashboard. The stock video grid keeps its own
   classes (.insp-*) and is retinted here rather than restyled in place, so the
   grid's layout rules stay the single source of truth. */

.nx-hero,
.nx-hero *,
.nx-hero *::before,
.nx-hero *::after { box-sizing: border-box; }

.nx-hero {
  --nx-bg: #000000;
  --nx-fg: #FFFFFF;
  --nx-muted: #9CA3AF;
  --nx-green: #22C55E;
  --nx-blue: #0062FF;
  --nx-blue-hover: #0052D6;
  --nx-pill: rgba(255, 255, 255, 0.08);
  --nx-pill-hover: rgba(255, 255, 255, 0.14);
  --nx-hairline: rgba(255, 255, 255, 0.10);

  background: var(--nx-bg);
  color: var(--nx-fg);
  border-radius: 22px;
  padding: 34px 30px 30px;
  margin-bottom: 30px;
}

/* ------------------------------------------------------------- hero copy */
.nx-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (min-width: 900px) {
  .nx-hero-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 44px;
  }
  .nx-hero-copy { flex: 1 1 auto; min-width: 0; }
  /* The reference sets the paragraph column slightly lower than the headline. */
  .nx-hero-aside { flex: 0 1 380px; min-width: 0; padding-top: 34px; }
}

.nx-hero-copy { min-width: 0; }

.nx-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--nx-hairline);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--nx-muted);
  letter-spacing: 0.01em;
}
.nx-badge .nx-badge-strong {
  color: var(--nx-green);
  font-weight: 800;
}
.nx-badge i { font-size: 10px; color: var(--nx-muted); }

.nx-title {
  margin: 20px 0 0;
  font-size: clamp(34px, 6.2vw, 62px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--nx-fg);
}
.nx-title-muted { color: var(--nx-muted); display: block; }

.nx-lede {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--nx-muted);
  max-width: 44ch;
}

.nx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.nx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nx-btn-primary { background: var(--nx-blue); color: #fff; }
.nx-btn-primary:hover { background: var(--nx-blue-hover); }
.nx-btn-ghost {
  background: var(--nx-pill);
  color: #fff;
  border: 1px solid var(--nx-hairline);
}
.nx-btn-ghost:hover { background: var(--nx-pill-hover); }

/* -------------------------------------------------------- showcase header */
.nx-showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--nx-hairline);
}
.nx-showcase-head > div { min-width: 0; }
.nx-showcase-eyebrow {
  margin: 0 0 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--nx-muted);
}
.nx-showcase-title {
  margin: 0;
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.16;
  color: var(--nx-fg);
}
.nx-showcase-sub {
  margin: 7px 0 0;
  font-size: 14.5px;
  color: var(--nx-muted);
  max-width: 62ch;
}
.nx-showcase-more {
  color: var(--nx-fg);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
}
.nx-showcase-more:hover { color: var(--nx-muted); }

/* ------------------------------------------------- retint the video grid
   Overrides only; the grid's own geometry stays in dashboard-inspiration.css. */
.nx-hero .insp-section { margin-bottom: 0; }
.nx-hero .insp-bar { margin: 0 0 14px; }

.nx-hero .insp-chip,
.nx-hero .insp-shuffle {
  background: var(--nx-pill);
  border-color: var(--nx-hairline);
  color: var(--nx-muted);
}
.nx-hero .insp-chip:hover,
.nx-hero .insp-shuffle:hover {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--nx-fg);
}
.nx-hero .insp-chip.is-active {
  background: var(--nx-fg);
  border-color: var(--nx-fg);
  color: #000;
}
.nx-hero .insp-card {
  background: #0b0b0f;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--nx-hairline);
}
.nx-hero .insp-over {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94) 14%, rgba(0, 0, 0, 0) 100%);
}
.nx-hero .insp-meta { color: var(--nx-muted); }
/* The reference's accent is a single electric blue: keep the CTA on it. */
.nx-hero .insp-cta { background: var(--nx-blue); }
.nx-hero .insp-cta:hover { background: var(--nx-blue-hover); }
.nx-hero .insp-empty {
  border-color: var(--nx-hairline);
  color: var(--nx-muted);
}
.nx-hero .insp-empty-link { color: var(--nx-fg); }

/* The offer banner lives inside the dark band; keep its own gradient but stop
   it from fighting the band's rhythm. */
.nx-hero .offer-banner { margin: 26px 0 0; }

/* Narrow screens: the reference is a wide desktop layout, so at phone widths
   stack everything and drop the padding rather than letting the band crowd. */
@media (max-width: 640px) {
  .nx-hero { padding: 24px 18px 22px; border-radius: 18px; }
  .nx-badge { font-size: 11.5px; padding: 5px 12px; }
  .nx-title { margin-top: 16px; }
  .nx-lede { font-size: 14.5px; max-width: none; }
  .nx-btn { padding: 11px 18px; font-size: 14px; }
  .nx-showcase-head { margin-top: 24px; padding-top: 18px; }
  .nx-showcase-more { font-size: 13.5px; }
}
