/* stylelint-disable selector-id-pattern */
/* stylelint-disable selector-class-pattern */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --card: #1a1a1a;
  --card2: #222;
  --border: #2a2a2a;
  --pink: #ff1f5a;
  --teal: #00c9a7;
  --white: #fff;
  --grey: #888;
  --grey2: #555;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Montserrat, sans-serif;
  background: var(--bg);
  color: var(--white);
  font-size: 15px;
  overflow-x: hidden;
  min-height: 100vh;
}

.screen {
  display: none;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1.25rem 3rem;
}

.screen.active {
  display: flex;
}

.inner {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.BB {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* BUTTONS */
.btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-family: Montserrat, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.btn:active {
  transform: scale(0.97);
}

.btn-pink {
  background: var(--pink);
  color: #fff !important;
  box-shadow: 0 4px 28px rgb(255 31 90 / 40%);
}

.btn-pink:hover {
  opacity: 0.9;
}

.btn-teal {
  background: var(--teal);
  color: #0d0d0d !important;
  font-weight: 800;
}

.btn-dark {
  background: var(--card2);
  color: var(--grey) !important;
  border: 1px solid var(--border);
}

/* INPUT */
input[type="text"] {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.2rem;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

input[type="text"]:focus {
  border-color: var(--pink);
}

input[type="text"]::placeholder {
  color: var(--grey2);
}

.inp-wrap {
  position: relative;
  margin-bottom: 0.75rem;
}

.at {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey);
  font-size: 0.95rem;
  pointer-events: none;
  font-weight: 600;
}

/* CARDS */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
}

.card-pink {
  border-color: rgb(255 31 90 / 30%);
  box-shadow: 0 0 20px rgb(255 31 90 / 6%);
}

/* SCAN */
.sstatus {
  background: rgb(0 201 167 / 8%);
  border: 1px solid rgb(0 201 167 / 20%);
  border-radius: 50px;
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.85rem;
  transition: all 0.4s;
}

.sstatus.found {
  background: var(--teal);
  color: #0d0d0d;
  font-weight: 800;
}

.srow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
}

.srow:last-child {
  border-bottom: none;
}

.srow .sl {
  color: var(--grey);
}

.srow .sv {
  color: var(--white);
  font-weight: 600;
}

.srow.done .sl {
  color: var(--teal);
}

.sspin {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

.sck {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgb(0 201 167 / 15%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 800;
}

/* AVATAR RING */
.avring {
  position: relative;
  border-radius: 50%;
  flex-shrink: 0;
}

.avborder {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(var(--pink), #ff9a3c, var(--pink));
  animation: spin 3s linear infinite;
}

.avinner {
  position: absolute;
  inset: 2.5px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avinner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avinit {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--pink);
}

/* POPUP */
.pop-overlay {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 85%);
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.pop-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.pop-box {
  background: var(--surface);
  border-radius: 24px 24px 0 0;
  padding: 2rem 1.5rem 2.5rem;
  width: 100%;
  max-width: 430px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.pop-overlay.show .pop-box {
  transform: translateY(0);
}

/* PROGRESS */
.prog {
  display: flex;
  gap: 4px;
  width: 100%;
  margin-bottom: 1rem;
}

.pseg {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
}

.pseg.a,
.pseg.d {
  background: var(--teal);
}

/* STATS */
.sbox {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 0.9rem;
}

.snum {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--pink);
  display: block;
  margin-bottom: 0.2rem;
}

/* VISITOR ROWS */
.vrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.vrow:last-child {
  border-bottom: none;
}

.vav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink);
  background: var(--card2);
}

.vav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLURRED CARD ROWS (S7, S8, S9) */
.blur-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.blur-card:last-child {
  margin-bottom: 0;
}

.bav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--card2);
}

.bav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.1);
}

.bav-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #333, #444);
  filter: blur(6px);
}

.btxt {
  flex: 1;
  min-width: 0;
}

.bnm {
  height: 9px;
  border-radius: 4px;
  background: var(--card2);
  width: 130px;
  filter: blur(5px);
  margin-bottom: 5px;
}

.bsb {
  height: 7px;
  border-radius: 4px;
  background: var(--card2);
  width: 90px;
  filter: blur(4px);
}

/* TESTIMONIAL */
.testi {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.testi:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.thd {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.tav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgb(255 31 90 / 10%);
  border: 1px solid rgb(255 31 90 / 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--pink);
  flex-shrink: 0;
  overflow: hidden;
}

.tav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  font-size: 0.72rem;
  color: #fbbf24;
  letter-spacing: 1px;
}

.testi p {
  font-size: 0.82rem;
  color: rgb(255 255 255 / 65%);
  line-height: 1.65;
}

/* OFFER FEATURES GRID */
.feat-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.feat-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.feat-box-icon {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feat-box-title {
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.feat-box-desc {
  font-size: 0.75rem;
  color: var(--grey);
  line-height: 1.4;
}

/* CHECKLIST */
.ci {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.7rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.ck {
  color: var(--pink);
  flex-shrink: 0;
  font-weight: 800;
  margin-top: 1px;
  font-size: 1rem;
}

/* NOTIF */
.notif {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 500;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.35s;
  opacity: 0;
  width: calc(100% - 2.5rem);
  max-width: 400px;
  box-shadow: 0 8px 32px rgb(0 0 0 / 60%);
}

.notif.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  background: var(--card2);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.ndot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: blink 0.9s infinite;
}

/* SPINNER */
.spin-d {
  position: relative;
  width: 72px;
  height: 72px;
}

.spin-d .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}

.spin-d .r1 {
  border-top-color: var(--teal);
  animation: spin 1s linear infinite;
}

.spin-d .r2 {
  inset: 8px;
  border-top-color: var(--pink);
  animation: spin 0.7s linear infinite reverse;
}

.spin-d .r3 {
  inset: 16px;
  border-top-color: rgb(255 255 255 / 7%);
  animation: spin 1.3s linear infinite;
}

/* MINI AVATARS (S4) */

/* carousel */
#deepAvs {
  overflow: hidden;
  width: 100%;
  margin: 0.6rem 0;
}

#carTrack {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  align-items: center;
  width: max-content;
}

#carTrack.running {
  animation: car-scroll 10s linear infinite;
}

@keyframes car-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.cav {
  display: block;
  width: 66px;
  height: 66px;
  min-width: 66px;
  min-height: 66px;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 2px solid #ffffff26;
  background: #1a1a2e;
  flex-shrink: 0;
}

.cav img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}

.cav.blur img {
  filter: blur(5px);
}

.cav.sharp img {
  filter: blur(5px);
}

/* SCAN PROGRESS DOTS */
.scan-dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin: 0.5rem 0;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.sdot.on {
  background: var(--pink);
}

/* HSTEP */
.hstep {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.hstep:last-child {
  border-bottom: none;
}

.hnum {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

/* OFFER PRICE BOX */
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.75rem;
}

/* ANIMATIONS */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.15;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 20px #ff1f5a33;
  }

  50% {
    box-shadow: 0 0 40px #ff1f5a99;
  }
}

@keyframes scan-line {
  0% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

.fi {
  animation: fade-up 0.4s ease both;
}
