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

.confirm {
  flex: 1;
  overflow-y: auto;
  padding: 56px 40px;
}

.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 24px;
  border-radius: 50%;
  background: rgba(20, 184, 166, .14);
  border: 1.5px solid rgba(20, 184, 166, .4);
  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: 27px;
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 0 0 8px;
  color: var(--text);
}

.confirm__lead {
  font-size: 14px;
  color: var(--text-3);
  margin: 0 0 22px;
  text-wrap: pretty;
}

.confirm__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

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

.id-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px 9px 15px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  margin-bottom: 26px;
}

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

.id-pill__value {
  font-size: 14px;
  font-weight: 400;
  font-feature-settings: 'tnum';
  letter-spacing: .02em;
}

.id-pill__copy {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--field);
  border: 1px solid var(--border-3);
  color: var(--text-2);
  font: inherit;
  font-size: 12.5px;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .15s;
}

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

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

.next {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px 22px;
  margin-bottom: 26px;
}

.next__title {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 16px;
}

.next__step {
  display: flex;
  gap: 14px;
}

.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(--accent);
  border-color: var(--accent);
}

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

/* 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: 20px;
}

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

.next__step-title {
  font-size: 14px;
  font-weight: 400;
  color: #9fb0bf;
}

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

.next__step-desc {
  font-size: 13px;
  color: var(--text-4);
  margin-top: 2px;
}
