.hero {
  min-height: 100vh;

  max-width: 1400px;

  margin: auto;

  padding: 130px 60px 80px;

  display: grid;

  grid-template-columns: 1fr 1.1fr;

  align-items: center;

  gap: 60px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(255, 43, 214, 0.35);
  background: rgba(255, 43, 214, 0.08);
}

.hero-intro {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(60px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -4px;
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
  margin-top: 18px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-stats div {
  min-width: 120px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 6px;
}

.hero-stats span {
  color: var(--text-light);
  font-size: 14px;
}

.hero-project {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.project-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 43, 214, 0.25),
    rgba(255, 122, 0, 0.18),
    transparent 70%
  );
  filter: blur(70px);
  z-index: -1;
}

.project-window {
  width: 100%;
  max-width: 760px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(255, 43, 214, 0.18);
  transition: 0.45s;
}

.project-window:hover {
  transform: perspective(1800px) rotateY(-5deg) rotateX(3deg) translateY(-10px);
}

.project-window img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.project-window:hover img {
  transform: scale(1.02);
}

.project-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}

.project-tags span {
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 43, 214, 0.25);
  transition: 0.3s;
}

.project-tags span:hover {
  background: var(--gradient-main);
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
    padding: 130px 30px 70px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-description {
    max-width: 700px;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 60px;
  }

  .hero h1 {
    font-size: 56px;
    letter-spacing: -2px;
  }

  .hero h1 span {
    font-size: 30px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    width: 100%;
  }

  .hero-stats div {
    width: 100%;
  }
}

.hero {
  padding-top: 115px;
  gap: 70px;
}

.hero-badge {
  margin-top: 10px;
}

.hero-project {
  align-items: center;
  gap: 18px;
}

.project-window {
  max-width: 700px;
}

.project-tags {
  width: 100%;
  max-width: 620px;
  margin-top: 18px;
}

.hero-stats {
  margin-top: 26px;
}

.hero-project {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.project-window {
  max-width: 830px;
}

.project-tags {
  max-width: 760px;
  justify-content: center;
  margin-top: 32px;
  gap: 16px;
}

