:root {
  --bg: #05050a;
  --violet: #7c5cff;
  --cyan: #4dd8ff;
  --pink: #ff6bcb;
  --text: #f1f1f6;
  --muted: #8b8b9c;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.09);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  height: 100%;
  overflow-x: hidden;
}

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

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(to right, rgba(124, 92, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124, 92, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 75%);
  pointer-events: none;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 80% 65% at 50% 30%, transparent 0%, rgba(5,5,10,0.55) 60%, var(--bg) 100%);
  pointer-events: none;
}

.stage {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 32px;
}

/* Brand header */
.brand {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(124, 92, 255, 0.35));
}

.brand .dot {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--muted);
}

/* Hero */
.hero {
  flex: 1;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.status-line {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.status-line .prompt {
  color: var(--cyan);
  font-weight: 500;
}

.status-line .status-text {
  color: var(--muted);
}

.status-line .cursor {
  color: var(--violet);
  font-weight: 500;
  animation: blink 1s steps(1) infinite;
}

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

.headline {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.grad {
  background: linear-gradient(100deg, var(--violet) 0%, var(--cyan) 50%, var(--pink) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.subhead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
  font-weight: 300;
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
}

.socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(10, 10, 18, 0.7), rgba(10, 10, 18, 0.7)) padding-box,
    linear-gradient(135deg, rgba(124, 92, 255, 0.45), rgba(77, 216, 255, 0.45)) border-box;
  color: var(--muted);
  backdrop-filter: blur(8px);
  transition: color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.social-link svg { width: 15px; height: 15px; }

.social-link:hover {
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 0 20px -4px rgba(124, 92, 255, 0.65);
  background:
    linear-gradient(rgba(10, 10, 18, 0.7), rgba(10, 10, 18, 0.7)) padding-box,
    linear-gradient(135deg, rgba(124, 92, 255, 0.9), rgba(77, 216, 255, 0.9)) border-box;
}

.copyright {
  font-size: 0.78rem;
  color: #55556a;
}

