/* ═══════════════════════════════════════════════
   KENYASURVEY – app.css
   Full stylesheet: Landing + Auth + Profile + App
═══════════════════════════════════════════════ */

:root {
  --green:        #00a651;
  --green-light:  #00c962;
  --green-dark:   #007a3d;
  --gold:         #f5a623;
  --dark:         #0a0f0d;
  --dark2:        #111a14;
  --dark3:        #172019;
  --card:         #1a2b1e;
  --card2:        #1f3323;
  --border:       #2a4030;
  --text:         #e8f5ec;
  --text2:        #9ab8a4;
  --text3:        #6a8f75;
  --white:        #ffffff;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 8px 32px rgba(0,0,0,0.4);
  --shadow-green: 0 4px 24px rgba(0,166,81,0.25);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(0,166,81,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 90%, rgba(0,166,81,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Full button reset — prevents any browser default white bg */
button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  display: inline-flex;
  align-items: center;
}

/* ── Utility ── */
.hidden { display: none !important; }

/* ── Screens ── */
.screen { display: none; min-height: 100vh; position: relative; z-index: 1; }
.screen.active { display: flex; flex-direction: column; }


/* ═══════════════════════════════════════════════
   TEXT-LINK (replaces <a href="#"> inside modals,
   auth notes, sidebar legal — no white bg ever)
═══════════════════════════════════════════════ */
.text-link {
  color: var(--green-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.2s;
  font-size: inherit;
}
.text-link:hover { color: var(--green); }

.text-link.small {
  font-size: 0.72rem;
  color: var(--text3);
  text-decoration: none;
}
.text-link.small:hover { color: var(--green-light); }


/* ═══════════════════════════════════════════════
   LANDING PAGE
═══════════════════════════════════════════════ */

#landing-screen { flex-direction: column; }

/* ── Nav ── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(10,15,13,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.lp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo — div, not button/a, so no default styles */
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}

.lp-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-logo-icon.small { width: 30px; height: 30px; border-radius: 7px; }
.lp-logo-icon i { color: #fff; font-size: 15px; }

.lp-logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.2px;
}
.lp-logo-text strong { color: var(--green); font-weight: 800; }

/* Nav links */
.lp-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.lp-nav-links a {
  display: block;
  padding: 7px 13px;
  text-decoration: none;
  color: var(--text2);
  font-size: 0.86rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}
.lp-nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

/* Nav CTA buttons */
.lp-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lp-btn-ghost {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text2);
  font-size: 0.86rem;
  font-weight: 600;
  background: transparent;
  transition: all 0.2s;
}
.lp-btn-ghost:hover { border-color: var(--green); color: var(--green-light); }

.lp-btn-solid {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 8px;
  box-shadow: var(--shadow-green);
  transition: all 0.2s;
  border: none;
}
.lp-btn-solid:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(0,166,81,0.4); }
.lp-btn-solid:active { transform: translateY(0); }

.lp-btn-solid.lp-btn-lg {
  padding: 14px 28px;
  font-size: 0.97rem;
  border-radius: 14px;
}

.lp-btn-outline {
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
  font-weight: 600;
  background: transparent;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.lp-btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* Hamburger */
.lp-hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 20px;
  padding: 6px;
  margin-left: auto;
}

/* Mobile menu */
.lp-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 2px;
  background: rgba(10,15,13,0.98);
}
.lp-mobile-menu.open { display: flex; }

.lp-mobile-menu a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--text2);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.lp-mobile-menu a:hover { background: rgba(255,255,255,0.05); color: var(--white); }

.lp-mobile-cta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.lp-mobile-cta .lp-btn-ghost,
.lp-mobile-cta .lp-btn-solid { flex: 1; justify-content: center; }


/* ── Hero ── */
.lp-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 32px 100px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.lp-hero-inner { flex: 1; min-width: 0; }

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,166,81,0.1);
  border: 1px solid rgba(0,166,81,0.25);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 0.4px;
  margin-bottom: 28px;
}
.lp-hero-badge i { font-size: 11px; }

.lp-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.lp-hero-accent { color: var(--green); }

.lp-hero-desc {
  font-size: 1.02rem;
  color: var(--text2);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 520px;
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.lp-hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.lp-hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text3);
  font-weight: 500;
}
.lp-hero-trust i { color: var(--green); font-size: 12px; }

/* Hero card */
.lp-hero-visual { flex-shrink: 0; width: 340px; }

.lp-hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp-card-row { display: flex; align-items: center; gap: 14px; }

.lp-card-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.lp-card-icon.green { background: rgba(0,166,81,0.15); color: var(--green); }
.lp-card-icon.blue  { background: rgba(59,130,246,0.15); color: #60a5fa; }
.lp-card-icon.gold  { background: rgba(245,166,35,0.15); color: var(--gold); }

.lp-card-label { font-size: 0.73rem; color: var(--text3); margin-bottom: 2px; }
.lp-card-val   { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.lp-card-divider { height: 1px; background: var(--border); }

.lp-card-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.73rem;
  color: var(--text3);
  line-height: 1.5;
}
.lp-card-disclaimer i { margin-top: 1px; flex-shrink: 0; }


/* ── LP Sections ── */
.lp-section { padding: 80px 0; }

.lp-section-alt {
  background: rgba(0,166,81,0.022);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lp-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.lp-section-title {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.lp-section-sub {
  font-size: 0.97rem;
  color: var(--text2);
  line-height: 1.72;
  max-width: 600px;
  margin-bottom: 48px;
}


/* ── 3-col grid ── */
.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Research cards */
.lp-card-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: transform 0.2s, border-color 0.2s;
}
.lp-card-block:hover { transform: translateY(-3px); border-color: rgba(0,166,81,0.3); }

.lp-block-icon {
  width: 46px; height: 46px;
  background: rgba(0,166,81,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  color: var(--green);
  margin-bottom: 16px;
}

.lp-card-block h3 { font-size: 0.97rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.lp-card-block p  { font-size: 0.83rem; color: var(--text2); line-height: 1.6; }

/* Trust items */
.lp-trust-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.lp-trust-item:hover { border-color: rgba(0,166,81,0.3); }
.lp-trust-item i { display: block; font-size: 22px; color: var(--green); margin-bottom: 14px; }
.lp-trust-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.lp-trust-item p  { font-size: 0.81rem; color: var(--text2); line-height: 1.6; }


/* ── About ── */
.lp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.lp-about-text p {
  font-size: 0.91rem;
  color: var(--text2);
  line-height: 1.78;
  margin-bottom: 16px;
}

.lp-about-stats { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }

.lp-stat-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green-light);
  font-family: 'JetBrains Mono', monospace;
}
.lp-stat-label { font-size: 0.74rem; color: var(--text3); margin-top: 3px; }

.lp-about-cards { display: flex; flex-direction: column; gap: 14px; }

.lp-about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lp-about-card > i { color: var(--green); font-size: 17px; margin-top: 2px; flex-shrink: 0; width: 20px; }
.lp-about-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.lp-about-card p  { font-size: 0.81rem; color: var(--text2); line-height: 1.6; }


/* ── Steps ── */
.lp-steps {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin-bottom: 36px;
}

.lp-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.lp-step-num {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
}

.lp-step-body h3 { font-size: 0.97rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.lp-step-body p  { font-size: 0.84rem; color: var(--text2); line-height: 1.65; }

.lp-step-line {
  margin-left: 19px;
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, var(--green-dark), var(--border));
  flex-shrink: 0;
}

.lp-info-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  max-width: 680px;
}
.lp-info-note > i { color: #60a5fa; font-size: 17px; margin-top: 2px; flex-shrink: 0; }
.lp-info-note strong { display: block; color: #93c5fd; font-size: 0.87rem; margin-bottom: 4px; }
.lp-info-note p { font-size: 0.82rem; color: var(--text2); line-height: 1.6; }


/* ── FAQ ── */
.lp-faq-wrap { max-width: 780px; }

.lp-faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }

.lp-faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.lp-faq-item:has(.lp-faq-a.open) { border-color: rgba(0,166,81,0.3); }

.lp-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-size: 0.91rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.2s;
  cursor: pointer;
}
.lp-faq-q:hover { color: var(--green-light); }
.lp-faq-q i { color: var(--text3); font-size: 12px; transition: transform 0.25s; flex-shrink: 0; }
.lp-faq-q.open i { transform: rotate(180deg); color: var(--green); }

.lp-faq-a { display: none; padding: 0 20px 16px; }
.lp-faq-a.open { display: block; }
.lp-faq-a p { font-size: 0.84rem; color: var(--text2); line-height: 1.72; }


/* ── CTA ── */
.lp-cta-section {
  background: linear-gradient(135deg, #0d2e18, #0a1f10);
  border-top: 1px solid var(--green-dark);
  border-bottom: 1px solid var(--green-dark);
  padding: 80px 32px;
  text-align: center;
}

.lp-cta-inner { max-width: 580px; margin: 0 auto; }
.lp-cta-inner h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.lp-cta-inner > p { font-size: 0.94rem; color: var(--text2); line-height: 1.7; margin-bottom: 28px; }
.lp-cta-note { font-size: 0.75rem !important; color: var(--text3) !important; margin-top: 14px !important; margin-bottom: 0 !important; }


/* ── Contact ── */
.lp-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.lp-contact-intro { font-size: 0.9rem; color: var(--text2); line-height: 1.7; margin-bottom: 26px; }
.lp-contact-details { display: flex; flex-direction: column; gap: 16px; }

.lp-contact-row { display: flex; align-items: flex-start; gap: 14px; }

.lp-contact-icon {
  width: 34px; height: 34px;
  background: rgba(0,166,81,0.12);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
}

.lp-contact-label { font-size: 0.72rem; color: var(--text3); margin-bottom: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.lp-contact-val   { font-size: 0.88rem; color: var(--text); font-weight: 500; }

.lp-contact-topics {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.lp-contact-topics h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.lp-contact-topics h4 i { color: var(--green); }
.lp-contact-topics ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lp-contact-topics li { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text2); }
.lp-contact-topics li i { color: var(--green); font-size: 9px; }


/* ── Footer ── */
.lp-footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 56px 32px 0;
}

.lp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.lp-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.lp-footer-logo span { font-size: 1rem; font-weight: 600; color: var(--white); }
.lp-footer-logo strong { color: var(--green); }
.lp-footer-brand p { font-size: 0.81rem; color: var(--text3); line-height: 1.65; max-width: 250px; }

.lp-footer-col { display: flex; flex-direction: column; gap: 0; }
.lp-footer-col h5 { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); margin-bottom: 14px; }

/* Footer links — <a> tags only, no buttons, so styling <a> */
.lp-footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.83rem;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.lp-footer-col a:hover { color: var(--green-light); }

.lp-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.77rem;
  color: var(--text3);
}


/* ═══════════════════════════════════════════════
   AUTH SCREEN
═══════════════════════════════════════════════ */
#auth-screen { align-items: center; justify-content: center; padding: 24px; }

.auth-wrap { width: 100%; display: flex; justify-content: center; }

.auth-box {
  width: 100%;
  max-width: 440px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow);
}

.auth-back-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text3);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.auth-back-btn:hover { color: var(--green-light); }
.auth-back-btn i { font-size: 13px; }

.logo-wrap { text-align: center; margin-bottom: 28px; }

.logo-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-green);
}
.logo-icon i { color: #fff; font-size: 26px; }

.logo-title { font-size: 1.55rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.logo-title span { color: var(--green); }
.logo-sub { font-size: 0.83rem; color: var(--text2); margin-top: 4px; }

/* Tabs */
.auth-tabs {
  display: flex;
  background: var(--dark3);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 26px;
  gap: 4px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  color: var(--text2);
  font-size: 0.87rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  justify-content: center;
}
.auth-tab.active { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }

/* Register heading + confirm list */
.auth-heading { margin-bottom: 12px; }
.auth-heading h2 { font-size: 1.05rem; font-weight: 700; color: var(--white); text-align: center; }

.auth-confirm-list {
  background: rgba(0,166,81,0.07);
  border: 1px solid rgba(0,166,81,0.2);
  border-radius: var(--radius);
  padding: 13px 15px;
  margin-bottom: 4px;
}
.confirm-label { font-size: 0.76rem; color: var(--text3); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; }
.auth-confirm-list ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.auth-confirm-list li { display: flex; align-items: center; gap: 9px; font-size: 0.81rem; color: var(--text2); }
.auth-confirm-list li i { color: var(--green); font-size: 11px; flex-shrink: 0; }

/* Form */
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-form.hidden { display: none; }

.field-group { display: flex; flex-direction: column; gap: 6px; }

.field-label { font-size: 0.81rem; font-weight: 600; color: var(--text2); letter-spacing: 0.3px; }

.field-wrap { position: relative; }
.field-wrap > i {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text3);
  font-size: 13px;
  pointer-events: none;
}

.field-input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  background: var(--dark3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: 0.91rem;
  transition: border-color 0.2s;
  outline: none;
}
.field-input:focus { border-color: var(--green); }
.field-input::placeholder { color: var(--text3); }

.select-input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  background: var(--dark3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: 0.91rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s;
}
.select-input:focus { border-color: var(--green); }

.btn-primary {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border: none;
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-green);
  margin-top: 4px;
  justify-content: center;
  gap: 8px;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(0,166,81,0.4); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.auth-note {
  font-size: 0.77rem;
  color: var(--text3);
  text-align: center;
  margin-top: 6px;
  line-height: 1.55;
}

.alert {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 500;
  display: none;
}
.alert.error   { background: rgba(187,0,0,0.15); border: 1px solid rgba(187,0,0,0.3); color: #ff6b6b; }
.alert.success { background: rgba(0,166,81,0.15); border: 1px solid rgba(0,166,81,0.3); color: var(--green-light); }
.alert.show    { display: block; }

.auth-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.auth-dot { color: var(--border); font-size: 0.7rem; }


/* ═══════════════════════════════════════════════
   PROFILE SCREEN
═══════════════════════════════════════════════ */
#profile-screen { align-items: center; justify-content: center; padding: 24px; }

.profile-wrap { width: 100%; display: flex; justify-content: center; }

.profile-box {
  width: 100%; max-width: 480px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}

.profile-header { text-align: center; margin-bottom: 26px; }
.profile-header h2 { font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.profile-header p  { font-size: 0.84rem; color: var(--text2); line-height: 1.55; }


/* ═══════════════════════════════════════════════
   APP SCREEN
═══════════════════════════════════════════════ */
#app-screen { flex-direction: row; }

/* Sidebar */
.sidebar {
  width: 256px;
  min-height: 100vh;
  background: var(--dark2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 22px 0;
  position: fixed;
  left: 0; top: 0;
  z-index: 100;
  transition: transform 0.3s;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.sidebar-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.sidebar-logo-icon i { color: #fff; font-size: 17px; }

.sidebar-logo-text { font-size: 1.05rem; font-weight: 800; color: var(--white); }
.sidebar-logo-text span { color: var(--green); }

.balance-card {
  margin: 0 14px 18px;
  background: linear-gradient(135deg, var(--green-dark), #005a2e);
  border-radius: var(--radius);
  padding: 15px;
  position: relative;
  overflow: hidden;
}
.balance-card::after {
  content: '';
  position: absolute;
  right: -18px; top: -18px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.balance-label { font-size: 0.73rem; color: rgba(255,255,255,0.7); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.balance-amount { font-family: 'JetBrains Mono', monospace; font-size: 1.55rem; font-weight: 700; color: #fff; margin: 4px 0; }
.balance-earned { font-size: 0.73rem; color: rgba(255,255,255,0.6); }

.nav-list { list-style: none; flex: 1; padding: 0 8px; }
.nav-item  { margin-bottom: 2px; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text2);
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}
.nav-link i { width: 18px; font-size: 14px; }
.nav-link:hover  { background: var(--dark3); color: var(--text); }
.nav-link.active { background: rgba(0,166,81,0.15); color: var(--green-light); }
.nav-link.active i { color: var(--green); }

.nav-badge {
  margin-left: auto;
  background: var(--green);
  color: #fff;
  font-size: 0.69rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}

.sidebar-footer {
  padding: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.sidebar-legal {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

.user-info { display: flex; align-items: center; gap: 10px; }

.user-avatar {
  width: 36px; height: 36px;
  background: var(--card2);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--green);
  flex-shrink: 0;
}

.user-name  { font-size: 0.84rem; font-weight: 700; color: var(--text); }
.user-phone { font-size: 0.73rem; color: var(--text3); }

.btn-logout {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--text3);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: color 0.2s;
}
.btn-logout:hover { color: #ff6b6b; }

/* Main content */
.main-content {
  margin-left: 256px;
  flex: 1;
  min-height: 100vh;
  padding: 30px;
}

/* Mobile header */
.mobile-header {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 13px 15px;
  align-items: center;
  justify-content: space-between;
}

.hamburger {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 19px;
  cursor: pointer;
  padding: 4px;
}

.mobile-balance {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--green-light);
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99;
}

/* ── Dashboard ── */
.page-panel { display: none; }
.page-panel.active { display: block; }

.page-title { font-size: 1.45rem; font-weight: 800; color: var(--white); margin-bottom: 5px; letter-spacing: -0.3px; }
.page-sub   { font-size: 0.87rem; color: var(--text2); margin-bottom: 26px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-2px); }

.stat-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.stat-icon.green  { background: rgba(0,166,81,0.15); color: var(--green); }
.stat-icon.gold   { background: rgba(245,166,35,0.15); color: var(--gold); }
.stat-icon.blue   { background: rgba(59,130,246,0.15); color: #60a5fa; }
.stat-icon.purple { background: rgba(139,92,246,0.15); color: #a78bfa; }

.stat-value { font-family: 'JetBrains Mono', monospace; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.stat-label { font-size: 0.76rem; color: var(--text2); margin-top: 2px; }

/* Activation banner */
.activation-banner {
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(245,166,35,0.06));
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.activation-banner.hidden { display: none; }
.activation-text h3 { font-size: 0.97rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.activation-text p  { font-size: 0.81rem; color: var(--text2); line-height: 1.5; }

.btn-activate {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold), #e8941a);
  border: none;
  border-radius: var(--radius);
  color: var(--dark);
  font-size: 0.87rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-activate:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(245,166,35,0.4); }

/* Progress */
.progress-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 24px;
}
.progress-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.progress-title  { font-size: 0.93rem; font-weight: 700; color: var(--white); }
.progress-count  { font-size: 0.83rem; color: var(--text2); }
.progress-bar    { height: 7px; background: var(--dark3); border-radius: 4px; overflow: hidden; }
.progress-fill   { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-light)); border-radius: 4px; transition: width 0.6s ease; }

.section-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title i { color: var(--green); }

/* Disclosure */
.disclosure-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius);
  padding: 11px 15px;
  margin-bottom: 22px;
}
.disclosure-card i { color: #60a5fa; margin-top: 2px; flex-shrink: 0; }
.disclosure-card p { font-size: 0.77rem; color: var(--text2); line-height: 1.5; }

/* Transactions */
.tx-list { display: flex; flex-direction: column; gap: 8px; }

.tx-item {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 15px;
}

.tx-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.tx-icon.earn     { background: rgba(0,166,81,0.15); color: var(--green); }
.tx-icon.withdraw { background: rgba(187,0,0,0.12); color: #ff6b6b; }
.tx-icon.bonus    { background: rgba(245,166,35,0.15); color: var(--gold); }

.tx-desc { font-size: 0.83rem; color: var(--text); font-weight: 500; }
.tx-date { font-size: 0.72rem; color: var(--text3); margin-top: 2px; }

.tx-amount { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; font-weight: 700; }
.tx-amount.positive { color: var(--green-light); }
.tx-amount.negative { color: #ff6b6b; }

/* Start survey hero */
.start-survey-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, #0d2e18, #0a1f10);
  border: 1.5px solid var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  margin-bottom: 22px;
  box-shadow: 0 4px 24px rgba(0,166,81,0.15);
  flex-wrap: wrap;
}

.start-survey-left { display: flex; align-items: center; gap: 14px; }

.start-survey-icon-wrap {
  width: 50px; height: 50px;
  background: rgba(0,166,81,0.18);
  border: 1.5px solid rgba(0,166,81,0.35);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 21px;
  color: var(--green-light);
}

.start-survey-heading { font-size: 1.02rem; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.start-survey-desc    { font-size: 0.79rem; color: var(--text2); line-height: 1.4; }

.btn-start-survey {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  border: none;
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.93rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,166,81,0.45);
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-start-survey:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,166,81,0.55); }
.btn-start-survey:active { transform: translateY(0); }

/* Survey panel */
.survey-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }

.survey-integrity-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius);
  padding: 11px 15px;
  margin-bottom: 18px;
}
.survey-integrity-note i { color: #60a5fa; margin-top: 2px; flex-shrink: 0; }
.survey-integrity-note p { font-size: 0.79rem; color: var(--text2); line-height: 1.5; }

.page-indicator { display: flex; gap: 6px; flex-wrap: wrap; }

.page-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.2s; }
.page-dot.completed { background: var(--green); }
.page-dot.current   { background: var(--gold); transform: scale(1.3); }

.questions-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 26px; }

.question-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color 0.2s;
  position: relative;
}
.question-card.answered { border-color: var(--green-dark); opacity: 0.73; }
.question-card.correct  { border-color: var(--green); background: rgba(0,166,81,0.06); }
.question-card.wrong    { border-color: rgba(187,0,0,0.4); }
.question-card.answered::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: rgba(0,166,81,0.03);
  pointer-events: none;
}

.question-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }

.question-cat {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--green);
  background: rgba(0,166,81,0.1); padding: 3px 8px; border-radius: 20px;
}

.question-reward { font-size: 0.81rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 4px; }

.question-text { font-size: 0.94rem; font-weight: 600; color: var(--white); line-height: 1.5; margin-bottom: 14px; }

.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.option-btn {
  padding: 10px 13px;
  background: var(--dark3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text2);
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  line-height: 1.3;
  display: block;
}
.option-btn:hover:not(:disabled) { border-color: var(--green); color: var(--text); }
.option-btn:disabled { cursor: not-allowed; }
.option-btn.selected-correct { background: rgba(0,166,81,0.2); border-color: var(--green); color: var(--green-light); }
.option-btn.selected-wrong   { background: rgba(187,0,0,0.15); border-color: rgba(187,0,0,0.5); color: #ff6b6b; }
.option-btn.reveal-correct   { background: rgba(0,166,81,0.1); border-color: var(--green-dark); color: var(--green-light); }

.question-answered-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,166,81,0.15); border: 1px solid rgba(0,166,81,0.35);
  color: var(--green-light); font-size: 0.71rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px; letter-spacing: 0.3px;
}

.question-result {
  margin-top: 11px; padding: 9px 13px; border-radius: 8px;
  font-size: 0.81rem; font-weight: 600; display: none; align-items: center; gap: 7px;
}
.question-result.correct { background: rgba(0,166,81,0.12); color: var(--green-light); display: flex; }
.question-result.wrong   { background: rgba(187,0,0,0.1); color: #ff8080; display: flex; }

.pagination { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.btn-page {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 20px; background: var(--card);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  color: var(--text2); font-size: 0.87rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.btn-page:hover:not(:disabled) { border-color: var(--green); color: var(--green); }
.btn-page:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-page.next { background: linear-gradient(135deg, var(--green), var(--green-dark)); border-color: transparent; color: #fff; }
.btn-page.next:hover:not(:disabled) { box-shadow: var(--shadow-green); transform: translateY(-1px); }

.page-info { font-size: 0.83rem; color: var(--text2); font-weight: 600; }

/* Withdraw */
.withdraw-box { max-width: 500px; }

.info-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin-bottom: 18px; }

.info-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.87rem; }
.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--text2); }
.info-row .value { font-weight: 700; color: var(--white); }
.info-row .value.green { color: var(--green-light); font-family: 'JetBrains Mono', monospace; }

.locked-msg {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius); padding: 15px; margin-bottom: 18px;
}
.locked-msg > i { color: var(--gold); margin-top: 2px; }
.locked-msg p { font-size: 0.83rem; color: var(--text2); line-height: 1.5; }

.slider-input { width: 100%; accent-color: var(--green); }

.amount-display { text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 1.9rem; font-weight: 700; color: var(--white); margin: 11px 0; }

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,166,81,0.12); color: var(--green);
  font-size: 0.74rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; border: 1px solid rgba(0,166,81,0.2);
}
.chip.gold { background: rgba(245,166,35,0.12); color: var(--gold); border-color: rgba(245,166,35,0.2); }


/* Spinner */
.spinner {
  width: 19px; height: 19px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Toast */
.toast-container { position: fixed; bottom: 22px; right: 22px; z-index: 1000; display: flex; flex-direction: column; gap: 8px; }

.toast {
  min-width: 270px; padding: 13px 17px; border-radius: var(--radius);
  font-size: 0.87rem; font-weight: 600;
  display: flex; align-items: center; gap: 9px;
  box-shadow: var(--shadow); animation: slideIn 0.3s ease;
}
.toast.success { background: #0d3321; border: 1px solid var(--green-dark); color: var(--green-light); }
.toast.error   { background: #2d0c0c; border: 1px solid #5a1a1a; color: #ff8080; }
.toast.info    { background: var(--card2); border: 1px solid var(--border); color: var(--text); }

@keyframes slideIn  { from { transform: translateX(100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100px); opacity: 0; } }

/* Earn pop */
.earn-pop {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  background: var(--card2); border: 2px solid var(--green);
  border-radius: var(--radius-lg); padding: 26px 38px;
  text-align: center; z-index: 500;
  pointer-events: none; opacity: 0; transition: all 0.3s;
}
.earn-pop.show { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.earn-pop .earn-amount { font-family: 'JetBrains Mono', monospace; font-size: 2.4rem; font-weight: 800; color: var(--green-light); }
.earn-pop .earn-label  { font-size: 0.88rem; color: var(--text2); margin-top: 4px; }

/* Empty state */
.empty-state { text-align: center; padding: 38px 20px; color: var(--text3); }
.empty-state i { font-size: 34px; margin-bottom: 12px; display: block; }
.empty-state p { font-size: 0.87rem; }

/* Modals */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.76); z-index: 500;
  backdrop-filter: blur(4px);
}
.modal-overlay.show { display: block; }

.modal {
  display: none; position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92%; max-width: 510px; max-height: 80vh;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); z-index: 600;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  overflow: hidden; flex-direction: column;
}
.modal.show { display: flex; }

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.modal-header h3 { font-size: 0.97rem; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 8px; }
.modal-header h3 i { color: var(--green); }
.modal-header > button {
  background: transparent; border: none; color: var(--text3);
  cursor: pointer; font-size: 15px; padding: 4px 6px; border-radius: 6px; transition: color 0.2s;
}
.modal-header > button:hover { color: var(--text); }

.modal-body { padding: 18px 22px; overflow-y: auto; display: flex; flex-direction: column; gap: 11px; }
.modal-body h4 { font-size: 0.87rem; font-weight: 700; color: var(--green-light); margin-top: 4px; }
.modal-body p  { font-size: 0.82rem; color: var(--text2); line-height: 1.6; }
.modal-body ul { list-style: disc; padding-left: 18px; display: flex; flex-direction: column; gap: 4px; }
.modal-body ul li { font-size: 0.81rem; color: var(--text2); }

.modal-contact-info { background: var(--dark3); border-radius: var(--radius); padding: 13px 15px; display: flex; flex-direction: column; gap: 8px; }
.modal-contact-info p { display: flex; align-items: center; gap: 9px; font-size: 0.83rem; color: var(--text2); margin: 0; }
.modal-contact-info i { color: var(--green); width: 15px; }

.contact-topics { background: var(--dark3); border-radius: var(--radius); padding: 13px 15px; }
.contact-topics > p { margin-bottom: 8px !important; color: var(--text) !important; font-weight: 600; }


/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .lp-grid-3      { grid-template-columns: repeat(2, 1fr); }
  .lp-footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .lp-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .lp-hero       { flex-direction: column; gap: 40px; padding: 60px 22px 60px; }
  .lp-hero-visual { width: 100%; max-width: 400px; }
  .lp-about-grid  { grid-template-columns: 1fr; gap: 36px; }
  .lp-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-nav-links   { display: none; }
  .lp-nav-cta     { display: none; }
  .lp-hamburger   { display: block; }
}

@media (max-width: 640px) {
  .lp-grid-3       { grid-template-columns: 1fr; }
  .lp-hero-actions { flex-direction: column; align-items: stretch; }
  .lp-btn-outline, .lp-btn-solid.lp-btn-lg { width: 100%; justify-content: center; }
  .lp-section       { padding: 52px 0; }
  .lp-section-inner { padding: 0 18px; }
  .lp-footer-inner  { grid-template-columns: 1fr 1fr; gap: 28px; padding: 0 18px 36px; }
  .lp-footer        { padding: 36px 0 0; }
  .lp-footer-bottom { padding: 14px 18px; font-size: 0.73rem; }
  .lp-cta-section   { padding: 56px 18px; }
}

@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .sidebar-overlay.show { display: block; }
  .mobile-header { display: flex; }
  .main-content  { margin-left: 0; padding: 76px 14px 18px; }
  .options-grid  { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .auth-box      { padding: 26px 18px; }
  .toast-container { bottom: 14px; right: 14px; left: 14px; }
  .toast { min-width: unset; }
  .start-survey-hero { flex-direction: column; align-items: flex-start; padding: 16px 18px; }
  .btn-start-survey  { width: 100%; justify-content: center; }
}
/* ── Withdraw CTA Widget ── */
.withdraw-cta-widget {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #0d2e18 0%, #0a1f10 100%);
  border: 1.5px solid var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(0,166,81,0.15);
  flex-wrap: wrap;
}

.wcta-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.wcta-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(0,166,81,0.18);
  border: 1.5px solid rgba(0,166,81,0.35);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--green-light);
}

.wcta-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.wcta-desc {
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 1.4;
}

.wcta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.wcta-steps {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wcta-step {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--text3);
  font-weight: 600;
  white-space: nowrap;
}

.wcta-step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.3s;
}

.wcta-step-dot.done    { background: var(--green); }
.wcta-step-dot.active  { background: var(--gold); box-shadow: 0 0 6px rgba(245,166,35,0.5); }
.wcta-step-dot.pending { background: var(--border); }

.wcta-step.done   { color: var(--green-light); }
.wcta-step.active { color: var(--gold); }

.wcta-step-line {
  width: 20px; height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.wcta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  border: none;
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,166,81,0.4);
  transition: all 0.2s;
}
.wcta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,166,81,0.55); }
.wcta-btn:active { transform: translateY(0); }

@media (max-width: 768px) {
  .withdraw-cta-widget { flex-direction: column; padding: 18px; }
  .wcta-right { align-items: flex-start; width: 100%; }
  .wcta-btn { width: 100%; justify-content: center; }
  .wcta-steps { flex-wrap: wrap; }
}


.mobile-home-btn {
  background: rgba(0,166,81,0.15);
  border: 1px solid rgba(0,166,81,0.3);
  border-radius: 8px;
  color: var(--green-light);
  font-size: 15px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-home-btn:hover { background: rgba(0,166,81,0.25); }

/* ── Withdrawal Notifications ── */
  .wd-notif-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.wd-notif {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 11px 15px;
  min-width: 240px;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: notifSlideIn 0.4s ease forwards;
  pointer-events: none;
}

.wd-notif.hiding {
  animation: notifSlideOut 0.4s ease forwards;
}

.wd-notif-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.wd-notif-body { flex: 1; min-width: 0; }

.wd-notif-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1px;
}

.wd-notif-amount {
  font-size: 0.75rem;
  color: var(--green-light);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}

.wd-notif-time {
  font-size: 0.68rem;
  color: var(--text3);
  white-space: nowrap;
}

@keyframes notifSlideIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

@keyframes notifSlideOut {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(110%); opacity: 0; }
}

@media (max-width: 768px) {
  .wd-notif-container { top: 70px; right: 10px; left: auto; width: 280px; }
  .wd-notif { max-width: 100%; }
}

/* ── Cooldown button state ── */
.btn-cooldown {
  background: linear-gradient(135deg, #1a3a2a, #0d2018) !important;
  border: 1.5px solid var(--green-dark) !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
  padding: 10px 16px !important;
  justify-content: center;
}

.cooldown-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.cooldown-ring {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.cooldown-svg {
  width: 38px;
  height: 38px;
  transform: rotate(-90deg);
  display: block;
}

.cooldown-track {
  fill: none;
  stroke: rgba(0,166,81,0.18);
  stroke-width: 3;
}

.cooldown-progress {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.9s linear;
}

.cooldown-number {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
}

.cooldown-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text2);
  text-align: left;
  line-height: 1.4;
}

.cooldown-text strong {
  color: var(--green-light);
  font-family: 'JetBrains Mono', monospace;
}

/* ── Info alert variant ── */
.alert.info {
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.3);
  color: #93c5fd;
  display: block;
  font-size: 0.83rem;
  line-height: 1.5;
}







/* ════════════════════════════════════════════
   VERIFICATION MODAL
════════════════════════════════════════════ */
.verif-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.verif-modal-overlay.hidden { display: none; }

.verif-modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: verifSlideIn 0.3s ease forwards;
}

@keyframes verifSlideIn {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.verif-modal-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(245,166,35,0.2), rgba(245,166,35,0.08));
  border: 1.5px solid rgba(245,166,35,0.4);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin: 0 auto 14px;
}

.verif-modal-badge {
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  text-align: center;
  width: fit-content;
  margin: 0 auto 12px;
}

.verif-modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}

.verif-modal-reason {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
  text-align: left;
}

.verif-modal-reason i {
  color: #60a5fa;
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 15px;
}

.verif-modal-reason strong {
  display: block;
  color: #93c5fd;
  font-size: 0.82rem;
  margin-bottom: 5px;
}

.verif-modal-reason p {
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 1.55;
  margin: 0;
}

.verif-modal-reason strong + p strong {
  color: var(--text);
}

.verif-modal-fee {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.verif-fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: var(--text2);
}

.verif-fee-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
}

.verif-fee-phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
}

.verif-modal-note {
  font-size: 0.78rem;
  color: var(--text3);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}

.verif-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.verif-btn-proceed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  border: none;
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,166,81,0.35);
}

.verif-btn-proceed:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,166,81,0.5); }
.verif-btn-proceed:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.verif-btn-decline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text2);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.verif-btn-decline:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-color: var(--text3);
}

.verif-phone-step { margin-top: 4px; }

/* ── Cooldown button state ── */
.btn-cooldown {
  background: linear-gradient(135deg, #1a3a2a, #0d2018) !important;
  border: 1.5px solid var(--green-dark) !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
  padding: 10px 16px !important;
}

.cooldown-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.cooldown-ring {
  position: relative;
  width: 38px; height: 38px;
  flex-shrink: 0;
}

.cooldown-svg {
  width: 38px; height: 38px;
  transform: rotate(-90deg);
  display: block;
}

.cooldown-track {
  fill: none;
  stroke: rgba(0,166,81,0.18);
  stroke-width: 3;
}

.cooldown-progress {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.9s linear;
}

.cooldown-number {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
}

.cooldown-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text2);
  text-align: left;
  line-height: 1.4;
}

.cooldown-text strong {
  color: var(--green-light);
  font-family: 'JetBrains Mono', monospace;
}

/* ── Info alert variant ── */
.alert.info {
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.3);
  color: #93c5fd;
  display: block;
  font-size: 0.83rem;
  line-height: 1.5;
}

/* ── Withdrawal Notifications ── */
.wd-notif-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.wd-notif {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 11px 15px;
  min-width: 240px;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: notifSlideIn 0.4s ease forwards;
  pointer-events: none;
}

.wd-notif.hiding { animation: notifSlideOut 0.4s ease forwards; }

.wd-notif-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}

.wd-notif-body  { flex: 1; min-width: 0; }
.wd-notif-name  { font-size: 0.8rem; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.wd-notif-amount { font-size: 0.75rem; color: var(--green-light); font-family: 'JetBrains Mono', monospace; font-weight: 600; }
.wd-notif-time  { font-size: 0.68rem; color: var(--text3); white-space: nowrap; }

@keyframes notifSlideIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes notifSlideOut {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(110%); opacity: 0; }
}

@media (max-width: 768px) {
  .wd-notif-container { top: 70px; right: 10px; left: auto; width: 280px; }
  .wd-notif { max-width: 100%; }
  .verif-modal { padding: 22px 18px; }
}

/* ── Mobile home button ── */
.mobile-home-btn {
  background: rgba(0,166,81,0.15);
  border: 1px solid rgba(0,166,81,0.3);
  border-radius: 8px;
  color: var(--green-light);
  font-size: 15px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-home-btn:hover { background: rgba(0,166,81,0.25); }