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

body {
  min-height: 100vh;
  background: #05040a;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

.landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(112, 0, 255, 0.28), transparent 35%),
    radial-gradient(circle at 65% 45%, rgba(0, 255, 220, 0.16), transparent 30%),
    linear-gradient(180deg, #090515 0%, #020107 100%);
}

.glow {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(153, 58, 255, 0.35), transparent 65%);
  filter: blur(25px);
  animation: pulse 5s ease-in-out infinite;
  opacity: 0.5;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px;
}

.logo {
  width: min(400px, 65vw);
  margin-bottom: 32px;
  filter: drop-shadow(0 0 28px rgba(151, 70, 255, 0.65));
}

.signal {
  color: #20f6ff;
  letter-spacing: 0.35em;
  font-size: 0.85rem;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(32, 246, 255, 0.8);
}

h1 {
  font-size: clamp(1.4rem, 4vw, 3rem);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.description {
  color: #c9bddf;
  margin-bottom: 28px;
  font-size: 1rem;
}

.email {
  color: #20f6ff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: 0.3s;
}

.email:hover {
  text-shadow: 0 0 12px rgba(32, 246, 255, 0.9);
}

.socials {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.social-icon {
  width: 32px;
  height: 32px;
  transition: 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px rgba(32, 246, 255, 0.8));
}

.creator {
  margin-top: 40px;
  color: #5f5870;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}