:root {
  --bg: #030304;
  --ink: #fff8ee;
  --muted: #aaa4a1;
  --pink: #ff5aa8;
  --cyan: #39e7d5;
  --lime: #c8ff3d;
  --line: rgba(255, 248, 238, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

.prelaunch-page {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 100vh;
  padding: 56px 24px;
  background:
    linear-gradient(180deg, rgba(255, 90, 168, 0.09), transparent 32%),
    linear-gradient(115deg, rgba(57, 231, 213, 0.12), transparent 42%),
    #030304;
}

.prelaunch-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 248, 238, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 238, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 84%);
  pointer-events: none;
}

.prelaunch-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  margin: 0 auto;
  text-align: center;
}

.prelaunch-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 1000;
}

.prelaunch-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(255, 32, 32, 0.34));
}

.prelaunch-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.prelaunch-shell h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.88;
  font-weight: 1000;
  text-wrap: balance;
}

.prelaunch-subtitle {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  font-weight: 800;
  text-wrap: balance;
}

.prelaunch-actions {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.prelaunch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 64px;
  width: min(100%, 470px);
  padding: 0 24px;
  color: #050506;
  background: var(--pink);
  border: 1px solid var(--pink);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(255, 90, 168, 0.22);
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 1000;
  transition: transform 160ms ease, background 160ms ease;
}

.prelaunch-button:hover,
.prelaunch-button:focus-visible {
  transform: translateY(-2px);
  background: var(--lime);
  border-color: var(--lime);
}

.prelaunch-button img {
  width: 22px;
  height: 22px;
}

.prelaunch-pig {
  position: absolute;
  z-index: 1;
  right: max(-130px, -8vw);
  bottom: max(-84px, -7vw);
  width: min(46vw, 560px);
  opacity: 0.62;
  filter: drop-shadow(0 30px 80px rgba(255, 90, 168, 0.24));
  pointer-events: none;
}

@media (max-width: 760px) {
  .prelaunch-page {
    padding: 42px 18px;
  }

  .prelaunch-logo {
    margin-bottom: 28px;
  }

  .prelaunch-logo img {
    width: 62px;
    height: 62px;
  }

  .prelaunch-actions {
    margin-top: 30px;
  }

  .prelaunch-pig {
    right: -94px;
    bottom: -42px;
    width: 260px;
    opacity: 0.34;
  }
}
