@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;700;800&display=swap');

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

:root {
  --bg: #f5f5f3;
  --text: #111110;
  --muted: #99998f;
}

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

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

.label {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

h1 {
  font-size: clamp(3.5rem, 11vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.5s;
}

.divider {
  width: 28px;
  height: 2px;
  background: var(--text);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.85s;
}

.subtext {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.05s;
}

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