:root {
  color-scheme: dark;
  --orange: #ff9700;
  --orange-2: #ff6b00;
  --purple: #8737c8;
  --purple-2: #5a19a7;
  --ink: #0a0610;
  --muted: #b9afc2;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.launch-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(22px, 3.2vw, 44px) clamp(20px, 5vw, 76px) clamp(20px, 3vw, 36px);
  background:
    radial-gradient(circle at 50% 44%, rgba(86, 26, 117, .22), transparent 38%),
    linear-gradient(145deg, #07040c 0%, #120819 52%, #09050d 100%);
}

.launch-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .22;
  animation: breathe 7s ease-in-out infinite alternate;
}

.ambient-orange { right: -18vw; top: -20vw; background: var(--orange); }
.ambient-purple { left: -19vw; bottom: -21vw; background: var(--purple); animation-delay: -3s; }

.brand-mark {
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 290px;
  opacity: .055;
  border: 34px solid #fff;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom: 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 122px;
  height: 180px;
  left: 0;
  top: 225px;
  border: 34px solid #fff;
  border-top: 0;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}

.brand-mark-top { right: -34px; top: 110px; transform: rotate(10deg) scale(.8); }
.brand-mark-bottom { left: -50px; bottom: -20px; transform: rotate(-14deg) scale(.68); }

.launch-header, .launch-footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.launch-logo { width: clamp(138px, 14vw, 190px); height: auto; display: block; }

.instagram-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  text-decoration: none;
  color: #eee7f3;
  font-size: 13px;
  font-weight: 700;
  transition: .25s ease;
}

.instagram-pill:hover { transform: translateY(-2px); border-color: rgba(255,151,0,.5); background: rgba(255,151,0,.09); }

.instagram-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
  position: relative;
  display: inline-block;
}

.instagram-icon::before { content: ""; position: absolute; width: 5px; height: 5px; border: 1.7px solid currentColor; border-radius: 50%; left: 4.5px; top: 4.5px; }
.instagram-icon::after { content: ""; position: absolute; width: 2.6px; height: 2.6px; border-radius: 50%; background: currentColor; right: 2.2px; top: 2.2px; }

.launch-content {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  width: min(830px, 100%);
  text-align: center;
  padding: clamp(42px, 7vh, 82px) 0 clamp(32px, 5vh, 56px);
}

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #d7cadf; font-size: 11px; letter-spacing: .18em; font-weight: 800; }
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 16px var(--orange); }

h1 {
  margin: 20px 0 18px;
  font-size: clamp(37px, 5.6vw, 75px);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 800;
}

h1 em { font-style: normal; color: transparent; background: linear-gradient(95deg, #ffb20d, #ff7800 45%, #aa4ee0 90%); background-clip: text; -webkit-background-clip: text; }

.launch-content > p { width: min(680px, 94%); margin: 0 auto; color: var(--muted); font-size: clamp(14px, 1.35vw, 18px); line-height: 1.75; }

.countdown-shell {
  width: min(640px, 100%);
  margin: clamp(28px, 4.2vh, 44px) auto 22px;
  padding: 18px 22px 21px;
  border: 1px solid rgba(255,255,255,.095);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 26px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}

.countdown-heading { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 17px; color: #f0e9f4; font-size: 10px; letter-spacing: .13em; font-weight: 800; }
.countdown-heading b { color: #ffae23; letter-spacing: 0; font-size: 12px; }
.countdown { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: start; gap: clamp(7px, 1.8vw, 20px); }
.countdown > div { display: grid; gap: 3px; }
.countdown strong { font-size: clamp(28px, 5vw, 46px); line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.04em; }
.countdown span { color: #8f8299; font-size: 9px; letter-spacing: .13em; font-weight: 800; }
.countdown > i { color: #5b4d64; font-style: normal; font-size: 28px; line-height: 1; }

.pre-register-button {
  width: min(460px, 100%);
  min-height: 62px;
  margin: 0 auto;
  padding: 0 22px 0 27px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(105deg, var(--orange), var(--orange-2));
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 17px 42px rgba(255,113,0,.25);
  transition: .25s ease;
}

.pre-register-button i { width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.16); font-size: 21px; font-style: normal; }
.pre-register-button:not([aria-disabled="true"]):hover { transform: translateY(-3px); box-shadow: 0 23px 55px rgba(255,113,0,.35); }
.pre-register-button[aria-disabled="true"] { cursor: not-allowed; filter: grayscale(.2); opacity: .52; box-shadow: none; }
.launch-content .button-note { margin-top: 12px; color: #786c81; font-size: 11px; line-height: 1.5; }

.launch-footer { border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; color: #8f8397; font-size: 12px; }
.launch-footer p { display: flex; align-items: center; gap: 9px; margin: 0; }
.launch-footer p b { color: #d8cfe0; }
.launch-footer .instagram-icon { width: 15px; height: 15px; flex-basis: 15px; border-radius: 5px; }
.launch-footer .instagram-icon::before { width: 4px; height: 4px; left: 3.6px; top: 3.6px; }
.launch-footer a { color: #ffae23; text-decoration: none; font-weight: 800; }
.launch-footer a span { margin-left: 4px; }

.launch-page.is-open .eyebrow i { background: #a84ee0; box-shadow: 0 0 16px #a84ee0; }
.launch-page.is-open .countdown-shell { border-color: rgba(156,72,213,.28); }

@keyframes breathe { to { transform: translate3d(2vw, -1vw, 0) scale(1.1); opacity: .31; } }

@media (max-width: 680px) {
  .launch-page { padding: max(18px, env(safe-area-inset-top)) 18px max(17px, env(safe-area-inset-bottom)); }
  .launch-header { align-items: flex-start; }
  .launch-logo { width: 132px; }
  .instagram-pill { padding: 9px 11px; font-size: 0; gap: 0; }
  .instagram-pill .instagram-icon { width: 19px; height: 19px; flex-basis: 19px; }
  .launch-content { padding: clamp(38px, 8vh, 72px) 0 30px; }
  h1 { margin-top: 17px; }
  .launch-content > p { width: 100%; font-size: 14px; line-height: 1.65; }
  .countdown-shell { border-radius: 19px; padding: 16px 13px 18px; margin-top: 27px; }
  .countdown-heading { display: grid; justify-content: center; gap: 5px; margin-bottom: 15px; }
  .countdown { gap: 5px; }
  .countdown > i { font-size: 20px; }
  .countdown span { font-size: 7px; }
  .pre-register-button { min-height: 58px; border-radius: 16px; font-size: 14px; }
  .launch-footer { justify-content: center; text-align: center; }
  .launch-footer p { display: none; }
  .launch-footer a { padding: 8px; }
  .brand-mark-top { right: -90px; }
  .brand-mark-bottom { left: -100px; }
}

@media (max-height: 720px) and (min-width: 681px) {
  .launch-content { padding: 24px 0; }
  h1 { font-size: clamp(38px, 4.8vw, 62px); margin: 13px 0; }
  .countdown-shell { margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
}
