@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0e0e16;
  color: #fff;
  overflow-x: hidden;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: #111122;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px;
  margin-right: 10px;
}

.logo h2 {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
}

.logo p {
  font-size: 0.8rem;
  color: #9d88ff;
  letter-spacing: 1px;
}

nav a {
  color: #bfbfff;
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

nav a.active,
nav a:hover {
  color: #fff;
}

nav a.active::after,
nav a:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

/* Hero Section */
.hero {
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, #8b5cf6 0%, transparent 70%);
  opacity: 0.1;
  animation: glow 6s infinite alternate;
}

@keyframes glow {
  from {
    transform: scale(1);
    opacity: 0.1;
  }
  to {
    transform: scale(1.3);
    opacity: 0.25;
  }
}

.background-text {
  font-size: 18vw;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  letter-spacing: 10px;
  z-index: 1;
}

.role {
  font-size: 1.5rem;
  color: #9f8cff;
  z-index: 2;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(150, 100, 255, 0.4);
}

.tagline {
  font-size: 1rem;
  color: #aaa;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.btn {
  background: linear-gradient(90deg, #8a6fff, #ff77c7);
  padding: 14px 40px;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  z-index: 2;
  position: relative;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 119, 199, 0.3);
}

.btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(255, 119, 199, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
  }

  nav a {
    margin-left: 15px;
  }

  .background-text {
    font-size: 28vw;
  }

  .tagline {
    padding: 0 20px;
  }
}
