:root {
  --bg: #eaf0f7;
  --card: #ffffff;
  --ink: #0e2b4c;
  --muted: #4e5f74;
  --brand: #13b5ff;
  --brand-dark: #0a76c7;
  --shadow: 0 30px 80px rgba(14, 43, 76, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", "Manrope", "Avenir", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 10% 0%, #f8fbff 0%, transparent 60%),
    radial-gradient(1200px 800px at 90% 20%, #eef6ff 0%, transparent 60%),
    var(--bg);
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.page {
  width: min(920px, 100%);
}

.card {
  background: var(--card);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
  text-align: center;
}

.logo {
  width: min(420px, 80%);
  margin: 0 auto;
  display: block;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d7e4f5, transparent);
}

h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
}

.lead {
  margin: 0 auto;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(16px, 2.1vw, 18px);
  line-height: 1.6;
}

.progress {
  display: grid;
  gap: 12px;
}

.progress-bar {
  height: 14px;
  border-radius: 999px;
  background: #e7eef7;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--brand), #6ad7ff, var(--brand-dark));
  border-radius: inherit;
  position: relative;
  animation: loading 2.6s ease-in-out infinite;
}

.progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.5s linear infinite;
}

.progress-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.cta {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.cta-text {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cta-row input {
  flex: 0 1 320px;
  width: min(100%, 320px);
  min-width: 220px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  line-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #cdd9ea;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
}

.cta-row button {
  border: none;
  height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-row button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(14, 43, 76, 0.2);
}

.alt {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.alt a {
  color: var(--brand-dark);
  text-decoration: none;
}

.alt a:hover {
  text-decoration: underline;
}

@keyframes loading {
  0% {
    width: 22%;
  }
  50% {
    width: 78%;
  }
  100% {
    width: 22%;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 560px) {
  .progress-meta {
    font-size: 13px;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row button {
    width: min(100%, 320px);
  }
}
