:root {
  --navy: #1b3059;
  --cyan: #27def2;
  --aqua: #29f2f2;
  --deep: #15274e;
  --black: #0d0d0d;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Layout */
body {
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(41, 242, 242, 0.15), transparent 40%),
    radial-gradient(1000px 500px at 90% 80%, rgba(39, 222, 242, 0.15), transparent 40%),
    linear-gradient(180deg, var(--black), var(--deep));
  color: #ffffff;
}

.main-container {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 18s infinite ease-in-out;
}

.orb.one {
  width: 420px;
  height: 420px;
  background: var(--cyan);
  top: -120px;
  left: -120px;
}

.orb.two {
  width: 360px;
  height: 360px;
  background: var(--aqua);
  bottom: 0;
  right: 0;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(80px, -60px) scale(1.05) rotate(45deg);
  }
  50% {
    transform: translate(-50px, 90px) scale(0.95) rotate(-30deg);
  }
  75% {
    transform: translate(60px, -80px) scale(1.05) rotate(20deg);
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

/* Center container */
.container {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

/* Glass card */
.card {
  background: linear-gradient(180deg, rgba(27, 48, 89, 0.35), rgba(13, 13, 13, 0.25));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  margin: 1.5rem 0rem;
  max-width: 720px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  animation: fadeUp 1.2s ease forwards;
}

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

.card img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 1.5rem;
}

/* Text */
.badge {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(39, 222, 242, 0.15);
  color: var(--aqua);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffffff, var(--aqua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* Progress bar */
.progress-wrapper {
  margin: 2.5rem 0 1.5rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.6rem;
}

.progress {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--aqua));
  border-radius: 999px;
  animation: load 3s ease forwards;
}

@keyframes load {
  to {
    width: 72%;
  }
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--aqua));
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(39, 222, 242, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(39, 222, 242, 0.45);
}

footer {
  margin-top: 2.2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Tablet */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
    align-items: flex-start;
  }

  .card {
    padding: 2.2rem 1.5rem;
    border-radius: 18px;
  }

  .orb.one {
    width: 260px;
    height: 260px;
    top: -100px;
    left: -100px;
  }

  .orb.two {
    width: 220px;
    height: 220px;
    bottom: -80px;
    right: -80px;
  }
}

/* Phones */
@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }

  .card {
    padding: 2.4rem 1.6rem;
    margin: 1rem 0rem;
  }

  .badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.8rem;
  }

  .progress-wrapper {
    margin: 2rem 0 1.2rem;
  }

  .cta {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .card img {
    max-width: 100px;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #dbdbdb;
}
