:root {
  --bg: #090b0d;
  --bg-2: #101419;
  --text: #edf3f8;
  --muted: #a4afbc;
  --brand: #8fd3ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--text);
  line-height: 1.6;
}

main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.minimal-inner {
  text-align: center;
  max-width: 820px;
}

.minimal-text {
  margin-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(237, 243, 248, 0.82);
  line-height: 1.7;
}

.brand-win {
  color: var(--brand);
  text-shadow: 0 0 18px rgba(143, 211, 255, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
