/* ============================================================
   Niyutam — Spotlight section
   ============================================================ */

:root {
  --sl-bg-page:    #0a0a0f;
  --sl-bg-card:    #111827;
  --sl-accent:     #C8FF00;
  --sl-text:       #ffffff;
  --sl-text-muted: rgba(255,255,255,0.60);
  --sl-gap:        20px;
  --sl-radius:     16px;
  --sl-pad:        clamp(2rem, 5vw, 3rem);
  --sl-min-h:      580px;
}

/* ── Section ─────────────────────────────────────────────── */
.spotlight {
  background: var(--sl-bg-page);
  width: 100%;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 3rem);
  box-sizing: border-box;
}

.spotlight__cards {
  display: flex;
  gap: var(--sl-gap);
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Card ─────────────────────────────────────────────────── */
.spotlight__card {
  position: relative;
  flex: 1 1 0;
  min-height: var(--sl-min-h);
  background: var(--sl-bg-card);
  border-radius: var(--sl-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ── Canvas background ───────────────────────────────────── */
.spotlight__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Gradient scrim ──────────────────────────────────────── */
.spotlight__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(17,24,39,0.10) 0%,
    rgba(17,24,39,0.40) 40%,
    rgba(17,24,39,0.88) 72%,
    rgba(17,24,39,0.97) 100%
  );
}

/* ── Content ─────────────────────────────────────────────── */
.spotlight__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: var(--sl-pad);
}

/* ── Tag pill ────────────────────────────────────────────── */
.spotlight__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sl-accent);
  border: 1px solid rgba(200,255,0,0.35);
  background: rgba(200,255,0,0.08);
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
  width: fit-content;
}

/* ── Heading ─────────────────────────────────────────────── */
.spotlight__h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--sl-text);
  line-height: 1.2;
  margin: 0;
}

/* ── Body ────────────────────────────────────────────────── */
.spotlight__body {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--sl-text-muted);
  margin: 0;
  max-width: 46ch;
}

/* ── Bullet list ─────────────────────────────────────────── */
.spotlight__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.spotlight__bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
}

.spotlight__bullets svg {
  flex-shrink: 0;
}

/* ── CTA ghost button ────────────────────────────────────── */
.spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 8px;
  background: transparent;
  color: var(--sl-text);
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.spotlight__cta:hover,
.spotlight__cta:focus-visible {
  background: var(--sl-text);
  border-color: var(--sl-text);
  color: #0a0a0f;
  outline: none;
}

.spotlight__cta:focus-visible {
  outline: 2px solid var(--sl-accent);
  outline-offset: 3px;
}

.spotlight__cta-arrow {
  transition: transform 0.22s ease;
}

.spotlight__cta:hover .spotlight__cta-arrow,
.spotlight__cta:focus-visible .spotlight__cta-arrow {
  transform: translateX(3px);
}

/* ── Mobile stack ─────────────────────────────────────────── */
@media (max-width: 767px) {
  .spotlight__cards {
    flex-direction: column;
  }

  .spotlight__card {
    min-height: 480px;
  }

  .spotlight__scrim {
    background: linear-gradient(
      to bottom,
      rgba(17,24,39,0.60) 0%,
      rgba(17,24,39,0.95) 45%,
      rgba(17,24,39,1) 100%
    );
  }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .spotlight__canvas {
    display: none;
  }

  .spotlight__scrim {
    background: rgba(17,24,39,0.96);
  }
}
