/* ============================================================
   Confirmation
   Replaces the wizard once the request is submitted: check,
   request ID, and what happens next.
   ============================================================ */

.confirm {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-28) var(--space-20);
}

.confirm__inner {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  animation: fade .5s ease both;
}

/* Pops in, then a single halo ring expands behind it */
.confirm__check {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-12);
  border-radius: 50%;
  background: var(--live-bg-hover);
  border: 1.5px solid var(--live-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop .5s cubic-bezier(.2, .8, .3, 1.2) both, ring 1.4s ease-out .4s;
}

.confirm__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-tighter);
  margin: 0 0 var(--space-4);
  color: var(--text);
}

.confirm__lead {
  font-size: var(--fs-md);
  color: var(--text-3);
  margin: 0 0 var(--space-12);
  text-wrap: pretty;
}

.confirm__actions {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
}

/* ---------- Request ID ---------- */

.id-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-5) var(--space-5) var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 5px;
  margin-bottom: var(--space-14);
}

.id-pill__label {
  font-size: var(--fs-sm);
  color: var(--text-4);
}

.id-pill__value {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  font-feature-settings: 'tnum';
  letter-spacing: var(--tracking-wide);
}

.id-pill__copy {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--field);
  border: 1px solid var(--border-3);
  color: var(--text-2);
  font: inherit;
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.id-pill__copy:hover {
  border-color: var(--accent);
  color: var(--accent-lt2);
}

/* ---------- What happens next ---------- */

.next {
  text-align: left;
  background: var(--field-muted);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-10) var(--space-12);
  margin-bottom: var(--space-14);
}

.next__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: var(--space-8);
}

.next__step {
  display: flex;
  gap: var(--space-7);
}

.next__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.next__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--border-3);
}

.next__dot.is-active {
  background: var(--live);
  border-color: var(--live);
}

.next__dot-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--on-live);
}

/* Grows to fill whatever the body next to it needs */
.next__line {
  width: 1.5px;
  flex: 1;
  min-height: 22px;
  background: var(--border-2);
}

.next__body {
  padding-bottom: var(--space-10);
}

.next__step:last-child .next__body {
  padding-bottom: 0;
}

.next__step-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--text-2);
}

.next__step-title.is-active {
  color: var(--text);
}

.next__step-desc {
  font-size: var(--fs-base);
  color: var(--text-4);
  margin-top: var(--space-1);
}
