:root {
  --bg-dark: #2d0f84;
  --bg-mid: #4d27cb;
  --bg-light: #a860ec;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.8);
  --border: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 68%, rgba(168, 96, 236, 0.6) 0%, rgba(168, 96, 236, 0) 28%),
    radial-gradient(circle at 72% 30%, rgba(92, 70, 255, 0.28) 0%, rgba(92, 70, 255, 0) 30%),
    linear-gradient(180deg, #4d1fc0 0%, #3b17a0 45%, #240061 100%);
}

main {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(45, 15, 132, 0.24) 0%, rgba(45, 15, 132, 0.46) 100%),
    radial-gradient(circle at center, rgba(121, 66, 255, 0.1), rgba(0, 0, 0, 0.26));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(88vw, 1100px);
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: min(90%, 900px);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.32));
}

.coming-soon {
  padding: 4rem 1.5rem 5rem;
  text-align: center;
  background:
    radial-gradient(circle at 12% 65%, rgba(168, 96, 236, 0.95) 0%, rgba(168, 96, 236, 0) 32%),
    radial-gradient(circle at 72% 28%, rgba(92, 70, 255, 0.35) 0%, rgba(92, 70, 255, 0) 30%),
    linear-gradient(135deg, #7b34d3 0%, #4d27cb 45%, #2d0f84 100%);
}

.coming-soon p {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.site-footer {
  padding: 1.4rem 1.25rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
  background: linear-gradient(180deg, #2a0a73 0%, #23005f 100%);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    min-height: 75vh;
    min-height: 75svh;
  }

  .hero-content {
    width: min(92vw, 1100px);
    padding: 2rem 1rem;
  }

  .hero-logo {
    width: min(92%, 700px);
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 62vh;
    min-height: 62svh;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-content {
    width: 94vw;
    padding: 1.5rem 0.75rem;
  }

  .hero-logo {
    width: 94%;
    max-width: 520px;
  }

  .coming-soon {
    padding: 3rem 1rem 4rem;
  }

  .coming-soon p {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
    line-height: 1.3;
  }

  .site-footer {
    padding: 1.2rem 1rem 1.6rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 56vh;
    min-height: 56svh;
  }

  .hero-video {
    object-position: 58% center;
  }

  .hero-logo {
    width: 96%;
    max-width: 420px;
  }

  .coming-soon {
    padding: 2.5rem 1rem 3.5rem;
  }
}