:root {
  --bg: #000000;
  --green: #04fc01;
  --red: #fe020d;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  height: 100%;
}

body {
  overflow-x: hidden;
}

.stage {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  padding: 1.5rem;
  text-align: center;
}

.logo {
  width: min(75vw, 680px);
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.tagline {
  margin: 0;
  max-width: 90vw;
  font-family: 'Courier Prime', 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.8vw, 2.25rem);
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--green);
  text-shadow: 0 0 12px rgba(4, 252, 1, 0.45);
}

.cursor-dot {
  display: inline-block;
  margin-left: 0.2em;
  font-size: 1.1em;
  color: var(--red);
  text-shadow: 0 0 14px rgba(254, 2, 13, 0.6);
  vertical-align: -0.15em;
  transform-origin: center;
  animation: pulse 1.1s ease-in-out infinite;
}

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

@media (prefers-reduced-motion: reduce) {
  .cursor-dot {
    animation: none;
  }
}

.home-link {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
