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

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  color: #e8e8e8;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  overflow-x: hidden;
}

.section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  min-height: 100vh;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
}

.section p {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  max-width: 800px;
  line-height: 1.4;
}

.spacer {
  min-height: 60vh;
}

.answer p {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  color: #ffffff;
}

.punchline {
  min-height: 60vh;
}

.punchline p {
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  color: #888;
  font-weight: 700;
  font-style: italic;
}

footer {
  text-align: center;
  padding: 3rem 1rem;
  color: #333;
  font-size: 0.9rem;
  font-family: system-ui, sans-serif;
}
