:root {
  --bg: #14161a;
  --text: #e8e6df;
  --muted: #9a97a3;
  --gold: #e8a33d;
  --lime: #ccff00;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

main {
  max-width: 520px;
  text-align: center;
}

.logo {
  margin: 0;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(18px, 4vw, 28px);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  flex-wrap: wrap;
}

.logo .eye {
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  margin: 0 1px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 58%, #1d1610 0 29%, #f7f1e6 34%);
  border: 2px solid var(--gold);
}

.tag {
  margin: 18px 0 0;
  color: var(--lime);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
}

.blurb {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
}

.soon {
  margin: 36px 0 0;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
}
