:root {
  --bg: #faf6f2;
  --bg-soft: #f1e9f7;
  --ink: #3a3650;
  --muted: #8d87a3;
  --accent: #b9a4e3;
  --accent-2: #f6c9d6;
}

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

html, body {
  height: 100%;
}

body {
  font-family: "Grenze", Georgia, "Times New Roman", serif;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.wrapper {
  position: relative;
  text-align: center;
  padding: 2.5rem;
  max-width: 32rem;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32rem;
  height: 32rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.18;
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.logo {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.logo span {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 400;
}

.manifesto {
  margin-top: 1.75rem;
  font-family: "Edu SA Hand", cursive;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.85;
}

.dots {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dots span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: pulse 1.6s ease-in-out infinite;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 80%, 100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  40% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.footer {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  .dots span {
    animation: none;
    opacity: 0.6;
  }
}
