:root {
  --text: #0f0f10;
  --accent: #4b145b;
}
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.wrap {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 24px;
  gap: clamp(16px, 3vh, 32px);
}
.wrap > * {
  margin-left: auto;
  margin-right: auto;
}
.headline {
  margin: 0;
  font-family: "Salsa", cursive;
  font-weight: 400;
  font-size: 30px;
  line-height: 140%;
  letter-spacing: 0;
}
.headline strong {
  font-weight: 500;
}
.headline em {
  font-style: italic;
}
.logo {
  width: 200px;
  height: 200px;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.12));
  user-select: none;
  -webkit-user-drag: none;
  /* Springy drop after 500ms, then continuous float loop (2.1s cycle) */
  animation: logoDropIn 700ms cubic-bezier(.22,1,.36,1) both 500ms, logoFloat 2.1s linear 1.2s infinite;
}
.soon {
  margin: 0;
  margin-top: clamp(24px, 6vh, 60px);
  color: #2B0047;
  font-family: "Salsa", cursive;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
}
.badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.badges img {
  width: 150px;
  height: 46px;
  border-radius: 10px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background: #2B0047;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-family: "Montserrat", "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.41px;
  transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 6px 14px rgba(43, 0, 71, 0.18);
  height: 52px;
  width: 170px;
  font-size: 14px;
}
.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(43, 0, 71, 0.22);
}
.cta:active {
  transform: translateY(0);
  opacity: 0.95;
}
.cta:focus-visible {
  outline: 2px solid #2B0047;
  outline-offset: 2px;
}
@media (max-width: 420px) {
  .badges img {
    width: 150px;
    height: 46px;
  }
}
/* Mobile responsive tweaks */
@media (max-width: 480px) {
  .wrap {
    padding: 22px 16px;
    gap: 28px;
  }
  .headline {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0;
    max-width: 90vw;
  }
  .logo {
    width: 160px;
    height: 160px;
  }
  .soon {
    font-size: 22px;
    margin-top: 36px;
  }
  .badges {
    gap: 12px;
    justify-content: center;
    width: 100%;
  }
  .cta {
    padding: 13px 32px;
    width: 160px;
    height: 48px;
  }
  .badges img {
    width: 140px;
    height: 43px;
    border-radius: 10px;
  }
}
@media (max-width: 360px) {
  .headline {
    font-size: 22px;
    line-height: 140%;
    max-width: 92vw;
  }
  .logo {
    width: 140px;
    height: 140px;
  }
  .soon {
    font-size: 20px;
    margin-top: 32px;
  }
  .cta {
    padding: 12px 28px;
    width: 140px;
    height: 46px;
  }
  .badges img {
    width: 130px;
    height: 40px;
  }
}
@keyframes logoDropIn {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(0.98);
    filter: drop-shadow(0 0 0 rgba(0,0,0,0.0));
  }
  60% { opacity: 1; transform: translateY(8px) scale(1); }
  72% { transform: translateY(-4px); }  /* overshoot up */
  85% { transform: translateY(2px); }   /* settle down */
  to {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(0 10px 24px rgba(0,0,0,0.12));
  }
}
/* 2.1s cycle:
   - 0.5s top delay
   - 0.3s fast drop with spring-like curve
   - 1.0s bottom hold
   - 0.3s ease-out rise
*/
@keyframes logoFloat {
  0% {
    transform: translateY(-8px);
  }
  24% {
    transform: translateY(-8px);           /* 0.5s delay at top */
    animation-timing-function: cubic-bezier(.18,.89,.32,1.28); /* spring-ish down */
  }
  38.3% {
    transform: translateY(24px);           /* reach bottom in 0.3s */
    animation-timing-function: steps(1, end); /* hold without easing */
  }
  86% {
    transform: translateY(24px);           /* hold ~1.0s at bottom */
    animation-timing-function: ease-out;   /* then rise */
  }
  100% {
    transform: translateY(-8px);           /* back to top in 0.3s */
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo {
    animation: none;
  }
}


