* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #050505;
  color: white;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 24px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(24px);
  background: rgba(0,0,0,.45);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: #ff4ecd;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  padding: 10px 18px;
  border-radius: 14px;
  transition: .3s;
  font-size: 14px;
}

.nav-links a:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.55), #050505);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  padding-top: 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  margin-bottom: 32px;
}

h1 {
  font-size: clamp(56px, 8vw, 120px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -4px;
  margin-bottom: 28px;
}

.hero p {
  font-size: clamp(18px, 2vw, 28px);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 42px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-gradient {
  padding: 22px 40px;
  border-radius: 24px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  transition: .35s;
}

.btn-primary {
  background: white;
  color: black;
}

.btn-gradient {
  background: linear-gradient(135deg,#ff4ecd,#ff7b00);
  color: white;
  box-shadow: 0 20px 60px rgba(255,78,205,.3);
}

.btn-primary:hover,
.btn-gradient:hover {
  transform: translateY(-4px) scale(1.03);
}

.section {
  padding: 120px 0;
}

.section-title {
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: clamp(42px,5vw,72px);
  font-weight: 900;
  margin-bottom: 18px;
}

.section-title p {
  font-size: 22px;
  color: rgba(255,255,255,.58);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 28px;
}

.card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.05);
  transition: .4s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(255,78,205,.18);
}

.card img {
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.card:hover img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.2), transparent);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 5;
}

.card-content h3 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 16px;
}

.card-content button {
  border: none;
  background: white;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
}

.parallel-box {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  min-height: 620px;
  border: 1px solid rgba(255,255,255,.08);
}

.parallel-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}

.parallel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.85), rgba(0,0,0,.3));
}

.parallel-content {
  position: relative;
  z-index: 5;
  padding: 80px;
  max-width: 760px;
}

.parallel-content h2 {
  font-size: clamp(48px,6vw,88px);
  line-height: .95;
  font-weight: 900;
  margin-bottom: 30px;
}

.parallel-content p {
  font-size: 22px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 42px;
}

.email-box {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.email-box input {
  flex: 1;
  min-width: 260px;
  height: 66px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.08);
  padding: 0 22px;
  color: white;
  font-size: 17px;
  outline: none;
}

.email-box button {
  border: none;
  padding: 0 34px;
  border-radius: 18px;
  background: linear-gradient(135deg,#ff4ecd,#ff7b00);
  color: white;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

footer {
  padding: 60px 0;
  text-align: center;
  color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.06);
}

@media(max-width:900px){
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-gradient {
    width: 100%;
    max-width: 420px;
  }

  .parallel-content {
    padding: 50px 30px;
  }
}

@media(max-width:640px){
  .navbar-inner {
    flex-direction: column;
    gap: 18px;
  }

  .hero {
    min-height: 900px;
  }

  h1 {
    letter-spacing: -2px;
  }
}

.futuristic {
  position: relative;
  background: radial-gradient(circle at top left, rgba(255,78,205,.18), transparent 35%),
              radial-gradient(circle at bottom right, rgba(0,195,255,.18), transparent 35%),
              rgba(255,255,255,.03);
}

.parallel-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: 1px;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 18px;
  margin-bottom: 42px;
}

.identity-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: 26px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  transition: .45s;
  animation: floatCard 6s ease-in-out infinite;
}

.identity-card:nth-child(2) {
  animation-delay: 1s;
}

.identity-card:nth-child(3) {
  animation-delay: 2s;
}

.identity-card:nth-child(4) {
  animation-delay: 3s;
}

.identity-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.identity-card span {
  font-size: 34px;
}

.identity-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.identity-card small {
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.glass {
  background: rgba(255,255,255,.08);
}

.neon {
  background: rgba(0,195,255,.12);
  box-shadow: 0 0 40px rgba(0,195,255,.12);
}

.magic {
  background: rgba(173,90,255,.12);
  box-shadow: 0 0 40px rgba(173,90,255,.12);
}

.idol {
  background: rgba(255,78,205,.12);
  box-shadow: 0 0 40px rgba(255,78,205,.12);
}

.floating {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .35;
  animation: floating 10s infinite ease-in-out;
}

.floating-1 {
  width: 260px;
  height: 260px;
  background: #ff4ecd;
  top: -60px;
  right: -40px;
}

.floating-2 {
  width: 200px;
  height: 200px;
  background: #00c3ff;
  bottom: 0;
  left: -60px;
  animation-delay: 2s;
}

.floating-3 {
  width: 160px;
  height: 160px;
  background: #8a5cff;
  top: 40%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes floating {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-30px) translateX(20px);
  }

  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media(max-width:768px){

  .identity-grid {
    grid-template-columns: 1fr;
  }

  .identity-card {
    padding: 20px;
  }

}
