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

html, body {
  height: 100%;
  background: #0a0a0a;
  color: #e5e5e5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

.monolith {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12vw 8vw;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 2rem;
}

.tagline {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4rem;
  opacity: 0.85;
}

.doctrine p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 38rem;
  opacity: 0.9;
}

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

.monolith {
  animation: emerge 1.8s ease-out forwards;
}

  { padding: 1rem 2rem;
  background: #d35400;
  color: #e5e5e5;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enter-button:hover {
  background: #e67e22;
}
