:root {
  --bg: #0a0f14;
  --ink: #eef2f5;
  --muted: #8fa8b8;
  --accent: #00d9d9;
  --accent-soft: #00d9d91a;
}

* {
  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: #00d9d915;
}

.glow-right {
  right: -12vw;
  top: -10vw;
  background: #0099cc18;
}

.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 {
  margin-top: 2rem;
  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: #0a0f14;
  background: var(--accent);
  border: 1px solid #00ffe6;
  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-soft);
}

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

@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);
  }
}

.maintenance-message {
  display: grid;
  gap: 2.5rem;
  max-width: min(620px, 92vw);
  margin-top: 3rem;
  animation: rise-in 1.2s 360ms ease-out both;
}

.message-content {
  display: grid;
  gap: 1rem;
}

.message-primary {
  margin: 0;
  font-family: "Bebas Neue", cursive;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: var(--accent);
}

.message-body {
  margin: 0;
  color: #c5d3df;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.8;
  font-weight: 300;
}

.contact-section {
  display: grid;
  gap: 1.2rem;
  padding: 1.8rem;
  background: rgba(0, 217, 217, 0.06);
  border: 1px solid rgba(0, 217, 217, 0.14);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #d9e2ea;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.contact-icon {
  font-size: 1.3em;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  transition: color 200ms ease;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: #00ffe6;
  text-decoration: underline;
}

.social-section {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.social-label {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  letter-spacing: 0.05em;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-link {
  color: var(--accent);
  text-decoration: none;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 500;
  transition: color 200ms ease, text-decoration 200ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: #00ffe6;
  text-decoration: underline;
}

.social-separator {
  color: var(--muted);
  opacity: 0.5;
}

.message-closing {
  margin: 0;
  color: #a8b8c8;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.8;
  font-style: italic;
  text-align: center;
}

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

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

  .subtitle {
    line-height: 1.6;
  }
}
