:root {
  --bg-1: #1a1030;
  --bg-2: #2a1552;
  --bg-3: #431c78;
  --ink: #f4eeff;
  --muted: #dacbff;
  --accent-1: #b98cff;
  --accent-2: #d7b6ff;
  --accent-3: #7cf0ff;
  --accent-4: #ffcf6e;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(90vmax 90vmax at -6% -16%, #6b32bb 0%, transparent 58%),
    radial-gradient(95vmax 95vmax at 108% 116%, #2f87be 0%, transparent 60%),
    linear-gradient(140deg, var(--bg-1), var(--bg-2) 50%, var(--bg-3));
  font-family: "Manrope", sans-serif;
}

.energy-ring {
  position: fixed;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 40px rgba(185, 140, 255, 0.25);
  pointer-events: none;
  z-index: 1;
}

.ring-a {
  width: 44vmin;
  height: 44vmin;
  right: -8vmin;
  top: -10vmin;
  transform: rotate(12deg);
}

.ring-b {
  width: 28vmin;
  height: 28vmin;
  left: -6vmin;
  bottom: -5vmin;
  border-color: rgba(124, 240, 255, 0.28);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
  pointer-events: none;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  animation: float 12s ease-in-out infinite alternate;
}

.orb-a {
  width: 34vmin;
  height: 34vmin;
  top: 8%;
  left: 10%;
  background: var(--accent-1);
}

.orb-b {
  width: 42vmin;
  height: 42vmin;
  right: 5%;
  bottom: 6%;
  background: var(--accent-2);
  animation-duration: 14s;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(920px, 92vw);
  padding: clamp(1rem, 3.2vw, 2.2rem);
  text-align: center;
  border: 1px solid rgba(220, 194, 255, 0.3);
  border-radius: 24px;
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(124, 240, 255, 0.11), transparent 45%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(8px);
  box-shadow:
    0 32px 90px rgba(20, 7, 41, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 42px rgba(185, 140, 255, 0.28);
  animation: rise 700ms ease-out both;
}

.logo {
  width: clamp(150px, 20vw, 240px);
  height: auto;
  margin-bottom: 0.6rem;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.68rem, 1.5vw, 0.86rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0.65rem 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.45rem, 1.2vw, 1rem);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 4.8vw, 4rem);
  line-height: 1.08;
  flex-wrap: wrap;
}

.old {
  color: rgba(238, 244, 255, 0.88);
  text-decoration: line-through;
  text-decoration-color: rgba(215, 182, 255, 0.95);
  text-decoration-thickness: 3px;
}

.new {
  color: #f4ddff;
  text-shadow:
    0 0 24px rgba(185, 140, 255, 0.65),
    0 0 36px rgba(124, 240, 255, 0.24);
}

.arrow {
  display: inline-block;
  color: var(--accent-3);
  animation: pulse 1.5s ease-in-out infinite;
}

.message {
  margin: 0 auto;
  max-width: 58ch;
  color: var(--ink);
  font-size: clamp(0.92rem, 1.8vw, 1.2rem);
  line-height: 1.45;
}

.message strong {
  color: #ffffff;
}

.cta {
  display: inline-block;
  margin-top: clamp(1rem, 2.4vw, 1.6rem);
  padding: 0.82rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #f9f1ff;
  background: linear-gradient(120deg, #7f3cff, #a35fff 55%, #c78eff);
  box-shadow: 0 10px 30px rgba(127, 60, 255, 0.46);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(127, 60, 255, 0.62);
}

footer {
  position: fixed;
  bottom: 0.9rem;
  z-index: 2;
  font-size: 0.78rem;
  color: rgba(238, 244, 255, 0.7);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

@keyframes float {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -16px, 0);
  }
}

@media (max-width: 640px) {
  .hero {
    width: min(94vw, 520px);
    border-radius: 20px;
    padding: 1rem;
  }

  .message {
    font-size: 0.95rem;
  }

  footer {
    bottom: 0.65rem;
  }
}
