* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Press Start 2P", monospace;
  background: #0b0b12;
  color: #eaeaf0;
  overflow-x: hidden;
}

/* GRID */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,108,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,108,255,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 20s linear infinite;
  z-index: -1;
  opacity: 0.3;
}

@keyframes gridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 400px 400px, 400px 400px; }
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}

/* LOGO */
.logo-text {
  font-size: 36px;
  fill: none;
  stroke: #ff5fd2;
  stroke-width: 2;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation:
    drawLogo 1.6s ease-out forwards,
    glowSettle 2.4s ease-out forwards;
}

@keyframes drawLogo { to { stroke-dashoffset: 0; } }

@keyframes glowSettle {
  0% { filter: drop-shadow(0 0 12px rgba(255,95,210,0.8)); }
  100% { filter: drop-shadow(0 0 4px rgba(255,95,210,0.4)); }
}

/* LAYOUT */
.container {
  max-width: 900px;
  padding: 140px 24px 80px;
  margin: auto;
}

section {
  margin-bottom: 80px;
}

/* HERO */
.hero {
  min-height: 80vh;
}

.hero h1 {
  font-size: 2.1rem;
  color: #ff5fd2;
  text-shadow: 0 0 12px rgba(255,95,210,0.6);
}

.glow {
  color: #4dfcff;
  text-shadow: 0 0 10px rgba(77,252,255,0.5);
}

.sub {
  margin-top: 32px;
  opacity: 0.85;
  line-height: 1.9;
}

/* ENTER */
.enter-link {
  display: inline-block;
  margin-top: 56px;
  font-size: 0.75rem;
  color: #4dfcff;
  cursor: pointer;
  text-decoration: none;
}

.enter-link:hover { color: #ff5fd2; }

/* CONTENT */
.hidden { display: none; }

h2 {
  color: #7c6cff;
  margin-bottom: 28px;
}

.note {
  opacity: 0.75;
  margin-top: 20px;
}

.big {
  font-size: 1.1rem;
  color: #ff5fd2;
}

.tagline {
  margin-top: 24px;
  color: #4dfcff;
}

.email {
  margin-top: 32px;
}

.button {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 24px;
  border: 2px solid #ff5fd2;
  color: #ff5fd2;
  text-decoration: none;
  font-size: 0.75rem;
}

.button:hover {
  background: #ff5fd2;
  color: #0b0b12;
}

/* SOFT DIVIDER */
.soft-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124,108,255,0.5),
    transparent
  );
  margin: 80px 0;
}

footer {
  text-align: center;
  opacity: 0.5;
  margin-top: 120px;
}

