:root {
  --bg-1: #060910;
  --bg-2: #111a2f;
  --accent: #56ccf2;
  --accent-2: #f2994a;
  --text: #edf2ff;
  --muted: #b8c5e3;
  --panel: rgba(9, 15, 28, 0.78);
  --border: rgba(86, 204, 242, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Chakra Petch", sans-serif;
  color: var(--text);
  background: linear-gradient(140deg, var(--bg-1), var(--bg-2));
  display: grid;
  place-items: center;
  overflow: hidden;
}

#space-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.wrapper {
  width: min(92vw, 760px);
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.studio-tag {
  display: inline-block;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  animation: rise-in 0.8s ease forwards;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  backdrop-filter: blur(6px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: rise-in 1s ease forwards;
}

h1 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.lead {
  margin: 1.1rem 0 1.7rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  line-height: 1.6;
}

.lead span {
  color: var(--text);
  font-weight: 700;
}

.cta {
  display: inline-block;
  text-decoration: none;
  color: #08101c;
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), #87e6ff);
  padding: 0.9rem 1.2rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(86, 204, 242, 0.3);
  filter: brightness(1.04);
}

footer {
  margin-top: 1rem;
  color: #98a7c9;
  font-size: 0.86rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .wrapper {
    width: min(94vw, 760px);
  }

  .hero-card {
    border-radius: 14px;
  }
}
