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

:root {
  --bg: #1a1a1a;
  --text: #e0e0e0;
  --text-muted: #666;
  --accent: #4a9eff;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 2rem;
  padding-bottom: 20vh;
  text-align: center;
}

.landing__title {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 300;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.08em;
  color: var(--text);
}

.landing__tagline {
  font-weight: 300;
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--text-muted);
  margin-top: 0.8rem;
  letter-spacing: 0.02em;
}

.logo {
  width: 100px;
  height: auto;
  margin-bottom: 1.5rem;
}
