:root {
  --bg: #0a0a0d;
  --surface: #131317;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f2f2f5;
  --text-dim: #8a8a95;
  --accent: #6ee7b7;
  --accent-2: #60a5fa;
}

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

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  padding: 24px;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(110, 231, 183, 0.10), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.12), transparent 40%);
  pointer-events: none;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 480px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

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

.name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 30%, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.status {
  color: var(--text-dim);
  font-size: 15px;
}

.email-link {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.email-link:hover {
  border-color: var(--accent-2);
  transform: translateY(-1px);
}

.socials {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.socials a {
  color: var(--text-dim);
  display: inline-flex;
  transition: color 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.socials svg {
  width: 22px;
  height: 22px;
}

.footer {
  position: fixed;
  bottom: 20px;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.02em;
}

@media (max-width: 420px) {
  .socials { gap: 24px; }
}
