:root {
  color-scheme: light;
  --background: #f7f9fc;
  --foreground: #1e2a3a;
  --headline: #35445a;
  --muted: #6f7782;
  --primary: #4778de;
  --border: #dfe6f1;
  --card: rgba(255, 255, 255, 0.92);
  --brand-logo-optical-offset: -3.0%;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(71, 120, 222, 0.14), transparent 32rem),
    radial-gradient(circle at 85% 80%, rgba(71, 120, 222, 0.09), transparent 26rem),
    var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: grid;
  grid-template-rows: 1fr auto;
}

.launch-page {
  width: 100%;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 8vw, 5rem) 1.25rem 2rem;
}

.launch-card {
  width: min(100%, 46rem);
  padding: clamp(2.25rem, 7vw, 4.75rem);
  overflow: hidden;
  position: relative;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(223, 230, 241, 0.9);
  border-radius: 1.75rem;
  box-shadow: 0 1.5rem 5rem rgba(44, 64, 101, 0.12);
  backdrop-filter: blur(1rem);
}

.launch-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.3rem;
  background: linear-gradient(90deg, #4778de, #78a0f3);
}

.brand {
  margin: 0 auto clamp(1rem, 6vw, 1.5rem);
}

.brand-logo {
  display: block;
  width: min(100%, 31rem);
  height: auto;
  margin-inline: auto;
  transform: translateX(var(--brand-logo-optical-offset));
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--headline);
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
}

.launch-copy {
  max-width: 34rem;
  margin: clamp(1.5rem, 5vw, 2.25rem) auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.18rem);
  line-height: 1.75;
}

.status {
  width: fit-content;
  margin: 2rem auto 0;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #445064;
  background: #f2f6fd;
  border: 1px solid #dce6f8;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 650;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(71, 120, 222, 0.14);
}

.launch-footer {
  padding: 0.75rem 1.25rem 1.5rem;
  color: #838b97;
  font-size: 0.78rem;
  text-align: center;
}

.launch-footer a {
  color: inherit;
  text-decoration-color: rgba(131, 139, 151, 0.55);
  text-underline-offset: 0.2em;
  transition: color 0.15s ease;
}

.launch-footer a:hover {
  color: var(--primary);
}

@media (max-width: 32rem) {
  .launch-card {
    border-radius: 1.25rem;
  }

  .brand-logo {
    width: min(100%, 24rem);
  }
}

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