:root {
  --bg: #0a0f14;
  --ink: #eef2f5;
  --muted: #b8c4cf;
  --accent: #f9d316;
  --accent-tech: #0f8b8d;
  --accent-soft: #f9d31633;
  --accent-soft-tech: #0f8b8d33;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Sora", sans-serif;
  overflow-x: hidden;
}

.background-wrap {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05) brightness(0.5);
  transform: scale(1.05);
  animation: settle 1.2s ease-out forwards;
}

.vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, transparent 0%, rgba(0, 0, 0, 0.45) 60%),
    linear-gradient(125deg, rgba(8, 10, 13, 0.72) 0%, rgba(8, 10, 13, 0.88) 65%);
}

.glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(80px);
}

.glow-left {
  left: -10vw;
  bottom: -15vw;
  background: var(--accent-soft-tech);
}

.glow-right {
  right: -12vw;
  top: -10vw;
  background: #80d8ff1c;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.page {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(1rem, 2.5vw, 2rem);
}

.brand {
  animation: rise-in 900ms 120ms ease-out both;
}

.brand-logo {
  width: clamp(120px, 13vw, 190px);
  height: auto;
}

.hero {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  max-width: min(840px, 92vw);
  animation: rise-in 1s 240ms ease-out both;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(0.7rem, 1vw, 0.88rem);
  color: var(--muted);
}

.coming-soon-art {
  width: clamp(280px, 72vw, 820px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.38));
}

h1 {
  margin: 0.2rem 0 0;
  font-family: "Bebas Neue", cursive;
  letter-spacing: 0.04em;
  font-size: clamp(2.2rem, 5.6vw, 4.6rem);
  line-height: 0.92;
  color: #ffffff;
}

.subtitle {
  margin: 0;
  max-width: 62ch;
  color: #d9e2ea;
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  line-height: 1.7;
}

.cta {
  margin-top: 0.8rem;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #111;
  background: var(--accent-tech);
  border: 1px solid #ffeb8a;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  box-shadow: 0 6px 20px var(--accent-tech-soft);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  background: #ffe15d;
  box-shadow: 0 12px 26px #f9d3164a;
}

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

@keyframes settle {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .page {
    padding: 1rem;
  }

  .hero {
    gap: 0.75rem;
    padding-bottom: 0.8rem;
  }

  .subtitle {
    line-height: 1.6;
  }
}
