:root {
  --ink: #242730;
  --ink-soft: #45474f;
  --paper: #f4f5f8;
  --surface: #ffffff;
  --line: rgba(36, 39, 48, 0.14);
  --purple: #4d00ae;
  --magenta: #bc2f8e;
  --coral: #fe815d;
  --orange: #ffaf45;
  --focus: #4d00ae;
  --danger: #a83d45;
  --display: Futura, "Century Gothic", "Avenir Next", Avenir, sans-serif;
  --body: "Open Sans", "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.splash {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.splash__content {
  width: 100%;
  padding: clamp(64px, 9vh, 104px) 24px clamp(48px, 7vh, 76px);
}

.content-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.content-wrap--challenger {
  max-width: 920px;
}

.brand-logo {
  width: clamp(188px, 21vw, 230px);
  height: auto;
  margin: 0 auto clamp(30px, 4.5vh, 42px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 8px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  letter-spacing: 0.08em;
}

.headline {
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(2.3rem, 3.2vw, 2.62rem);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.headline--challenger {
  font-size: clamp(2rem, 2.85vw, 2.55rem);
}

.headline__line {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0 0.04em;
  white-space: nowrap;
}

.headline::after {
  content: "";
  display: block;
  width: 1.05em;
  height: 0.11em;
  margin: 0.22em auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--magenta), var(--coral), var(--orange));
}

.lede-stack {
  max-width: 40rem;
  margin: clamp(23px, 3vh, 29px) auto 0;
  display: grid;
  gap: 14px;
}

.lede {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: clamp(0.98rem, 1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.62;
  text-align: justify;
  text-align-last: left;
  text-wrap: pretty;
  hyphens: none;
}

.waitlist-action {
  max-width: 560px;
  margin: clamp(24px, 3vh, 30px) auto 0;
}

.invitation {
  max-width: 34rem;
  margin: 0 auto 16px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.5;
}

.waitlist-form {
  position: relative;
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.waitlist-form input,
.waitlist-form button {
  min-height: 58px;
  border-radius: 999px;
}

.waitlist-form input {
  flex: 1 1 280px;
  min-width: 0;
  padding: 0 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 35px -28px rgba(36, 39, 48, 0.8);
  color: var(--ink);
}

.waitlist-form input::placeholder {
  color: #777a84;
}

.waitlist-form button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  background: var(--purple);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.waitlist-form button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.waitlist-form button:hover {
  background: var(--magenta);
  box-shadow: 0 14px 32px -18px rgba(77, 0, 174, 0.8);
  transform: translateY(-1px);
}

.waitlist-form button:hover svg {
  transform: translateX(3px);
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.waitlist-form :focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 55%, white);
  outline-offset: 3px;
}

.waitlist-form input[aria-invalid="true"] {
  border-color: var(--danger);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-note,
.form-status {
  margin: 12px 0 0;
  color: #686b75;
  font-size: 0.79rem;
  line-height: 1.45;
  text-align: center;
}

.form-status:not(:empty) {
  color: var(--ink);
}

@media (max-width: 860px) {
  .headline__line {
    max-width: 22ch;
    white-space: normal;
  }

  .headline--challenger .headline__line {
    max-width: 24ch;
  }
}

@media (max-width: 620px) {
  .splash {
    place-items: start center;
  }

  .splash__content {
    padding: 46px 20px 44px;
  }

  .brand-logo {
    width: 184px;
    margin-bottom: 28px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.69rem;
  }

  .headline,
  .headline--challenger {
    font-size: clamp(1.86rem, 8.8vw, 2.28rem);
    line-height: 1.04;
  }

  .headline__line,
  .headline--challenger .headline__line {
    max-width: 19ch;
  }

  .lede-stack {
    max-width: 34rem;
    margin-top: 22px;
  }

  .lede {
    font-size: 0.96rem;
    line-height: 1.58;
    text-align: left;
    hyphens: none;
  }

  .waitlist-action {
    margin-top: 24px;
  }

  .invitation {
    max-width: 28rem;
    font-size: 0.94rem;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
    min-height: 56px;
  }

  .waitlist-form input {
    flex-basis: auto;
  }
}

@media (max-width: 370px) {
  .splash__content {
    padding-inline: 16px;
  }

  .headline,
  .headline--challenger {
    font-size: 1.78rem;
  }

  .eyebrow span {
    display: table;
    margin: 0 auto 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
