/* ============================================
   MEB CREATIV — Hero Section
   ============================================ */

.hero {
  background: var(--color-midnight);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: var(--space-section);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(91,110,245,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero__glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,110,245,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero__glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: var(--weight-black);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-white);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-slate-400);
  line-height: var(--leading-loose);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* Hero visual / diagram area */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__diagram {
  width: 100%;
  max-width: 480px;
}

/* ── Responsive ──────────────────────────────── */

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero__visual {
    justify-content: flex-end;
  }
}
