
/* Mobile-first, no overflow */
* { box-sizing: border-box; }

html, body { height: 100%; }
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: ui-sans-serif, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow-x: hidden;
  padding: 24px 0;
}

.wrap {
  width: min(92vw, 640px);   /* never exceed viewport width */
  margin: 0 auto;
  text-align: center;
}

.logo {
  display: block;
  width: 100%;      /* scales inside wrapper */
  height: auto;
}

.soon {
  margin: 10px 0 0;
  font-size: clamp(14px, 4vw, 18px);
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  word-break: break-word;    /* never overflow */
}

.copy {
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
