* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7faff;
  color: #071342;
  min-height: 100vh;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.16), transparent 32%),
    radial-gradient(circle at bottom left, rgba(120, 215, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #f8fbff, #eef6ff);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.65;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 230px;
  height: 230px;
  background: rgba(122, 92, 255, 0.22);
  top: -70px;
  right: -60px;
}

.orb-2 {
  width: 260px;
  height: 260px;
  background: rgba(120, 215, 255, 0.22);
  bottom: -90px;
  left: -80px;
  animation-delay: 1.5s;
}

.orb-3 {
  width: 180px;
  height: 180px;
  background: rgba(233, 213, 255, 0.35);
  top: 42%;
  right: 10%;
  animation-delay: 3s;
}

.container {
  width: min(920px, 92%);
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  text-align: center;
  padding: 54px 24px;
}

.app-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 22px;
}

.app-icon img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.eyebrow {
  color: #7a5cff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(42px, 8vw, 76px);
  line-height: 1;
  margin-bottom: 18px;
}

.subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: #7d86a3;
  font-size: 18px;
  line-height: 1.6;
}

.date {
  margin-top: 18px;
  color: #7a5cff;
  font-weight: 700;
}

.card,
.contact {
  margin: 18px 0;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 22px 45px rgba(122, 92, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.contact:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px rgba(122, 92, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  color: #4f5b7a;
  line-height: 1.75;
  font-size: 16px;
}

.contact {
  text-align: center;
  margin-top: 32px;
}

.contact a {
  display: inline-block;
  margin-top: 14px;
  color: #7a5cff;
  text-decoration: none;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.steps {
  margin-top: 18px;
  padding-left: 24px;
}

.steps li {
  color: #4f5b7a;
  line-height: 1.9;
  margin-bottom: 8px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-18px) scale(1.04);
  }
}

@media (max-width: 600px) {
  .container {
    width: 92%;
    padding: 34px 0;
  }

  .hero {
    padding: 36px 10px;
  }

  .card,
  .contact {
    padding: 22px;
    border-radius: 24px;
  }
}
