/* Coming soon — public face */

:root {
  --paper: #fbfbfd;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --accent: #e11d2e;
  --accent-hover: #c91828;
  --radius-pill: 980px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
}

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

html {
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(225, 29, 46, 0.07), transparent 55%),
    var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
}

.brand {
  padding-top: 0.5rem;
}

.brand img {
  height: 72px;
  width: auto;
  max-width: min(320px, 85vw);
  object-fit: contain;
}

@media (max-width: 40rem) {
  .page {
    padding: 2.25rem 1.15rem 1.25rem;
  }

  .brand img {
    height: 56px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .lede {
    font-size: 1.05rem;
  }

  .btn {
    width: 100%;
    max-width: 22rem;
  }
}

.main {
  max-width: 34rem;
  margin: 2rem auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 1.25rem;
  display: inline-flex;
  padding: 0.4rem 0.95rem;
  background: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.75rem, 8vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.lede {
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.015em;
  max-width: 32rem;
}

.lede--soft {
  color: var(--muted);
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: background 0.16s ease, transform 0.16s ease;
}

.btn:hover {
  background: var(--accent-hover);
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  outline: 2px solid #0071e3;
  outline-offset: 3px;
}

.foot {
  font-size: 0.75rem;
  color: var(--muted);
}

.foot p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

/* speed */
.main{content-visibility:auto;}
