:root {
  --bg: #0C0C0F;
  --text: #F8F7F4;
  --text-muted: rgba(248, 247, 244, 0.4);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder {
  text-align: center;
}

.placeholder-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 16px;
}

.placeholder-tagline {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}