/* ─── CTA FINALE ────────────────────────────────────────────────── */
#cta {
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,192,127,0.07) 0%, transparent 65%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.status-node {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 2.5rem;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(0,192,127,0.5);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(0,192,127,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(0,192,127,0); }
  100% { box-shadow: 0 0 0 0   rgba(0,192,127,0); }
}

.cta-quote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  letter-spacing: 0.01em;
}
.cta-quote-attr {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,192,127,0.5);
  margin-top: 0.65rem;
}
.cta-quote-attr::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(0,192,127,0.35);
  margin: 1.6rem auto 0;
}
.cta-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.cta-title em {
  font-size: 0.72em;
  display: block;
}
.cta-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-note {
  margin-top: 2rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.05em;
}

/* ─── CTA SECTION — GRID + LAYERED GLOW ──────────────────────── */
#cta-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,192,127,0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,192,127,0.038) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 0%, transparent 100%);
  animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(68px); }
}

/* Upgraded CTA glow: two nested orbs */
.cta-glow {
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  pointer-events: none;
}
.cta-glow::before {
  content: '';
  position: absolute;
  width: 1000px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,192,127,0.1) 0%, rgba(0,192,127,0.04) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: cta-orb-pulse 4.5s ease-in-out infinite;
}
.cta-glow::after {
  content: '';
  position: absolute;
  width: 480px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,192,127,0.2) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  filter: blur(24px);
  animation: cta-orb-pulse 4.5s ease-in-out infinite;
  animation-delay: -2.25s;
}
@keyframes cta-orb-pulse {
  0%, 100% { opacity: 0.65; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;    transform: translate(-50%,-50%) scale(1.1); }
}

/* CTA button larger */
#cta .btn-primary {
  padding: 1.25rem 2.9rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

/* CTA title subtle glow */
.cta-title {
  text-shadow: 0 0 80px rgba(0,192,127,0.07), 0 0 160px rgba(0,192,127,0.03);
}

/* Section decompression — breathing room enterprise */
#cta { padding: 10rem 2rem; }
