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

:root {
  --bg: #0a0a0f;
  --accent: #6c63ff;
  --accent2: #ff6584;
  --accent3: #43e8d8;
  --accent4: #f9a825;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.5);
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background blobs */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  filter: blur(40px);
  opacity: 0.25;
  will-change: transform, border-radius;
}

.blob-1 {
  width: 550px;
  height: 550px;
  background: var(--accent);
  top: -150px;
  left: -100px;
}

.blob-2 {
  width: 450px;
  height: 450px;
  background: var(--accent2);
  bottom: -120px;
  right: -100px;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: var(--accent3);
  bottom: 80px;
  left: 150px;
}

.blob-4 {
  width: 300px;
  height: 300px;
  background: var(--accent4);
  top: 50px;
  right: 150px;
}

.blob-5 {
  width: 250px;
  height: 250px;
  background: var(--accent2);
  top: 40%;
  left: 40%;
}

/* Grid overlay */
.grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Main container */
.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

/* Name */
.name {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  margin: 1.5rem auto;
  border-radius: 2px;
  animation: expandWidth 1.5s ease 0.5s forwards;
  transform-origin: center;
  transform: scaleX(0);
}

/* Tagline */
.tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  animation: fadeUp 1.2s ease 0.3s forwards;
  opacity: 0;
}

/* Links */
.links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeUp 1.2s ease 0.6s forwards;
  opacity: 0;
}

.link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.03);
}

.link:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(108, 99, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.2);
}

.link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Coming soon */
.coming-soon {
  margin-top: 4rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  animation: fadeUp 1.2s ease 0.9s forwards;
  opacity: 0;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  to {
    transform: scaleX(1);
  }
}