:root {
  color-scheme: light;
  --page: #eef7f5;
  --card: #ffffff;
  --ink: #09172a;
  --muted: #64748b;
  --line: #d8e8ec;
  --accent: #20aee8;
  --accent-hover: #168fc4;
  --cyan: #20aee8;
  --shadow: 0 30px 90px rgba(9, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(32, 174, 232, 0.18), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(24, 189, 132, 0.14), transparent 32rem),
    var(--page);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 4rem);
}

.coming-card {
  width: min(100%, 86rem);
  min-height: min(82vh, 44rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding: clamp(2rem, 7vw, 5.75rem);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: clamp(1.75rem, 4vw, 3rem);
  background: var(--card);
  box-shadow: var(--shadow);
  text-align: center;
}

.brand {
  display: grid;
  place-items: center;
}

.brand img {
  width: min(100%, 24rem);
  height: auto;
  display: block;
  border-radius: 1.25rem;
  box-shadow: 0 16px 36px rgba(9, 23, 42, 0.16);
}

.content {
  max-width: 66rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.15rem, 4.7vw, 4.4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.lede {
  max-width: 56rem;
  margin: clamp(1.25rem, 3vw, 2rem) auto 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 2.4vw, 1.65rem);
  line-height: 1.45;
  font-weight: 500;
}

.waitlist-button {
  min-height: 4.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.65rem;
  padding: 0 3rem;
  background: var(--accent);
  color: #061626;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.waitlist-button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.waitlist-button:focus-visible {
  outline: 0.22rem solid #09172a;
  outline-offset: 0.18rem;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 1.8rem);
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

.social-row a {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  text-decoration: none;
}

.social-row svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.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;
}

@media (max-width: 720px) {
  .coming-card {
    min-height: auto;
    align-items: stretch;
    text-align: left;
  }

  .brand,
  .social-row {
    justify-content: flex-start;
  }

  .brand {
    place-items: start;
  }

  .waitlist-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .page-shell {
    padding: 0.9rem;
  }

  .coming-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
  }

  .waitlist-button {
    min-height: 3.65rem;
    border-radius: 1.15rem;
  }
}
