@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;600;700&family=JetBrains+Mono:wght@300;400;600&display=swap');

:root {
  --bg: #0b0f1a;
  --fg: #e9f0ff;
  --accent: #6ee7ff;
  --accent-2: #7cffa0;
  --muted: #9fb3c8;
}

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

html, body {
  height: 100%;
}

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--fg);
  background: radial-gradient(1200px 800px at 10% 10%, #1a2450 0%, #0b0f1a 50%, #070a12 100%);
  overflow: hidden;
}

#bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: 24px;
}

.badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 10px 14px;
  border: 1px solid rgba(110, 231, 255, 0.35);
  border-radius: 999px;
  background: rgba(7, 10, 18, 0.55);
  backdrop-filter: blur(6px);
}

.name {
  font-size: clamp(40px, 7vw, 86px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 6px 30px rgba(7, 15, 30, 0.65);
}

.typed {
  font-size: clamp(18px, 2.6vw, 28px);
  color: var(--muted);
  min-height: 40px;
}

.cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(124, 255, 160, 0.55);
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(7, 10, 18, 0.55);
  box-shadow: 0 10px 30px rgba(7, 15, 30, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cta:hover {
  transform: translateX(-50%) translateY(-2px);
  border-color: rgba(110, 231, 255, 0.75);
  box-shadow: 0 14px 32px rgba(7, 15, 30, 0.5);
}

.cta:focus-visible {
  outline: 2px solid rgba(110, 231, 255, 0.8);
  outline-offset: 3px;
}

.cursor {
  display: inline-block;
  width: 10px;
  height: 1.1em;
  background: var(--accent-2);
  margin-left: 6px;
  transform: translateY(2px);
  animation: blink 1.1s steps(2, start) infinite;
}

@keyframes blink {
  50% {
    opacity: 0.1;
  }
}

@media (max-width: 600px) {
  .badge {
    font-size: 12px;
  }
}
