/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

/* HERO IMAGE */
.hero__image {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  object-fit: cover;
  display: block;
}

/* CTA WRAPPER */
.hero__cta-wrapper {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 36px);
  transform: translateX(-50%);
  width: 100%;
  max-width: 420px;
  padding: 0 16px;
  z-index: 10;
  margin-bottom: 8rem;
}

@media (max-width: 768px) {
  .hero__cta-wrapper {
    bottom: 20%;
  }
}

/* CTA BUTTON */
.hero__cta {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;

  color: #00323A;
  background: linear-gradient(135deg, #00E5FF, #00B8D4);
  border-radius: 999px;

  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.4);
  backdrop-filter: blur(6px);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 229, 255, 0.5);
}

.hero__cta:active {
  transform: translateY(0);
}
