@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #05030a;
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --muted: #cdbddd;
  --pink: #ff3dbb;
  --blue: #32c7ff;
  --purple: #8d4dff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 61, 187, 0.32), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(50, 199, 255, 0.20), transparent 30%),
    linear-gradient(180deg, #05030a 0%, #11091d 52%, #05030a 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 7%;
  background: rgba(5, 3, 10, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

nav a:hover {
  color: white;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: grid;
  place-items: center;
  padding: 70px 7% 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  text-align: center;
}

.tag {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  font-weight: 800;
}

.main-logo {
  display: block;
  width: min(520px, 92vw);
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 46px rgba(255, 61, 187, 0.42));
}

h1 {
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #fff, #ff7bd2, #4bd4ff);
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 16px 42px rgba(255, 61, 187, 0.28);
}

.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: white;
}

.secondary:hover {
  border-color: rgba(255, 255, 255, 0.38);
}

.hero-bg {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.hero-bg-1 {
  left: -130px;
  top: 20%;
  background: var(--pink);
}

.hero-bg-2 {
  right: -130px;
  bottom: 14%;
  background: var(--blue);
}

.section {
  max-width: 1180px;
  margin: auto;
  padding: 80px 7%;
}

.card {
  padding: 34px;
  border-radius: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.30);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

.card p,
.link-card span {
  color: var(--muted);
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 61, 187, 0.12);
  border: 1px solid rgba(255, 61, 187, 0.28);
}

.status span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 18px var(--pink);
}

.links-section {
  text-align: center;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
  text-align: left;
}

.link-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.38);
}

.link-card strong {
  font-size: 1.18rem;
}

footer {
  padding: 34px 7%;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .header {
    position: relative;
    flex-direction: column;
    text-align: center;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

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

@media (max-width: 560px) {
  .header {
    padding: 16px 5%;
  }

  .brand span {
    font-size: 0.95rem;
  }

  nav {
    font-size: 0.92rem;
  }

  .hero {
    padding: 42px 5% 48px;
  }

  .main-logo {
    width: 100%;
  }

  .actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 58px 5%;
  }

  .card,
  .link-card {
    padding: 24px;
    border-radius: 22px;
  }

  .status {
    align-items: flex-start;
    border-radius: 20px;
  }
}


/* Animations clubbing */
.hero-content {
  animation: fadeUp 0.9s ease both;
}

.main-logo {
  animation: floatLogo 4.5s ease-in-out infinite, neonPulse 2.4s ease-in-out infinite;
}

.tag {
  animation: glowBadge 2.8s ease-in-out infinite;
}

.visualizer {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 7px;
  height: 54px;
  margin: 0 auto 12px;
}

.visualizer span {
  width: 8px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pink), var(--blue));
  box-shadow: 0 0 18px rgba(255, 61, 187, 0.65);
  animation: bounceBar 0.85s ease-in-out infinite;
}

.visualizer span:nth-child(2) { animation-delay: 0.08s; }
.visualizer span:nth-child(3) { animation-delay: 0.16s; }
.visualizer span:nth-child(4) { animation-delay: 0.24s; }
.visualizer span:nth-child(5) { animation-delay: 0.32s; }
.visualizer span:nth-child(6) { animation-delay: 0.40s; }
.visualizer span:nth-child(7) { animation-delay: 0.28s; }
.visualizer span:nth-child(8) { animation-delay: 0.18s; }
.visualizer span:nth-child(9) { animation-delay: 0.10s; }
.visualizer span:nth-child(10) { animation-delay: 0.02s; }

.pulse-ring {
  position: absolute;
  width: min(620px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 61, 187, 0.25);
  box-shadow: 0 0 42px rgba(255, 61, 187, 0.16);
  animation: pulseRing 4s ease-out infinite;
  z-index: 1;
}

.ring-2 {
  border-color: rgba(50, 199, 255, 0.22);
  animation-delay: 1.4s;
}

.equalizer-bg {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  display: flex;
  align-items: end;
  gap: 16px;
  height: 150px;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}

.equalizer-bg span {
  width: 24px;
  height: 42px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, var(--pink), var(--purple), var(--blue));
  animation: bgEqualizer 1.2s ease-in-out infinite;
}

.equalizer-bg span:nth-child(2) { animation-delay: 0.15s; }
.equalizer-bg span:nth-child(3) { animation-delay: 0.30s; }
.equalizer-bg span:nth-child(4) { animation-delay: 0.45s; }
.equalizer-bg span:nth-child(5) { animation-delay: 0.60s; }
.equalizer-bg span:nth-child(6) { animation-delay: 0.30s; }
.equalizer-bg span:nth-child(7) { animation-delay: 0.45s; }
.equalizer-bg span:nth-child(8) { animation-delay: 0.20s; }
.equalizer-bg span:nth-child(9) { animation-delay: 0.35s; }
.equalizer-bg span:nth-child(10) { animation-delay: 0.50s; }

.btn.primary {
  animation: buttonPulse 2.2s ease-in-out infinite;
}

.card,
.link-card {
  animation: fadeUp 0.8s ease both;
}

.link-card:nth-child(2) {
  animation-delay: 0.12s;
}

.link-card:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.015);
  }
}

@keyframes neonPulse {
  0%, 100% {
    filter: drop-shadow(0 0 35px rgba(255, 61, 187, 0.40));
  }
  50% {
    filter: drop-shadow(0 0 68px rgba(50, 199, 255, 0.48));
  }
}

@keyframes glowBadge {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255, 61, 187, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(255, 61, 187, 0.28);
  }
}

@keyframes bounceBar {
  0%, 100% {
    height: 14px;
  }
  50% {
    height: 48px;
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.58);
    opacity: 0;
  }
  35% {
    opacity: 0.65;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@keyframes bgEqualizer {
  0%, 100% {
    height: 34px;
  }
  50% {
    height: 145px;
  }
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 16px 42px rgba(255, 61, 187, 0.28);
  }
  50% {
    box-shadow: 0 18px 58px rgba(50, 199, 255, 0.36);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 560px) {
  .visualizer {
    height: 42px;
  }

  .visualizer span {
    width: 6px;
  }

  .equalizer-bg {
    gap: 9px;
    height: 90px;
    bottom: 3%;
  }

  .equalizer-bg span {
    width: 14px;
  }

  @keyframes bgEqualizer {
    0%, 100% {
      height: 24px;
    }
    50% {
      height: 82px;
    }
  }
}
