@font-face {
  font-family: "Onest";
  src: url("/fonts/onest-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("/fonts/onest-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-02FF, U+1E00-1EFF;
}

:root {
  --navy: #3f1d71;
  --teal-dark: #5b2ba6;
  --coral: #6d28d9;
  --ink: #261c31;
  --muted: #6f6578;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--navy);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--navy);
  color: white;
  font-family: "Onest", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  max-width: 100%;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.78);
  outline-offset: 3px;
}

.coming-soon-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  padding: clamp(32px, 6vw, 72px) clamp(24px, 6vw, 80px) clamp(24px, 4vw, 46px);
  background:
    radial-gradient(circle at 15% 12%, rgba(124, 58, 237, 0.36), transparent 29%),
    radial-gradient(circle at 86% 82%, rgba(91, 43, 166, 0.58), transparent 32%),
    #3f1d71;
  color: white;
  text-align: center;
}

.coming-soon-glow {
  position: absolute;
  width: clamp(260px, 38vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.coming-soon-glow-one {
  top: -28%;
  right: -12%;
}

.coming-soon-glow-two {
  bottom: -38%;
  left: -15%;
}

.coming-soon-message {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  min-width: 0;
}

.coming-soon-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 clamp(28px, 4vw, 46px);
  text-decoration: none;
}

.coming-soon-brand-logo {
  width: clamp(190px, 19vw, 220px);
  height: auto;
}

.coming-soon-message h1 {
  max-width: 1020px;
  margin: 0 auto;
  color: white;
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
}

.coming-soon-message h1 span {
  display: block;
  color: #d4b8ff;
}

.coming-soon-contact {
  width: min(920px, 100%);
  margin: clamp(34px, 4.5vw, 50px) auto 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 70px rgba(21, 5, 42, 0.24);
}

.coming-soon-contact-fields {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(190px, 0.85fr) minmax(260px, 1.25fr) auto;
  gap: 8px;
}

.coming-soon-contact label {
  display: grid;
  min-width: 0;
  padding: 10px 16px 9px;
  border-radius: 14px;
  background: #f1eaff;
  text-align: left;
  gap: 3px;
}

.coming-soon-contact label > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.coming-soon-contact input,
.coming-soon-contact textarea {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  line-height: 1.35;
}

.coming-soon-contact textarea {
  min-height: 19px;
  resize: none;
}

.coming-soon-contact input::placeholder,
.coming-soon-contact textarea::placeholder {
  color: #998fa2;
}

.coming-soon-contact label:focus-within {
  box-shadow: 0 0 0 3px rgba(216, 191, 255, 0.42);
}

.coming-soon-contact button {
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: var(--coral);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.coming-soon-contact button span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms ease;
}

.coming-soon-contact button:hover span {
  transform: translateX(4px);
}

.coming-soon-contact button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.coming-soon-contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.coming-soon-contact-status {
  display: none;
  margin: 10px 10px 2px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.coming-soon-contact-status:not(:empty) {
  display: block;
}

.coming-soon-contact-status[data-state="success"] {
  color: #2e7050;
}

.coming-soon-contact-status[data-state="error"] {
  color: #a23b32;
}

.coming-soon-contact > small {
  display: block;
  margin: 9px 8px 1px;
  color: #75697f;
  font-size: 10px;
  line-height: 1.45;
}

.coming-soon-affiliate {
  position: relative;
  z-index: 1;
  align-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  text-decoration: none;
}

.coming-soon-affiliate img {
  width: 58px;
  height: 40px;
  padding: 5px 8px;
  border-radius: 10px;
  background: white;
  object-fit: contain;
}

.coming-soon-affiliate span {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .coming-soon-page {
    padding: 52px 20px 28px;
  }

  .coming-soon-brand {
    margin-bottom: 28px;
  }

  .coming-soon-brand-logo {
    width: 176px;
  }

  .coming-soon-message h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .coming-soon-contact-fields {
    grid-template-columns: 1fr;
  }

  .coming-soon-contact label {
    min-height: 58px;
  }

  .coming-soon-contact textarea {
    min-height: 38px;
    resize: vertical;
  }

  .coming-soon-contact button {
    width: 100%;
  }

  .coming-soon-contact > small {
    margin-top: 10px;
  }

  .coming-soon-affiliate {
    gap: 10px;
    font-size: 12px;
  }

  .coming-soon-affiliate img {
    width: 50px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-contact button span {
    transition: none;
  }
}
