/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  background: #070b14;
  color: #ffffff;
  overflow: hidden;
}

/* =========================================
   BACKGROUND
========================================= */

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 50%,
    #111a2e 0%,
    #070b14 55%,
    #04060b 100%
  );
}

/* Grid */

.grid {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;

  opacity: 0.15;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);

  background-size: 60px 60px;

  transform: perspective(500px) rotateX(60deg);
  transform-origin: center;
}

/* Glowing orbs */

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: float 10s ease-in-out infinite;
}

.orb-1 {
  width: 450px;
  height: 450px;

  top: -180px;
  left: -120px;

  background: #635bff;
}

.orb-2 {
  width: 400px;
  height: 400px;

  right: -100px;
  bottom: -180px;

  background: #00d4ff;

  animation-delay: -5s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -25px);
  }
}

/* =========================================
   MAIN
========================================= */

.construction {
  position: relative;
  z-index: 1;

  width: min(720px, calc(100% - 40px));

  min-height: 100vh;
  margin: auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 60px 0;
}

/* =========================================
   BADGE
========================================= */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 9px 16px;

  margin-bottom: 35px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 100px;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  color: #cbd5e1;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.status-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #39e58c;

  box-shadow:
    0 0 0 4px rgba(57, 229, 140, 0.12),
    0 0 15px rgba(57, 229, 140, 0.7);

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* =========================================
   ICON
========================================= */

.icon-wrapper {
  margin-bottom: 30px;
}

.icon {
  width: 86px;
  height: 86px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 26px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  transform: rotate(-5deg);

  animation: iconFloat 5s ease-in-out infinite;
}

.icon span {
  font-size: 38px;

  filter: drop-shadow(0 0 12px rgba(99, 91, 255, 0.8));

  transform: rotate(5deg);
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

/* =========================================
   HEADLINE
========================================= */

h1 {
  max-width: 680px;

  font-size: clamp(42px, 7vw, 76px);

  line-height: 0.98;

  font-weight: 800;

  letter-spacing: -3.5px;

  margin-bottom: 25px;

  color: #ffffff;
}

h1 span {
  display: block;

  background: linear-gradient(90deg, #8b83ff 0%, #5ee7ff 50%, #8b83ff 100%);

  background-size: 200% auto;

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;

  animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
  to {
    background-position: 200% center;
  }
}

/* =========================================
   DESCRIPTION
========================================= */

.description {
  max-width: 570px;

  color: #94a3b8;

  font-size: 17px;

  line-height: 1.7;

  margin-bottom: 40px;
}

/* =========================================
   PROGRESS
========================================= */

.progress-container {
  width: min(460px, 100%);

  margin-bottom: 35px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 10px;

  color: #94a3b8;

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.progress-header strong {
  color: #ffffff;
}

.progress {
  width: 100%;
  height: 7px;

  overflow: hidden;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.08);

  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.progress-bar {
  width: 75%;
  height: 100%;

  border-radius: inherit;

  background: linear-gradient(90deg, #635bff, #36d1dc);

  box-shadow: 0 0 20px rgba(99, 91, 255, 0.5);

  position: relative;

  animation: progressAnimation 1.8s ease-out;
}

.progress-bar::after {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 100px;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );

  animation: shine 2s infinite;
}

@keyframes progressAnimation {
  from {
    width: 0;
  }

  to {
    width: 75%;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100px);
  }

  100% {
    transform: translateX(100px);
  }
}

/* =========================================
   BUTTONS
========================================= */

.actions {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  margin-bottom: 55px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 48px;

  padding: 0 22px;

  border-radius: 12px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.button-primary {
  color: #ffffff;

  background: linear-gradient(135deg, #635bff, #4f46e5);

  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.25);
}

.button-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}

.button-primary span {
  font-size: 18px;

  transition: transform 0.2s ease;
}

.button-primary:hover span {
  transform: translateX(3px);
}

.button-secondary {
  color: #cbd5e1;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.button-secondary:hover {
  color: #ffffff;

  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(255, 255, 255, 0.18);

  transform: translateY(-3px);
}

/* =========================================
   FOOTER
========================================= */

.footer {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  color: #475569;

  font-size: 12px;
}

.separator {
  color: #334155;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 600px) {
  body {
    overflow-y: auto;
  }

  .construction {
    width: calc(100% - 30px);

    padding: 40px 0;
  }

  .badge {
    margin-bottom: 28px;
  }

  .icon {
    width: 72px;
    height: 72px;

    border-radius: 21px;
  }

  .icon span {
    font-size: 31px;
  }

  .icon-wrapper {
    margin-bottom: 25px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);

    letter-spacing: -2.5px;

    margin-bottom: 22px;
  }

  .description {
    font-size: 15px;

    line-height: 1.65;

    margin-bottom: 32px;
  }

  .progress-container {
    margin-bottom: 30px;
  }

  .actions {
    width: 100%;

    flex-direction: column;

    margin-bottom: 40px;
  }

  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;

    gap: 5px;
  }

  .separator {
    display: none;
  }

  .orb-1 {
    width: 300px;
    height: 300px;
  }

  .orb-2 {
    width: 280px;
    height: 280px;
  }
}

/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
