:root{
  --bg:#0b0b0f;
  --card:#121218;
  --stroke:rgba(255,255,255,.08);
  --text:#f5f5f7;
  --muted:rgba(255,255,255,.68);

  --orange:#ff5a1f;
  --orange2:#ff7a3d;

  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --r:18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

/* tela cheia real no mobile */
.rtPage{
  min-height: 100svh;
  display:flex;
  flex-direction:column;
  padding:
    calc(14px + env(safe-area-inset-top))
    calc(14px + env(safe-area-inset-right))
    calc(14px + env(safe-area-inset-bottom))
    calc(14px + env(safe-area-inset-left));
  position:relative;
  overflow:hidden;
}

.rtPage::before{
  content:"";
  position:absolute;
  inset:-140px;
  background:
    radial-gradient(620px 320px at 50% 10%, rgba(255,90,31,.22), transparent 60%),
    radial-gradient(520px 260px at 20% 30%, rgba(255,90,31,.12), transparent 70%);
  pointer-events:none;
}

.rtTop{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 6px 0 10px;
}

.rtLogo{
  height: 58px;
  width:auto;
  display:block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.45));
}

.rtWrap{
  position:relative;
  z-index:1;
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  width:100%;
}

.rtCard{
  width:min(520px, 100%);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 18px 16px 16px;
  position:relative;
  overflow:hidden;
}

.rtCard::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(640px 220px at 50% 0%, rgba(255,90,31,.10), transparent 55%);
  pointer-events:none;
}

.rtIcon{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius: 12px;
  background: rgba(255,90,31,.14);
  border: 1px solid rgba(255,90,31,.22);
  color: var(--orange);
  margin: 2px auto 10px;
  position:relative;
  z-index:1;
}

.rtTitle{
  margin:0;
  text-align:center;
  font-size: 18px;
  letter-spacing: -0.2px;
  position:relative;
  z-index:1;
  font-weight: 750;
}

.rtSub{
  margin:6px 0 14px;
  text-align:center;
  color: var(--muted);
  font-size: 12.8px;
  line-height: 1.35;
  position:relative;
  z-index:1;
}

.rtForm{ position:relative; z-index:1; }

.rtLabel{
  display:block;
  font-size: 11px;
  color: rgba(255,255,255,.72);
  margin: 0 0 6px 2px;
  font-weight: 650;
  letter-spacing: .02em;
}

.rtInput{
  width:100%;
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.32);
  color: var(--text);
  outline: none;
  font-size: 14px;
  letter-spacing: .06em;
}

.rtInput::placeholder{ color: rgba(255,255,255,.35); }
.rtInput:focus{
  border-color: rgba(255,90,31,.55);
  box-shadow: 0 0 0 4px rgba(255,90,31,.14);
}

.rtNote{
  display:flex;
  align-items:center;
  gap:8px;
  margin: 10px 0 12px;
  font-size: 11.3px;
  color: rgba(255,255,255,.70);
}

.rtDot{
  width:6px;height:6px;
  border-radius:999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,90,31,.14);
}

.rtBtn{
  width:100%;
  height: 42px;
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  color: #1b120d;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  cursor:pointer;
  box-shadow: 0 14px 30px rgba(255,90,31,.22);
}

.rtBtn:active{ transform: translateY(1px); }

.rtSecure{
  margin: 12px 0 2px;
  text-align:center;
  font-size: 11px;
  color: rgba(255,255,255,.62);
}
.rtLock{ margin-right:6px; opacity:.9; }

.rtResult{
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.34);
  color: rgba(255,255,255,.86);
  font-size: 12.6px;
  line-height: 1.35;
}

.rtHeadRow{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}
.rtBadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,90,31,.12);
  border: 1px solid rgba(255,90,31,.22);
  color: rgba(255,255,255,.92);
  font-weight: 750;
  font-size: 11.5px;
}
.rtBadge .dot{
  width:7px;height:7px;border-radius:999px;background:var(--orange);
  box-shadow:0 0 0 4px rgba(255,90,31,.14);
}

.rtMeta{
  display:grid;
  gap:6px;
  margin: 8px 0 12px;
}
.rtMeta b{ color:#fff; }

.rtTimeline{
  margin-top: 6px;
  display:grid;
  gap:10px;
}

.rtStep{
  display:grid;
  grid-template-columns: 18px 1fr;
  gap:10px;
  align-items:flex-start;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

.rtStepIcon{
  width:18px;height:18px;border-radius:999px;
  display:grid;place-items:center;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.70);
  font-size: 11px;
  margin-top: 2px;
}

.rtStep.isDone{
  border-color: rgba(255,90,31,.25);
  background: rgba(255,90,31,.08);
}
.rtStep.isDone .rtStepIcon{
  border-color: rgba(255,90,31,.35);
  color: #1b120d;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
}

.rtStepTitle{
  font-weight: 850;
  color: rgba(255,255,255,.92);
  margin: 0 0 3px;
}
.rtStepDesc{
  margin:0;
  color: rgba(255,255,255,.70);
  font-size: 12.2px;
}

.rtFoot{
  opacity:.65;
  font-size: 11px;
  text-align:center;
}