

/* =========================================================
   INTRO / HERO SECTION
========================================================= */

#intro-section {
  position: relative;
  min-height: 100vh;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-background);
  overflow: hidden;
  transition: transform 1s ease, opacity 1s ease;
}

#intro-section.fade-out {
  transform: scale(1.15);
  opacity: 0;
  pointer-events: none;
}

/* Glow background */
#intro-section::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: var(--gradient-radial);
  animation: pulse-glow 4s ease-in-out infinite alternate;
  z-index: 1;
}

/* =========================================================
   CONTENT LAYOUT
========================================================= */

.content-overlay {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  gap: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* =========================================================
   HEADLINE
========================================================= */

.bintelligy-text {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  background: linear-gradient(
    to right,
    var(--primary),
    var(--primary-glow),
    var(--accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--glow-green);
}

.bintelligy-underline {
  width: 8rem;
  height: 0.3rem;
  margin: 1.5rem auto 0rem;
  border-radius: 999px;
  background: linear-gradient(to right, var(--primary), var(--accent));
}

/* =========================================================
   TEXT BLOCKS
========================================================= */

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.4rem;
}

p {
  max-width: 42rem;
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--muted-foreground);
}

/* =========================================================
   STATUS BADGE
========================================================= */

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}


.cta-button {
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-glow)
  );

  box-shadow:
    0 0 25px rgba(45, 255, 154, 0.35),
    0 0 40px rgba(45, 255, 154, 0.25);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 0 45px rgba(45, 255, 154, 0.6),
    0 0 90px rgba(45, 255, 154, 0.35);
}

