:root{
  --bg:#0b0b0f;
  --card:#121218;
  --stroke:rgba(255,255,255,.08);
  --text:#f5f5f7;
  --muted:rgba(255,255,255,.68);

  --orange:#0066FF;
  --orange2:#0080FF;

  --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(0,102,255,.22), transparent 60%),
    radial-gradient(520px 260px at 20% 30%, rgba(0,102,255,.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(0,102,255,.10), transparent 55%);
  pointer-events:none;
}

.rtIcon{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius: 12px;
  background: rgba(0,102,255,.14);
  border: 1px solid rgba(0,102,255,.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(0,102,255,.55);
  box-shadow: 0 0 0 4px rgba(0,102,255,.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(0,102,255,.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(0,102,255,.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(0,102,255,.12);
  border: 1px solid rgba(0,102,255,.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(0,102,255,.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(0,102,255,.25);
  background: rgba(0,102,255,.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;
}.trkPage{
  min-height:100vh;
  background:#050506;
  color:#fff;
  padding:24px 14px 40px;
}

.trkWrap{
  width:min(100%, 520px);
  margin:0 auto;
}

.trkHeader{
  text-align:center;
  margin-bottom:18px;
}

.trkLogo{
  height:58px;
  width:auto;
  display:block;
  margin:0 auto 10px;
}

.trkHeader h1{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.1;
}

.trkHeader p{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.45;
}

.trkSearchBox{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:16px;
  box-shadow:0 18px 50px rgba(0,0,0,.28);
}

.trkSearchBox label{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,.88);
}

.trkSearchBox input{
  width:100%;
  height:48px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:#0d0d12;
  color:#fff;
  padding:0 14px;
  font-size:15px;
  outline:none;
}

.trkSearchBox input:focus{
  border-color:rgba(0,102,255,.7);
  box-shadow:0 0 0 4px rgba(0,102,255,.14);
}

.trkSearchBox button{
  width:100%;
  height:48px;
  border:0;
  border-radius:14px;
  margin-top:12px;
  background:linear-gradient(180deg,#0052cc,#0066FF);
  color:#fff;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
}

.trkMini{
  margin:10px 0 0;
  font-size:12px;
  text-align:center;
  color:rgba(255,255,255,.56);
}

.trkError{
  margin-top:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:14px;
  font-size:13px;
  color:#ffb4b4;
}

.trkResult{
  margin-top:14px;
}

.trkCard{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:16px;
  box-shadow:0 18px 50px rgba(0,0,0,.28);
}

.trkTop{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:14px;
}

.trkBadge{
  display:inline-flex;
  align-self:flex-start;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(34,197,94,.14);
  color:#7ef0a8;
  border:1px solid rgba(34,197,94,.28);
  font-size:12px;
  font-weight:800;
}

.trkInfoGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:18px;
}

.trkInfoItem{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:12px;
}

.trkInfoItem--full{
  grid-column:1 / -1;
}

.trkInfoItem span{
  display:block;
  font-size:11px;
  color:rgba(255,255,255,.56);
  margin-bottom:6px;
}

.trkInfoItem strong{
  font-size:13px;
  line-height:1.45;
}

.trkTimeline{
  display:grid;
  gap:12px;
}

.trkStep{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.trkStepDot{
  width:16px;
  height:16px;
  border-radius:999px;
  margin-top:3px;
  flex:0 0 16px;
  border:2px solid rgba(255,255,255,.18);
  background:transparent;
}

.trkStep.is-done .trkStepDot{
  background:#22c55e;
  border-color:#22c55e;
}

.trkStepBody{
  flex:1;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.trkStep:last-child .trkStepBody{
  border-bottom:0;
  padding-bottom:0;
}

.trkStepTitle{
  font-size:14px;
  font-weight:700;
}

.trkStepDate{
  margin-top:4px;
  font-size:12px;
  color:rgba(255,255,255,.58);
}

/* COMPARISON SLIDER */
.cmp {
  position: relative;
  width: 100%;
  margin: 0 auto 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  --p: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  aspect-ratio: 16 / 10;
}

.cmp__after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  clip-path: inset(0 calc(100% - var(--p)) 0 0);
}

.cmp__divider {
  position: absolute;
  top: 0;
  left: var(--p);
  width: 2px;
  height: 100%;
  background: #fff;
  transform: translateX(-1px);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmp__handle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.22);
}

.cmp__drag {
  position: absolute;
  inset: 0;
  cursor: ew-resize;
}

@media (max-width: 420px) {
  .cmp { aspect-ratio: 16 / 11; }
}
