/* ===== HERO ===== */
.hero-shapes-img {
  position: absolute;
  top: 0;
  right: -64px;
  height: 100%;
  width: auto;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 100px;
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}

.hero-blobs-top {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 300px;
  justify-content: flex-end;
}

.hero-blobs-bottom {
  position: absolute;
  bottom: 80px;
  right: 48px;
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.blob { 
  border-radius: 50%; 
  background: #0032FF; 
}

.blob-sm { width: 32px; height: 32px; }
.blob-md { width: 48px; height: 48px; }
.blob-lg { width: 64px; height: 64px; }
.blob-xl { width: 80px; height: 80px; }
.blob-xxl { width: 96px; height: 96px; }

.hero-blobs-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.blob-shape {
  width: 280px;
  height: 280px;
  background: #0032FF;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.hero-content {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-label {
  font-size: 14px;
  font-weight: 700;
  color: #0032FF;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title-wrap {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem;
  line-height: 0.9;
  color: #0032FF;
}

.hero-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0032FF;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 11px;
  color: #0032FF;
  max-width: 380px;
  line-height: 1.7;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .hero {
    padding: 80px 48px 80px;
    margin-top: 56px;
  }

  .hero-title {
    font-size: 7rem;
  }

  .hero-blobs-top {
    top: 24px;
    right: 24px;
    gap: 12px;
    max-width: 200px;
  }

  .blob-md { width: 40px; height: 40px; }
  .blob-lg { width: 56px; height: 56px; }
  .blob-xl { width: 72px; height: 72px; }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 24px 60px;
    margin-top: 48px;
  }

  .hero-shapes-img {
    display: none;
  }

  .hero-title-wrap {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .hero-title {
    font-size: 3.5rem;
    line-height: 0.95;
    margin-bottom: 8px;
  }

  .hero-year {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .hero-label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 10px;
  }

  .hero-blobs-top {
    display: none;
  }

  .hero-blobs-bottom {
    display: none;
  }

  .blob-sm { width: 24px; height: 24px; }
  .blob-md { width: 32px; height: 32px; }
  .blob-lg { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 16px;
    margin-top: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-year {
    display: none;
  }

  .hero-label {
    font-size: 11px;
  }
}
