:root {
  --ink: #111318;
  --muted: #6f7480;
  --blue: #3497f5;
  --surface: #f6f8fb;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }

body {
  background: var(--surface);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.launch-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 38px clamp(24px, 6vw, 88px) 28px;
  isolation: isolate;
}

.launch-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: radial-gradient(rgba(17, 19, 24, .08) .6px, transparent .6px);
  background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 70%);
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  opacity: .32;
}

.glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.glow-one {
  width: 520px;
  height: 520px;
  top: -250px;
  right: -150px;
  background: radial-gradient(circle, rgba(52,151,245,.2), rgba(52,151,245,0) 68%);
}

.glow-two {
  width: 420px;
  height: 420px;
  bottom: -260px;
  left: -140px;
  background: radial-gradient(circle, rgba(52,151,245,.16), rgba(52,151,245,0) 68%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo { width: clamp(170px, 18vw, 236px); height: auto; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #5d626d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(52,151,245,.12);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero {
  width: min(900px, 100%);
  margin: auto;
  padding: clamp(70px, 10vh, 130px) 0 70px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 650;
}

h1 span { color: var(--blue); }

.intro {
  max-width: 580px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.7;
}

.progress {
  width: 148px;
  height: 2px;
  margin: 44px auto 16px;
  overflow: hidden;
  background: #dde1e8;
}

.progress span {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--blue);
  animation: loading 2.8s ease-in-out infinite;
}

.soon {
  margin: 0;
  color: #9499a3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #8b9099;
  font-size: 11px;
  letter-spacing: .04em;
}

footer p { margin: 0; }

@keyframes loading {
  0% { transform: translateX(-110%); }
  50% { transform: translateX(125%); }
  100% { transform: translateX(350%); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(52,151,245,.10); }
  50% { box-shadow: 0 0 0 9px rgba(52,151,245,.02); }
}

@media (max-width: 640px) {
  .launch-page { padding: 26px 20px 24px; }
  .brand-logo { width: 150px; }
  .status { font-size: 9px; letter-spacing: .08em; }
  .hero { padding: 78px 0 56px; }
  h1 { font-size: clamp(42px, 14vw, 64px); letter-spacing: -.055em; }
  .eyebrow { font-size: 10px; line-height: 1.5; }
  .intro { margin-top: 28px; font-size: 15px; }
  footer { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
  .footer-mark { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .status i, .progress span { animation: none; }
}
