/* =============================================
   VOICE EARN — Main Stylesheet
   Font: Nunito Sans | Theme: Purple/White
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.1/src/regular/style.css');
@import url('https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.1/src/fill/style.css');

:root {
  --purple: #7A00C5;
  --purple-light: #9B30E0;
  --purple-dark: #5E0099;
  --purple-bg: #F5F0FA;
  --purple-bg2: #ECE2F5;
  --purple-border: #E0D0EC;
  --bg: #FFFFFF;
  --card-bg: #F7F4FB;
  --card-bg2: #F1ECF7;
  --card-border: #E7DEF0;
  --bg-input: #F4F0F8;
  --text: #1A1024;
  --text-2: #564B61;
  --text-3: #9B92A6;
  --border: #E7DEF0;
  --green: #10B981;
  --green-bg: #D9F7EC;
  --red: #EF4444;
  --red-bg: #FCE6E6;
  --gold: #F59E0B;
  --gold-bg: #FBEFD3;
  --blue: #3B82F6;
  --shadow: 0 1px 3px rgba(122,0,197,0.05);
  --shadow-lg: 0 8px 30px rgba(122,0,197,0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --card-texture: radial-gradient(circle at 1px 1px, rgba(122,0,197,0.045) 1px, transparent 0);
}

/* ── Dark mode (toggle via html[data-theme="dark"]) ── */
html[data-theme="dark"] {
  --purple: #A855F7;
  --purple-light: #C084FC;
  --purple-dark: #7E22CE;
  --purple-bg: #221331;
  --purple-bg2: #2D1A40;
  --purple-border: #3B2552;
  --bg: #120A1C;
  --card-bg: #1C1228;
  --card-bg2: #241733;
  --card-border: #322144;
  --bg-input: #251937;
  --text: #F3EDFA;
  --text-2: #B7A9C9;
  --text-3: #7E7090;
  --border: #322144;
  --green: #34D399;
  --green-bg: #0E2B22;
  --red: #F87171;
  --red-bg: #331616;
  --gold: #FBBF24;
  --gold-bg: #2E2410;
  --blue: #60A5FA;
  --shadow: 0 1px 3px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  --card-texture: radial-gradient(circle at 1px 1px, rgba(168,85,247,0.06) 1px, transparent 0);
}
html[data-theme="dark"] body { background: var(--bg); color: var(--text); }
html[data-theme="dark"] .modal-sheet,
html[data-theme="dark"] #u-modal { background: var(--card-bg); }
html[data-theme="dark"] .w-btn-white { background: #F3EDFA; color: #5E0099; }

* { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }

html, body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}

/* Bottom padding ONLY when the fixed bottom nav is present (app pages).
   Landing, auth and legal pages have no bottom nav, so no empty gap. */
body:has(.bottom-nav) { padding-bottom: 100px; }
body.page-leaving #page-content { opacity: 1; }
.sk-wrap { padding: 14px 12px; }
.sk-row { display: flex; gap: 10px; margin-bottom: 12px; }
#page-content { animation: pageIn .22s ease; }
@keyframes pageIn { from { opacity:0; transform: translateY(6px);} to {opacity:1; transform:none;} }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: 'Nunito Sans', sans-serif; }

/* ── App Shell ──────────────────────────────── */
.app-shell {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
}

/* ── Top Bar ────────────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}
.topbar-left { display: flex; align-items: center; gap: 10px; }
.greeting { font-size: 13px; color: var(--text-2); line-height: 1.3; }
.greeting strong { display: block; color: var(--text); font-size: 15px; font-weight: 800; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-input); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text); font-size: 16px;
  transition: all .15s; position: relative;
}
.icon-btn:active { transform: scale(0.92); background: var(--purple-bg); }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.notif-dot {
  position: absolute; top: 2px; right: 2px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); border: 2px solid var(--bg);
}

/* ── Cards ──────────────────────────────────── */
.card {
  background: var(--card-bg);
  background-image: var(--card-texture);
  background-size: 16px 16px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.card-plain {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 16px;
}

/* ── Wallet Card ────────────────────────────── */
.wallet-wrap { position: relative; }
.wallet-card {
  position: relative;
  border-radius: 24px;
  padding: 22px 20px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(155,48,224,0.55) 0%, rgba(155,48,224,0) 55%),
    radial-gradient(120% 120% at 100% 100%, rgba(74,0,128,0.75) 0%, rgba(74,0,128,0) 60%),
    linear-gradient(135deg, #3A0060 0%, #7A00C5 52%, #44007F 100%);
  box-shadow: 0 18px 40px rgba(122,0,197,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
  clip-path: polygon(0 0, calc(100% - 58px) 0, 100% 58px, 100% 100%, 0 100%);
}
/* glossy sheen + fine line texture */
.wallet-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 16px);
  opacity: .6;
}
.wallet-card::after {
  content: ''; position: absolute; top: -40%; left: -10%; width: 70%; height: 120%;
  background: linear-gradient(75deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  transform: rotate(8deg); pointer-events: none;
}
.wallet-blob { display: none; } /* replaced by gradient glows */

/* circular action nestled in the chopped corner */
.w-fab {
  position: absolute; top: 8px; right: 8px; z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25); text-decoration: none;
  transition: transform .15s;
}
.w-fab:active { transform: scale(0.92); }

.wallet-content { position: relative; z-index: 2; }
.wallet-top { display: flex; align-items: flex-start; justify-content: space-between; }
.w-label { font-size: 12px; color: rgba(255,255,255,0.72); font-weight: 600; letter-spacing: .3px; }
.w-amount { font-size: 34px; font-weight: 900; color: #fff; margin: 4px 0 8px; letter-spacing: -0.5px; }
.w-plan-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 800; color: #fff;
  background: rgba(255,255,255,0.18); padding: 4px 11px; border-radius: 50px;
  backdrop-filter: blur(4px);
}
/* sub-balance chips */
.w-subs { display: flex; gap: 10px; margin: 16px 0 4px; }
.w-sub {
  flex: 1; background: rgba(255,255,255,0.12); border-radius: 14px; padding: 10px 12px;
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.12);
}
.w-sub .ws-label { font-size: 10.5px; color: rgba(255,255,255,0.72); font-weight: 700; display: flex; align-items: center; gap: 5px; }
.w-sub .ws-val { font-size: 15px; font-weight: 900; color: #fff; margin-top: 3px; }

.w-divider { height: 1px; background: rgba(255,255,255,0.15); margin: 14px 0; }
.w-actions { display: flex; gap: 10px; }
.w-btn {
  flex: 1; padding: 11px 0; border-radius: 13px;
  font-size: 13px; font-weight: 800; display: flex;
  align-items: center; justify-content: center; gap: 6px;
  border: none; cursor: pointer; transition: all .15s; text-decoration: none;
}
.w-btn-white { background: #fff; color: var(--purple); }
.w-btn-white:active { transform: scale(0.97); }
.w-btn-glass { background: rgba(255,255,255,0.16); color: #fff; backdrop-filter: blur(4px); }
.w-btn-glass:active { transform: scale(0.97); background: rgba(255,255,255,0.26); }

/* legacy mic ripple (kept for any other page using it) */
.mic-wrap { position: relative; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
.mic-ripple { position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); animation: micRipple 2s ease-out infinite; }
.mic-ripple:nth-child(2) { animation-delay: 0.5s; }
.mic-ripple:nth-child(3) { animation-delay: 1s; }
@keyframes micRipple { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
.mic-circle { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; position: relative; z-index: 2; }

/* ── Setup Card ─────────────────────────────── */
.setup-card { padding: 14px 12px 0; }
.prog-track { height: 6px; background: var(--purple-bg2); border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
.prog-fill { height: 100%; background: linear-gradient(90deg, var(--purple), var(--purple-light)); border-radius: 10px; transition: width .5s ease; }
.step-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.step-row:last-child { border-bottom: none; }
.step-ico { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.step-ico.done { background: var(--green-bg); color: var(--green); }
.step-ico.todo { background: var(--bg-input); color: var(--text-3); }
.step-body { flex: 1; }
.step-title { font-size: 13px; font-weight: 700; color: var(--text); }
.step-title.done { text-decoration: line-through; color: var(--text-3); }
.step-hint { font-size: 11px; color: var(--text-3); margin-top: 1px; }
.step-badge { font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 50px; }
.step-badge.done { background: var(--green-bg); color: var(--green); }
.step-arrow { color: var(--text-3); font-size: 12px; }

/* ── Section Headers ────────────────────────── */
.section { padding: 14px 12px 0; }
.section-top { padding: 14px 12px 0; }
.sec-head { display: flex; align-items: center; justify-content: space-between; padding: 0; margin-bottom: 10px; }
.sec-title { font-size: 15px; font-weight: 800; color: var(--text); }
.sec-link { font-size: 12px; font-weight: 700; color: var(--purple); }

/* ── Horizontal Scroll Stats ────────────────── */
.hscroll { display: flex; gap: 10px; overflow-x: auto; padding: 0 12px; scrollbar-width: none; -ms-overflow-style: none; }
.hscroll::-webkit-scrollbar { display: none; }
.stat-card {
  min-width: 130px; flex-shrink: 0;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--purple-bg2); opacity: 0.5;
  animation: statBlob 8s ease-in-out infinite;
}
@keyframes statBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-5px, 5px) scale(1.1); }
}
.sc-icon { width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 15px; margin-bottom: 8px; position: relative; z-index: 1; }
.sc-icon.ic-purple { background: var(--purple-bg2); color: var(--purple); }
.sc-icon.ic-green { background: var(--green-bg); color: var(--green); }
.sc-icon.ic-gold { background: var(--gold-bg); color: var(--gold); }
.sc-icon.ic-red { background: var(--red-bg); color: var(--red); }
.sc-icon.ic-blue { background: #DBEAFE; color: var(--blue); }
.sc-label { font-size: 11px; color: var(--text-3); font-weight: 600; margin-bottom: 2px; position: relative; z-index: 1; }
.sc-val { font-size: 16px; font-weight: 900; color: var(--text); position: relative; z-index: 1; }
.sc-sub { font-size: 10px; font-weight: 700; margin-top: 2px; position: relative; z-index: 1; }
.sc-sub.pos { color: var(--green); }
.sc-sub.neg { color: var(--red); }

/* ── Referral Box ───────────────────────────── */
.ref-box { padding: 14px 12px 0; }
.ref-link-row {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-input); border-radius: var(--radius-sm);
  padding: 10px 12px; margin-bottom: 12px;
}
.ref-link-text { flex: 1; font-size: 12px; color: var(--text-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.copy-btn {
  padding: 6px 12px; border-radius: 8px; border: none;
  background: var(--purple); color: #fff;
  font-size: 11px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 4px; flex-shrink: 0;
}
.copy-btn:active { transform: scale(0.95); }
.ref-stats { display: flex; gap: 0; }
.rs { flex: 1; text-align: center; padding: 8px 0; }
.rs-val { font-size: 18px; font-weight: 900; color: var(--text); }
.rs-val.green { color: var(--green); }
.rs-val.amber { color: var(--gold); }
.rs-label { font-size: 10px; color: var(--text-3); font-weight: 600; margin-top: 2px; }

/* ── Quick Links Row ────────────────────────── */
.quick-row { display: flex; gap: 10px; padding: 14px 12px 0; }
.quick-card {
  flex: 1; display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px;
  transition: all .15s;
}
.quick-card:active { transform: scale(0.98); border-color: var(--purple-border); }
.quick-ico { width: 36px; height: 36px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.quick-label { font-size: 13px; font-weight: 700; color: var(--text); }
.quick-sub { font-size: 11px; color: var(--text-3); }
.quick-arrow { margin-left: auto; color: var(--text-3); font-size: 13px; }

/* ── Earn Grid ──────────────────────────────── */
.earn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.earn-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px;
  text-align: center; transition: all .15s;
}
.earn-card:active { transform: scale(0.97); border-color: var(--purple-border); }
.earn-icon { width: 40px; height: 40px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin: 0 auto 8px; }
.earn-name { font-size: 12px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.earn-reward { font-size: 11px; color: var(--green); font-weight: 700; margin-bottom: 4px; }
.earn-status { font-size: 10px; color: var(--text-3); font-weight: 600; }

/* ── Announcement ───────────────────────────── */
.announcement {
  background: linear-gradient(90deg, var(--purple-bg2), var(--purple-bg));
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin: 10px 12px 0;
  font-size: 12px; font-weight: 600; color: var(--purple-dark);
  display: flex; align-items: center; gap: 8px;
}

/* ── Bottom Nav ─────────────────────────────── */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 14px calc(14px + env(safe-area-inset-bottom, 0));
  pointer-events: none;
  background: linear-gradient(to top, rgba(255,255,255,0.96) 55%, rgba(255,255,255,0));
}
.bottom-nav-inner {
  max-width: 440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  padding: 9px 8px;
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 26px;
  box-shadow: 0 8px 28px rgba(122,0,197,0.16), 0 2px 8px rgba(0,0,0,0.05);
  pointer-events: auto;
}
.nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 6px 10px; border-radius: 16px;
  color: var(--text-3); font-size: 10px; font-weight: 700;
  transition: all .18s; cursor: pointer; border: none; background: none;
  position: relative; flex: 1;
}
.nav-item .nav-ico {
  font-size: 20px; transition: all .18s;
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 12px;
}
.nav-item.active { color: var(--purple); }
.nav-item.active .nav-ico {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 12px rgba(122,0,197,0.35);
}
.nav-item.active::after { content: none; }
.nav-dot {
  position: absolute; top: 2px; right: 18px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  border: 2px solid #fff;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; border: none; cursor: pointer;
  transition: all .15s; text-decoration: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 2px 8px rgba(122,0,197,0.3); }
.btn-primary:active { background: var(--purple-dark); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:active { background: var(--bg-input); }
.btn-green { background: var(--green); color: #fff; }
.btn-red { background: var(--red); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.w-full { width: 100%; }

/* ── Badges ─────────────────────────────────── */
.badge { font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 50px; }
.badge-green { background: var(--green-bg); color: var(--green); }
.badge-purple { background: var(--purple-bg2); color: var(--purple); }
.badge-gold { background: var(--gold-bg); color: #92400e; }

/* ── Forms ──────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 12px; font-weight: 700; color: var(--text-2); margin-bottom: 6px; }
.form-input, .form-select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--bg-input);
  font-family: 'Nunito Sans', sans-serif; font-size: 14px; color: var(--text);
  outline: none; transition: border-color .15s;
}
.form-input:focus, .form-select:focus { border-color: var(--purple); }
.form-input::placeholder { color: var(--text-3); }

/* ── Modals ─────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 200; display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-sheet {
  background: var(--bg); border-radius: 24px 24px 0 0;
  width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  padding: 16px 16px 24px;
  transform: translateY(100%); transition: transform .3s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.open .modal-sheet { transform: translateY(0); }
.modal-handle { width: 36px; height: 4px; border-radius: 10px; background: var(--border); margin: 0 auto 16px; }
.modal-title { font-size: 17px; font-weight: 900; text-align: center; margin-bottom: 16px; }

/* ── Toast ──────────────────────────────────── */
.toast {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%) translateY(-120%);
  background: var(--text); color: #fff; padding: 12px 20px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 700;
  z-index: 300; box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform .35s cubic-bezier(0.16,1,0.3,1);
  display: flex; align-items: center; gap: 8px; max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }

/* ── Skeleton Loader ────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-input) 25%, var(--purple-bg) 50%, var(--bg-input) 75%);
  background-size: 200% 100%;
  animation: skeletonShine 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeletonShine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card { height: 80px; margin-bottom: 10px; border-radius: var(--radius-lg); }
.skeleton-text { height: 14px; margin-bottom: 8px; }
.skeleton-title { height: 18px; width: 60%; margin-bottom: 12px; }

/* ── Spacer ─────────────────────────────────── */
.spacer { height: 24px; }

/* ── Auth Pages ─────────────────────────────── */
.auth-hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 24px;
  background: linear-gradient(180deg, var(--purple-bg) 0%, var(--bg) 100%);
}
.auth-logo {
  width: 56px; height: 56px; border-radius: 18px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px; margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(122,0,197,0.3);
}
.auth-title { font-size: 24px; font-weight: 900; text-align: center; margin-bottom: 4px; }
.auth-sub { font-size: 13px; color: var(--text-2); text-align: center; margin-bottom: 24px; }
.auth-card { background: var(--bg); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-lg); }
.auth-link { text-align: center; font-size: 13px; color: var(--text-2); margin-top: 16px; }
.auth-link a { color: var(--purple); font-weight: 700; }

/* ── Landing Page ───────────────────────────── */
.landing-hero {
  background: linear-gradient(135deg, #2A0044 0%, #7A00C5 50%, #4A0080 100%);
  background-size: 400% 400%; animation: walletBreathe 10s ease infinite;
  padding: 40px 24px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.landing-hero .wallet-blob { opacity: 0.4; }
.land-title { font-size: 32px; font-weight: 900; margin-bottom: 8px; position: relative; z-index: 2; }
.land-sub { font-size: 14px; opacity: 0.85; margin-bottom: 24px; position: relative; z-index: 2; }
.land-stats { display: flex; justify-content: center; gap: 24px; position: relative; z-index: 2; }
.land-stat div:first-child { font-size: 22px; font-weight: 900; }
.land-stat div:last-child { font-size: 11px; opacity: 0.7; }

/* ── Page transitions ───────────────────────── */
#page-content { animation: pageIn .25s ease; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Utility ────────────────────────────────── */
.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-sm { font-size: 12px; }
.text-xs { font-size: 11px; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.hidden { display: none; }

/* ── Plan Cards ─────────────────────────────── */
.plan-card { background: var(--card-bg); background-image: var(--card-texture); background-size: 16px 16px; border: 2px solid var(--card-border); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 14px; transition: all .2s; }
.plan-card.current { border-color: var(--purple); box-shadow: 0 6px 20px rgba(122,0,197,0.12); }
.plan-card.popular { border-color: var(--gold); box-shadow: 0 6px 20px rgba(245,158,11,0.12); }
.plan-feat { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-2); padding: 5px 0; }
.plan-feat i { color: var(--green); font-size: 14px; }
.popular-tag { background: var(--gold); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 50px; margin-left: 8px; }
.current-tag { background: var(--purple); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 50px; margin-left: 8px; }

/* ── Voice Earn Page ────────────────────────── */
.sentence-card { background: var(--bg); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; position: relative; overflow: hidden; }
.sentence-card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 80px; height: 80px; border-radius: 50%; background: var(--purple-bg2);
  animation: statBlob 10s ease-in-out infinite;
}
.sentence-text { font-size: 20px; font-weight: 700; line-height: 1.4; color: var(--text); margin-bottom: 20px; position: relative; z-index: 1; }
.rec-btn { width: 80px; height: 80px; border-radius: 50%; background: var(--purple); color: #fff; border: none; font-size: 32px; cursor: pointer; display: flex; align-items: center; justify-content: center; margin: 0 auto; transition: all .2s; box-shadow: 0 4px 20px rgba(122,0,197,0.4); position: relative; z-index: 1; }
.rec-btn.recording { background: var(--red); animation: pulse-btn 1s infinite; }
@keyframes pulse-btn { 0%,100%{transform:scale(1);box-shadow:0 4px 20px rgba(239,68,68,0.4)} 50%{transform:scale(1.08);box-shadow:0 6px 28px rgba(239,68,68,0.6)} }
.lang-btn { padding: 8px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; border: 2px solid var(--border); background: var(--bg); color: var(--text-2); cursor: pointer; transition: .15s; }
.lang-btn.active { border-color: var(--purple); background: var(--purple-bg2); color: var(--purple); }
.progress-dots { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); transition: .3s; }
.dot.done { background: var(--green); }
.dot.current { background: var(--purple); transform: scale(1.3); }
.word-display { font-size: 28px; font-weight: 900; color: var(--purple); text-align: center; margin: 20px 0; letter-spacing: 2px; }
.timer-bar { height: 6px; background: var(--border); border-radius: 10px; overflow: hidden; margin: 16px 0; }
.timer-fill { height: 100%; background: linear-gradient(90deg, var(--purple), var(--purple-light)); border-radius: 10px; transition: width 0.1s linear; }

/* ── Sponsored Post ─────────────────────────── */
.sponsored-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 14px; }
.sponsored-img { width: 100%; height: 180px; object-fit: cover; }
.sponsored-body { padding: 14px; }
.sponsored-title { font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.sponsored-content { font-size: 12px; color: var(--text-2); line-height: 1.5; margin-bottom: 12px; }
.sponsored-actions { display: flex; gap: 8px; }

/* ── Responsive ─────────────────────────────── */
/* Tablet / desktop framing — only kicks in well above phone widths
   so large phones and landscape never get desktop rules. */
@media (min-width: 900px) {
  body { background: linear-gradient(135deg, #efe7f7, #f6f1fb); }
  .app-shell {
    max-width: 1080px;
    margin: 0 auto;
    background: var(--bg);
    min-height: 100vh;
    box-shadow: 0 0 80px rgba(122,0,197,0.10);
    padding: 0 24px 24px;
  }
  /* dashboard becomes a 2-column layout on desktop */
  body[data-page="dashboard"] #page-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    align-items: start;
    padding-top: 8px;
  }
  /* full-width items span both columns */
  body[data-page="dashboard"] #page-content > .announcement,
  body[data-page="dashboard"] #page-content > div:first-of-type { grid-column: 1 / -1; }
  .stat-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .earn-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-row { grid-template-columns: 1fr 1fr; }
  /* bottom nav becomes a centered floating pill, not full width */
  .bottom-nav { background: none; }
  .bottom-nav-inner { max-width: 520px; }
  /* widen app cards/sections comfortably */
  .section { max-width: 100%; }
}
@media (min-width: 1200px) {
  body[data-page="dashboard"] #page-content { grid-template-columns: 1.5fr 1fr; }
}

/* ── Scrollbar hide ─────────────────────────── */
::-webkit-scrollbar { width: 0; height: 0; }

/* ── Language Picker Popup (Batch 2) ────────── */
.lang-popup-grid { display: flex; flex-direction: column; gap: 10px; }
.lang-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; border-radius: var(--radius);
  background: var(--card-bg); border: 2px solid var(--card-border);
  cursor: pointer; transition: all .15s; width: 100%; text-align: left;
}
.lang-option:active { transform: scale(0.98); }
.lang-option.selected { border-color: var(--purple); background: var(--purple-bg2); }
.lang-flag { font-size: 28px; }
.lang-name { font-size: 15px; font-weight: 800; color: var(--text); }
.lang-sub  { font-size: 12px; color: var(--text-3); margin-top: 1px; }

/* ── Big Task Card (Batch 2) ────────────────── */
.task-card-lg {
  background: var(--card-bg);
  background-image: var(--card-texture);
  background-size: 16px 16px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 18px; margin-bottom: 14px;
}
.task-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.task-ico {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: var(--purple-bg2); color: var(--purple);
}
.task-reward-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--green-bg); color: var(--green);
  font-size: 13px; font-weight: 800; padding: 5px 12px; border-radius: 50px;
}
.task-instructions {
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 12px 14px; margin: 12px 0;
  font-size: 12px; color: var(--text-2); line-height: 1.7;
  border: 1px solid var(--card-border);
}
.task-instructions ol { margin: 0; padding-left: 18px; }
.task-instructions li { margin-bottom: 4px; }
.verify-wait { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 8px; }

/* ── Result celebration ─────────────────────── */
.earn-success {
  text-align: center; padding: 28px 20px;
}
.earn-success-ring {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--green-bg); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; animation: popIn .4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }

/* ── Profile Menu (Batch 3) ─────────────────── */
.profile-hero {
  border-radius: var(--radius-lg); padding: 24px 20px; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2A0044 0%, #7A00C5 55%, #4A0080 100%);
  color: #fff; margin-bottom: 16px;
}
.profile-hero .ph-blob { position:absolute; border-radius:50%; filter:blur(40px); opacity:.45; }
.avatar-wrap { position: relative; width: 84px; height: 84px; margin: 0 auto 12px; }
.avatar-img {
  width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255,255,255,0.5); background: #fff;
  display:flex; align-items:center; justify-content:center;
  font-size: 28px; font-weight: 900; color: var(--purple);
}
.avatar-edit {
  position: absolute; bottom: 0; right: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff; color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--purple); cursor: pointer; font-size: 14px;
}
.menu-list { display: flex; flex-direction: column; gap: 10px; }
.menu-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--card-bg); background-image: var(--card-texture); background-size: 16px 16px;
  border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 15px 16px; cursor: pointer; transition: all .15s; text-decoration: none;
}
.menu-item:active { transform: scale(0.99); }
.menu-item .mi-ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--purple-bg2); color: var(--purple); font-size: 20px;
}
.menu-item .mi-body { flex: 1; min-width: 0; }
.menu-item .mi-title { font-size: 14px; font-weight: 800; color: var(--text); }
.menu-item .mi-sub { font-size: 11px; color: var(--text-3); margin-top: 1px; }
.menu-item .mi-arrow { color: var(--text-3); font-size: 18px; }
.mi-status { font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 50px; }

/* ── Saved bank card (Batch 3) ──────────────── */
.bank-payout-card {
  border-radius: var(--radius-lg); padding: 22px 20px; color: #fff;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2A0044 0%, #7A00C5 60%, #4A0080 100%);
  margin-bottom: 20px;
}
.bank-payout-card .bp-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.18); display:flex; align-items:center; justify-content:center;
  font-size: 22px; margin-bottom: 16px;
}
.bank-payout-card .bp-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; opacity: .7; }
.bank-payout-card .bp-name { font-size: 18px; font-weight: 900; margin: 4px 0 14px; }
.bank-payout-card .bp-acct { font-size: 22px; font-weight: 800; letter-spacing: 1px; }
.bank-payout-card .bp-bank { font-size: 13px; opacity: .8; margin-top: 2px; }
.bank-payout-card .bp-check {
  position: absolute; top: 18px; right: 18px;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5); display:flex; align-items:center; justify-content:center; font-size:14px;
}
.bank-payout-card .bp-default {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(255,255,255,0.2); font-size: 10px; font-weight: 800;
  padding: 5px 10px; border-radius: 6px; letter-spacing: .5px;
}

/* ── Searchable bank dropdown (Batch 3) ─────── */
.bank-search-wrap { position: relative; }
.bank-search-input {
  width: 100%; padding: 13px 14px; font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--card-border); border-radius: var(--radius-sm);
  background: var(--bg-input); color: var(--text);
  display: flex; align-items: center; justify-content: space-between; cursor: pointer;
}
.bank-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 50;
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(122,0,197,0.18); max-height: 300px; overflow: hidden;
  display: none;
}
.bank-dropdown.open { display: block; }
.bank-dropdown-search { padding: 10px; border-bottom: 1px solid var(--card-border); }
.bank-dropdown-search input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--card-border);
  border-radius: 10px; font-size: 13px; outline: none;
}
.bank-dropdown-list { max-height: 230px; overflow-y: auto; }
.bank-dd-item {
  padding: 11px 14px; font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--purple-bg);
}
.bank-dd-item:hover { background: var(--purple-bg); }
.bank-dd-item .bd-logo {
  width: 28px; height: 28px; border-radius: 8px; background: var(--purple-bg2);
  color: var(--purple); display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:900; flex-shrink:0;
}
.bank-dd-popular { font-size: 10px; font-weight: 800; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; padding: 8px 14px 4px; }
.acct-resolved {
  background: var(--green-bg); color: var(--green); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 13px; font-weight: 800; margin-top: 12px;
  display: flex; align-items: center; gap: 8px;
}

/* ── Wallet selector tabs (Batch 4) ─────────── */
.wallet-tabs {
  display: flex; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 50px; padding: 5px; margin-bottom: 18px;
}
.wallet-tab {
  flex: 1; padding: 12px; border-radius: 50px; border: none; cursor: pointer;
  font-size: 13px; font-weight: 800; background: transparent; color: var(--text-2);
  transition: all .18s;
}
.wallet-tab.active { background: var(--purple); color: #fff; box-shadow: 0 4px 14px rgba(122,0,197,0.3); }

.withdraw-balance {
  text-align: center; padding: 8px 0 18px;
}
.withdraw-balance .wb-label { font-size: 12px; color: var(--text-3); font-weight: 700; }
.withdraw-balance .wb-amount { font-size: 34px; font-weight: 900; color: var(--text); margin-top: 4px; }
.withdraw-balance .wb-min { font-size: 11px; color: var(--text-3); margin-top: 4px; }

.wd-closed {
  background: var(--red-bg); border-radius: var(--radius); padding: 16px;
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px;
}
.wd-closed .wc-ico { color: var(--red); font-size: 22px; flex-shrink: 0; }
.wd-closed .wc-title { font-size: 14px; font-weight: 800; color: var(--red); }
.wd-closed .wc-sub { font-size: 12px; color: #b04545; margin-top: 2px; line-height: 1.5; }

/* ── Withdrawal history (Batch 4) ───────────── */
.wd-history-item { display: flex; align-items: center; gap: 12px; padding: 13px 0; }
.wd-hi-ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.wd-hi-amount { font-size: 15px; font-weight: 900; }

/* ── Receipt (Batch 4) ──────────────────────── */
.receipt-wrap { padding: 16px; max-width: 420px; margin: 0 auto; }
.receipt {
  background: var(--card-bg); border-radius: 20px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(122,0,197,0.15); border: 1px solid var(--card-border);
}
.receipt-head {
  background: linear-gradient(135deg, #2A0044 0%, #7A00C5 60%, #4A0080 100%);
  color: #fff; padding: 26px 24px; text-align: center; position: relative;
}
.receipt-logo { height: 34px; margin: 0 auto 14px; display:block; filter: brightness(0) invert(1); }
.receipt-check {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 12px;
}
.receipt-amount { font-size: 32px; font-weight: 900; }
.receipt-status { font-size: 12px; opacity: .85; margin-top: 4px; }
.receipt-body { padding: 22px 24px; }
.receipt-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px dashed var(--card-border); }
.receipt-row:last-child { border-bottom: none; }
.receipt-row .rr-label { font-size: 12px; color: var(--text-3); font-weight: 600; }
.receipt-row .rr-value { font-size: 13px; color: var(--text); font-weight: 800; text-align: right; }
.receipt-perf {
  background: var(--purple-bg); border-radius: 0 0 20px 20px;
  padding: 14px 24px; text-align: center; font-size: 11px; color: var(--text-3);
}
.receipt-zigzag { height: 12px; background:
  linear-gradient(135deg, transparent 50%, #fff 50%) 0 0 / 14px 14px repeat-x,
  linear-gradient(-135deg, transparent 50%, #fff 50%) 0 0 / 14px 14px repeat-x;
  margin-top: -1px;
}

/* =============================================
   LANDING PAGE (Batch 6) — desktop + mobile
   ============================================= */
.lp { max-width: 100%; overflow-x: hidden; }
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
}
.lp-nav img { height: 34px; }
.lp-nav-links { display: flex; align-items: center; gap: 28px; }
.lp-nav-links a { font-size: 14px; font-weight: 700; color: var(--text-2); text-decoration: none; transition: color .15s; }
.lp-nav-links a:hover { color: var(--purple); }
.lp-nav-cta { display: flex; gap: 10px; align-items: center; }
.lp-burger { display: none; font-size: 26px; color: var(--purple); background: none; border: none; cursor: pointer; }

.lp-hero {
  position: relative; text-align: center; padding: 80px 24px 90px;
  background: radial-gradient(ellipse at 50% -10%, var(--purple-bg2) 0%, var(--bg) 55%);
  overflow: hidden;
}
.lp-hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; z-index: 0; }
.lp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-bg2); color: var(--purple);
  font-size: 13px; font-weight: 800; padding: 8px 16px; border-radius: 50px;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.lp-h1 {
  font-size: 52px; font-weight: 900; line-height: 1.08; letter-spacing: -1.5px;
  max-width: 760px; margin: 0 auto 20px; position: relative; z-index: 1; color: var(--text);
}
.lp-h1 .grad { background: linear-gradient(120deg, #7A00C5, #9B30E0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lp-sub { font-size: 18px; color: var(--text-2); max-width: 560px; margin: 0 auto 32px; line-height: 1.6; position: relative; z-index: 1; }
.lp-hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.lp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 50px; font-size: 15px; font-weight: 800;
  text-decoration: none; cursor: pointer; transition: transform .15s, box-shadow .15s; border: none;
}
.lp-btn-primary { background: var(--purple); color: #fff; box-shadow: 0 8px 24px rgba(122,0,197,0.35); }
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(122,0,197,0.45); }
.lp-btn-ghost { background: #fff; color: var(--purple); border: 2px solid var(--purple-border); }
.lp-btn-ghost:hover { transform: translateY(-2px); border-color: var(--purple); }

.lp-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 56px; position: relative; z-index: 1; }
.lp-stat .num { font-size: 36px; font-weight: 900; color: var(--purple); }
.lp-stat .lbl { font-size: 13px; color: var(--text-3); font-weight: 700; }

.lp-section { padding: 80px 24px; max-width: 1140px; margin: 0 auto; }
.lp-section-tag { text-align: center; font-size: 13px; font-weight: 800; color: var(--purple); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.lp-section-title { text-align: center; font-size: 38px; font-weight: 900; letter-spacing: -1px; color: var(--text); margin-bottom: 14px; }
.lp-section-sub { text-align: center; font-size: 16px; color: var(--text-2); max-width: 560px; margin: 0 auto 48px; line-height: 1.6; }

.lp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-card {
  background: var(--card-bg); background-image: var(--card-texture); background-size: 16px 16px;
  border: 1px solid var(--card-border); border-radius: 22px; padding: 30px 26px;
  transition: transform .25s, box-shadow .25s; cursor: default;
}
.lp-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(122,0,197,0.14); border-color: var(--purple-border); }
.lp-card-ico {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px;
}
.lp-card h3 { font-size: 19px; font-weight: 900; margin-bottom: 8px; color: var(--text); }
.lp-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.lp-why { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.lp-why-item { display: flex; gap: 16px; margin-bottom: 26px; }
.lp-why-item .wi-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--purple-bg2); color: var(--purple); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.lp-why-item h4 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.lp-why-item p { font-size: 14px; color: var(--text-2); line-height: 1.55; }
.lp-why-visual {
  border-radius: 24px; padding: 40px; min-height: 340px;
  background: linear-gradient(135deg, #2A0044 0%, #7A00C5 60%, #4A0080 100%);
  color: #fff; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.lp-why-visual .blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .4; }

.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-step { text-align: center; }
.lp-step .num { width: 52px; height: 52px; border-radius: 50%; background: var(--purple-bg2); color: var(--purple); font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.lp-step h4 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.lp-step p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

.lp-faq-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; margin-bottom: 12px; overflow: hidden; }
.lp-faq-q { padding: 20px 22px; font-size: 16px; font-weight: 800; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lp-faq-q .ph { transition: transform .2s; color: var(--purple); flex-shrink: 0; }
.lp-faq-item.open .lp-faq-q .ph { transform: rotate(180deg); }
.lp-faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s ease; padding: 0 22px; font-size: 14px; color: var(--text-2); line-height: 1.65; }
.lp-faq-item.open .lp-faq-a { max-height: 260px; padding: 0 22px 20px; }

.lp-cta-band {
  margin: 0 24px; border-radius: 28px; padding: 64px 32px; text-align: center;
  background: linear-gradient(135deg, #2A0044 0%, #7A00C5 60%, #4A0080 100%); color: #fff;
  position: relative; overflow: hidden; max-width: 1100px; margin-left: auto; margin-right: auto;
}
.lp-cta-band .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .4; }
.lp-cta-band h2 { font-size: 36px; font-weight: 900; margin-bottom: 12px; position: relative; z-index: 1; letter-spacing: -1px; }
.lp-cta-band p { font-size: 16px; opacity: .9; margin-bottom: 28px; position: relative; z-index: 1; }

.lp-footer { padding: 48px 24px 36px; border-top: 1px solid var(--card-border); margin-top: 70px; }
.lp-footer-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.lp-footer img { height: 30px; margin-bottom: 12px; }
.lp-footer-links { display: flex; gap: 36px; flex-wrap: wrap; }
.lp-footer-col h5 { font-size: 13px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.lp-footer-col a { display: block; font-size: 13px; color: var(--text-2); text-decoration: none; margin-bottom: 8px; }
.lp-footer-col a:hover { color: var(--purple); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .lp-nav-links { display: none; }
  .lp-nav-cta { display: none; }   /* avoid cramped buttons; CTAs live in the burger menu */
  .lp-burger { display: block; }
  .lp-h1 { font-size: 34px; }
  .lp-sub { font-size: 16px; }
  .lp-grid { grid-template-columns: 1fr; }
  .lp-why { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr 1fr; }
  .lp-section-title { font-size: 28px; }
  .lp-cta-band h2 { font-size: 26px; }
  .lp-stats { gap: 28px; }
}

/* ── Legal / Content pages (Batch 6) ────────── */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 24px; }
.legal-head { padding: 60px 24px 40px; text-align: center; background: radial-gradient(ellipse at 50% -20%, var(--purple-bg2), var(--bg)); }
.legal-head h1 { font-size: 36px; font-weight: 900; letter-spacing: -1px; }
.legal-head p { font-size: 14px; color: var(--text-3); margin-top: 8px; }
.legal-body h2 { font-size: 19px; font-weight: 800; margin: 28px 0 10px; color: var(--text); }
.legal-body p, .legal-body li { font-size: 15px; color: var(--text-2); line-height: 1.75; }
.legal-body ul { padding-left: 20px; margin: 8px 0; }
.legal-back { display:inline-flex; align-items:center; gap:6px; font-size:14px; font-weight:700; color:var(--purple); text-decoration:none; margin-bottom:8px; }

/* =============================================
   ADMIN PANEL (Batch 7) — sidebar, responsive
   ============================================= */
.adm-body { background: #F4F0F8; min-height: 100vh; }
.adm-layout { display: flex; min-height: 100vh; }
.adm-sidebar {
  width: 248px; flex-shrink: 0; background: #fff; border-right: 1px solid var(--card-border);
  position: fixed; top: 0; bottom: 0; left: 0; z-index: 200; display: flex; flex-direction: column;
  transition: transform .25s ease;
}
.adm-logo { padding: 20px 22px; border-bottom: 1px solid var(--card-border); display: flex; align-items: center; gap: 10px; }
.adm-logo img { height: 30px; }
.adm-nav { padding: 14px 12px; overflow-y: auto; flex: 1; }
.adm-nav a {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px;
  font-size: 14px; font-weight: 700; color: var(--text-2); text-decoration: none; margin-bottom: 3px; transition: all .15s;
}
.adm-nav a .ph { font-size: 19px; }
.adm-nav a:hover { background: var(--purple-bg); color: var(--purple); }
.adm-nav a.active { background: var(--purple); color: #fff; box-shadow: 0 4px 12px rgba(122,0,197,0.3); }
.adm-nav-sec { font-size: 11px; font-weight: 800; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; padding: 14px 14px 6px; }

.adm-main { flex: 1; margin-left: 248px; min-width: 0; }
.adm-topbar {
  background: #fff; border-bottom: 1px solid var(--card-border); padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100;
}
.adm-topbar h1 { font-size: 18px; font-weight: 900; }
.adm-burger { display: none; background: none; border: none; font-size: 24px; color: var(--purple); cursor: pointer; }
.adm-content { padding: 24px; max-width: 1200px; }

.adm-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.adm-stat { background: #fff; border: 1px solid var(--card-border); border-radius: 16px; padding: 20px; }
.adm-stat .s-ico { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.adm-stat .s-val { font-size: 26px; font-weight: 900; color: var(--text); }
.adm-stat .s-lbl { font-size: 12px; color: var(--text-3); font-weight: 700; margin-top: 2px; }

.adm-card { background: #fff; border: 1px solid var(--card-border); border-radius: 16px; padding: 20px; margin-bottom: 20px; }
.adm-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.adm-card-head h2 { font-size: 16px; font-weight: 900; }

.adm-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.adm-table th { text-align: left; padding: 11px 10px; color: var(--text-3); font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; border-bottom: 2px solid var(--card-border); }
.adm-table td { padding: 12px 10px; border-bottom: 1px solid var(--card-border); color: var(--text); }
.adm-table tr:last-child td { border-bottom: none; }
.adm-table tr:hover td { background: var(--purple-bg); }

.adm-pill { font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 50px; display: inline-block; }
.adm-pill.green { background: var(--green-bg); color: var(--green); }
.adm-pill.gold { background: var(--gold-bg); color: #92400e; }
.adm-pill.red { background: var(--red-bg); color: var(--red); }
.adm-pill.purple { background: var(--purple-bg2); color: var(--purple); }
.adm-pill.grey { background: #EEE; color: #777; }

.adm-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 10px; font-size: 13px; font-weight: 800; border: none; cursor: pointer; text-decoration: none; transition: all .15s; }
.adm-btn-sm { padding: 6px 11px; font-size: 12px; }
.adm-btn-primary { background: var(--purple); color: #fff; }
.adm-btn-primary:hover { background: var(--purple-dark); }
.adm-btn-green { background: var(--green); color: #fff; }
.adm-btn-red { background: var(--red); color: #fff; }
.adm-btn-ghost { background: var(--purple-bg); color: var(--purple); }

.adm-input, .adm-select, .adm-textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--card-border); border-radius: 10px;
  font-size: 14px; font-family: inherit; background: #fff; color: var(--text);
}
.adm-input:focus, .adm-select:focus, .adm-textarea:focus { outline: none; border-color: var(--purple); }
.adm-field { margin-bottom: 14px; }
.adm-field label { display: block; font-size: 13px; font-weight: 800; margin-bottom: 6px; color: var(--text-2); }
.adm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.adm-toggle { position: relative; display: inline-block; width: 46px; height: 26px; }
.adm-toggle input { opacity: 0; width: 0; height: 0; }
.adm-toggle .sl { position: absolute; cursor: pointer; inset: 0; background: #ccc; border-radius: 50px; transition: .2s; }
.adm-toggle .sl:before { content: ''; position: absolute; height: 20px; width: 20px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: .2s; }
.adm-toggle input:checked + .sl { background: var(--green); }
.adm-toggle input:checked + .sl:before { transform: translateX(20px); }

.adm-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 190; }
.adm-overlay.show { display: block; }

@media (max-width: 980px) { .adm-stat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 820px) {
  .adm-sidebar { transform: translateX(-100%); }
  .adm-sidebar.open { transform: translateX(0); }
  .adm-main { margin-left: 0; }
  .adm-burger { display: block; }
  .adm-row { grid-template-columns: 1fr; }
  .adm-table { font-size: 12px; }
  .adm-content { padding: 16px; }
  .adm-table-wrap { overflow-x: auto; }
}

/* ── Voice Earn word highlight (Batch 8) ────── */
.sentence-words { font-size: 24px; font-weight: 800; line-height: 1.5; color: var(--text); margin-bottom: 8px; position: relative; z-index: 1; }
.sentence-words .w {
  display: inline-block; padding: 1px 4px; border-radius: 6px; margin: 2px 1px;
  color: var(--text-3); transition: all .18s ease;
}
.sentence-words .w.hl {
  color: #fff; background: var(--purple); transform: scale(1.04);
  box-shadow: 0 3px 10px rgba(122,0,197,0.35);
}
.sentence-words .w.next { color: var(--text); background: var(--purple-bg2); }
.rec-btn:disabled { opacity: .4; cursor: not-allowed; }
.rec-btn.live { background: var(--red); animation: pulse-btn 1s infinite; }

/* feature-gate card */
.gate-card { text-align: center; padding: 32px 24px; }
.gate-ico { width: 80px; height: 80px; border-radius: 24px; background: linear-gradient(135deg,var(--purple),var(--purple-light)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:38px; margin: 0 auto 18px; box-shadow: 0 10px 26px rgba(122,0,197,0.3); }

/* ── Deposit hero (Batch 9) ─────────────────── */
.deposit-hero {
  position: relative; border-radius: 24px; padding: 26px 22px; overflow: hidden; color: #fff;
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(155,48,224,0.6), transparent 60%),
    radial-gradient(90% 90% at 0% 100%, rgba(74,0,128,0.7), transparent 60%),
    linear-gradient(135deg, #44007F, #7A00C5 55%, #3A0060);
  box-shadow: 0 18px 40px rgba(122,0,197,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}
.deposit-hero::after {
  content: ''; position: absolute; right: -30px; top: -30px; width: 150px; height: 150px;
  border-radius: 50%; border: 22px solid rgba(255,255,255,0.07);
}
.deposit-hero .dh-coin {
  position: absolute; right: 18px; bottom: 14px; font-size: 64px; color: rgba(255,255,255,0.12);
  transform: rotate(-12deg);
}
.deposit-hero .dh-label { font-size: 12px; opacity: .78; font-weight: 700; }
.deposit-hero .dh-amount { font-size: 36px; font-weight: 900; letter-spacing: -1px; margin: 4px 0 2px; }
.quick-amt {
  padding: 11px 0; border-radius: 12px; font-size: 14px; font-weight: 800; cursor: pointer;
  background: var(--purple-bg); color: var(--purple); border: 1.5px solid var(--purple-border);
  transition: all .15s;
}
.quick-amt:active { transform: scale(0.96); }
.quick-amt.sel { background: var(--purple); color: #fff; }

/* ── Upgrade mini card (Batch 9) ────────────── */
.upgrade-mini {
  display: flex; align-items: center; gap: 14px; text-decoration: none; color: #fff;
  border-radius: 18px; padding: 16px 18px; position: relative; overflow: hidden;
  background: linear-gradient(120deg, #7A00C5, #9B30E0 70%, #B44BF0);
  box-shadow: 0 10px 26px rgba(122,0,197,0.32);
}
.upgrade-mini::after { content:''; position:absolute; right:-20px; top:-20px; width:90px; height:90px; border-radius:50%; background:rgba(255,255,255,0.12); }
.upgrade-mini .um-ico { width:44px;height:44px;border-radius:13px;background:rgba(255,255,255,0.2);display:flex;align-items:center;justify-content:center;font-size:22px;flex-shrink:0;position:relative;z-index:1; }
.upgrade-mini .um-body { flex:1;position:relative;z-index:1; }
.upgrade-mini .um-title { font-size:15px;font-weight:900; }
.upgrade-mini .um-sub { font-size:11.5px;opacity:.85;margin-top:2px;line-height:1.4; }

/* ── Plan cards redesign (Batch 9) ──────────── */
.plan2 {
  position: relative; border-radius: 22px; padding: 0; margin-bottom: 18px; overflow: hidden;
  background: var(--card-bg); border: 1.5px solid var(--card-border); transition: transform .2s, box-shadow .2s;
}
.plan2:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(122,0,197,0.12); }
.plan2.cur { border-color: var(--green); }
.plan2.pop { border-color: var(--purple); box-shadow: 0 12px 30px rgba(122,0,197,0.16); }
.plan2-head {
  position: relative; padding: 20px 20px 18px; color: #fff; overflow: hidden;
  background: linear-gradient(135deg, #44007F, #7A00C5 60%, #9B30E0);
}
.plan2.pop .plan2-head { background: linear-gradient(135deg, #5E0099, #9B30E0 60%, #B44BF0); }
.plan2-head::after { content:''; position:absolute; right:-26px; top:-26px; width:96px; height:96px; border-radius:50%; background:rgba(255,255,255,0.1); }
.plan2-ribbon {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: 10px; font-weight: 900; letter-spacing: .5px; text-transform: uppercase;
  background: #fff; color: var(--purple); padding: 4px 10px; border-radius: 50px;
}
.plan2.cur .plan2-ribbon { color: var(--green); }
.plan2-name { font-size: 16px; font-weight: 800; opacity: .92; position: relative; z-index: 1; }
.plan2-price { font-size: 32px; font-weight: 900; letter-spacing: -1px; position: relative; z-index: 1; margin-top: 2px; }
.plan2-life { display:inline-flex; align-items:center; gap:5px; font-size:11px;font-weight:800; background:rgba(255,255,255,0.2); padding:3px 10px;border-radius:50px;margin-top:8px;position:relative;z-index:1; }
.plan2-body { padding: 18px 20px 20px; }
.plan2-feat { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 13px; color: var(--text-2); }
.plan2-feat .pf-ico { width:22px;height:22px;border-radius:7px;background:var(--green-bg);color:var(--green);display:flex;align-items:center;justify-content:center;font-size:12px;flex-shrink:0; }
.plan2-feat strong { color: var(--text); }
.plan2-locked { display:flex;align-items:center;justify-content:center;gap:6px;padding:12px;border-radius:12px;background:var(--bg-input);color:var(--text-3);font-size:13px;font-weight:800; }

/* ── Affiliate podium (Batch 10) ────────────── */
.podium { display: flex; align-items: flex-end; justify-content: center; gap: 10px; padding: 30px 6px 10px; }
.podium-col { flex: 1; max-width: 120px; display: flex; flex-direction: column; align-items: center; }
.podium-col.first { order: 2; }
.podium-col.second { order: 1; }
.podium-col.third { order: 3; }
.pod-ava {
  border-radius: 50%; background: var(--purple-bg2); color: var(--purple);
  display: flex; align-items: center; justify-content: center; font-weight: 900;
  overflow: hidden; border: 3px solid #fff; box-shadow: 0 6px 16px rgba(122,0,197,0.25); position: relative;
}
.pod-ava img { width: 100%; height: 100%; object-fit: cover; }
.podium-col.first .pod-ava { width: 84px; height: 84px; font-size: 28px; border-color: var(--gold); }
.podium-col.second .pod-ava, .podium-col.third .pod-ava { width: 64px; height: 64px; font-size: 20px; }
.pod-crown { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); font-size: 26px; color: var(--gold); }
.pod-medal {
  margin-top: -14px; width: 26px; height: 26px; border-radius: 50%; color: #fff; font-size: 13px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; border: 2px solid #fff; z-index: 2;
}
.pod-medal.g { background: linear-gradient(135deg,#F6C453,#E0A106); }
.pod-medal.s { background: linear-gradient(135deg,#C7CDD6,#9AA3B2); }
.pod-medal.b { background: linear-gradient(135deg,#E1A06B,#B9722F); }
.pod-name { font-size: 13px; font-weight: 800; margin-top: 8px; text-align: center; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pod-amt { font-size: 13px; font-weight: 900; color: var(--purple); margin-top: 2px; }
.pod-stand {
  width: 100%; border-radius: 14px 14px 0 0; margin-top: 10px;
  background: linear-gradient(180deg, var(--purple), #5E0099);
  display: flex; align-items: flex-start; justify-content: center; color: rgba(255,255,255,0.9); font-weight: 900; padding-top: 8px;
}
.podium-col.first .pod-stand { height: 70px; }
.podium-col.second .pod-stand { height: 50px; background: linear-gradient(180deg,#9AA3B2,#6B7280); }
.podium-col.third .pod-stand { height: 38px; background: linear-gradient(180deg,#E1A06B,#B9722F); }

.lb-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; }
.lb-rank { width: 26px; text-align: center; font-weight: 900; color: var(--text-3); font-size: 14px; }
.lb-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--purple-bg2); color: var(--purple); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; overflow: hidden; flex-shrink: 0; }
.lb-ava img { width: 100%; height: 100%; object-fit: cover; }

/* ── Auth input icons (Batch 10) ────────────── */
.in-ico { position: relative; }
.in-ico > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--purple); font-size: 17px; pointer-events: none; }
.in-ico .form-input { padding-left: 42px; }
.in-ico .pw-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--text-3); cursor: pointer; font-size: 17px; background: none; border: none; }

/* ── Wallet chip detail (Batch 11) ──────────── */
.w-chip { display: flex; align-items: center; justify-content: space-between; margin: 18px 0 4px; }
.w-chip-emv {
  width: 40px; height: 30px; border-radius: 7px;
  background: linear-gradient(135deg, #F6D77B, #C89B36);
  position: relative; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}
.w-chip-emv::before, .w-chip-emv::after {
  content: ''; position: absolute; left: 6px; right: 6px; height: 1px; background: rgba(0,0,0,0.25);
}
.w-chip-emv::before { top: 11px; } .w-chip-emv::after { top: 19px; }
.w-dots { display: flex; gap: 7px; }
.w-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.45); display: block; }
.w-dots i:last-child { background: rgba(255,255,255,0.9); }

/* ── Withdrawal success modal (Batch 12) ────── */
.wd-success {
  text-align: center; padding: 8px 4px 4px;
}
.wd-success-logo { height: 26px; margin: 0 auto 16px; display: block; }
.wd-success-check {
  width: 92px; height: 92px; margin: 0 auto 6px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.wd-success-check .ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(16,185,129,0.18), rgba(16,185,129,0) 70%);
}
.wd-success-check .disc {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #16C088, #0F9E6E);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 34px;
  box-shadow: 0 10px 24px rgba(16,185,129,0.4); position: relative; z-index: 1;
  animation: wdPop .35s ease;
}
@keyframes wdPop { 0% { transform: scale(0.5); opacity: 0; } 70% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.wd-success-amount { font-size: 34px; font-weight: 900; letter-spacing: -1px; margin: 12px 0 2px; color: var(--text); }
.wd-success-sub { font-size: 13px; color: var(--text-2); line-height: 1.5; margin-bottom: 6px; }
.wd-success-pill {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800;
  background: var(--green-bg); color: var(--green); padding: 6px 14px; border-radius: 50px; margin: 8px 0 18px;
}

/* ── Side drawer (Batch 13) ─────────────────── */
.drawer-overlay { position: fixed; inset: 0; background: rgba(10,4,18,0.55); opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 240; backdrop-filter: blur(2px); }
.drawer-overlay.show { opacity: 1; pointer-events: auto; }
.side-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 296px; max-width: 84vw;
  background: var(--bg); z-index: 250; transform: translateX(-104%);
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column; padding: 18px 16px;
  border-right: 1px solid var(--card-border); overflow-y: auto;
}
.side-drawer.open { transform: translateX(0); }
.sd-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sd-user { display: flex; align-items: center; gap: 10px; min-width: 0; }
.sd-ava { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, var(--purple), var(--purple-light)); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:900; flex-shrink:0; }
.sd-ava img { width: 100%; height: 100%; object-fit: cover; }
.sd-name { font-size: 14px; font-weight: 900; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sd-sub { font-size: 11.5px; color: var(--text-3); }
.sd-theme { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 10px 12px; margin-bottom: 14px; }
.theme-switch { display: flex; background: var(--bg-input); border-radius: 50px; padding: 3px; gap: 2px; }
.theme-opt { border: none; background: transparent; color: var(--text-3); font-size: 11.5px; font-weight: 800; padding: 6px 12px; border-radius: 50px; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: all .15s; }
.theme-opt.active { background: var(--purple); color: #fff; }
.sd-nav { display: flex; flex-direction: column; gap: 2px; }
.sd-link { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 13px; color: var(--text-2); font-size: 14px; font-weight: 700; text-decoration: none; transition: all .15s; }
.sd-link i { font-size: 19px; color: var(--purple); width: 22px; text-align: center; }
.sd-link:active, .sd-link:hover { background: var(--purple-bg); color: var(--text); }
.sd-tg { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.sd-tg-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border-radius: 13px; font-size: 13px; font-weight: 800; text-decoration: none; background: #2AABEE; color: #fff; }
.sd-tg-btn.alt { background: var(--purple-bg2); color: var(--purple); }
.sd-logout { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: 13px; background: var(--red-bg); color: var(--red); font-size: 13px; font-weight: 800; text-decoration: none; }

/* ── Wallet card v3 "Aurora Pro" (Batch 13) ── */
.wallet-card3 {
  position: relative; border-radius: 26px; padding: 24px 22px 20px; overflow: hidden; color: #fff;
  background:
    radial-gradient(140% 100% at 100% 0%, rgba(196,113,255,0.45) 0%, rgba(196,113,255,0) 50%),
    radial-gradient(120% 130% at 0% 100%, rgba(50,0,90,0.85) 0%, rgba(50,0,90,0) 60%),
    conic-gradient(from 210deg at 70% -10%, #3A0060, #7A00C5 35%, #9B30E0 55%, #5E0099 78%, #3A0060);
  box-shadow: 0 22px 48px rgba(94,0,153,0.4), inset 0 1px 0 rgba(255,255,255,0.22), inset 0 -1px 0 rgba(0,0,0,0.18);
}
.wallet-card3::before {
  content:''; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 18px);
}
.wallet-card3::after {
  content:''; position:absolute; top:-55%; right:-12%; width:65%; height:150%;
  background: linear-gradient(78deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(10deg); pointer-events:none;
}
.wc3-orb { position:absolute; border-radius:50%; filter: blur(2px); pointer-events:none; }
.wc3-orb.o1 { width:130px; height:130px; right:-44px; bottom:-58px; border:26px solid rgba(255,255,255,0.06); }
.wc3-orb.o2 { width:60px; height:60px; right:84px; top:18px; border:12px solid rgba(255,255,255,0.05); }
.wc3-top { display:flex; align-items:center; justify-content:space-between; position:relative; z-index:2; }
.wc3-brand { display:flex; align-items:center; gap:8px; font-size:12.5px; font-weight:900; letter-spacing:.6px; text-transform:uppercase; color:rgba(255,255,255,0.85); }
.wc3-brand i { font-size:17px; }
.wc3-plan {
  display:inline-flex; align-items:center; gap:5px; font-size:10.5px; font-weight:900; letter-spacing:.4px;
  background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.12));
  border: 1px solid rgba(255,255,255,0.25);
  padding:5px 12px; border-radius:50px; backdrop-filter: blur(6px); text-transform:uppercase;
}
.wc3-label { font-size:11.5px; color:rgba(255,255,255,0.66); font-weight:700; letter-spacing:.4px; margin-top:18px; position:relative; z-index:2; }
.wc3-amount { font-size:38px; font-weight:900; letter-spacing:-1.2px; line-height:1.1; margin-top:2px; position:relative; z-index:2; text-shadow: 0 2px 12px rgba(0,0,0,0.18); }
.wc3-meta { display:flex; align-items:center; gap:8px; margin-top:8px; position:relative; z-index:2; font-size:11.5px; color:rgba(255,255,255,0.72); font-weight:700; }
.wc3-meta .dotsep { width:3px; height:3px; border-radius:50%; background:rgba(255,255,255,0.45); }
.wc3-actions { display:flex; gap:10px; margin-top:20px; position:relative; z-index:2; }
.wc3-btn {
  flex:1; padding:12px 0; border-radius:14px; font-size:13px; font-weight:900;
  display:flex; align-items:center; justify-content:center; gap:7px;
  border:none; cursor:pointer; text-decoration:none; transition: transform .15s, background .15s;
}
.wc3-btn:active { transform: scale(0.96); }
.wc3-btn.solid { background:#fff; color:#5E0099; box-shadow: 0 6px 18px rgba(0,0,0,0.22); }
.wc3-btn.glass { background:rgba(255,255,255,0.14); color:#fff; border:1px solid rgba(255,255,255,0.22); backdrop-filter: blur(6px); }
.wc3-earnfab {
  position:absolute; top:16px; right:16px; z-index:3;
  width:46px; height:46px; border-radius:16px;
  background: linear-gradient(135deg,#FFD166,#F59E0B);
  color:#4A2800; display:flex; align-items:center; justify-content:center; font-size:21px;
  box-shadow: 0 8px 20px rgba(245,158,11,0.45); text-decoration:none; transition: transform .15s;
}
.wc3-earnfab:active { transform: scale(0.9) rotate(-6deg); }

/* ── Bottom nav v2: floating pill (Batch 13) ── */
.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; padding: 0 14px calc(12px + env(safe-area-inset-bottom)); background: none; pointer-events: none; }
.bottom-nav-inner {
  pointer-events: auto;
  max-width: 440px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center;
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--card-border);
  border-radius: 28px; padding: 8px 6px;
  box-shadow: 0 12px 36px rgba(36,8,60,0.18);
}
html[data-theme="dark"] .bottom-nav-inner { box-shadow: 0 12px 36px rgba(0,0,0,0.55); }
.nav-item {
  display:flex; flex-direction:column; align-items:center; gap:3px;
  font-size:10px; font-weight:800; color:var(--text-3); text-decoration:none;
  padding:7px 12px; border-radius:18px; transition: all .18s; position:relative;
}
.nav-item .nav-ico { display:flex; align-items:center; justify-content:center; height:24px; transition: transform .18s; }
.nav-item.active { color:var(--purple); background: var(--purple-bg); }
.nav-item.active .nav-ico { transform: translateY(-1px) scale(1.08); }

/* ── Telegram popup (Batch 13) ──────────────── */
.tg-pop {
  text-align:center; padding: 6px 2px 2px;
}
.tg-pop .tg-ico { width:74px; height:74px; border-radius:50%; margin:0 auto 14px; background: linear-gradient(135deg,#2AABEE,#1180c4); color:#fff; display:flex; align-items:center; justify-content:center; font-size:38px; box-shadow:0 12px 28px rgba(42,171,238,0.4); }
.tg-pop h3 { font-size:18px; font-weight:900; margin-bottom:6px; color:var(--text); }
.tg-pop p { font-size:13px; color:var(--text-2); line-height:1.6; margin-bottom:16px; }
.tg-btn-main { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:13px; border-radius:14px; background:#2AABEE; color:#fff; font-size:14px; font-weight:900; text-decoration:none; }
.tg-btn-sub { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:13px; border-radius:14px; background:var(--purple-bg2); color:var(--purple); font-size:14px; font-weight:900; text-decoration:none; margin-top:10px; }

/* ── Overview stats v2 (Batch 13) ───────────── */
.stat-grid2 { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.stat2 {
  position:relative; overflow:hidden; border-radius:18px; padding:14px 14px 12px;
  background: var(--card-bg); border:1px solid var(--card-border);
}
.stat2::after { content:''; position:absolute; right:-16px; top:-16px; width:58px; height:58px; border-radius:50%; background:var(--purple-bg2); opacity:.55; }
.stat2 .s2-ico { width:34px; height:34px; border-radius:11px; display:flex; align-items:center; justify-content:center; font-size:17px; margin-bottom:8px; position:relative; z-index:1; }
.stat2 .s2-val { font-size:19px; font-weight:900; color:var(--text); letter-spacing:-.4px; position:relative; z-index:1; }
.stat2 .s2-label { font-size:11px; color:var(--text-3); font-weight:700; margin-top:2px; position:relative; z-index:1; }

/* ── Setup progress card v2 (Batch 13) ──────── */
.setup2 { border-radius:20px; border:1px solid var(--purple-border); background:linear-gradient(160deg,var(--purple-bg),var(--card-bg)); padding:16px; }
.setup2-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.setup2-title { font-size:14px; font-weight:900; color:var(--text); display:flex; align-items:center; gap:8px; }
.setup2-pct { font-size:12px; font-weight:900; color:var(--purple); }
.setup2-bar { height:8px; border-radius:50px; background:var(--bg-input); overflow:hidden; margin-bottom:12px; }
.setup2-fill { height:100%; border-radius:50px; background:linear-gradient(90deg,var(--purple),var(--purple-light)); transition: width .5s ease; }
.setup2-step { display:flex; align-items:center; gap:10px; padding:9px 10px; border-radius:13px; text-decoration:none; transition: background .15s; }
.setup2-step:hover, .setup2-step:active { background: var(--purple-bg2); }
.setup2-step .st-ico { width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0; }
.setup2-step.done .st-ico { background:var(--green-bg); color:var(--green); }
.setup2-step.todo .st-ico { background:var(--bg-input); color:var(--text-3); }
.setup2-step .st-name { flex:1; font-size:13px; font-weight:800; color:var(--text); }
.setup2-step.done .st-name { color:var(--text-3); text-decoration:line-through; }
.setup2-step .st-go { font-size:15px; color:var(--purple); }

/* ── Landing 10x additions (Batch 13) ───────── */
.lp-trust { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:26px; }
.lp-trust-chip {
  display:inline-flex; align-items:center; gap:7px; font-size:12px; font-weight:800;
  background:var(--card-bg); border:1px solid var(--card-border); color:var(--text-2);
  padding:8px 14px; border-radius:50px;
}
.lp-trust-chip i { color:var(--purple); font-size:15px; }
.lp-ticker-wrap { overflow:hidden; border-top:1px solid var(--card-border); border-bottom:1px solid var(--card-border); background:var(--card-bg); padding:12px 0; }
.lp-ticker { display:flex; gap:34px; width:max-content; animation: lpTicker 28s linear infinite; }
@keyframes lpTicker { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.lp-tick { display:inline-flex; align-items:center; gap:8px; font-size:12.5px; font-weight:700; color:var(--text-2); white-space:nowrap; }
.lp-tick i { color:var(--green); }
.lp-tick strong { color:var(--text); }
.lp-testi-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:18px; margin-top:34px; }
.lp-testi { background:var(--card-bg); border:1px solid var(--card-border); border-radius:20px; padding:22px; text-align:left; }
.lp-testi .stars { color:var(--gold); font-size:14px; letter-spacing:2px; margin-bottom:10px; }
.lp-testi p { font-size:13.5px; color:var(--text-2); line-height:1.7; margin-bottom:14px; }
.lp-testi .who { display:flex; align-items:center; gap:10px; }
.lp-testi .who .ava { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,var(--purple),var(--purple-light)); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:900; font-size:13px; }
.lp-testi .who .nm { font-size:13px; font-weight:900; color:var(--text); }
.lp-testi .who .rl { font-size:11px; color:var(--text-3); }
.lp-rc-band { max-width:860px; margin:0 auto; padding:28px 24px; border-radius:24px; border:1.5px dashed var(--purple-border); background:var(--purple-bg); display:flex; align-items:center; gap:18px; flex-wrap:wrap; justify-content:center; text-align:center; }
.lp-rc-band .rc-ico { width:54px; height:54px; border-radius:16px; background:var(--purple); color:#fff; display:flex; align-items:center; justify-content:center; font-size:26px; flex-shrink:0; }

/* ── FAB ripple + setup3 + plan chip (Batch 14) ── */
.fab-ripple {
  position: absolute; inset: 0; border-radius: 16px;
  border: 2px solid rgba(255,209,102,0.85);
  animation: fabRipple 2.2s ease-out infinite; pointer-events: none;
}
.fab-ripple.r2 { animation-delay: .7s; }
.fab-ripple.r3 { animation-delay: 1.4s; }
@keyframes fabRipple {
  0%   { transform: scale(1); opacity: .9; }
  100% { transform: scale(1.85); opacity: 0; }
}

.plan-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 900; letter-spacing: .3px; text-transform: uppercase;
  background: var(--purple-bg2); color: var(--purple);
  padding: 5px 11px; border-radius: 50px; flex-shrink: 0;
}

.setup3 {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  border-radius: 20px; padding: 16px;
  background: linear-gradient(120deg, var(--purple), var(--purple-light) 85%);
  box-shadow: 0 12px 28px rgba(122,0,197,0.3);
  color: #fff; position: relative; overflow: hidden; transition: transform .15s;
}
.setup3:active { transform: scale(0.98); }
.setup3::after { content:''; position:absolute; right:-26px; top:-26px; width:100px; height:100px; border-radius:50%; background:rgba(255,255,255,0.1); }
.setup3-ring {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(#fff calc(var(--p) * 1%), rgba(255,255,255,0.22) 0);
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.setup3-ring span {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(60,0,100,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; color: #fff; backdrop-filter: blur(2px);
}
.setup3-body { flex: 1; min-width: 0; position: relative; z-index: 1; }
.setup3-kicker { font-size: 10px; font-weight: 900; letter-spacing: .8px; text-transform: uppercase; opacity: .75; }
.setup3-title { font-size: 15.5px; font-weight: 900; margin-top: 2px; }
.setup3-hint { font-size: 11.5px; opacity: .85; margin-top: 1px; }
.setup3-go {
  width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--purple);
  display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; position: relative; z-index: 1;
}

/* ── Premium black bank payout card (Batch 14) ── */
.bank-payout-card {
  border-radius: 24px; padding: 24px 22px; color: #fff;
  position: relative; overflow: hidden; margin-bottom: 20px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(122,0,197,0.55) 0%, rgba(122,0,197,0) 55%),
    radial-gradient(100% 100% at 0% 100%, rgba(155,48,224,0.25) 0%, rgba(155,48,224,0) 55%),
    linear-gradient(150deg, #15101D 0%, #0B0712 55%, #1A0E26 100%);
  box-shadow: 0 20px 44px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.08);
}
.bank-payout-card::before {
  content:''; position:absolute; inset:0; pointer-events:none; opacity:.55;
  background-image: repeating-linear-gradient(120deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 16px);
}
.bank-payout-card::after {
  content:''; position:absolute; top:-50%; right:-8%; width:55%; height:140%;
  background: linear-gradient(80deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(10deg); pointer-events:none;
}
.bank-payout-card .bp-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: #fff; color: #0B0712;
  display:flex; align-items:center; justify-content:center;
  font-size: 22px; margin-bottom: 18px; position: relative; z-index: 1;
  box-shadow: 0 6px 16px rgba(255,255,255,0.12);
}
.bank-payout-card .bp-label { font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 800; position: relative; z-index: 1; }
.bank-payout-card .bp-name { font-size: 18px; font-weight: 900; margin: 5px 0 16px; letter-spacing: .4px; position: relative; z-index: 1; }
.bank-payout-card .bp-acct { font-size: 24px; font-weight: 800; letter-spacing: 3px; font-variant-numeric: tabular-nums; position: relative; z-index: 1; }
.bank-payout-card .bp-bank { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; font-weight: 700; position: relative; z-index: 1; }
.bank-payout-card .bp-check {
  position: absolute; top: 18px; right: 18px; z-index: 1;
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; color: #0B0712; border: none;
  display:flex; align-items:center; justify-content:center; font-size:15px;
}
.bank-payout-card .bp-default {
  position: absolute; bottom: 18px; right: 18px; z-index: 1;
  font-size: 9.5px; font-weight: 900; letter-spacing: 1.2px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 5px 12px; border-radius: 50px;
}

/* ── Profile hero v2: dark luxe (Batch 14) ───── */
.profile-hero {
  border-radius: 26px; padding: 30px 20px 24px; text-align: center;
  position: relative; overflow: hidden; margin-bottom: 16px; color: #fff;
  background:
    radial-gradient(130% 90% at 50% 0%, rgba(122,0,197,0.6) 0%, rgba(122,0,197,0) 60%),
    linear-gradient(160deg, #16101F 0%, #0B0712 60%, #190E25 100%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.08);
}
.profile-hero .ph-blob { display: none; }
.profile-hero::before {
  content:''; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 17px);
}
.avatar-wrap { position: relative; width: 96px; height: 96px; margin: 0 auto 14px; z-index: 1; }
.avatar-ring {
  position: absolute; inset: -5px; border-radius: 50%;
  background: conic-gradient(from 180deg, #9B30E0, #FFD166, #fff, #9B30E0);
  animation: avatarSpin 6s linear infinite;
}
@keyframes avatarSpin { to { transform: rotate(360deg); } }
.avatar-img {
  position: relative; z-index: 1;
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  border: 4px solid #0B0712; background: #fff;
  display:flex; align-items:center; justify-content:center;
  font-size: 30px; font-weight: 900; color: var(--purple);
}
.avatar-edit {
  position: absolute; bottom: 2px; right: 2px; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; color: #0B0712;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #0B0712; cursor: pointer; font-size: 14px;
}
.profile-plan-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: #0B0712;
  font-size: 11px; font-weight: 900; letter-spacing: .5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-top: 10px;
}

/* ── Plans v3: black header ladder (Batch 14) ── */
.plan2 { border-radius: 24px; }
.plan2-head {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(122,0,197,0.5) 0%, rgba(122,0,197,0) 55%),
    linear-gradient(150deg, #161021 0%, #0B0712 60%, #190E25 100%);
  padding: 22px 20px;
}
.plan2.pop .plan2-head {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(196,113,255,0.55) 0%, rgba(196,113,255,0) 55%),
    linear-gradient(150deg, #3A0060 0%, #7A00C5 65%, #5E0099 100%);
}
.plan2-head::before {
  content:''; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 16px);
}
.plan2-price { font-size: 36px; }
.plan2-name { display: flex; align-items: center; gap: 8px; }
.plan2-name i { width: 30px; height: 30px; border-radius: 10px; background: rgba(255,255,255,0.14); display: inline-flex; align-items: center; justify-content: center; font-size: 15px; }
.plan2 .plan2-ribbon { box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.plan2-feat { padding: 8px 0; border-bottom: 1px dashed var(--card-border); }
.plan2-feat:last-of-type { border-bottom: none; }

/* ── Fund wallet hero v2 (Batch 14) ─────────── */
.deposit-hero {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(122,0,197,0.55) 0%, rgba(122,0,197,0) 55%),
    radial-gradient(100% 100% at 0% 100%, rgba(155,48,224,0.3) 0%, rgba(155,48,224,0) 55%),
    linear-gradient(150deg, #15101D 0%, #0B0712 55%, #1A0E26 100%);
  box-shadow: 0 20px 44px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.08);
}
.deposit-hero::before {
  content:''; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image: repeating-linear-gradient(120deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 16px);
}
.deposit-hero .dh-secure {
  display:inline-flex; align-items:center; gap:6px; margin-top:10px;
  font-size:10.5px; font-weight:900; letter-spacing:.5px; text-transform:uppercase;
  background:#fff; color:#0B0712; padding:6px 14px; border-radius:50px;
}

/* ── Auth pages v2 (Batch 14) ───────────────── */
.auth-hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 24px; position: relative; overflow: hidden;
  background:
    radial-gradient(90% 50% at 50% -10%, rgba(122,0,197,0.16) 0%, rgba(122,0,197,0) 60%),
    linear-gradient(180deg, var(--purple-bg) 0%, var(--bg) 55%);
}
.auth-hero::before, .auth-hero::after {
  content:''; position:absolute; border-radius:50%; filter: blur(70px); opacity:.32; pointer-events:none;
}
.auth-hero::before { width: 280px; height: 280px; background: #9B30E0; top: -110px; right: -90px; animation: authFloat 9s ease-in-out infinite; }
.auth-hero::after { width: 240px; height: 240px; background: #7A00C5; bottom: -100px; left: -80px; animation: authFloat 11s ease-in-out infinite reverse; }
@keyframes authFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-14px,14px) scale(1.06); } }
.auth-card {
  position: relative; z-index: 1;
  background: var(--bg); border-radius: 24px; padding: 26px 22px;
  box-shadow: 0 18px 50px rgba(56,8,90,0.16);
  border: 1px solid var(--card-border);
}
html[data-theme="dark"] .auth-card { box-shadow: 0 18px 50px rgba(0,0,0,0.5); }
.auth-title, .auth-sub, .auth-link { position: relative; z-index: 1; }
.auth-brand { display: block; margin: 0 auto 18px; text-align: center; text-decoration: none; position: relative; z-index: 1; transition: transform .15s; }
.auth-brand:active { transform: scale(0.96); }
.auth-brand img { height: 46px; display: inline-block; }
.in-ico .form-input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px var(--purple-bg2); }
.auth-foot-trust { display:flex; align-items:center; justify-content:center; gap:14px; margin-top:18px; position:relative; z-index:1; }
.auth-foot-trust span { display:inline-flex; align-items:center; gap:5px; font-size:10.5px; font-weight:800; color:var(--text-3); }
.auth-foot-trust i { color: var(--purple); }

/* ── Auto-start toggle card + voice check button (Batch 16) ── */
.autostart-card {
  display:flex; align-items:center; gap:12px;
  margin-top:12px; padding:13px 14px; border-radius:16px;
  background:linear-gradient(135deg, var(--purple-bg), var(--card-bg));
  border:1px solid var(--purple-border); cursor:pointer; transition:border-color .15s;
}
.autostart-card:active { border-color:var(--purple); }
.autostart-card .as-ico {
  width:38px; height:38px; border-radius:11px; flex-shrink:0;
  background:var(--purple); color:#fff; display:flex; align-items:center; justify-content:center; font-size:18px;
}
.autostart-card .as-text { flex:1; min-width:0; display:flex; flex-direction:column; gap:2px; }
.autostart-card .as-title { font-size:13.5px; font-weight:800; color:var(--text); }
.autostart-card .as-sub { font-size:11px; color:var(--text-3); line-height:1.4; }
.switch { position:relative; display:inline-block; width:46px; height:26px; flex-shrink:0; }
.switch input { opacity:0; width:0; height:0; }
.switch .slider {
  position:absolute; inset:0; cursor:pointer; background:var(--bg-input);
  border:1px solid var(--card-border); border-radius:50px; transition:.2s;
}
.switch .slider:before {
  content:''; position:absolute; height:20px; width:20px; left:3px; top:2px;
  background:#fff; border-radius:50%; transition:.2s; box-shadow:0 1px 3px rgba(0,0,0,0.2);
}
.switch input:checked + .slider { background:var(--purple); border-color:var(--purple); }
.switch input:checked + .slider:before { transform:translateX(20px); }

.check-btn { animation: checkPop .2s ease; }
@keyframes checkPop { from { transform:scale(.96); opacity:.6; } to { transform:scale(1); opacity:1; } }

/* spinner icon animation (used while transcribing) */
.ph-spinner { display:inline-block; animation: veSpin .8s linear infinite; }
@keyframes veSpin { to { transform: rotate(360deg); } }

/* recording state: red pulsing mic/stop button */
.rec-btn.recording {
  background: var(--red) !important; color:#fff !important;
  animation: recPulse 1.3s ease-in-out infinite;
}
@keyframes recPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.45); }
  50%     { box-shadow: 0 0 0 14px rgba(239,68,68,0); }
}

/* ── Wallet card deck (swipe stack) (Batch 17) ── */
.wdeck { position: relative; }
.wdeck-stage { position: relative; height: 196px; touch-action: pan-y; user-select: none; }
.wdeck-card {
  position: absolute; inset: 0; margin: 0;
  display: flex; flex-direction: column;
  padding: 20px 20px 16px;
  will-change: transform, opacity;
  transition: transform .42s cubic-bezier(.2,.8,.2,1), opacity .42s;
  cursor: grab;
}
.wdeck-card:active { cursor: grabbing; }
/* buttons flush to the bottom - no dead space */
.wdeck-card .wc3-actions { margin-top: auto; }
/* push label/amount group to sit naturally at the top */
.wdeck-card .wc3-label { margin-top: 2px; }

/* big faint icon at the bottom of each card */
.wc3-bigico {
  position: absolute; right: -8px; bottom: -20px;
  font-size: 120px; line-height: 1; opacity: .10; color: #fff; z-index: 0;
  pointer-events: none;
}

/* Engagement + Sales colour variants of the aurora */
.wallet-card3.wc3-engage {
  background:
    radial-gradient(140% 100% at 100% 0%, rgba(157,48,224,0.45) 0%, rgba(157,48,224,0) 52%),
    linear-gradient(150deg, #1B0B2E 0%, #3C1A5E 60%, #2A0F44 100%);
}
.wallet-card3.wc3-sales {
  background:
    radial-gradient(140% 100% at 100% 0%, rgba(245,158,11,0.40) 0%, rgba(245,158,11,0) 52%),
    linear-gradient(150deg, #15101D 0%, #2A1840 60%, #1A0E26 100%);
}

/* alt FAB (sales = purple gradient + matching ripple) */
.wc3-earnfab-alt { background: linear-gradient(135deg,#C084FC,#9B30E0); color:#fff; }
.fab-ripple.alt { border-color: rgba(196,132,252,0.85); }

/* dots */
.wdeck-dots { display:flex; gap:7px; justify-content:center; margin-top:14px; }
.wdeck-dot { width:7px; height:7px; border-radius:50%; background:var(--border); transition:all .25s; }
.wdeck-dot.on { width:20px; border-radius:5px; background:var(--purple); }
