:root {
  --bg: #0f1115;
  --text: #f2f4f8;
  --muted: #8b919d;
  --accent: #e0592b;
}

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

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.logo {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both;
}

.tagline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.75rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

.subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.6;
  animation: fadeUp 0.8s ease 0.2s both;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
}