:root {
  --purple-deep: #5B2C83;
  --purple-mid: #7B3FB2;
  --orange: #FF7A30;
  --ink: #241B2F;
  --paper: #F8F6FB;
  --lavender: #E9E4EE;
}

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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at 50% 30%, #3a2452 0%, #241B2F 55%, #17111e 100%);
  color: var(--paper);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* decorative floating orbit rings */
.orbits {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.orbits span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1.5px solid rgba(255, 122, 48, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}

.orbits span.o1 {
  width: 620px;
  height: 620px;
  border-color: rgba(123, 63, 178, 0.28);
  animation: spin 60s linear infinite;
}

.orbits span.o2 {
  width: 900px;
  height: 900px;
  border-color: rgba(255, 122, 48, 0.14);
  animation: spin 90s linear infinite reverse;
}

.orbits span.o3 {
  width: 380px;
  height: 380px;
  border-color: rgba(233, 228, 238, 0.12);
  animation: spin 40s linear infinite;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  max-width: 640px;
}

.logo {
  width: 200px;
  height: auto;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.1s forwards;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.25s forwards;
}

h1 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.4s forwards;
}

h1 .accent {
  background: linear-gradient(90deg, var(--orange), var(--purple-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lavender);
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.55s forwards;
}

.divider {
  width: 64px;
  height: 4px;
  border-radius: 4px;
  margin: 32px 0;
  background: linear-gradient(90deg, var(--orange), var(--purple-mid));
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.7s forwards;
}

footer {
  position: relative;
  z-index: 1;
  position: fixed;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(248, 246, 251, 0.45);
  letter-spacing: 0.3px;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.9s forwards;
}

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

@media (max-width: 480px) {
  .logo { width: 150px; margin-bottom: 28px; }
  p.lead { font-size: 15.5px; }
}
