/* ============================================================
   Niyutam — CTA banner section
   ============================================================ */

:root {
  --cta-bg:     #0a0a0f;
  --cta-accent: #C8FF00;
  --cta-text:   #ffffff;
}

/* ── Section ─────────────────────────────────────────────── */
.cta {
  position: relative;
  background: var(--cta-bg);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

/* ── Custom Canvas Layer ─────────────────────────────────── */
.cta__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Background glow blobs (pure CSS, no JS) ─────────────── */
.cta::before,
.cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--cta-accent);
  opacity: 0.04;
  pointer-events: none;
  filter: blur(110px);
}

/* Top-left glow */
.cta::before {
  width: 700px;
  height: 700px;
  top: -220px;
  left: -180px;
}

/* Bottom-right glow */
.cta::after {
  width: 640px;
  height: 640px;
  bottom: -200px;
  right: -160px;
}

/* ── Inner container ─────────────────────────────────────── */
.cta__inner {
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 6vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* ── Eyebrow ─────────────────────────────────────────────── */
.cta__eyebrow {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cta-accent);
}

/* ── Heading ─────────────────────────────────────────────── */
.cta__heading {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--cta-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ── Subtext ─────────────────────────────────────────────── */
.cta__sub {
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.65;
  max-width: 600px;
  margin: 0;
}

/* ── Button row ──────────────────────────────────────────── */
.cta__buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease,
              border-color 0.22s ease, opacity 0.22s ease;
}

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

/* Primary */
.cta__btn--primary {
  background: var(--cta-accent);
  color: var(--cta-bg);
  border: 1.5px solid var(--cta-accent);
}

.cta__btn--primary:hover {
  background: #d9ff1a;
  border-color: #d9ff1a;
}

/* Ghost */
.cta__btn--ghost {
  background: transparent;
  color: var(--cta-text);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}

.cta__btn--ghost:hover {
  background: var(--cta-text);
  color: var(--cta-bg);
  border-color: var(--cta-text);
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 640px) {
  .cta {
    padding: 80px 0;
  }

  .cta__sub {
    font-size: 16px;
  }

  .cta__buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .cta__btn {
    width: 100%;
  }
}
