:root {
  --bg: #0b0d10;
  --text: #e6e9ef;
  --text-muted: #8a94a5;
  --accent: #7aa2ff;
  --accent-hover: #95b5ff;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC",
    "Microsoft YaHei", sans-serif;
}

.stage {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  text-align: center;
}

.mark {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tag {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.soon {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 12px;
}

.links {
  margin-top: 24px;
  display: flex;
  gap: 24px;
}
.links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  padding: 8px 16px;
  border: 1px solid rgba(122, 162, 255, 0.3);
  border-radius: 6px;
  transition: all 120ms;
}
.links a:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}
