:root {
  --bg: #050816;
  --bg-soft: #090f21;
  --card: rgba(9, 15, 33, 0.9);
  --accent: #7b5cff;
  --accent-soft: rgba(123, 92, 255, 0.25);
  --accent-strong: #ff7fd1;
  --text: #f7fbff;
  --muted: #9aa4c7;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.9);
}

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

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151a33 0, #050816 55%);
  color: var(--text);
  overflow: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1600 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  z-index: 0;
}

.gradient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 20%, #7b5cff, transparent 60%);
  top: -80px;
  left: -80px;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 70% 70%, #ff7fd1, transparent 60%);
  bottom: -90px;
  right: -40px;
  animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 40% 60%, #2fd6ff, transparent 60%);
  bottom: 40%;
  left: 60%;
  transform: translate(-50%, 50%);
  animation: floatOrb 24s ease-in-out infinite;
}

.wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.card {
  width: 100%;
  max-width: 720px;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    ),
    var(--card);
  border-radius: 26px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 26px 26px 24px;
  backdrop-filter: blur(22px) saturate(160%);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(123, 92, 255, 0.3),
    transparent 60%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease-out;
}

.card:hover::before {
  opacity: 1;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: radial-gradient(circle at 20% 0%, #ffffff, #ffe9ff 45%, #8f6bff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(123, 92, 255, 0.55),
    0 18px 30px rgba(0, 0, 0, 0.45);
  animation: floatLogo 3.2s ease-in-out infinite;
}

.logo-bolt {
  font-size: 22px;
  transform: translateY(-1px);
}

.logo-text {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(5, 8, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.headline h1 {
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: 8px;
  background: linear-gradient(120deg, #ffffff, #e2d8ff, #ffccf6);
  -webkit-background-clip: text;
  color: transparent;
}

.headline p {
  font-size: 14px;
  color: var(--muted);
  max-width: 420px;
}

.loader-row {
  margin-top: 26px;
}

.loader {
  position: relative;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at top, #151a33, #070b17);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.02)
  );
  background-size: 140px 100%;
  animation: shimmer 1.6s linear infinite;
  mix-blend-mode: screen;
}

.loader-bar {
  position: relative;
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7b5cff, #ff7fd1, #2fd6ff);
  box-shadow: 0 0 20px rgba(123, 92, 255, 0.9);
  transform-origin: left;
  animation: breatheWidth 4s ease-in-out infinite;
}

.loader-label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.loader-label span {
  color: var(--accent-strong);
  font-weight: 500;
}

.timeline {
  margin-top: 28px;
  border-left: 1px dashed rgba(255, 255, 255, 0.2);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.timeline-item .dot {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #7b5cff);
  box-shadow: 0 0 14px rgba(123, 92, 255, 0.9);
}

.timeline-item .dot.hollow {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.timeline-item.active .content h3 {
  color: #ffffff;
}

.timeline-item .content h3 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.timeline-item .content p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.timeline-item.pulse .dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(123, 92, 255, 0.85);
  opacity: 0.7;
  animation: pulseDot 1.8s ease-out infinite;
}

.bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn-ghost {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at top left, #151a33, #050816);
  color: var(--text);
  padding: 9px 18px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    background 0.15s ease-out, border-color 0.15s ease-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.btn-ghost::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffffff, #7b5cff);
  box-shadow: 0 0 10px rgba(123, 92, 255, 0.9);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: radial-gradient(circle at top left, #1b2141, #050816);
}

.btn-ghost:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
}

.eta {
  font-size: 12px;
  color: var(--muted);
}

.eta span {
  color: #d4dcff;
}

.footer {
  margin-top: 18px;
  font-size: 11px;
  color: rgba(160, 173, 215, 0.8);
  text-align: center;
}

.floating-tools {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.tool {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 0, #ffffff, #2fd6ff 50%, #050816);
  opacity: 0.4;
  mix-blend-mode: screen;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.9));
  animation: floatTool 12s ease-in-out infinite alternate;
}

.tool-1 {
  top: 8%;
  right: 18%;
}

.tool-2 {
  bottom: 18%;
  left: 12%;
  animation-delay: -4s;
}

.tool-3 {
  top: 55%;
  right: 6%;
  animation-delay: -7s;
}

@keyframes floatOrb {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, -12px, 0) scale(1.03);
  }
  100% {
    transform: translate3d(-16px, 10px, 0) scale(1.06);
  }
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -120px 0;
  }
  100% {
    background-position: 120px 0;
  }
}

@keyframes breatheWidth {
  0%,
  100% {
    transform: scaleX(0.7);
  }
  50% {
    transform: scaleX(0.9);
  }
}

@keyframes pulseDot {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes floatTool {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(16px, -18px, 0) rotate(9deg);
  }
  100% {
    transform: translate3d(-14px, 16px, 0) rotate(-7deg);
  }
}

@media (max-width: 640px) {
  body {
    overflow-y: auto;
  }

  .wrapper {
    padding: 24px 14px;
  }

  .card {
    padding: 22px 18px 20px;
    border-radius: 20px;
  }

  .logo-text {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .bottom-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .eta {
    font-size: 11px;
  }
}

