:root {
  --bg: #0b0714;
  --fg: #f5f2fb;
  --muted: #9a8cb0;
  --accent-1: #a855f7;
  --accent-2: #d8b4fe;
  --border: rgba(168, 85, 247, 0.18);
}

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

html,
body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
  position: relative;
}

.glow-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.3s ease-out;
}

.glow {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.32), rgba(216, 180, 254, 0.12) 45%, transparent 70%);
  filter: blur(60px);
  animation: pulse 6s ease-in-out infinite;
}

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

.container {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
  animation: fade-in 0.8s ease-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-size: clamp(1.1rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  white-space: nowrap;
}

.cursor {
  display: inline-block;
  color: var(--accent-1);
  animation: blink 1.1s step-end infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}

.tagline {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 2.5rem;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  color: var(--fg);
  border-color: var(--accent-1);
  transform: translateY(-2px);
}

.footer {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.7;
}

@media (max-width: 480px) {
  .tagline {
    font-size: 0.95rem;
  }
}
