/* =========================================================
   GoSpoofing — App Store / Google Play adaptive lander
   ========================================================= */

/* ---------- Default (iOS / App Store) tokens ---------- */
:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-card: #ffffff;
  --text: #1d1d1f;
  --text-dim: #6e6e73;
  --text-mute: #86868b;

  --brand: #0071e3;
  --brand-hover: #0077ed;
  --brand-soft: #e8f1fe;

  --gs-teal:        #1f8575;
  --gs-teal-strong: #16685c;
  --gs-accent:      #1d9bf0;

  --success: #34c759;
  --danger: #ff3b30;

  --border: #e5e5ea;
  --border-strong: #d2d2d7;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 4px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --shadow-modal: 0 30px 80px rgba(0,0,0,.35);

  --font-stack: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
                'Helvetica Neue', Helvetica, Arial, sans-serif;

  --btn-radius: 999px;
  --icon-radius: 36px;

  --ease: cubic-bezier(.2,.8,.2,1);
}

/* ---------- Android / Google Play theme overrides ---------- */
.theme-android {
  --bg: #ffffff;
  --bg-soft: #f1f3f4;
  --bg-card: #ffffff;
  --text: #202124;
  --text-dim: #5f6368;
  --text-mute: #80868b;

  --brand: #01875f;          /* Play Store green */
  --brand-hover: #017a55;
  --brand-soft: #e6f4ef;

  --border: #dadce0;
  --border-strong: #bdc1c6;

  --font-stack: 'Roboto', 'Google Sans', -apple-system, BlinkMacSystemFont, Arial, sans-serif;

  --btn-radius: 8px;           /* Material buttons less pill-y */
  --icon-radius: 22%;          /* Google Play icons ~22% */
}

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-stack);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ========== Theme-conditional show/hide ========== */
.ios-only, .android-only { display: none; }
.theme-ios .ios-only { display: revert; }
.theme-android .android-only { display: revert; }

/* Utility */
.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================================
   TOPBAR — per theme
   ======================================================== */

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 48px;
  gap: 12px;
}
.topbar-brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--text);
}
.topbar-brand .mini-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 18%, #111 18% 22%, #fff 22% 52%, transparent 52%),
    linear-gradient(180deg, #ed2b2a 0 50%, #fff 50% 100%);
  box-shadow: 0 1px 2px rgba(0,0,0,.2), inset 0 0 0 1px rgba(0,0,0,.4);
}
.theme-android .topbar-brand .mini-icon {
  border-radius: 22%;
}
.topbar-link {
  font-size: 14px; color: var(--brand); font-weight: 500;
}
.theme-android .topbar-link {
  font-weight: 500;
  font-size: 14px;
}

/* Android topbar gets a little left chevron + search icon look */
.topbar-android-tools { display: none; align-items: center; gap: 18px; color: var(--text-dim); }
.theme-android .topbar-android-tools { display: inline-flex; }
.theme-android .topbar-link { display: none; }
.topbar-android-tools svg { width: 20px; height: 20px; }

/* ========================================================
   HERO
   ======================================================== */
.hero { padding: 40px 0 30px; }
.hero-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
}

/* App icon — GoSpoofing: Pokéball on a map tile */
.app-icon {
  width: 160px; height: 160px;
  border-radius: var(--icon-radius);
  background:
    radial-gradient(80% 60% at 50% 35%, #4fd6c3 0%, transparent 60%),
    radial-gradient(70% 70% at 80% 80%, #0f6157 0%, transparent 60%),
    linear-gradient(135deg, #1f8575 0%, #124d44 100%);
  box-shadow: var(--shadow-lg), inset 0 1px 1px rgba(255,255,255,.35);
  position: relative;
  overflow: hidden;
  transition: border-radius .3s;
}
.theme-android .app-icon {
  background:
    radial-gradient(80% 60% at 50% 35%, #4fd6c3 0%, transparent 60%),
    radial-gradient(70% 70% at 80% 80%, #01875f 0%, transparent 60%),
    linear-gradient(135deg, #1f8575 0%, #014d34 100%);
}
.app-icon::after {
  content: '';
  position: absolute; inset: 14px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 55%);
  pointer-events: none;
}
/* Pokéball inside app icon */
.app-icon .pokeball {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.app-icon .pokeball::after {
  content: '';
  width: 62%; height: 62%;
  border-radius: 50%;
  background:
    linear-gradient(180deg, #ef3b3b 0 50%, #ffffff 50% 100%);
  box-shadow:
    0 8px 18px rgba(0,0,0,.3),
    inset 0 0 0 4px #111,
    inset 0 -10px 0 -5px rgba(0,0,0,.18),
    inset 10px 10px 22px rgba(255,255,255,.35);
}
.app-icon .pokeball::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 18%; height: 18%;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 3px #111, 0 0 0 4px #111;
  z-index: 2;
}
.app-icon .pokeball-top,
.app-icon .pokeball-band,
.app-icon .pokeball-btn { display: none; }

/* Meta */
.hero-meta h1 {
  font-size: 32px; font-weight: 700; letter-spacing: -.02em;
  margin: 0 0 4px;
  line-height: 1.1;
}
.theme-android .hero-meta h1 { font-weight: 500; letter-spacing: 0; }
.hero-meta .subtitle {
  color: var(--text-dim); font-size: 17px; margin: 0 0 14px;
}
.theme-android .hero-meta .subtitle { font-size: 14px; color: var(--brand); font-weight: 500; }

.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 6px;
}
.btn-get {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 88px;
  padding: 8px 22px;
  border-radius: var(--btn-radius);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, transform .15s;
}
.btn-get:hover { background: var(--brand-hover); }
.btn-get:active { transform: scale(.96); }
.theme-android .btn-get {
  padding: 10px 28px;
  font-weight: 500;
  min-width: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
}

.hero-price {
  color: var(--text-dim); font-size: 13px; display: flex; gap: 10px; align-items: center;
}
.theme-android .hero-price { display: none; }  /* Play shows "In-app purchases" elsewhere */

.hero-share {
  color: var(--brand); font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}

/* Meta row (rating / category / age / lang) */
.meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 30px 0 0;
}
.meta-item {
  background: var(--bg);
  text-align: center;
  padding: 14px 10px;
}
.meta-item .value {
  font-size: 16px; font-weight: 600; color: var(--text-dim);
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.meta-item .value .stars { color: var(--text-dim); letter-spacing: 1px; font-size: 13px; }
.meta-item .label {
  font-size: 11px; color: var(--text-mute); text-transform: uppercase;
  letter-spacing: .05em; margin-top: 4px;
  font-weight: 500;
}
/* Android style: no borders, cleaner */
.theme-android .meta-row {
  background: transparent;
  border: none;
  gap: 0;
  margin: 20px 0 0;
}
.theme-android .meta-item {
  border-right: 1px solid var(--border);
  padding: 6px 4px;
}
.theme-android .meta-item:last-child { border-right: none; }
.theme-android .meta-item .value { font-weight: 500; font-size: 15px; color: var(--text); }
.theme-android .meta-item .label { text-transform: none; font-size: 12px; letter-spacing: 0; color: var(--text-dim); }

/* ========================================================
   SECTIONS
   ======================================================== */
.section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.section:first-of-type { border-top: none; }
.section h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -.01em;
  margin: 0 0 16px;
}
.theme-android .section h2 { font-weight: 500; font-size: 18px; }
.section p { color: var(--text); font-size: 16px; margin: 0 0 10px; line-height: 1.55; }
.theme-android .section p { font-size: 14px; color: var(--text-dim); }

.feature-list {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.feature-list li {
  position: relative;
  padding: 10px 14px 10px 34px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.feature-list li::before {
  content: '';
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ef3b3b 0 50%, #fff 50% 100%);
  box-shadow: inset 0 0 0 1.5px #111;
}
.feature-list li strong { display: block; font-weight: 600; margin-bottom: 1px; }
.theme-android .feature-list li strong { font-weight: 500; }
@media (max-width: 560px) { .feature-list { grid-template-columns: 1fr; } }

/* ========================================================
   PREVIEW — App Store / Play Store style screenshot row
   ======================================================== */

.preview-scroller {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 2px 24px;
  margin: 0 -20px; /* bleed horizontally past the container on mobile */
  padding-left: 20px;
  padding-right: 20px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.preview-scroller::-webkit-scrollbar { display: none; }

.preview-card {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
}

.preview-screen {
  position: relative;
  width: 100%;
  /* Aspect ratio matches the full source screenshot exactly (590x1280) so
     the image is shown in full without being clipped by any device frame. */
  aspect-ratio: 590 / 1280;
  border-radius: 22px;
  overflow: hidden;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  box-shadow:
    0 1px 0 rgba(0,0,0,.04),
    0 10px 30px rgba(0,0,0,.12),
    0 2px 8px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
}
.theme-android .preview-screen { border-radius: 16px; }

.wp-shot { }
.wp-map   { background-image: url('../images/screen-map.png'); }
.wp-menu1 { background-image: url('../images/screen-menu-1.png'); }
.wp-menu2 { background-image: url('../images/screen-menu-2.png'); }
.wp-menu3 { background-image: url('../images/screen-menu-3.png'); }

.preview-label {
  margin: 10px 4px 0;
  font-size: 12px;
  color: var(--text-dim);
  text-align: left;
  letter-spacing: .01em;
}
.theme-android .preview-label { font-size: 12px; }

/* ---------- GoSpoofing header overlay (masks "iPoGo" in screenshots) ----------
   Source screenshots are 590 x 1280. The phone status bar takes roughly y=0..95
   and the teal "iPoGo" title sits at y≈95..170. We precisely overlay a matching
   teal band over only the title portion so the phone status bar from the
   screenshot (time / 5G / battery) stays authentic. */
.screen-chrome {
  position: absolute;
  top: 7.4%;   /* 95 / 1280 */
  left: 0; right: 0;
  height: 5.9%; /* 75 / 1280 */
  z-index: 2;
  background: var(--gs-teal);
  display: flex; align-items: center; justify-content: center;
  padding: 0 18%;
  color: #fff;
  pointer-events: none;
}
.screen-chrome-title {
  font-size: 14px; font-weight: 600; letter-spacing: .2px;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(0,0,0,.15);
}
.screen-chrome-check {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gs-accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.screen-chrome-check svg { width: 12px; height: 12px; }

/* ---------- GoSpoofing footer overlay (masks "iPoGo v4.2.1 / iTeam©") ----------
   The source screenshot for menu-3 shows a small version / copyright footer at
   the very bottom (roughly y=1150..1260 in the 1280-tall image). We cover that
   band with a white strip and our own branding. */
.screen-footer {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 13%;   /* covers "iPoGo v4.2.1 ..." + "iTeam©" + any home-indicator area */
  z-index: 2;
  background: #ffffff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-dim);
  line-height: 1.2;
  pointer-events: none;
  padding: 0 6% 2%;
  text-align: center;
}
.screen-footer span  { font-size: 11px; font-weight: 500; color: #6b6b70; }
.screen-footer small { font-size: 10px; color: #8a8a90; margin-top: 2px; }

/* Centered, larger preview in the desktop gate */
.desktop-preview-card {
  width: 200px;
}

/* ========================================================
   INFO / RATINGS / REVIEWS
   ======================================================== */
.info-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-item {
  background: var(--bg);
  padding: 14px 16px;
}
.info-item .k { font-size: 12px; color: var(--text-mute); text-transform: uppercase; letter-spacing: .04em; }
.info-item .v { font-size: 15px; color: var(--text); margin-top: 2px; font-weight: 500; }
.theme-android .info-grid { border-radius: 8px; background: var(--border); }
.theme-android .info-item .k { text-transform: none; letter-spacing: 0; font-weight: 500; font-size: 13px; }

.rating-hero {
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  align-items: center;
}
.rating-hero .score {
  font-size: 64px; font-weight: 700; letter-spacing: -.03em;
  line-height: 1;
}
.theme-android .rating-hero .score { font-weight: 500; }
.rating-hero .out-of { color: var(--text-dim); font-size: 14px; margin-top: 4px; }
.rating-hero .bars { display: flex; flex-direction: column; gap: 4px; }
.rating-hero .bar-row {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-dim); font-size: 12px;
}
.rating-hero .bar-track {
  flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden;
}
.rating-hero .bar-fill { height: 100%; background: var(--text-dim); border-radius: 2px; }
.theme-android .rating-hero .bar-track { height: 8px; border-radius: 4px; }
.theme-android .rating-hero .bar-fill { background: var(--brand); border-radius: 4px; }

.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.review .head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-dim); margin-bottom: 6px;
}
.review .stars { color: #ff9500; letter-spacing: 1px; font-size: 13px; margin-bottom: 8px; }
.theme-android .review .stars { color: var(--brand); }
.review h4 { margin: 0 0 4px; font-size: 15px; font-weight: 600; }
.theme-android .review h4 { font-weight: 500; }
.review p { margin: 0; font-size: 14px; color: var(--text); line-height: 1.5; }

/* Android review header variant with avatar */
.theme-android .review .reviewer {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.theme-android .review .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #01875f, #34a853);
  color: #fff; font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.theme-android .review .reviewer-name { font-weight: 500; font-size: 14px; color: var(--text); }

/* Footer */
.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 40px;
}
.site-footer p { margin: 4px 0; }

/* ========================================================
   MODAL FLOW (shared + theme variants)
   ======================================================== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  padding: 16px;
  animation: fadeIn .25s ease both;
}
.modal-backdrop.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  width: 100%; max-width: 420px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-modal);
  overflow: hidden;
  position: relative;
  animation: modalIn .35s var(--ease) both;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
}
.theme-android .modal { border-radius: 16px; }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.modal-head .step-dots { display: flex; gap: 6px; }
.modal-head .step-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border-strong);
  transition: all .25s var(--ease);
}
.modal-head .step-dots span.active { background: var(--brand); width: 20px; border-radius: 3px; }
.modal-close {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: background .2s;
}
.modal-close:hover { background: var(--border); }
.modal-close svg { width: 14px; height: 14px; }

.modal-body { padding: 24px 22px 22px; }
.modal-body h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -.01em;
  margin: 0 0 6px;
}
.theme-android .modal-body h2 { font-weight: 500; }
.modal-body p.sub {
  color: var(--text-dim); font-size: 14px; margin: 0 0 22px;
  line-height: 1.5;
}

/* Steps */
.step { display: none; animation: stepIn .35s var(--ease) both; }
.step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Platform cards */
.platforms { display: flex; flex-direction: column; gap: 10px; margin: 6px 0 0; }
.platform-btn {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  padding: 16px 18px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s var(--ease);
  text-align: left;
}
.platform-btn:hover { border-color: var(--brand); background: var(--brand-soft); }
.platform-btn:active { transform: scale(.98); }
.platform-btn .pf-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.platform-btn .pf-icon.apple { background: #000; color: #fff; }
.platform-btn .pf-icon.google {
  background: linear-gradient(135deg, #34a853 0%, #4285f4 50%, #fbbc05 100%);
  color: #fff;
}
.platform-btn .pf-text { flex: 1; }
.platform-btn .pf-title { font-weight: 600; font-size: 16px; color: var(--text); }
.theme-android .platform-btn .pf-title { font-weight: 500; }
.platform-btn .pf-sub { font-size: 13px; color: var(--text-dim); margin-top: 2px; }
.platform-btn .pf-arrow { color: var(--text-mute); }

/* Form */
.field { display: block; margin-bottom: 14px; }
.field label {
  display: block; font-size: 12px; color: var(--text-dim);
  margin-bottom: 6px; font-weight: 500;
  letter-spacing: .02em;
}
.field input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font: inherit; font-size: 16px;
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s, background .2s;
}
.theme-android .field input { border-radius: 6px; border-width: 1.5px; }
.field input:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,113,227,.12);
}
.theme-android .field input:focus { box-shadow: 0 0 0 4px rgba(1,135,95,.12); }
.field .hint { font-size: 12px; color: var(--text-mute); margin-top: 6px; }
.field .err { display: none; font-size: 12px; color: var(--danger); margin-top: 6px; }
.field.invalid input { border-color: var(--danger); }
.field.invalid .err { display: block; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: background .2s, transform .15s;
}
.theme-android .btn-primary {
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
}
.btn-primary:hover { background: var(--brand-hover); }
.btn-primary:active { transform: scale(.985); }
.btn-primary:disabled { background: var(--border-strong); cursor: not-allowed; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 12px;
  color: var(--text-dim);
  font-size: 14px;
  border-radius: 12px;
}
.btn-ghost:hover { background: var(--bg-soft); color: var(--text); }

/* Preparing */
.preparing { text-align: center; padding: 10px 0 6px; }
.prep-icon {
  width: 72px; height: 72px; margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1f8575, #4fd6c3);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(31,133,117,.35);
  animation: pulseIcon 1.6s ease-in-out infinite;
}
.theme-android .prep-icon {
  background: linear-gradient(135deg, #01875f, #34a853);
  box-shadow: 0 10px 24px rgba(1,135,95,.35);
  border-radius: 22%;
}
@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}
.prep-icon svg { width: 36px; height: 36px; }
.progress-bar {
  height: 6px; border-radius: 4px;
  background: var(--border);
  overflow: hidden;
  margin: 20px 0 12px;
}
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #1f8575, #4fd6c3);
  border-radius: 4px;
  transition: width .3s ease-out;
}
.theme-android .progress-fill { background: linear-gradient(90deg, #01875f, #34a853); }
.prep-status {
  font-size: 14px; color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  min-height: 20px;
}

/* Captcha */
.captcha-card {
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  background: var(--bg);
  cursor: pointer;
  user-select: none;
  transition: border-color .2s;
  margin: 16px 0 8px;
}
.theme-android .captcha-card { border-radius: 6px; }
.captcha-card:hover { border-color: var(--brand); }
.captcha-check {
  width: 26px; height: 26px; border-radius: 4px;
  border: 2px solid var(--border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: #fff;
  position: relative;
  transition: all .3s var(--ease);
}
.captcha-check .spinner {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: none;
}
.captcha-check .check { width: 18px; height: 18px; color: #fff; display: none; }
.captcha-card.loading .captcha-check .spinner { display: block; }
.captcha-card.loading .captcha-check { border-color: transparent; }
.captcha-card.done { border-color: var(--success); cursor: default; }
.captcha-card.done .captcha-check { background: var(--success); border-color: var(--success); }
.captcha-card.done .captcha-check .check { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.captcha-label { flex: 1; font-size: 15px; color: var(--text); font-weight: 500; }
.captcha-brand {
  font-size: 9px; color: var(--text-mute);
  letter-spacing: .05em;
  text-align: right;
  line-height: 1.2;
}
.captcha-brand .logo {
  font-size: 14px; color: var(--text-dim); font-weight: 500;
  letter-spacing: 0;
}

/* Success */
.success-icon {
  width: 84px; height: 84px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--success);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(52,199,89,.35);
  animation: popIn .5s var(--ease) both;
}
@keyframes popIn {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.success-icon svg { width: 44px; height: 44px; }

.fineprint {
  font-size: 11px; color: var(--text-mute);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}

/* ========================================================
   DESKTOP GATE
   Shown when the visitor is not on a mobile device.
   Hides the regular landing and presents a QR code instead.
   ======================================================== */

.desktop-gate { display: none; }

.theme-desktop .topbar,
.theme-desktop main,
.theme-desktop .modal-backdrop { display: none !important; }

.theme-desktop {
  --bg: #0a0b10;
  --text: #eef0f5;
  --text-dim: #9aa0b4;
  --text-mute: #6a6f84;
  --border: rgba(255,255,255,.10);
  --border-strong: rgba(255,255,255,.22);
}
body.theme-desktop {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(31,133,117,.22), transparent 60%),
    radial-gradient(900px 500px at 90% 100%, rgba(239,59,59,.12), transparent 60%),
    #0a0b10;
  min-height: 100vh;
}

.theme-desktop .desktop-gate {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px 20px;
}

.desktop-card {
  width: 100%;
  max-width: 880px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.desktop-side {
  background:
    radial-gradient(600px 400px at 30% 20%, rgba(31,133,117,.28), transparent 60%),
    linear-gradient(180deg, #10131b 0%, #0a0b10 100%);
  padding: 40px 30px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.desktop-side .preview-card { width: 200px; }

.desktop-body {
  padding: 42px 40px;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--text);
}
.desktop-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-dim); font-weight: 600;
  margin-bottom: 12px;
}
.desktop-eyebrow::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 10px #30d158;
}
.desktop-body h1 {
  font-size: 32px; font-weight: 700; letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #fff;
}
.desktop-body h1 .accent {
  background: linear-gradient(135deg, #4fd6c3, #ef3b3b);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.desktop-body p.intro {
  color: var(--text-dim); font-size: 15px; line-height: 1.55;
  margin: 0 0 24px;
  max-width: 440px;
}

.qr-row {
  display: flex; align-items: center; gap: 20px;
  padding: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 22px;
}
.qr-frame {
  width: 150px; height: 150px;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  position: relative;
}
.qr-frame canvas, .qr-frame img { width: 100%; height: 100%; display: block; }
.qr-frame .qr-loading {
  position: absolute; inset: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #86868b; font-size: 11px;
}
.qr-copy { color: var(--text); font-size: 14px; line-height: 1.55; }
.qr-copy strong { display: block; font-weight: 600; color: #fff; margin-bottom: 4px; font-size: 15px; }
.qr-copy span { color: var(--text-dim); }

.desktop-steps {
  display: flex; flex-direction: column; gap: 10px;
  margin: 0 0 22px;
}
.desktop-step {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-dim);
  font-size: 13px;
}
.desktop-step .n {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.desktop-alt {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-mute);
}
.desktop-alt a {
  color: #4fd6c3; font-weight: 500;
}
.desktop-alt a:hover { text-decoration: underline; }

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 640px) {
  .hero { padding: 24px 0 20px; }
  .hero-inner { grid-template-columns: 120px 1fr; gap: 16px; }
  .app-icon { width: 120px; height: 120px; border-radius: 28px; }
  .theme-android .app-icon { border-radius: 22%; }
  .app-icon::after { inset: 10px; }
  .hero-meta h1 { font-size: 22px; }
  .hero-meta .subtitle { font-size: 14px; margin-bottom: 12px; }
  .btn-get { padding: 7px 20px; font-size: 14px; min-width: 76px; }
  .meta-row { grid-template-columns: repeat(4, 1fr); }
  .meta-item { padding: 12px 4px; }
  .meta-item .value { font-size: 14px; }
  .meta-item .label { font-size: 10px; }
  .section { padding: 30px 0; }
  .section h2 { font-size: 19px; }
  .preview-scroller { padding: 14px 16px 22px; gap: 12px; }
  .preview-card { width: 190px; }
  .screen-chrome-title { font-size: 13px; }
  .screen-chrome-check { width: 20px; height: 20px; }
  .screen-chrome-check svg { width: 11px; height: 11px; }
  .reviews { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .rating-hero { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .rating-hero .bars { max-width: 260px; margin: 0 auto; width: 100%; }
  .modal { border-radius: 20px; max-width: 100%; }
  .theme-android .modal { border-radius: 12px; }
  .modal-body { padding: 22px 18px 20px; }
  .modal-body h2 { font-size: 20px; }
}
@media (max-width: 380px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .app-icon { margin: 0 auto; }
  .hero-actions { justify-content: center; }
}

/* Desktop gate responsive (for small laptop windows) */
@media (max-width: 760px) {
  .desktop-card { grid-template-columns: 1fr; max-width: 440px; }
  .desktop-side { padding: 30px 20px 10px; border-right: none; border-bottom: 1px solid var(--border); }
  .desktop-side .preview-card { width: 170px; }
  .desktop-body { padding: 30px 24px; }
  .desktop-body h1 { font-size: 26px; }
  .qr-row { flex-direction: column; text-align: center; gap: 14px; }
  .qr-frame { width: 140px; height: 140px; }
}

/* ========================================================
   LOCKER MODAL — opens after "Continue to download"
   (OGAds-style key-unlock wall, redesigned in GoSpoofing theme)
   ======================================================== */

.locker-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 17, 22, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 24px 16px 48px;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.locker-overlay.open {
  display: flex;
  opacity: 1;
}

.locker-sheet {
  width: 100%;
  max-width: 720px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-modal);
  transform: translateY(20px);
  transition: transform .45s var(--ease);
  position: relative;
}
.locker-overlay.open .locker-sheet { transform: translateY(0); }

/* --- Head --- */
.locker-head {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}
.locker-head-icon {
  width: 72px; height: 72px;
  margin: 0;
}
.locker-head h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: var(--text);
}
.theme-android .locker-head h1 { font-weight: 500; letter-spacing: 0; }
.locker-head p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.5;
}

/* --- Live stats --- */
.locker-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.locker-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.locker-stat .dot {
  width: 8px; height: 8px; border-radius: 50%;
  animation: locker-pulse-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.locker-stat.green .dot { background: #34c759; box-shadow: 0 0 10px rgba(52,199,89,.6); }
.locker-stat.red   .dot { background: #ff3b30; box-shadow: 0 0 10px rgba(255,59,48,.6); }
.locker-stat .body { display: flex; flex-direction: column; min-width: 0; }
.locker-stat .label {
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.locker-stat .value {
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--text);
}
.locker-stat.green .value { color: #1f8575; }
.locker-stat.red   .value { color: #ff3b30; }

@keyframes locker-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(.85); }
}

/* --- Locked preview card --- */
.locker-preview {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px 18px;
  margin-bottom: 16px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.locker-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(31,133,117,.08), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(239,59,59,.06), transparent 55%);
  pointer-events: none;
}
.locker-preview-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.locker-key-box {
  display: inline-flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 16px;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.locker-key-text { color: var(--text); }
.locker-key-blur {
  color: var(--text-dim);
  filter: blur(4px);
  user-select: none;
  margin-left: 2px;
}
.locker-preview-icon {
  width: 82px; height: 82px;
  margin: 0 auto 14px;
  filter: grayscale(35%) brightness(.95);
  opacity: .7;
  position: relative;
  z-index: 1;
}
.locker-preview-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  pointer-events: none;
}
.locker-checking {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
}
.locker-checking-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  animation: locker-pulse-dot 1.5s ease-in-out infinite;
}

/* --- Progress bar --- */
.locker-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.locker-progress-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.locker-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--brand);
  border-radius: inherit;
  transition: width .5s var(--ease);
}
.locker-progress-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  min-width: 100px;
  text-align: right;
}

/* --- Warning banner --- */
.locker-warn {
  background: #fff8e6;
  border: 1px solid #f5d77c;
  color: #8a5a00;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.locker-warn svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: #d79100; }
.locker-warn strong { color: #6b4700; }

/* --- Steps --- */
.locker-steps {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.locker-steps-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.locker-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.locker-step {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.locker-step .n {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.locker-step .t {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
}
.locker-step .t strong { color: var(--text); font-weight: 600; }

/* --- CTA (CLICK HERE) --- */
.locker-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 0 4px;
}
.locker-click-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 260px;
  padding: 18px 40px;
  background: var(--brand);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 10px 24px -8px rgba(0, 113, 227, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  position: relative;
  overflow: hidden;
}
.locker-click-btn:hover,
.locker-click-btn:focus-visible {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow:
    0 16px 32px -10px rgba(0, 113, 227, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  outline: none;
}
.locker-click-btn:active { transform: translateY(0); }
.locker-click-btn svg { width: 20px; height: 20px; }
.locker-click-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  animation: locker-shine 2.6s linear infinite;
  pointer-events: none;
}
@keyframes locker-shine {
  0%   { left: -80%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}
.theme-android .locker-click-btn {
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.8px;
  padding: 16px 36px;
  box-shadow:
    0 10px 24px -8px rgba(1, 135, 95, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.theme-android .locker-click-btn:hover {
  box-shadow:
    0 16px 32px -10px rgba(1, 135, 95, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.locker-last-step {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .locker-sheet { padding: 22px 18px 26px; border-radius: 20px; }
  .locker-head { grid-template-columns: 56px 1fr; gap: 14px; margin-bottom: 18px; }
  .locker-head-icon { width: 56px; height: 56px; }
  .locker-head h1 { font-size: 21px; }
  .locker-head p { font-size: 13.5px; }
  .locker-stats { grid-template-columns: 1fr; gap: 8px; }
  .locker-steps-grid { grid-template-columns: 1fr; }
  .locker-key-box { font-size: 12.5px; padding: 7px 11px; }
  .locker-click-btn { min-width: 220px; padding: 16px 30px; font-size: 16px; }
  .locker-progress-text { min-width: 80px; font-size: 12px; }
}
