html,
body {
  height: 100%;
}

@font-face {
  font-family: "Bicyclette Thin";
  src: url("assets/font/fonnts.com-Bicyclette_Thin.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  overflow: hidden;
  background-color: #0b3b3b;
}
.logo {
  position: fixed;
  top: 16px;
  left: 16px;
  width: 90px;
  height: auto;
  z-index: 10;
}
.cover {
  position: fixed;
  inset: 0;
  background-image: url("assets/Firefly_Gemini Flash (1).png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}
.blur-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pattern {
  position: fixed;
  top: 0;
  right: 0;
  width: clamp(160px, 26vmin, 340px);
  height: auto;
  transform: translate(20%, 2%) rotate(-35deg);
  transform-origin: 100% 0%;
  z-index: 9;
  pointer-events: none;
}

.coming-soon {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  text-align: center;
  font-family: "Bicyclette Thin", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
  font-size: clamp(24px, 6vw, 56px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  z-index: 8;
  max-width: min(92vw, 680px);
}

.text {
  position: fixed;
  left: 50%;
  bottom: 22%;
  transform: translate(-50%, -50%);
  margin: 0;
  text-align: center;
  font-family: "Bicyclette Thin", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.06em;
  color: #ffffff;
  font-size: clamp(14px, 2.4vw, 20px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  z-index: 8;
  max-width: min(92vw, 720px);
  line-height: 1.5;
}

.cta {
  position: fixed;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  color: #ffffff;
  text-decoration: none;
  font-family: "Bicyclette Thin", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(14px, 2.6vw, 18px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  z-index: 8;
}

@media (max-width: 480px) {
  .cover {
    background-position: center;
  }
  .blur-layer {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .logo {
    width: 72px;
    top: 12px;
    left: 12px;
  }
  .coming-soon {
    font-size: clamp(20px, 7.2vw, 40px);
    letter-spacing: 0.14em;
    top: 44%;
    max-width: 90vw;
  }
  .text {
    bottom: calc(26% + env(safe-area-inset-bottom));
    font-size: clamp(13px, 4vw, 16px);
    letter-spacing: 0.06em;
    padding: 0 12px;
    max-width: 92vw;
  }
  .cta {
    padding: 10px 22px;
    bottom: calc(11% + env(safe-area-inset-bottom));
    font-size: clamp(12px, 3.6vw, 16px);
  }
}
