:root{
  --bg0:#020617;
  --bg1:#051b3a;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.085);
  --text:#e9f2ff;
  --muted:#a8b4cb;
  --primary:#16e0a0;
  --primary2:#00c9ff;
  --ring:rgba(22,224,160,.35);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius:16px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
/* Dark UI chrome (Safari/Chrome address bar + overscroll) + match theme-color meta */
html{
  color-scheme: dark;
  background-color: #0b1220;
}
body{
  margin:0;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(22,224,160,.14), transparent 60%),
              radial-gradient(900px 520px at 90% 0%, rgba(0,201,255,.10), transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  color:var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height: 1.7;
  overflow-x:hidden;
}

.container{
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.bg-grid{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.55;
  background:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(600px 300px at 50% 0%, rgba(0,0,0,1), transparent 70%);
}
.bg-orbs{
  position:fixed;
  inset:-120px -120px auto -120px;
  height:520px;
  pointer-events:none;
  background:
    radial-gradient(220px 160px at 12% 18%, rgba(22,224,160,.30), transparent 65%),
    radial-gradient(240px 180px at 78% 30%, rgba(0,201,255,.22), transparent 60%),
    radial-gradient(260px 200px at 55% 85%, rgba(22,224,160,.16), transparent 70%);
  filter: blur(10px);
  opacity:.8;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  padding:20px 0;
  background: rgba(2,6,23,.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header .container{
  padding-inline:0;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding-inline:40px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  flex-shrink: 0;
}
.logo{
  display:flex;
  align-items:center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}
.logo img{
  height:32px;
  width:auto;
  display:block;
  flex-shrink: 0;
}
.logo-text{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .5px;
  white-space: nowrap;
  color:#ffffff;
  opacity:1;
}
.logo-text .cash{
  color:#19f0a7;
}
.brand-mark{
  width:14px;
  height:14px;
  border-radius:6px;
  background: linear-gradient(135deg, var(--primary), rgba(0,201,255,.75));
  box-shadow: 0 0 0 6px rgba(22,224,160,.10), 0 0 26px rgba(22,224,160,.25);
}
.brand-text{
  letter-spacing:.10em;
  font-weight:800;
  font-size:14px;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink: 0;
}

/* Header button styling */
.site-header .btn-ghost{
  background: transparent;
  border:1px solid rgba(255,255,255,.2);
  color:#ffffff;
  padding:8px 18px;
}
.site-header .btn-ghost:hover{
  box-shadow: 0 0 20px rgba(0,255,150,.20);
  transform: translateY(-1px) scale(1.03);
  border-color: rgba(22,224,160,.55);
}
.site-header .btn-primary{
  padding:8px 18px;
  border-color: rgba(34,197,94,.65);
  background: linear-gradient(135deg, #16e0a0, #22c55e);
  box-shadow:
    0 10px 40px rgba(22,224,160,.18),
    0 0 20px rgba(0,255,150,.20);
}
.site-header .btn-primary:hover{
  box-shadow:
    0 16px 60px rgba(22,224,160,.25),
    0 0 30px rgba(0,255,150,.24);
  transform: translateY(-1px) scale(1.03);
}

.btn{
  appearance:none;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease;
  font-weight:650;
  font-size:16px;
  line-height:1.2;
}
.btn:focus{ outline:none; box-shadow: 0 0 0 5px var(--ring); }
.btn:hover{ transform: translateY(-1px); border-color: rgba(22,224,160,.40); }

.btn-lg{ padding:16px 20px; font-size:18px; }

.btn-primary{
  border-color: rgba(22,224,160,.65);
  background: linear-gradient(135deg, rgba(22,224,160,.95), rgba(0,201,255,.35));
  color:#04120c;
  box-shadow:
    0 10px 40px rgba(22,224,160,.18),
    0 0 20px rgba(0,255,150,.20);
  position:relative;
  overflow:hidden;
}
.btn-primary::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(300px 90px at 30% 30%, rgba(22,224,160,.55), transparent 60%),
    radial-gradient(240px 110px at 70% 20%, rgba(0,201,255,.35), transparent 55%);
  opacity:0;
  transition: opacity .2s ease;
  pointer-events:none;
}
.btn-primary:hover{
  border-color: rgba(22,224,160,.90);
  box-shadow:
    0 16px 60px rgba(22,224,160,.25),
    0 0 30px rgba(0,255,150,.24);
}
.btn-primary:hover::before{
  opacity:1;
}

.btn-ghost{
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover{
  border-color: rgba(22,224,160,.32);
  box-shadow: 0 0 0 6px rgba(22,224,160,.10);
}

.hero{
  padding: 0;
  min-height: unset;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  display:block;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-140px -120px auto -120px;
  height:520px;
  background:
    radial-gradient(500px 260px at 25% 25%, rgba(22,224,160,.22), transparent 60%),
    radial-gradient(420px 240px at 72% 10%, rgba(0,201,255,.16), transparent 55%),
    radial-gradient(520px 300px at 60% 60%, rgba(22,224,160,.12), transparent 60%);
  filter: blur(6px);
  z-index:-2;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto -200px -240px -200px;
  height:520px;
  background: radial-gradient(circle at 50% 20%, rgba(22,224,160,.22), transparent 60%);
  filter: blur(12px);
  z-index:-2;
}
.hero-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  min-height:90vh;
  padding:80px 60px;
  position:relative;
  z-index:1;
}

.hero-copy{
  flex: 1 1 0%;
  max-width: 700px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:650;
  font-size:13px;
  margin-bottom:16px;
}
.pill-dot{
  width:10px;
  height:10px;
  border-radius:6px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(22,224,160,.12), 0 0 18px rgba(22,224,160,.25);
}

.hero-title{
  font-size: clamp(48px, 4.2vw, 64px);
  line-height:1.05;
  margin:0 0 12px;
  letter-spacing:-.03em;
  font-weight:800;
}
.hero-subtitle{
  margin:0 0 22px;
  color:var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height:1.6;
  max-width: 44ch;
}
.hero-micro{
  margin: -12px 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #8fa4c8;
  max-width: 42ch;
}


.stats-bar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 16px 0 22px;
}
.stats-item{
  flex: 1 1 180px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 12px 14px;
  position:relative;
  overflow:hidden;
}
.stats-item::after{
  content:"";
  position:absolute;
  inset:-2px -2px auto -2px;
  height:64px;
  background: linear-gradient(90deg, rgba(0,255,136,.0), rgba(0,255,136,.25), rgba(0,201,255,.10), rgba(0,255,136,.0));
  opacity:.45;
  transform: translateY(-36px);
  transition: transform .35s ease;
}
.stats-item:hover::after{
  transform: translateY(0);
}
.stats-value{
  font-weight:950;
  letter-spacing:-.02em;
  margin-bottom:4px;
}
.stats-label{
  color: var(--muted);
  font-size:13px;
  line-height:1.3;
}
.hero-ctas{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.hero-meta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.meta-item{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.09);
  padding:12px 14px;
  border-radius: var(--radius);
  min-width: 200px;
}
.meta-value{
  font-weight:800;
  letter-spacing:-.01em;
  margin-bottom:2px;
}
.meta-label{
  color:var(--muted);
  font-size:13px;
}

.hero-art{
  display:flex;
  justify-content:flex-end;
  position:absolute;
  right:0;
  top:50%;
  transform: translateY(-50%);
  width: 460px;
  pointer-events:none;
  z-index:0;
}

.hero-float{
  position:absolute;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 12px 12px;
  display:flex;
  gap:10px;
  align-items:center;
  width: 210px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
  z-index: 1;
  animation: floaty 4.6s ease-in-out infinite;
}
.hero-float svg{
  width: 22px;
  height: 22px;
  color: rgba(0,255,136,.95);
}
.float-icon{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,255,136,.10);
  border: 1px solid rgba(0,255,136,.25);
  box-shadow: 0 0 0 6px rgba(0,255,136,.06);
}
.float-icon svg{
  width: 20px;
  height: 20px;
  color: rgba(0,255,136,.95);
}
.float-text{
  line-height:1.05;
}
.float-top{
  font-weight: 900;
  letter-spacing: -.01em;
  margin-bottom: 2px;
}
.float-bottom{
  color: var(--muted);
  font-size: 13px;
}
.hero-float-1{
  top: 34px;
  right: 18px;
  animation-duration: 5.2s;
  animation-delay: -.4s;
}
.hero-float-2{
  top: 210px;
  right: 6px;
  width: 190px;
  animation-duration: 4.3s;
  animation-delay: -1.2s;
}
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
.art-card{
  width:100%;
  max-width: 420px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
  padding:18px;
  z-index: 0;
}
.art-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: conic-gradient(from 180deg, rgba(0,255,136,.0), rgba(0,255,136,.45), rgba(0,201,255,.35), rgba(0,255,136,.0));
  opacity:.7;
  filter: blur(10px);
  transform: translate3d(0,0,0);
  animation: spinGlow 6s linear infinite;
}
.art-card > *{ position:relative; }
@keyframes spinGlow{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}

.art-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
}
.art-badge{
  padding:8px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  border:1px solid rgba(0,255,136,.35);
  color: rgba(0,255,136,.95);
  background: rgba(0,255,136,.10);
}
.art-status{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.status-dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(22,224,160,.12), 0 0 22px rgba(22,224,160,.22);
}

.art-stat-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-bottom:14px;
}
.stat{
  background: rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding:12px 12px;
}
.stat-label{
  color:var(--muted);
  font-size:12px;
  margin-bottom:4px;
}
.stat-value{
  font-weight:900;
  letter-spacing:-.01em;
}

.art-progress{
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding:14px;
}
.progress-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}
.progress-label{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.progress-value{
  font-weight:900;
}
.progress-bar{
  height:12px;
  background: rgba(255,255,255,.06);
  border-radius:999px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}
.progress-fill{
  height:100%;
  width:40%;
  background: linear-gradient(90deg, rgba(0,255,136,.95), rgba(0,201,255,.55));
  box-shadow: 0 0 18px rgba(0,255,136,.30);
  border-radius:999px;
}
.art-glow{
  position:absolute;
  inset:auto -120px -120px -120px;
  height:220px;
  background: radial-gradient(circle at 50% 40%, rgba(0,255,136,.30), transparent 55%);
  pointer-events:none;
  filter: blur(8px);
}

.section{
  padding:80px 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{
  margin-bottom:28px;
}
.section-title{
  margin:0 0 8px;
  font-size: 34px;
  letter-spacing:-.02em;
}
.section-subtitle{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size: clamp(18px, 2vw, 22px);
  max-width: 60ch;
}
.section-note{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 60ch;
}
.section-note:first-of-type{
  margin-top: 14px;
}

.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.09);
  padding:22px;
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
  position:relative;
  overflow:hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.card::after{
  content:"";
  position:absolute;
  inset:-1px -1px auto -1px;
  height: 70px;
  background: linear-gradient(90deg, rgba(0,255,136,.0), rgba(0,255,136,.20), rgba(0,201,255,.10), rgba(0,255,136,.0));
  opacity:.35;
  transform: translateY(-40px);
  transition: transform .35s ease;
}
.card:hover::after{
  transform: translateY(0);
}

.card:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 60px rgba(0,0,0,.26);
  border-color: rgba(22,224,160,.28);
}

.step .step-num{
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#04120c;
  background: linear-gradient(135deg, rgba(0,255,136,.95), rgba(0,201,255,.35));
  box-shadow: 0 0 0 6px rgba(0,255,136,.12);
  margin-bottom:12px;
}
.card h3{
  margin:0 0 8px;
  font-size:18px;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.feature-icon{
  width:44px;
  height:44px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(0,255,136,.95);
  background: rgba(0,255,136,.10);
  border:1px solid rgba(0,255,136,.25);
  margin-bottom:12px;
}
.feature-icon svg{
  width:22px;
  height:22px;
}
.feature-tag{
  margin-top:14px;
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(0,255,136,.95);
  font-weight:750;
  font-size:13px;
}

.cards-testimonials .testimonial{
  min-height: 220px;
}
.stars{
  color: rgba(0,255,136,.95);
  letter-spacing: .06em;
  margin-bottom:10px;
  font-size:14px;
}
.quote{
  font-size: 15px;
  color: rgba(233,242,255,.95);
  margin-bottom: 14px;
}
.who{
  display:flex;
  align-items:center;
  gap:12px;
}
.avatar{
  width:40px;
  height:40px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,255,136,.55), transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(0,201,255,.35), transparent 55%),
    rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.name{
  font-weight:900;
  margin-bottom:2px;
}
.role{
  color:var(--muted);
  font-size: 13px;
}

.offers{
  padding: 80px 0 90px;
}

.offers-wrapper{
  display: flex;
  gap: 30px;
  align-items: stretch; /* equal height feel */
}
.offers-layout{ display:flex; gap: 30px; align-items:flex-start; }
.offers-left{ min-width:0; }

.dashboard-card{
  width: 320px;
  flex-shrink: 0;
  position: relative;
  top: auto;
  right: auto;
  margin-top: 0;
  max-width: none;
  height: 100%;
}
.offers-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1;
  align-items: stretch;
  height: 100%;
}

.offer-card{
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 50px rgba(0,0,0,.20);
  overflow:hidden;
  position:relative;
  height: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.offer-card::after{
  content:"";
  position:absolute;
  inset:-2px -2px auto -2px;
  height:72px;
  background: linear-gradient(90deg, rgba(22,224,160,.0), rgba(22,224,160,.22), rgba(0,201,255,.10), rgba(22,224,160,.0));
  opacity:.15;
  transform:none;
  transition: opacity .2s ease;
}
.offer-card:hover{
  border-color: rgba(22,224,160,.30);
  box-shadow: 0 22px 70px rgba(0,0,0,.32);
}
.offer-card:hover::after{
  opacity:.35;
}

.offer-img{
  height: 180px;
  padding: 14px;
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}
.offer-img img.offer-logo{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display:block;
}
.offer-img svg{
  width:100%;
  height:100%;
}
.offer-body{
  padding: 18px 18px 20px;
  display:flex;
  flex-direction:column;
  height: 100%;
}
.offer-title{
  font-weight: 950;
  letter-spacing:-.02em;
  margin-bottom: 6px;
}
.offer-reward{
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}
.offer-start{
  width: 100%;
  margin-top: auto;
}

.trust-strip{
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:space-between;
}
.trust-left{
  min-width: 0;
}
.trust-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 850;
  letter-spacing:-.01em;
  margin-bottom: 4px;
}
.trust-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(22,224,160,.95);
  box-shadow: 0 0 0 6px rgba(22,224,160,.10), 0 0 26px rgba(22,224,160,.25);
}
.trust-stars{
  color: rgba(22,224,160,.95);
  font-weight: 950;
  letter-spacing: .06em;
}
.trust-rating{
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
.trust-right{
  text-align:right;
}
.trust-kicker{
  font-weight: 950;
  letter-spacing:-.02em;
  margin-bottom: 6px;
}
.trust-sub{
  color: var(--muted);
  font-size: 13px;
}

.mobile-join{
  display:none;
  padding: 22px 0 10px;
}

.signup-panel{
  position: sticky;
  top: 86px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 18px 60px rgba(0,0,0,.26);
  overflow:hidden;
}
.signup-panel::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(460px 140px at 30% 0%, rgba(0,255,136,.35), transparent 60%),
              radial-gradient(380px 180px at 80% 10%, rgba(0,201,255,.20), transparent 58%);
  opacity:.35;
  pointer-events:none;
}

/* When the signup panel is inside the hero */
.hero .signup-panel{
  position:relative;
  top:auto;
  margin-top:0;
  max-width:420px;
  width:100%;
  z-index: 2;
}
.signup-top{
  padding: 18px 18px 12px;
  position:relative;
}
.signup-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(0,255,136,.30);
  color: rgba(0,255,136,.95);
  background: rgba(0,255,136,.08);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 10px;
}
.signup-title{
  margin:0 0 8px;
  font-size: 20px;
  letter-spacing:-.02em;
}
.signup-subtitle{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  line-height:1.5;
}
.signup-form{
  padding: 0 18px 18px;
  position:relative;
}
.field{
  display:block;
  margin-bottom: 12px;
}
.field-label{
  display:block;
  color: rgba(233,242,255,.92);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 7px;
}
.field-input{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  color: var(--text);
  outline:none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.field-input:focus{
  border-color: rgba(22,224,160,.55);
  box-shadow: 0 0 0 5px rgba(22,224,160,.14);
}
.btn-block{
  width:100%;
}
.signup-cta{
  margin-top: 6px;
}
.signup-divider{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 14px 0 12px;
  color: var(--muted);
  font-size: 13px;
}
.signup-divider span{
  height:1px;
  flex:1;
  background: rgba(255,255,255,.10);
}
.social-grid{
  display:grid;
  gap: 10px;
}
.social-btn{
  width:100%;
  border-radius: 14px;
  padding: 12px 14px 12px 52px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 850;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease, filter .2s ease;
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
  position:relative;
}
.social-btn:hover{
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.06);
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
}
.social-icon{
  position:absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
}
.social-icon img{
  width: 20px;
  height: 20px;
  display:block;
}
.social-icon img.social-img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display:block;
}
.social-icon svg{
  width: 20px;
  height: 20px;
  color: inherit;
}
.social-btn-label{
  width: 100%;
  text-align:center;
  display:block;
  padding: 0 6px;
}
.social-google{
  background:#ffffff;
  border-color: rgba(0,0,0,.12);
  color:#0b0b0f;
}
.social-facebook{
  background:#1877f2;
  border-color: rgba(255,255,255,.18);
  color:#ffffff;
}
.social-apple{
  background:#000000;
  border-color: rgba(255,255,255,.18);
  color:#ffffff;
}

.social-google:hover{ border-color: rgba(0,0,0,.20); }
.social-facebook:hover{ border-color: rgba(255,255,255,.28); }
.social-apple:hover{ border-color: rgba(255,255,255,.28); }

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

.footer{
  padding:34px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.10);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}
.footer-left{ max-width: 520px; }
.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.footer-brand img{
  height:28px;
  width:auto;
  flex-shrink:0;
  display:block;
}
.footer-brand-text{
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  color:#ffffff;
  letter-spacing: .5px;
  opacity:1;
}
.footer-brand-text .cash{
  color:#19f0a7;
}
.footer-note{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}
.footer-right{
  text-align:right;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-end;
  margin-bottom:12px;
}
.footer-links a{
  color: rgba(233,242,255,.90);
  text-decoration:none;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius: 999px;
  font-weight:700;
  font-size: 13px;
}
.footer-links a:hover{
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 0 0 6px rgba(255,255,255,.06);
}

.footer-links a.neon-link{
  color: var(--primary);
  border-color: rgba(0,255,136,.35);
  background: rgba(0,255,136,.06);
}
.footer-links a.neon-link:hover{
  color: rgba(0,255,136,.98);
  border-color: rgba(0,255,136,.65);
  box-shadow: 0 0 0 6px rgba(0,255,136,.10);
}
.footer-copy{
  color:var(--muted);
  font-size: 13px;
}

.toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(6,10,15,.72);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  backdrop-filter: blur(10px);
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Cookie consent banner */
.cookie-banner{
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 180;
  width: min(620px, calc(100vw - 40px));
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.78);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  padding: 20px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}
.cookie-banner.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: cookieFadeIn .35s ease both;
}
@keyframes cookieFadeIn{
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-inner{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  align-items:flex-start;
}
.cookie-title{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.cookie-desc{
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  margin-bottom: 12px;
}
.cookie-policy-links{
  font-size: 13px;
  color: var(--muted);
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap:wrap;
}
.cookie-policy-link{
  color: var(--primary);
  text-decoration: none;
  font-weight: 850;
}
.cookie-policy-link:hover{
  color: rgba(22,224,160,.98);
  text-shadow: 0 0 22px rgba(22,224,160,.22);
}
.cookie-sep{ color: rgba(255,255,255,.18); }

.cookie-actions{
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:flex-end;
  min-width: 210px;
}
.cookie-btn{
  border-radius: 999px;
  padding: 10px 16px;
  cursor:pointer;
  font-weight: 850;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease, border-color .2s ease;
}
.cookie-btn--accept{
  background: linear-gradient(135deg, #16e0a0, #22c55e);
  color: #04120c;
  border-color: rgba(34,197,94,.40);
  box-shadow: 0 0 20px rgba(0,255,150,.20);
}
.cookie-btn--accept:hover{
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.06);
}
.cookie-btn--reject{
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,.20);
}
.cookie-btn--reject:hover{
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 0 0 6px rgba(22,224,160,.08);
  border-color: rgba(22,224,160,.40);
}
.cookie-settings-link{
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--primary);
  font-weight: 900;
  cursor:pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cookie-settings-link:hover{
  color: rgba(22,224,160,.98);
  filter: brightness(1.05);
}

/* Cookie settings modal */
.cookie-settings-overlay{
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(0,0,0,.62);
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.cookie-settings-overlay.open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cookie-settings-modal{
  width: min(480px, 100%);
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,14,22,.92);
  box-shadow: 0 28px 120px rgba(0,0,0,.65);
  backdrop-filter: blur(12px);
  position:relative;
  overflow:hidden;
}
.cookie-settings-modal::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 120px at 20% 0%, rgba(22,224,160,.34), transparent 60%),
    radial-gradient(340px 160px at 85% 10%, rgba(0,201,255,.20), transparent 58%);
  opacity:.30;
  pointer-events:none;
}
.cookie-settings-body{
  position:relative;
  padding: 26px 18px 18px;
}
.cookie-settings-title{
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing:-.02em;
}
.cookie-settings-subtitle{
  margin: 0 0 16px;
  color: var(--muted);
  line-height:1.6;
  font-size: 14px;
}
.cookie-settings-close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  transition: transform .2s ease, border-color .2s ease;
  z-index: 2;
}
.cookie-settings-close:hover{
  transform: scale(1.03);
  border-color: rgba(22,224,160,.35);
}
.cookie-toggles{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.cookie-toggle{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
}
.cookie-toggle input{
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}
.cookie-settings-actions{
  display:flex;
  gap: 10px;
  margin-top: 18px;
}
.cookie-settings-actions .cookie-btn{
  width: 50%;
}

/* Reward popup modal */
.reward-modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  pointer-events: none;
}
.reward-modal-overlay.open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.reward-modal{
  width: min(460px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,14,22,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 120px rgba(0,0,0,.65);
  position:relative;
  overflow:hidden;
  transform: translateY(10px) scale(.985);
  transition: transform .2s ease;
}
.reward-modal-overlay.open .reward-modal{
  transform: translateY(0) scale(1);
}
.reward-modal::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(520px 140px at 25% 0%, rgba(22,224,160,.40), transparent 60%),
    radial-gradient(420px 160px at 85% 15%, rgba(0,201,255,.20), transparent 60%);
  opacity: .30;
  pointer-events:none;
}
.reward-modal-close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  z-index:2;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.reward-modal-close:hover{
  transform: scale(1.03);
  border-color: rgba(22,224,160,.35);
  box-shadow: 0 0 0 6px rgba(22,224,160,.10);
}
.reward-modal-body{
  position:relative;
  padding: 26px 22px 22px;
}
.reward-modal-title{
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing:-.02em;
}
.reward-modal-subtitle{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
}
.reward-modal-social{
  display:grid;
  gap: 10px;
}
.reward-modal .field-label{
  font-size: 14px;
}
.reward-modal .field-input{
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 16px;
}
.reward-modal-divider{
  display:flex;
  align-items:center;
  gap: 12px;
  margin: 14px 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.reward-modal-divider::before,
.reward-modal-divider::after{
  content:"";
  height:1px;
  flex:1;
  background: rgba(255,255,255,.10);
}
.reward-modal-divider span{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(233,242,255,.92);
  font-weight: 850;
  letter-spacing: .06em;
}
.reward-modal-signup{
  margin-top: 4px;
}

/* Onboarding modal flow */
.onboarding-overlay{
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgba(2,8,20,.68);
  backdrop-filter: blur(7px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.onboarding-overlay.open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.onboarding-modal{
  width: min(500px, 100%);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(26,30,56,.97), rgba(20,22,44,.97));
  box-shadow: 0 40px 140px rgba(0,0,0,.68);
  padding: 20px 20px 16px;
  color: #eef3ff;
}
.onboarding-progress-top{
  text-align: center;
}
.onboarding-title{
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.onboarding-progress-text{
  margin: 8px 0 10px;
  color: #b4bdd5;
  font-size: 13px;
}
.onboarding-progress-track{
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}
.onboarding-progress-fill{
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #16e0a0, #31d5ff);
  transition: width .32s ease;
}
.onboarding-content{
  position: relative;
  padding-top: 18px;
  min-height: 292px;
}
.onboarding-question{
  margin: 0 0 8px;
  text-align: center;
  font-size: 21px;
  line-height: 1.35;
}
.onboarding-helper{
  margin: 0 0 12px;
  text-align: center;
  color: #b4bdd5;
  font-size: 13px;
}
.onboarding-options{
  display: grid;
  gap: 10px;
}
.onboarding-options.cols-2{
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.onboarding-options.cols-2-large{
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.onboarding-option{
  min-height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
  color: #f1f4ff;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.onboarding-option:hover{
  border-color: rgba(255,255,255,.35);
}
.onboarding-option.selected{
  border-color: rgba(22,224,160,.75);
  background: rgba(22,224,160,.10);
  box-shadow: 0 0 0 2px rgba(22,224,160,.16) inset;
}
.onboarding-text-option{
  margin: 10px auto 0;
  display: inline-flex;
  border: 0;
  background: transparent;
  color: #adb7d1;
  cursor: pointer;
  font-size: 13px;
}
.onboarding-text-option.selected{
  color: #19f0a7;
}
.onboarding-goal-note{
  margin-top: 12px;
  border-radius: 10px;
  border: 1px solid rgba(22,224,160,.45);
  background: rgba(22,224,160,.13);
  color: #d8ffe9;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 12px;
  display: none;
  align-items: center;
  gap: 6px;
}
.onboarding-next-btn{
  width: 100%;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
  padding: 12px;
  font-weight: 800;
  background: linear-gradient(90deg,#16e0a0,#20cb94);
  color: #052013;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease, opacity .2s ease;
}
.onboarding-next-btn:hover{ filter: brightness(1.07); }
.onboarding-next-btn:disabled{
  background: #8a90ac;
  color: #e6ebff;
  opacity: .7;
  cursor: not-allowed;
}
.onboarding-coin-fx{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.onboarding-coin-fx .coin{
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffd34d;
  box-shadow: 0 0 10px rgba(255,211,77,.7);
  animation: coinFly .8s ease forwards;
}
.onboarding-coin-fx .coin-pill{
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 1px solid rgba(22,224,160,.65);
  background: rgba(22,224,160,.18);
  color: #19f0a7;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 900;
  animation: fadePill 1s ease forwards;
}
.onboarding-options.device-mode .onboarding-option{
  min-height: 112px;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.device-icon{
  font-size: 38px;
  line-height: 1;
}
@keyframes coinFly{
  from{ opacity: 1; transform: translate(0,0) scale(1); }
  to{ opacity: 0; transform: translate(var(--x), var(--y)) scale(.75); }
}
@keyframes fadePill{
  0%{ opacity: 0; transform: translateX(-50%) translateY(10px); }
  20%{ opacity: 1; transform: translateX(-50%) translateY(0); }
  100%{ opacity: 0; transform: translateX(-50%) translateY(-14px); }
}

/* Mobile responsiveness */
@media (max-width: 980px){
  .hero-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:40px 20px;
    gap:20px;
  }
  .hero-art{ display:none; }
  .meta-item{ min-width: 180px; }
  .hero-float{ display:none; }
  .onboarding-question{ font-size: 19px; }
}
@media (max-width: 900px){
  .cards-3{ grid-template-columns: 1fr; }
  .footer-inner{ flex-direction:column; align-items:flex-start; }
  .footer-right{ text-align:left; }
  .footer-links{ justify-content:flex-start; }
  .offers-grid{ grid-template-columns: 1fr; }
  .mobile-join{ display:none; }
  .signup-panel--desktop{ display:block; }
  .trust-strip{ flex-direction:column; align-items:flex-start; }
  .trust-right{ text-align:left; }
  .header-inner{ padding-inline:20px; }
  .cookie-banner-inner{ flex-direction:column; }
  .cookie-actions{ min-width: 0; width: 100%; align-items: stretch; }
  .cookie-settings-actions{ flex-direction:column; }
  .cookie-settings-actions .cookie-btn{ width: 100%; }
}

@media (max-width: 768px){
  .offers-wrapper{
    flex-direction: column;
    gap: 20px;
  }
  .dashboard-card{ width: 100%; }
  .offers-grid{ grid-template-columns: 1fr; }
  .dashboard-card{ height: auto; }

  .logo{
    gap: 8px;
    min-width: 0;
    white-space: nowrap;
  }
  .logo img{
    height: 26px;
  }
  .logo-text{
    font-size: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 1;
    color:#ffffff;
  }
  .site-header{
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-inner{
    padding-inline: 16px;
  }

  .footer-brand img{
    height: 24px;
  }
  .footer-brand-text{
    font-size: 16px;
  }
}

/* Dashboard page */
.dash-header{
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(10,15,35,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.dash-header-inner{
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.dash-header-balance{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.dash-nav{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.dash-nav-link{
  color: #b5bfd8;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
}
.dash-nav-link:hover{
  color: #ecf3ff;
  background: rgba(255,255,255,.06);
}
/* Active nav: Freecash-style green underline (no pill fill) */
.dash-nav-link.is-active{
  color: #e9fff4;
  background: transparent;
  border-radius: 0;
  box-shadow: inset 0 -3px 0 0 #16e0a0;
}
.dash-nav-link.is-active:hover{
  color: #f5fffa;
  background: rgba(255,255,255,.04);
}

/* —— Mobile shell: top summary bar + bottom tab bar (Freecash-style) —— */
@media (max-width: 768px){
  .dash-header--desktop{
    display: none !important;
  }
  /* Pinned top bar: fixed so it never scrolls away (sticky can fail inside some layouts) */
  .dash-mob-top{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: env(safe-area-inset-top, 0px);
    z-index: 85;
    background: rgba(10,15,35,.92);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  /* Space for fixed top bar: inner min 52px + padding 8+8 + safe area */
  html:has(.dash-mob-top) main{
    padding-top: calc(68px + env(safe-area-inset-top, 0px));
  }
  html:has(.dash-mob-nav) main{
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }
}
@media (min-width: 769px){
  .dash-mob-top{
    display: none !important;
  }
  .dash-mob-nav{
    display: none !important;
  }
}
.dash-mob-top-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 52px;
  padding: 8px 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.dash-mob-avatar{
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.dash-mob-avatar-circle{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
  color: #f1f5f9;
  background: linear-gradient(145deg, #334155 0%, #1e293b 100%);
  border: 2px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.dash-mob-avatar-badge{
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  border-radius: 6px;
  border: 1px solid rgba(167,139,250,.5);
}
.dash-mob-pills{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}
.dash-mob-streak{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  font-weight: 800;
  color: #cbd5e1;
}
.dash-mob-streak-ico{
  font-size: 14px;
  line-height: 1;
}
.dash-mob-wallet-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color: #e8fff2;
  text-decoration: none;
  background: linear-gradient(180deg, #123628 0%, #0c2c21 100%);
  border: 1px solid rgba(103, 253, 172, 0.22);
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
  max-width: 100%;
  overflow: hidden;
}
.dash-mob-wallet-txt{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-mob-actions{
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.dash-mob-icon-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  color: #94a3b8;
  padding: 0;
}
.dash-mob-icon-btn:active{
  background: rgba(255,255,255,.06);
}
/* Mobile-first: tab bar visible by default; desktop rule below hides it */
.dash-mob-nav{
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  justify-content: space-around;
  align-items: stretch;
  min-height: 56px;
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
  background: rgba(10,15,35,.96);
  border-top: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -8px 32px rgba(0,0,0,.45);
}
.dash-mob-nav-link{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  min-width: 0;
  padding: 4px 2px 6px;
  text-decoration: none;
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
}
.dash-mob-nav-link--muted{
  opacity: 0.65;
}
.dash-mob-nav-ico{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  color: currentColor;
}
.dash-mob-nav-link.is-active{
  color: #16e0a0;
  text-shadow: 0 0 14px rgba(22,224,160,.35);
}
.dash-mob-nav-link.is-active .dash-mob-nav-ico{
  filter: drop-shadow(0 0 6px rgba(22,224,160,.45));
}
.dash-mob-nav-txt{
  display: block;
  line-height: 1.15;
  position: relative;
  padding-bottom: 4px;
}
.dash-mob-nav-link.is-active .dash-mob-nav-txt::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: #16e0a0;
  box-shadow: 0 0 8px rgba(22,224,160,.6);
}
.dash-mob-nav-ico-wrap{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
}
.dash-mob-nav-badge{
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #16e0a0;
  color: #052e1f;
  font-size: 10px;
  font-weight: 900;
  line-height: 16px;
  text-align: center;
  border: 2px solid #0f172a;
}

.dash-wallet{
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 900;
  color: #a4ffd8;
  background: rgba(22,224,160,.12);
  border: 1px solid rgba(22,224,160,.35);
}
/* Freecash-style balance pill: green chip, total USD (no coin inside) */
.dash-wallet-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(103, 253, 172, 0.22);
  cursor: pointer;
  background: linear-gradient(180deg, #123628 0%, #0c2c21 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  color: #d8ffe8;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.dash-wallet-pill:hover{
  border-color: rgba(103, 253, 172, 0.35);
  background: linear-gradient(180deg, #174233 0%, #11362a 100%);
}
.dash-wallet-pill:active{
  transform: translateY(1px);
}
.dash-wallet-pill .dash-wallet-amount{
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #e8fff2;
  text-shadow: none;
}
/* Second pill: coin count 0–999 (1000 coins roll into next dollar) */
.dash-coin-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px 7px 9px;
  border-radius: 999px;
  border: 1px solid rgba(214, 180, 113, 0.24);
  cursor: pointer;
  background: linear-gradient(180deg, rgba(28, 27, 24, 0.96), rgba(19, 18, 16, 0.98));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.36);
  color: #e6dbc2;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.dash-coin-pill:hover{
  border-color: rgba(214, 180, 113, 0.4);
  background: linear-gradient(180deg, rgba(36, 34, 30, 0.98), rgba(24, 22, 19, 0.99));
}
.dash-coin-pill:active{
  transform: translateY(1px);
}
.dash-coin-pill .dash-coin-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dash-coin-pill .dash-coin-icon svg{
  display: block;
  width: 17px;
  height: 17px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.4));
}
.dash-coin-pill .dash-coin-amount{
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.03em;
  min-width: 2.2ch;
  text-align: right;
  color: #efe5ce;
  text-shadow: none;
}
.dashboard-main{
  padding: 26px 0 44px;
}
.earn-tabs-wrap{
  margin-bottom: 14px;
}

/* Dashboard earn filters: category (Offers / Surveys / All) above device toggles */
.dash-earn-filters .dash-filter-stack{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
}
.dash-filter-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}
.dash-filter-label{
  flex: 0 0 auto;
  min-width: 5.5rem;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.95);
}
.dash-seg--category{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}
.dash-seg-btn{
  appearance: none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #a8b4cb;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}
.dash-seg-btn:hover{
  color: #e2e8ff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.07);
}
.dash-seg-btn.is-active{
  color: #f3fff9;
  border-color: rgba(22,224,160,.5);
  background: linear-gradient(180deg, rgba(22,224,160,.28), rgba(10,126,95,.32));
  box-shadow: 0 6px 16px rgba(0,0,0,.28), 0 0 0 1px rgba(22,224,160,.2) inset;
}
.dash-seg-btn:active{
  transform: translateY(1px);
}

.dash-device-toggles{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}
.dash-device-btn{
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #94a3b8;
  border-radius: 12px;
  padding: 9px 14px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}
.dash-device-btn .dash-device-ico{
  display: flex;
  opacity: 0.75;
}
.dash-device-btn:hover{
  color: #cbd5e1;
  border-color: rgba(255,255,255,.22);
}
.dash-device-btn.is-active{
  color: #f1f5f9;
  border-color: rgba(59,130,246,.55);
  background: linear-gradient(180deg, rgba(59,130,246,.35), rgba(30,58,138,.4));
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.dash-device-btn.is-active .dash-device-ico{
  opacity: 1;
  color: #22c55e;
}
.dash-filter-hint{
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(148,163,184,0.9);
}

@media (max-width: 640px){
  .dash-filter-row{
    flex-direction: column;
    align-items: stretch;
  }
  .dash-filter-label{
    min-width: 0;
  }
  .dash-seg--category,
  .dash-device-toggles{
    width: 100%;
  }
  .dash-seg-btn,
  .dash-device-btn{
    flex: 1 1 auto;
    justify-content: center;
  }
}

.earn-reward-notice{
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(22, 224, 160, 0.22);
  background: rgba(22, 224, 160, 0.07);
  color: #b8c9d8;
  font-size: 13px;
  line-height: 1.55;
}
.earn-reward-notice-icon{
  margin-right: 6px;
}
.earn-tabs{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}
.earn-tab{
  appearance: none;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: #a8b4cb;
  border-radius: 12px;
  padding: 9px 12px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.earn-tab:hover{
  color: #d9e7ff;
  border-color: rgba(255,255,255,.28);
}
.earn-tab.is-active{
  color: #f3fff9;
  border-color: rgba(22,224,160,.45);
  background: linear-gradient(180deg, rgba(22,224,160,.30), rgba(10,126,95,.34));
  box-shadow: 0 6px 14px rgba(0,0,0,.25), 0 0 0 1px rgba(22,224,160,.22) inset;
}
.earn-tab:active{
  transform: translateY(1px);
}
.earn-panel{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .2s ease, transform .2s ease;
}
.earn-panel.is-hidden{
  display: none;
  opacity: 0;
  transform: translateY(4px);
}
.dash-offers-gate{
  margin-bottom: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,180,90,.35);
  background: linear-gradient(135deg, rgba(40,28,12,.9), rgba(18,22,40,.92));
  padding: 20px 18px;
}
.dash-offers-gate-inner{
  max-width: 560px;
}
.dash-offers-gate-title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #ffe8c8;
}
.dash-offers-gate-text{
  margin: 0;
  color: #c9d4ea;
  line-height: 1.5;
}
.verify-email-card{
  margin-bottom: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(21,26,54,.85), rgba(16,20,44,.85));
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.verify-email-card.verified{
  border-color: rgba(22,224,160,.5);
  box-shadow: 0 0 0 1px rgba(22,224,160,.25) inset;
}
.verify-email-left h3{
  margin: 0 0 4px;
  font-size: 18px;
}
.verify-email-left p{
  margin: 0;
  color: #b5c2df;
}
.verify-email-right{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.verify-email-right input{
  min-width: 180px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  color: #f2f7ff;
  padding: 10px 12px;
  font-weight: 700;
}
.verify-email-right button{
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}
.verify-email-right #verifyCodeBtn{
  background: linear-gradient(90deg,#16e0a0,#21cb93);
  color: #032114;
}
.verify-email-right .resend-btn{
  background: rgba(255,255,255,.1);
  color: #e3ecff;
}

/* Dashboard status modal */
.status-modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 320;
  background: rgba(1,6,18,.68);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.status-modal-overlay.open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.status-modal{
  width: min(420px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(17,24,49,.95), rgba(13,19,40,.95));
  box-shadow: 0 30px 110px rgba(0,0,0,.6);
  padding: 20px 18px 16px;
  text-align: center;
}
.status-modal-icon{
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
  color: #e8eeff;
}
.status-modal-icon.ok{
  color: #15e29f;
  border-color: rgba(21,226,159,.6);
  box-shadow: 0 0 26px rgba(21,226,159,.26);
}
.status-modal-icon.error{
  color: #ff9e9e;
  border-color: rgba(255,158,158,.5);
}
.status-modal-title{
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}
.status-modal-message{
  margin: 10px 0 0;
  color: #b6c2df;
  font-size: 14px;
  line-height: 1.55;
}
.status-modal-actions{
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.status-modal-actions button{
  border: 0;
  border-radius: 9px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}
#statusModalPrimary{
  background: linear-gradient(90deg, #16e0a0, #22c55e);
  color: #041f14;
}
.status-close-btn{
  background: rgba(255,255,255,.12);
  color: #e8eeff;
}

/* Auth help modal (wrong password / forgot password) */
.auth-help-overlay{
  position: fixed;
  inset: 0;
  z-index: 330;
  background: rgba(1,6,18,.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.header-auth-overlay{
  position: fixed;
  inset: 0;
  z-index: 1150;
  display: grid;
  place-items: center;
  background: rgba(3,8,20,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.header-auth-overlay.open{
  opacity: 1;
  pointer-events: auto;
}
.header-auth-modal{
  width: min(460px, calc(100vw - 28px));
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(320px 220px at 20% -10%, rgba(22,224,160,.16), transparent 70%),
    linear-gradient(180deg, rgba(15,22,48,.98), rgba(10,16,37,.98));
  box-shadow: 0 28px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(0,255,160,.08) inset;
  padding: 20px;
  position: relative;
}
.header-auth-close{
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #dbe8ff;
  cursor: pointer;
}
.header-auth-title{
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.1;
}
.header-auth-tabs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.header-auth-tab{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: #d8e4ff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
}
.header-auth-tab.active{
  border-color: rgba(22,224,160,.55);
  background: rgba(22,224,160,.14);
  color: #effff8;
}
.header-auth-google{
  width: 100%;
  margin-bottom: 12px;
}
.header-auth-footnote{
  margin: 10px 0 0;
  color: #91a1c7;
  font-size: 12px;
}
.auth-help-overlay.open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.auth-help-modal{
  width: min(460px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(17,24,49,.96), rgba(13,19,40,.96));
  box-shadow: 0 30px 120px rgba(0,0,0,.62);
  padding: 18px;
}
.auth-help-modal h3{
  margin: 0 0 8px;
  font-size: 24px;
}
.auth-help-modal p{
  margin: 0;
  color: #b6c2df;
}
.auth-help-actions{
  margin-top: 14px;
  display: flex;
  gap: 8px;
}
.auth-help-actions button{
  border: 0;
  border-radius: 9px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}
#authChangeEmailBtn{
  background: rgba(255,255,255,.14);
  color: #eaf0ff;
}
#authForgotPasswordBtn{
  background: linear-gradient(90deg, #16e0a0, #22c55e);
  color: #032114;
}
.auth-reset-box{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: none;
}
.auth-reset-box.open{
  display: block;
}
.auth-help-actions--stack{
  margin-top: 8px;
}
.auth-help-actions--stack button{
  flex: 1 1 0;
}

/* Forgot password page */
.auth-reset-page{
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 16px 46px;
}
.auth-reset-card{
  width: min(520px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(17,24,49,.96), rgba(13,19,40,.96));
  box-shadow: 0 35px 120px rgba(0,0,0,.62);
  padding: 22px;
}
.auth-reset-card h1{
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.auth-reset-sub{
  margin: 0 0 14px;
  color: #b6c2df;
}
.auth-reset-divider{
  margin: 14px 0;
  height: 1px;
  background: rgba(255,255,255,.12);
}
.auth-reset-links{
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.auth-reset-links a{
  color: #9fdfc6;
  text-decoration: none;
  font-weight: 700;
}
.auth-reset-links a:hover{
  text-decoration: underline;
}

.password-wrap{
  position: relative;
}
.password-wrap .field-input{
  padding-right: 84px;
}
.password-toggle{
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: #ecf3ff;
  font-weight: 800;
  padding: 7px 10px;
  cursor: pointer;
}
.password-meter{
  margin-top: -2px;
  margin-bottom: 8px;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow: hidden;
}
.password-meter-fill{
  width: 0;
  height: 100%;
  transition: width .2s ease;
}
.password-meter-fill.weak{ background: #ef4444; }
.password-meter-fill.medium{ background: #f59e0b; }
.password-meter-fill.strong{ background: #22c55e; }
.password-hint{
  margin-bottom: 12px;
  color: #aab8d6;
  font-size: 12px;
}

/* Admin page */
.admin-page{
  padding-top: 26px;
  padding-bottom: 46px;
  display: grid;
  gap: 14px;
}
.is-hidden{
  display: none !important;
}
.admin-page .card{
  border-radius: 16px;
}
.admin-auth h1{
  margin: 0 0 8px;
}
.admin-auth p{
  margin: 0 0 12px;
  color: #b5c2df;
}
.admin-auth-row{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-auth-row .field-input{
  flex: 1 1 300px;
}
.admin-tools-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.admin-tools-head h2{
  margin: 0;
}
.admin-tools-actions{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-meta{
  color: #b5c2df;
  font-size: 13px;
  margin-bottom: 10px;
}
.admin-table-wrap{
  overflow: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
}
.admin-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.admin-table th,
.admin-table td{
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
  font-size: 13px;
}
.admin-table th{
  color: #d9e6ff;
  background: rgba(255,255,255,.04);
}
.admin-broadcast h2{
  margin: 0 0 10px;
}
.admin-textarea{
  min-height: 130px;
  resize: vertical;
}
.admin-checkbox{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d6e3ff;
  font-weight: 700;
  margin: 2px 0 12px;
}
.dash-payout-wrap{
  text-align: center;
  max-width: 420px;
}
.dash-payout-label{
  font-weight: 850;
  margin-bottom: 6px;
}
.dash-payout-progress-text{
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #c5d4f0;
  font-weight: 600;
  transition: color 0.35s ease;
}
.dash-payout-bar{
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.dash-payout-fill{
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #16e0a0, #22c55e);
  box-shadow: 0 0 20px rgba(22,224,160,.4);
  transition: width 0.7s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: width;
}
.dash-withdraw-status{
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #a8b8d8;
}
.dash-withdraw-status--warn{
  color: #ffc9a8;
}
.dash-payout-meta{
  margin-top: 6px;
  color: #a9b5cf;
  font-size: 12px;
}
.dash-activity-feed{
  margin-top: 18px;
  max-width: 620px;
}
.dash-activity-feed-inner{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(18,24,48,.92), rgba(12,16,36,.88));
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.dash-activity-feed-head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.dash-activity-feed-pulse{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34,197,94,.75);
  animation: dashActivityPulse 2s ease-in-out infinite;
}
@keyframes dashActivityPulse{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.55; transform: scale(0.92); }
}
.dash-activity-feed-title{
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #e8f0ff;
  flex: 1;
}
.dash-activity-feed-badge{
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7a8fb8;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 3px 8px;
}
.dash-activity-feed-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #b8c8e8;
  min-height: 1.5em;
  transition: opacity 0.28s ease;
}

.referral-card{
  margin-top: 14px;
  max-width: 620px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(21,26,54,.85), rgba(16,20,44,.85));
  padding: 14px;
}
.referral-card h3{
  margin: 0 0 4px;
  font-size: 20px;
}
.referral-card p{
  margin: 0 0 10px;
  color: #b5c2df;
  font-size: 13px;
}
.referral-unlock-hint{
  margin: 0 0 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 200, 120, 0.35);
  background: rgba(255, 180, 80, 0.08);
  font-size: 13px;
  line-height: 1.45;
  color: #e8d4b8;
}
.referral-row{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.referral-row .field-input{
  flex: 1 1 300px;
  min-width: 220px;
}
.referral-row button{
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
  background: linear-gradient(90deg,#16e0a0,#21cb93);
  color: #032114;
  cursor: pointer;
}

/* CPX surveys (dashboard) */
.dash-cpx-balance{
  margin-top: 10px;
  font-size: 14px;
  color: #b5c2df;
}
.dash-cpx-balance span#cpxBalanceUsd{
  color: #19f0a7;
  font-weight: 800;
}
.dash-cpx-hint{
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #7a8aad;
}
.dash-cpx-section{
  margin-top: 28px;
  margin-bottom: 8px;
}
.dash-cpx-title{
  margin: 0 0 6px;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
}
.dash-cpx-sub{
  margin: 0 0 16px;
  color: #a8b4cb;
  font-size: 14px;
}
.dash-cpx-frame-wrap{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(15,22,48,.5);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.dash-cpx-unavailable{
  padding: 16px;
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,.2);
  color: #ffb4b4;
  font-size: 14px;
}
.dash-cpx-unavailable code{
  color: #19f0a7;
}
.dash-cpx-mount{
  min-height: 120px;
}
.dash-cpx-consent{
  padding: 20px;
  border-radius: 12px;
  background: rgba(15,22,48,.6);
  border: 1px solid rgba(255,255,255,.1);
}
.dash-cpx-consent-text{
  margin: 0 0 14px;
  color: #b5c2df;
  font-size: 14px;
  line-height: 1.55;
}
.dash-cpx-refresh{
  margin-left: 10px;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 8px;
  border: 1px solid rgba(22,224,160,.45);
  background: rgba(22,224,160,.12);
  color: #19f0a7;
  cursor: pointer;
  font-weight: 700;
}
.dash-cpx-refresh:hover{
  background: rgba(22,224,160,.2);
}
.dash-offers-head{
  margin-top: 18px;
  margin-bottom: 14px;
}
.dash-offers-head h2{
  margin: 0 0 4px;
  font-size: 35px;
  line-height: 1.1;
}
.dash-offers-head p{
  margin: 0;
  color: #9daccc;
}
.dash-offers-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.dash-offer-card{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(22,28,59,.85), rgba(15,18,42,.85));
  overflow: hidden;
  box-shadow: 0 20px 65px rgba(0,0,0,.35);
}
.dash-offer-media{
  height: 176px;
}
.dash-offer-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dash-offer-body{
  padding: 12px 14px 14px;
}
.dash-offer-value{
  color: #7cf4c7;
  font-weight: 900;
  margin-bottom: 6px;
}
.dash-offer-body h3{
  margin: 0;
  font-size: 16px;
}
.dash-reward-link{
  color: #7dd0ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 13px;
}
.dash-offer-btn{
  width: 100%;
  margin-top: 10px;
  border: 0;
  border-radius: 8px;
  padding: 12px;
  font-weight: 900;
  color: #031e11;
  background: linear-gradient(90deg,#16e0a0,#23c96d);
  cursor: pointer;
}
.dash-offer-foot{
  margin-top: 10px;
  color: #a9b5cf;
  font-size: 13px;
}
.dash-offer-foot strong{
  color: #8dffc4;
}
.dash-advanced{
  margin-top: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(120deg, rgba(22,28,57,.8), rgba(13,56,60,.6));
  padding: 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}
.dash-advanced-copy h3{
  margin: 0 0 6px;
  font-size: 33px;
  line-height: 1.1;
}
.dash-advanced-copy p{
  margin: 0 0 12px;
  color: #b2bed9;
}
.dash-mini-progress{
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  overflow: hidden;
}
.dash-mini-progress span{
  display: block;
  height: 100%;
  background: linear-gradient(90deg,#18dfa2,#31d5ff);
}
.dash-mini-meta{
  margin-top: 6px;
  font-size: 12px;
  color: #a5b4d5;
}
.dash-advanced-grid{
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
}
.dash-adv-card{
  min-height: 100px;
  border-radius: 12px;
  border: 1px solid rgba(22,224,160,.26);
  background: rgba(22,224,160,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  color: #d9fff0;
  font-size: 14px;
  padding: 10px;
}
@media (max-width: 1024px){
  .dash-offers-grid{ grid-template-columns: 1fr; }
  .dash-advanced{ grid-template-columns: 1fr; }
}
@media (max-width: 820px){
  .dash-nav{ display: none; }
  .dash-header-inner{ justify-content: space-between; }
  .earn-tabs{
    gap: 6px;
  }
  .earn-tab{
    padding: 8px 8px;
    font-size: 12px;
  }
  .dash-header-balance{ gap: 6px; }
  .dash-wallet-pill{ padding: 7px 10px; }
  .dash-wallet-pill .dash-wallet-amount{ font-size: 12px; }
  .dash-coin-pill{ padding: 7px 8px 7px 7px; }
  .dash-coin-pill .dash-coin-icon svg{ width: 16px; height: 16px; }
  .dash-coin-pill .dash-coin-amount{ font-size: 11px; }
  .dash-offers-head h2{ font-size: 28px; }
  .dash-advanced-copy h3{ font-size: 26px; }
  .dash-advanced-grid{ grid-template-columns: 1fr; }
  .verify-email-card{
    flex-direction: column;
    align-items: flex-start;
  }
  .verify-email-right{
    width: 100%;
  }
  .verify-email-right input{
    width: 100%;
  }
}

/* Landing: engagement strip (demo payout, urgency, activity) */
.land-engage{
  padding: 8px 0 40px;
}
.land-urgency-strip{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 160, 90, 0.35);
  background: linear-gradient(135deg, rgba(48, 32, 16, 0.45), rgba(20, 28, 52, 0.55));
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.45;
  color: #ffd8b8;
}
.land-urgency-dot{
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: #fb923c;
  box-shadow: 0 0 12px rgba(251, 146, 60, 0.65);
  animation: landUrgencyPulse 2.2s ease-in-out infinite;
}
@keyframes landUrgencyPulse{
  0%, 100%{ opacity: 1; }
  50%{ opacity: 0.45; }
}
.land-engage-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 900px){
  .land-engage-grid{
    grid-template-columns: 1fr;
  }
}
.land-demo-card{
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(22, 28, 58, 0.92), rgba(14, 18, 40, 0.9));
  padding: 18px 18px 16px;
  text-align: left;
}
.land-demo-title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #f0f6ff;
}
.land-demo-progress-text{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #c5d4f0;
}
.land-demo-bar{
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.land-demo-bar-fill{
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #16e0a0, #22c55e);
  box-shadow: 0 0 18px rgba(22, 224, 160, 0.35);
  transition: width 0.65s cubic-bezier(0.33, 1, 0.68, 1);
}
.land-demo-meta{
  margin: 8px 0 0;
  font-size: 12px;
  color: #9aaac8;
}
.land-demo-first-offer{
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #b8c8e8;
}
.land-demo-first-offer strong{
  color: #e8f0ff;
}
.land-demo-tip{
  margin: 10px 0 0;
  font-size: 12px;
  color: #7d8fb0;
  line-height: 1.45;
}
.land-real-dashboard-link{
  margin: 12px 0 0;
  font-size: 13px;
}
.land-real-dashboard-link a{
  color: #5ee9c0;
  font-weight: 600;
  text-decoration: none;
}
.land-real-dashboard-link a:hover{
  text-decoration: underline;
  color: #7ff0d0;
}
.land-activity-feed{
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(18, 24, 48, 0.92), rgba(12, 16, 36, 0.88));
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.land-activity-feed--landing .land-activity-feed-inner{
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.land-activity-feed-head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.land-activity-feed-pulse{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.75);
  animation: landActivityPulse 2s ease-in-out infinite;
}
@keyframes landActivityPulse{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.55; transform: scale(0.92); }
}
.land-activity-feed-title{
  margin: 0;
  flex: 1;
  font-size: 15px;
  font-weight: 800;
  color: #e8f0ff;
}
.land-activity-feed-badge{
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7a8fb8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 3px 8px;
}
.land-activity-feed-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #b8c8e8;
  min-height: 3em;
  transition: opacity 0.28s ease;
  flex: 1;
}
.section-subtitle--tight{
  margin-top: 6px !important;
  font-size: 16px !important;
  color: var(--muted) !important;
}
.land-country-line{
  font-size: clamp(17px, 2vw, 20px) !important;
  color: #c9d6f0 !important;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.land-sticky-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(6, 10, 22, 0.2), rgba(6, 10, 22, 0.92));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
.land-sticky-cta-toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.land-sticky-cta-copy{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.land-sticky-cta-strong{
  font-weight: 800;
  font-size: 15px;
  color: #f2f7ff;
}
.land-sticky-cta-micro{
  font-size: 12px;
  color: #8fa4c8;
  line-height: 1.35;
}
.land-sticky-cta-btn{
  flex-shrink: 0;
  padding-left: 22px;
  padding-right: 22px;
  font-weight: 800;
}
@media (max-width: 560px){
  .land-sticky-cta-toolbar{
    flex-direction: column;
    align-items: stretch;
  }
  .land-sticky-cta-btn{
    width: 100%;
  }
}

/* Landing: trust strip under hero */
.land-trust--tight{
  padding: 28px 0 36px;
}
.land-trust-grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}
@media (min-width: 900px){
  .land-trust-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}
.land-trust-item{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-size: 14px;
  font-weight: 650;
  color: #dce7f7;
  line-height: 1.45;
}
.land-trust-check{
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #04120c;
  background: linear-gradient(135deg, rgba(0,255,136,.95), rgba(0,201,255,.45));
}

.land-cta-inline{
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding-top: 8px;
}

/* Withdrawals */
.land-withdraw-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 720px){
  .land-withdraw-grid{
    grid-template-columns: 1fr;
  }
}
.land-withdraw-card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding: 22px;
}
.land-withdraw-card--highlight{
  border-color: rgba(22,224,160,.28);
  background: linear-gradient(180deg, rgba(22,224,160,.12), rgba(255,255,255,.03));
}
.land-withdraw-title{
  margin: 0 0 12px;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.land-withdraw-list{
  margin: 0;
  padding-left: 1.15em;
  color: var(--muted);
  line-height: 1.7;
}
.land-withdraw-min{
  margin: 0;
}
.land-withdraw-amount{
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #e9fff4;
}
.land-withdraw-muted{
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}
.land-withdraw-hint{
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Single testimonial */
.land-single-review{
  max-width: 620px;
  margin: 0 auto;
}
.testimonial--single{
  min-height: 0;
}
.avatar--initial{
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  color: #04120c;
  background: linear-gradient(135deg, rgba(0,255,136,.85), rgba(0,201,255,.4));
  border: 1px solid rgba(255,255,255,.12);
}

/* FAQ */
.land-faq-list{
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.land-faq-item{
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 0 16px;
}
.land-faq-item summary{
  cursor: pointer;
  padding: 14px 0;
  font-weight: 750;
  font-size: 16px;
  list-style: none;
}
.land-faq-item summary::-webkit-details-marker{
  display: none;
}
.land-faq-item[open] summary{
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 8px;
}
.land-faq-item p{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

/* Bottom CTA */
.land-cta-bottom{
  padding: 64px 0 72px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(800px 240px at 50% 0%, rgba(22,224,160,.14), transparent 60%),
    linear-gradient(180deg, rgba(5,27,58,.5), rgba(2,6,23,.2));
}
.land-cta-bottom-inner{
  max-width: 520px;
  margin: 0 auto;
}
.land-cta-bottom-title{
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 34px);
  letter-spacing: -0.02em;
}
.land-cta-bottom-sub{
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

/* ===== Landing page conversion refactor ===== */
.land-prose{
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center{
  text-align: center;
}
.section-head--center .section-subtitle,
.section-head--center .section-note{
  margin-left: auto;
  margin-right: auto;
}

main#top > section.land-section{
  padding: 0;
}
main#top > section.land-section > .container{
  max-width: 1100px;
  padding: 80px 20px;
  text-align: center;
}

.land-hero .hero-inner--land{
  min-height: min(92vh, 920px);
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 80px 20px;
  gap: 48px;
}
.hero-copy--land{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}
.hero-title--land{
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.06;
}
.hero-subtitle--land{
  margin-left: auto;
  margin-right: auto;
}
.hero-trust-lines{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  font-size: 14px;
  color: #9aaac8;
}
.hero-trust-lines li{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust-check{
  color: var(--primary);
  font-weight: 800;
}
.hero-ctas--land{
  justify-content: center;
}

.land-trust-cards-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: center;
}
.land-feature-card{
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.land-feature-icon{
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  color: #5ee9c0;
}
.land-feature-icon svg{
  width: 100%;
  height: 100%;
  display: block;
}
.land-feature-title{
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: #f0f6ff;
}
.land-feature-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #b8c8e8;
}

.land-hover-card{
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.land-hover-card:hover{
  transform: translateY(-4px);
}
.offer-card.land-hover-card:hover{
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.btn-cta-glow{
  background: linear-gradient(135deg, #16e0a0, #22c55e) !important;
  border-color: rgba(22, 224, 160, 0.35) !important;
  box-shadow: 0 12px 40px rgba(22, 224, 160, 0.28);
}
.btn-cta-glow:hover{
  box-shadow: 0 18px 60px rgba(22, 224, 160, 0.42), 0 0 36px rgba(0, 255, 150, 0.28);
}

.card-progress{
  background: linear-gradient(135deg, #0f172a, #111827);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 40px rgba(0, 255, 150, 0.1);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.card-progress .land-demo-title{
  text-align: center;
}
.card-progress .land-demo-progress-text{
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 16px;
  color: #f0f6ff;
}
.card-progress .land-demo-pct-num{
  color: #5ee9c0;
  font-weight: 900;
}
.card-progress .land-demo-pct-label{
  font-size: 16px;
  font-weight: 600;
  color: #c5d4f0;
}
.land-demo-bar--thick{
  height: 18px !important;
}

.land-engage-grid--split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  text-align: left;
}
.land-engage-grid--split .card-progress{
  margin: 0;
  justify-self: center;
}
.land-engage-grid--split .live-card{
  min-height: 200px;
}
@media (max-width: 900px){
  .land-engage-grid--split{
    grid-template-columns: 1fr;
  }
}

.live-card.land-activity-feed{
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 36px rgba(0, 255, 150, 0.06);
}

.land-withdraw-visual{
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}
.land-withdraw-methods-label{
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8fa4c8;
}
.land-pay-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.land-pay-badge{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  font-size: 14px;
}
.land-withdraw-min-label{
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: #9aaac8;
}
.land-withdraw-min-big{
  margin: 0 0 16px;
}
.land-withdraw-amount--hero{
  font-size: clamp(42px, 8vw, 56px);
  font-weight: 900;
  color: #4ade80 !important;
  text-shadow: 0 0 32px rgba(74, 222, 128, 0.35);
}

.land-single-review{
  max-width: 600px;
  margin: 0 auto;
}
.testimonial--single{
  padding: 28px 26px;
  text-align: center;
}
.who--testimonial{
  margin-top: 20px;
  justify-content: center;
}
.avatar--photo{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 18px;
}

.land-faq-list--spaced{
  gap: 16px;
}
.land-faq-item--smooth{
  transition: border-color 0.2s ease, background 0.2s ease;
}
.land-faq-item--smooth summary{
  transition: color 0.15s ease;
  padding: 16px 0;
}
.land-faq-answer{
  padding-bottom: 6px;
  animation: landFaqOpen 0.28s ease;
}
.land-faq-answer .land-prose{
  margin-bottom: 14px;
}
@keyframes landFaqOpen{
  from{
    opacity: 0;
    transform: translateY(-4px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.land-cta-bottom.land-section{
  padding: 0;
}
.land-cta-bottom.land-section > .container{
  padding-top: 80px;
  padding-bottom: 88px;
}

@media (max-width: 980px){
  .hero-inner--land{
    align-items: center;
  }
  .hero-copy--land{
    align-self: center;
  }
}

.land-faq-answer p{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  text-align: left;
}

section.land-engage.land-section > .container .land-urgency-strip{
  text-align: left;
  margin-bottom: 24px;
}

main#top section.land-section.offers,
main#top section.land-section.section-alt{
  padding: 0;
}

section.land-engage.land-section{
  padding: 0 !important;
}

.land-hero > .container{
  max-width: 1100px;
}

/* —— Premium landing overrides (calm SaaS) —— */
body{
  background: linear-gradient(180deg, #020617 0%, #0b1220 50%, #020617 100%);
}
.bg-orbs{
  opacity: 0.18;
  height: 360px;
}
.bg-grid{
  opacity: 0.2;
}

.hero-eyebrow{
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(233, 242, 255, 0.5);
}
.hero-title--land{
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero-subtitle--land{
  margin-bottom: 32px;
  opacity: 0.7;
}
.hero-ctas--land{
  gap: 16px;
  margin-top: 8px;
}

.section-title--premium{
  font-weight: 650;
  letter-spacing: -0.02em;
}
main#top .section-subtitle{
  opacity: 0.7;
}

.land-section--divided{
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.land-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
}
.land-grid--steps{
  align-items: stretch;
}

main#top .card:not(.btn){
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  box-shadow: none;
  overflow: visible;
}
main#top .card:not(.btn)::after{
  display: none;
}
main#top .card:not(.btn):hover{
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.land-progress-shell{
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.land-progress-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 820px){
  .land-progress-split{
    grid-template-columns: 1fr;
  }
}
.land-progress-inner{
  min-height: 100%;
}
.land-progress-inner .land-demo-title{
  font-size: 17px;
  font-weight: 650;
  text-align: left;
}
.land-progress-inner .land-demo-progress-text{
  font-size: 26px;
  text-align: left;
}
.land-demo-bar-fill--calm{
  box-shadow: none !important;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}
.land-real-dashboard-link-inline{
  color: rgba(94, 233, 192, 0.95);
  font-weight: 600;
  text-decoration: none;
}
.land-real-dashboard-link-inline:hover{
  text-decoration: underline;
}

.land-live-aside .land-activity-feed-head--minimal{
  margin-bottom: 12px;
}
.land-activity-feed-pulse--subtle{
  animation: none;
  opacity: 0.55;
}
.land-activity-feed-text--fixed{
  min-height: 72px;
  display: flex;
  align-items: center;
  line-height: 1.5;
  transition: opacity 0.12s ease;
}

/* Softer live card — stable min height so layout doesn’t jump */
.live-card.land-activity-feed{
  box-shadow: none;
  min-height: 200px;
  align-self: stretch;
}

.btn-cta-primary{
  border-radius: 12px !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.btn-cta-primary:hover{
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 12px 40px rgba(34, 197, 94, 0.22);
}

.land-feature-card .land-feature-text{
  opacity: 0.75;
}

main#top > section.land-trust-section > .container{
  text-align: center;
}
.land-trust-cards-grid.land-grid{
  text-align: left;
}

/* ===== Landing marketing components (premium, minimal) ===== */
/* Offers: single row desktop / wrap responsive (max 3 cards visible) */
.hero-how-link{
  color: rgba(233,242,255,0.65);
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
}
.hero-how-link:hover{
  text-decoration: underline;
  color: rgba(94, 233, 192, 0.95);
}

.offers-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.offer-card {
  width: 280px;
  height: auto;
  border-radius: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s ease;
  box-shadow: none;
  position: relative;
}

.offer-card::after{
  display: none;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34,197,94,0.4);
  box-shadow: none;
}

.offer-cta-link{
  display: block;
  text-align: center;
  margin-top: 14px;
  color: rgba(94, 233, 192, 0.95);
  font-weight: 650;
  text-decoration: none;
  opacity: 0.9;
}
.offer-cta-link:hover{
  text-decoration: underline;
}

/* Testimonials: 3 cards in one row */
.testimonials {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  width: 300px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  text-align: center;
}

/* Live cashouts — Freecash-inspired (two columns, avatars + flags) */
.live-cashouts-shell{
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

/* Override main#top .card padding — keeps block compact like Freecash */
main#top .live-cashouts-shell.card:not(.btn){
  padding: 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.live-cashouts-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 0;
  align-items: stretch;
}

@media (max-width: 900px){
  .live-cashouts-grid{
    grid-template-columns: 1fr;
  }
  .live-cashouts-side{
    border-left: 0 !important;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
}

/* Full-bleed money photo + blue tint — single panel (no separate “strip” under amount) */
.live-cashouts-hero{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 268px;
  overflow: hidden;
  color: #f8fafc;
  isolation: isolate;
}

.live-cashouts-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #041830;
  background-image:
    linear-gradient(180deg, rgba(5,36,92,0.9) 0%, rgba(4,24,60,0.82) 100%),
    linear-gradient(135deg, rgba(11,99,214,0.5) 0%, transparent 55%),
    url("https://images.unsplash.com/photo-1610374792793-f016b668caf9?auto=format&fit=crop&w=2000&q=90"),
    url("https://images.unsplash.com/photo-1621761191319-6ee4f628968c?auto=format&fit=crop&w=2000&q=90"),
    url("https://images.unsplash.com/photo-1612468264948-0f03a0e7c9ee?auto=format&fit=crop&w=2000&q=90");
  background-size: cover, cover, cover, cover, cover;
  background-position: center, center, center 40%, center 60%, center 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.live-cashouts-hero__content{
  position: relative;
  z-index: 1;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.live-cashouts-hero-kicker{
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.95;
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}

.live-cashouts-hero-amount{
  margin: 0;
  font-size: clamp(30px, 5.8vw, 56px);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 2px 32px rgba(0,0,0,0.45), 0 1px 0 rgba(0,0,0,0.2);
  font-variant-numeric: tabular-nums;
}

.live-cashouts-side{
  padding: 12px 12px 10px;
  border-left: 1px solid rgba(255,255,255,0.06);
  background: rgba(2,6,16,0.55);
}

.live-cashouts-side-head{
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 13px;
  color: #e9f2ff;
}

.live-cashouts-pulse{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
}

.live-cashouts-list{
  max-height: 248px;
  overflow: hidden;
  position: relative;
}

.live-cashouts-list .cashout-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 8px;
  margin-bottom: 6px;
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.live-cashouts-list .cashout-item:hover{
  background: rgba(255,255,255,0.055);
  border-color: rgba(45,212,191,0.18);
}
.live-cashouts-list .cashout-item:focus{
  outline: none;
}
.live-cashouts-list .cashout-item:focus-visible{
  outline: 2px solid rgba(45,212,191,0.65);
  outline-offset: 2px;
}

.live-cashouts-list .cashout-item.show{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lc-user{
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.lc-avatar{
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.lc-avatar-img{
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
}

.lc-avatar-initial{
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #e9f2ff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}

.lc-flag{
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(12,16,28,0.98);
  background: rgba(12,16,28,0.98);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
}

.lc-flag img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 999px;
}

.lc-meta{
  min-width: 0;
}

.lc-name{
  font-weight: 800;
  font-size: 12px;
  color: #f2f7ff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.lc-time{
  margin-top: 1px;
  font-size: 11px;
  color: rgba(168,180,203,0.95);
}

.lc-right{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.lc-amount{
  font-weight: 900;
  font-size: 12px;
  color: #f2f7ff;
  white-space: nowrap;
}

.lc-method-wrap{
  width: 42px;
  display: flex;
  justify-content: flex-end;
}

.lc-method{
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 4px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: rgba(233,242,255,0.92);
  white-space: nowrap;
}

.lc-method--paypal{
  color: rgba(147,197,253,0.95);
}
.lc-method--visa{
  color: rgba(255,255,255,0.95);
}
.lc-method--crypto{
  color: rgba(250,204,21,0.95);
}

/* Live cashout — profile modal (distinct from reference: aurora + teal/violet accents) */
body.lc-profile-modal-open{
  overflow: hidden;
}

.lc-profile-modal{
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  box-sizing: border-box;
}
.lc-profile-modal[hidden]{
  display: none;
}

.lc-profile-modal__backdrop{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(2,6,18,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.lc-profile-modal__dialog{
  position: relative;
  z-index: 1;
  width: min(400px, 100%);
  max-height: min(90vh, 640px);
  overflow: auto;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(45,212,191,0.55),
    rgba(139,92,246,0.35) 45%,
    rgba(59,130,246,0.4) 100%
  );
  box-shadow:
    0 24px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  animation: lc-modal-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce){
  .lc-profile-modal__dialog{
    animation: none;
  }
}

@keyframes lc-modal-in{
  from{
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lc-profile-modal__inner{
  border-radius: 21px;
  background:
    radial-gradient(120% 80% at 10% 0%, rgba(45,212,191,0.12), transparent 55%),
    radial-gradient(90% 60% at 100% 20%, rgba(139,92,246,0.14), transparent 50%),
    linear-gradient(180deg, rgba(12,18,32,0.97) 0%, rgba(6,10,22,0.99) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 26px 22px 22px;
}

.lc-profile-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(226,232,255,0.85);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}
.lc-profile-modal__close:hover{
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.lc-profile-modal__hero{
  text-align: center;
  padding-top: 4px;
}

.lc-profile-modal__avatar-wrap{
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  flex-shrink: 0;
  overflow: visible;
}

/* Stack photo + initial in the same circle — never two rows (fixes stray letter under image) */
.lc-profile-modal__avatar-img,
.lc-profile-modal__avatar-ph{
  position: absolute;
  left: 0;
  top: 0;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
  box-sizing: border-box;
  margin: 0;
  border: 2px solid transparent;
  background:
    linear-gradient(145deg, rgba(12,18,32,0.98), rgba(12,18,32,0.98)) padding-box,
    linear-gradient(135deg, #2dd4bf, #8b5cf6, #38bdf8) border-box;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 12px 40px rgba(0,0,0,0.45),
    0 0 32px rgba(45,212,191,0.18);
}

.lc-profile-modal__avatar-ph{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  color: #e8f0ff;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02)) padding-box,
    linear-gradient(135deg, #2dd4bf, #8b5cf6, #38bdf8) border-box;
}

.lc-profile-modal__avatar-img[hidden],
.lc-profile-modal__avatar-ph[hidden]{
  display: none !important;
}

.lc-profile-modal__avatar-img:not([hidden]){
  display: block;
}

.lc-profile-modal__avatar-ph:not([hidden]){
  display: flex !important;
}

.lc-profile-modal__level-badge{
  position: absolute;
  left: 50%;
  bottom: -10px;
  z-index: 4;
  transform: translateX(-50%);
  padding: 4px 10px 5px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ecfeff;
  background: linear-gradient(135deg, rgba(15,23,42,0.98), rgba(30,27,75,0.95));
  border: 1px solid rgba(45,212,191,0.4);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  white-space: nowrap;
}

.lc-profile-modal__title{
  margin: 8px 0 10px;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.lc-profile-modal__country{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(226,232,255,0.92);
}

.lc-profile-modal__flag{
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}

.lc-profile-modal__joined{
  margin: 0;
  font-size: 12px;
  color: rgba(148,163,184,0.95);
}

.lc-profile-modal__levelbar{
  margin: 18px 0 16px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.lc-profile-modal__levelbar-fill{
  height: 100%;
  width: 40%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2dd4bf, #8b5cf6);
  box-shadow: 0 0 14px rgba(45,212,191,0.35);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lc-profile-modal__stats-heading{
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.95);
}

.lc-profile-modal__stats-heading-ico{
  width: 16px;
  height: 16px;
  opacity: 0.85;
  color: rgba(45,212,191,0.9);
}

.lc-profile-modal__stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lc-profile-modal__stat{
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  text-align: center;
  padding: 12px 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lc-profile-modal__stat:hover{
  background: rgba(255,255,255,0.05);
  border-color: rgba(45,212,191,0.22);
}

.lc-profile-modal__stat-ico{
  width: 22px;
  height: 22px;
  margin-bottom: 6px;
  color: rgba(167,139,250,0.95);
}
.lc-profile-modal__stat-ico svg{
  width: 100%;
  height: 100%;
  display: block;
}

.lc-profile-modal__stat-val{
  font-size: 1.05rem;
  font-weight: 900;
  color: #f1f5f9;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lc-profile-modal__stat-lbl{
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(148,163,184,0.95);
  line-height: 1.3;
}

/* Global polish */
.card {
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

section {
  margin-bottom: 80px;
}

/* Body copy inside cards: left-aligned, no forced narrow column */
main#top .card .land-prose{
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  opacity: 0.7;
}
main#top .testimonial .quote.land-prose{
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

main#top .section-title{
  font-weight: 650;
  letter-spacing: -0.02em;
}

/* Calm demo dashboard card (no rotating conic glow) */
main#top .art-card::before{
  display: none;
}
main#top .art-card{
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: none;
}
main#top .status-dot{
  box-shadow: 0 0 0 3px rgba(22, 224, 160, 0.1);
}
main#top .progress-fill{
  box-shadow: none;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

/* ============================================================
   Premium UI: smooth transitions, subtle motion, high-end feel
   ============================================================ */

*{
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease,
    box-shadow 0.25s ease, opacity 0.25s ease;
}

/* Card hover (subtle float + depth) */
.card,
.offer-card,
.testimonial-card{
  transform: translateY(0);
}
.card:hover,
.offer-card:hover,
.testimonial-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* Button micro interactions */
.btn{
  position: relative;
  overflow: hidden;
}
.btn:hover{
  transform: translateY(-2px);
}
.btn:active{
  transform: scale(0.96);
}

/* Button shine effect */
.btn{
  z-index: 0;
}
.btn::after{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transition: 0.6s;
  z-index: 0;
  pointer-events: none;
}
.btn:hover::after{
  left: 100%;
}
.btn > *{
  position: relative;
  z-index: 1;
}

/* Section fade-in on scroll */
.hidden-section{
  opacity: 0;
  transform: translateY(40px);
}
.show-section{
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease;
}

/* Progress bar animation (smooth fill) */
.progress-fill{
  transition: width 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Icon float micro animation */
.feature-icon,
.land-feature-icon{
  animation: floatIcon 4s ease-in-out infinite;
}
@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Background gradient motion (very subtle) */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(34,197,94,0.08), transparent),
              radial-gradient(circle at 80% 70%, rgba(16,185,129,0.08), transparent);
  z-index: -1;
  animation: bgMove 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes bgMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

/* Hover scale on offer images */
.offer-card img{
  transition: transform 0.4s ease;
}
.offer-card:hover img{
  transform: scale(1.05);
}

/* Input focus (login box) */
input:focus{
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
}

/* Reduce cheap/flashy effects */
.dash-activity-feed-pulse{
  animation: none !important;
  box-shadow: none !important;
}
.land-urgency-dot{
  animation: none !important;
  box-shadow: none !important;
}
.land-activity-feed-pulse{
  animation: none !important;
  box-shadow: none !important;
}
.footer-links a.neon-link:hover{
  box-shadow: none !important;
}
.btn-cta-glow{
  box-shadow: none !important;
}
.btn-cta-glow:hover{
  box-shadow: none !important;
}
.hero-float{
  animation: none !important;
}
.art-card::before{
  animation: none !important;
}

/* Heavy gradient cleanup: keep background simple (subtle motion comes from body::before) */
body{
  background: linear-gradient(180deg, #020617 0%, #0b1220 100%) !important;
}
.bg-orbs{
  opacity: 0.12 !important;
}
.bg-grid{
  opacity: 0.18 !important;
}

/* —— Cashback page (demo grid, Freecash-inspired) —— */
.cashback-body{
  min-height: 100vh;
}
.cb-main{
  padding: 20px 16px 56px;
  max-width: 1200px;
}
.cb-subnav{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.cb-tabs{
  display: inline-flex;
  gap: 8px;
}
.cb-tab{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #9fb0cc;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: default;
}
.cb-tab.is-active{
  background: rgba(22,224,160,.18);
  border-color: rgba(22,224,160,.35);
  color: #e9fff4;
}
.cb-tab:disabled{
  opacity: 0.45;
}
.cb-search-wrap{
  flex: 1;
  min-width: 200px;
  max-width: 360px;
}
.cb-search-label{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.25);
}
.cb-search-icon{
  opacity: 0.5;
  font-size: 14px;
}
.cb-search-input{
  flex: 1;
  border: none;
  background: transparent;
  color: #94a3b8;
  font-size: 14px;
  outline: none;
  width: 100%;
}
.cb-demo-note{
  font-size: 12px;
  color: #7d8ca3;
  margin: 0 0 20px;
}
.cb-section{
  margin-top: 8px;
}
.cb-section-title{
  font-size: 18px;
  font-weight: 800;
  color: #f1f5f9;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.cb-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
@media (min-width: 640px){
  .cb-grid{
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
  }
}
.cb-card{
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, #151b26 0%, #0f141d 100%);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cb-card:hover{
  border-color: rgba(22,224,160,.35);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  transform: translateY(-2px);
}
.cb-card-media{
  position: relative;
  aspect-ratio: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.cb-badge{
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 7px;
  border-radius: 6px;
  z-index: 2;
}
.cb-badge--boosted{
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
}
.cb-pct-ico{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(22,224,160,.2);
  border: 1px solid rgba(22,224,160,.45);
  color: #16e0a0;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.cb-card-logo{
  max-width: 88%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.cb-card-fallback{
  font-size: 13px;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  line-height: 1.2;
}
.cb-bonus-pill{
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  color: #052e1f;
  background: linear-gradient(180deg, #4ade80, #16e0a0);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.cb-card-body{
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.cb-card-name{
  font-size: 13px;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.25;
}
.cb-card-rate{
  font-size: 12px;
  font-weight: 800;
  color: #cbd5e1;
}

/* —— Cashout page (Freecash-style demo) —— */
.cashout-body{
  min-height: 100vh;
}
.co-main{
  padding: 20px 16px 56px;
  max-width: 1180px;
}
.co-top{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 36px;
  align-items: start;
}
@media (min-width: 900px){
  .co-top{
    grid-template-columns: 1fr minmax(260px, 320px);
    gap: 32px;
  }
}
.co-title{
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  color: #f8fafc;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.co-lead{
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 52ch;
}
.co-lead strong{
  color: #e2e8f0;
}
.co-btn-outline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  color: #a7f3d0;
  background: transparent;
  border: 1px solid rgba(22,224,160,.45);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.co-btn-outline:hover{
  background: rgba(22,224,160,.1);
  border-color: rgba(22,224,160,.65);
  color: #ecfdf5;
}
.co-balance-card{
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(165deg, #151c28 0%, #0d1219 100%);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.co-balance-card-head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.co-wallet-ico{
  display: flex;
}
.co-balance-label{
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  margin: 0;
}
.co-balance-value{
  font-size: 2rem;
  font-weight: 900;
  color: #f1f5f9;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.co-balance-divider{
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 12px;
}
.co-balance-foot{
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 8px;
  line-height: 1.45;
}
.co-balance-foot strong{
  color: #e2e8f0;
}
.co-link-fake{
  display: inline;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #16e0a0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.co-link-fake:hover{
  color: #4ade80;
}
.co-section{
  margin-bottom: 40px;
}
.co-section-title{
  font-size: 1.25rem;
  font-weight: 900;
  color: #f1f5f9;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.co-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
@media (min-width: 900px){
  .co-grid{
    grid-template-columns: repeat(6, 1fr);
  }
  .co-grid--crypto{
    grid-template-columns: repeat(3, 1fr);
    max-width: 720px;
  }
}
.co-card{
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: #111827;
  min-height: 220px;
}
.co-card-title{
  font-size: 13px;
  font-weight: 800;
  color: #f8fafc;
  text-align: center;
  margin: 0;
  padding: 12px 10px 8px;
}
.co-card-visual{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 16px;
  position: relative;
}
.co-card-visual--paypal{
  background: linear-gradient(160deg, #1e3a8a 0%, #172554 100%);
}
.co-card-visual--gplay{
  background: linear-gradient(160deg, #0369a1 0%, #0c4a6e 100%);
}
.co-card-visual--amazon{
  background: linear-gradient(160deg, #1c1917 0%, #0c0a09 100%);
}
.co-card-visual--apple{
  background: linear-gradient(160deg, #4c1d95 0%, #1e1b4b 100%);
}
.co-card-visual--visa{
  background: linear-gradient(160deg, #1d4ed8 0%, #172554 100%);
}
.co-card-visual--bank{
  background: linear-gradient(160deg, #14532d 0%, #052e16 100%);
}
.co-card-visual--btc{
  background: linear-gradient(160deg, #ea580c 0%, #9a3412 100%);
}
.co-card-visual--ltc{
  background: linear-gradient(160deg, #475569 0%, #1e293b 100%);
}
.co-card-visual--doge{
  background: linear-gradient(160deg, #ca8a04 0%, #854d0e 100%);
}
.co-card-logo{
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
}
.co-card-fallback{
  font-size: 3rem;
  line-height: 1;
}
.co-withdraw-btn{
  margin-top: auto;
  width: 100%;
  border: none;
  padding: 12px 14px;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  color: #052e1f;
  background: linear-gradient(180deg, #4ade80, #16e0a0);
  transition: filter .2s ease, transform .15s ease;
}
.co-withdraw-btn:hover{
  filter: brightness(1.08);
}
.co-withdraw-btn:active{
  transform: translateY(1px);
}
.co-disclaimer{
  font-size: 12px;
  line-height: 1.55;
  color: #64748b;
  max-width: 72ch;
  margin: 8px 0 0;
}

@media (prefers-reduced-motion: reduce){
  *{
    transition: none !important;
    animation: none !important;
  }
  body::before{
    animation: none !important;
  }
}

