:root {
  --surface: #000000;
  --on-surface: #e2e2e2;
  --on-surface-muted: #b9cac9;
  --accent: #00dddd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: Inter, system-ui, sans-serif;
  background: var(--surface);
  color: var(--on-surface);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 221, 221, 0.04), transparent 70%);
  pointer-events: none;
}

.soon {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.soon-logo {
  width: min(320px, 78vw);
  height: auto;
  display: block;
}

.soon-title {
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 221, 221, 0.35);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-surface-muted);
}
