@import url("flare.css?v=5");

/* Page 1 — redirect gate (unique minimal layout) */
.redirect-stage {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 48px 24px 64px;
}

.redirect-card {
  width: min(100%, 480px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 36px 36px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(15, 30, 40, 0.08);
}

.redirect-card h1 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--navy);
}

.redirect-card .sub {
  margin-top: 12px;
  font-size: 16px;
  color: #4b5158;
}

.progress {
  margin: 28px auto 0;
  height: 6px;
  width: 100%;
  background: #f0efe9;
  border-radius: 999px;
  overflow: hidden;
}

#progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--pink), var(--pink-soft));
  border-radius: 999px;
  animation: fillBar 2.4s ease forwards;
}

@keyframes fillBar {
  to { width: 100%; }
}

.redirect-meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  min-height: 1.2em;
}

.gate-cta {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gate-cta.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.gate-cta .btn {
  width: 100%;
  padding: 15px 22px;
  font-size: 16px;
}

.steps-row {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: left;
}

.steps-row div {
  background: #faf9f6;
  border: 1px solid #efeee8;
  border-radius: 12px;
  padding: 12px;
  font-size: 12px;
  color: var(--muted);
}

.steps-row strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  margin-bottom: 4px;
}

@media (max-width: 560px) {
  .steps-row { grid-template-columns: 1fr; }
  .redirect-card { padding: 32px 24px; }
}
