:root {
  --bg: #14201c;
  --bg-deep: #122823;
  --border: #2c4237;
  --text: #edf4ed;
  --text-muted: #b4c4af;
  --accent: #75c49a;
  --accent-bright: #b6edc7;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parked {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo { display: block; }

.wordmark {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.wordmark .dot { color: var(--accent); }

.code {
  margin-top: 26px;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}