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

:root {
  --bg: #0f0f12;
  --fg: #f5f5f7;
  --muted: #9a9aa3;
  --accent: #6c63ff;
}

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border: 2px dashed var(--muted);
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.slogan {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 32ch;
}
