/* =====================================================
   EARNXEO — CLEAN BASELINE (LOCKED)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
  --bg: #0b0e1a;
  --text: #e6e9ef;
  --muted: #9aa0b2;
  --purple: #8e3cff;
  --cyan: #22d3ee;
  --pink: #ff6b8a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== FLOWING NEON BACKGROUND (GLOBAL) ===== */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(142,60,255,.35), transparent 60%),
    radial-gradient(1000px 500px at 80% 20%, rgba(34,211,238,.30), transparent 60%),
    radial-gradient(900px 450px at 50% 85%, rgba(255,107,138,.25), transparent 65%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(800px 400px at 30% 60%, rgba(168,85,247,.18), transparent 65%),
    radial-gradient(700px 350px at 70% 75%, rgba(56,189,248,.15), transparent 65%);
}

/* ===== HERO (LOCKED) ===== */

.hero-hero {
  min-height: 100vh;
  padding: 120px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title {
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 720px;
  margin: 24px auto;
  font-size: 18px;
  color: var(--muted);
}
/* =====================================================
   HEADER LOGO – LOCKED BASE44 STYLE
   ===================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  backdrop-filter: blur(10px);
  background: rgba(10,10,18,0.55);
}

.brand {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand:hover {
  text-decoration: none;
}

.logo-gradient {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
  margin-right: 2px;
}
/* =====================================================
   BUTTONS – HOVER & GLOW
   ===================================================== */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Primary */
.btn-primary {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 20px rgba(142,60,255,0.6),
    0 0 40px rgba(34,211,238,0.45);
}

/* Outline */
.btn-outline {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  box-shadow:
    0 0 20px rgba(255,255,255,0.15);
}
/* =====================================================
   MULTIPLE WAYS TO EARN – LOCKED (BASE44 STYLE)
   ===================================================== */

.earn-ways {
  padding: 160px 24px;
  text-align: center;
  position: relative;
}

.section-heading {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-heading span {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 72px;
  font-size: 18px;
  color: var(--muted);
}

/* Grid */
.earn-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.earn-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Lift + glow */
.earn-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 0 1px rgba(var(--glow), .35),
    0 0 50px rgba(var(--glow), .35),
    0 0 90px rgba(var(--glow), .25);
}

/* Front neon wash */
.earn-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
  background:
    linear-gradient(
      135deg,
      rgba(var(--glow), .45),
      transparent 65%
    );
}

.earn-card:hover::after {
  opacity: 1;
}

/* Icon container */
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
}

/* Neon icon */
.neon-icon {
  width: 30px;
  height: 30px;
  color: rgb(var(--glow));
  filter:
    drop-shadow(0 0 8px rgba(var(--glow), .8))
    drop-shadow(0 0 22px rgba(var(--glow), .6));
  transition: transform .3s ease, filter .3s ease;
}

.earn-card:hover .neon-icon {
  transform: scale(1.1);
  filter:
    drop-shadow(0 0 12px rgba(var(--glow), 1))
    drop-shadow(0 0 32px rgba(var(--glow), .8));
}

/* Text */
.earn-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.earn-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* Glow colors */
.earn-card.surveys  { --glow: 142, 60, 255; }
.earn-card.videos   { --glow: 255, 107, 138; }
.earn-card.ads      { --glow: 249, 115, 22; }
.earn-card.games    { --glow: 59, 130, 246; }
.earn-card.apps     { --glow: 16, 185, 129; }
.earn-card.social   { --glow: 99, 102, 241; }
.earn-card.email    { --glow: 20, 184, 166; }
.earn-card.referral { --glow: 245, 158, 11; }
.earn-card.bonus    { --glow: 139, 92, 246; }
/* =====================================================
   HARD RESET: EARN SECTION BACKGROUND (DARK LAYER FIX)
   ===================================================== */

section.earn-ways {
  background: none !important;
}

section.earn-ways::before,
section.earn-ways::after {
  content: none !important;
  display: none !important;
}
/* ===============================
   HOW IT WORKS – FINAL BASE44
================================ */

.how-it-works {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 160px 6%;
  position: relative;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-header {
  max-width: 720px;
  margin: 0 auto 120px;
  text-align: center;
}

/* TWO COLUMN LAYOUT */
.how-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 120px;
  align-items: start;
}

/* LEFT COLUMN */
.how-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-icon {
  width: 160px;
  height: 160px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  font-size: 48px;
  color: white;
  position: relative;
}

.how-icon.purple {
  background: linear-gradient(135deg, #8e3cff, #6d28d9);
  box-shadow: 0 0 80px rgba(142,60,255,.55);
}

.how-icon.cyan {
  background: linear-gradient(135deg, #22d3ee, #2563eb);
  box-shadow: 0 0 80px rgba(34,211,238,.55);
}

.how-icon.green {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 0 80px rgba(16,185,129,.55);
}

.step-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  background: #0b0e1a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,.3);
}

/* ARROWS */
.how-arrow {
  width: 2px;
  height: 64px;
  margin: 20px 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,.5),
    transparent
  );
}

/* RIGHT COLUMN */
.how-texts {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.how-text h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.how-text p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  color: rgba(255,255,255,.75);
}

/* MOBILE */
@media (max-width: 768px) {
  .how-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .how-icons {
    flex-direction: row;
    justify-content: center;
  }

  .how-arrow {
    display: none;
  }

  .how-texts {
    text-align: center;
    align-items: center;
  }
}
.how-icon svg {
  width: 44px;
  height: 44px;
  stroke: #ffffff;
  stroke-width: 1.8;
}
/* ===============================
   CTA SECTION – FINAL (BASE44)
================================ */

.cta-section {
  position: relative;
  padding: 180px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Badge */
.cta-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 32px;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.35);
  color: #ffd54a;
}

/* Title */
.cta-title {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-title span {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}

/* Text */
.cta-text {
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
}

/* Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #8e3cff, #ec4899);
  box-shadow:
    0 0 40px rgba(142,60,255,0.45),
    0 0 80px rgba(236,72,153,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 60px rgba(142,60,255,0.65),
    0 0 120px rgba(236,72,153,0.55);
}

/* Note */
.cta-note {
  margin-top: 20px;
  font-size: 14px;
  opacity: .7;
}

/* Trust line */
.cta-trust {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  opacity: .8;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-trust {
    flex-direction: column;
    gap: 12px;
  }
}
/* ===============================
   FOOTER – FINAL BASE44
================================ */

.site-footer {
  padding: 120px 24px 40px;
  color: var(--text);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 96px;
}

.footer-brand .logo {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--muted);
  max-width: 320px;
  margin-bottom: 24px;
}

/* SOCIAL ICONS */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(142,60,255,.6);
}
.footer-socials svg {
  width: 20px;
  height: 20px;
  color: #fff;
  transition: transform .3s ease, filter .3s ease;
}

.footer-socials a:hover svg {
  transform: scale(1.15);
  filter:
    drop-shadow(0 0 6px rgba(142,60,255,.8))
    drop-shadow(0 0 16px rgba(142,60,255,.6));
}

/* COLUMNS */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color .3s ease;
}

.footer-col a:hover {
  color: #fff;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
/* =====================================================
   HOW IT WORKS PAGE – ISOLATED & LOCKED (BASE44)
===================================================== */

/* Page sections */
.how-hero,
.how-steps,
.how-why,
.how-cta {
  background: transparent;
}

/* =====================================================
   CONTAINER
===================================================== */
.how-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 24px;
}

/* =====================================================
   HERO
===================================================== */
.how-hero {
  text-align: center;
}

.how-pill {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(168,85,247,.15);
  color: #c084fc;
  margin-bottom: 24px;
}

.how-title {
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 800;
}

.how-title span,
.how-section-title span,
.how-cta span {
  background: linear-gradient(90deg, #a855f7, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
}

.how-subtitle {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.75);
  font-size: 18px;
}

/* =====================================================
   STEPS (LEFT ICON RAIL + RIGHT CONTENT)
   ⚠️ FULLY SCOPED – DOES NOT TOUCH HOME PAGE
===================================================== */
.how-steps {
  padding-top: 0;
}

.how-steps .how-step {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 120px;
}

/* LEFT ICON SLAB */
.how-steps .how-icon {
  width: 140px;
  height: 140px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 0 60px currentColor;
}

.how-steps .how-icon svg {
  width: 44px;
  height: 44px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
}

/* ICON COLORS */
.how-steps .how-icon.purple { color:#a855f7; background:#7c3aed; }
.how-steps .how-icon.cyan   { color:#22d3ee; background:#0891b2; }
.how-steps .how-icon.green  { color:#10b981; background:#059669; }

/* STEP NUMBER BADGE (FIXED SIZE) */
.how-steps .how-step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  font-size: 13px;
  background: #020617;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
}

/* RIGHT CONTENT */
.how-steps .how-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.how-steps .how-content p {
  opacity: .8;
  margin-bottom: 16px;
}

.how-steps .how-content ul {
  list-style: none;
  padding: 0;
}

.how-steps .how-content li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.how-steps .how-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22d3ee;
}

/* ALIGN STEP TEXT WITH ICON SLABS */
.how-content {
  padding-top: 10px; /* base alignment */
}
.how-content h3 {
  margin-top: -2px;
}

/* =====================================================
   ARROWS (LOCKED TO LEFT ICON RAIL)
===================================================== */
.how-steps .how-arrow {
  width: 2px;
  height: 72px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(168, 85, 247, 0.8),
    transparent
  );
  margin-left: 69px; /* aligns under icon center */
  margin-bottom: 80px;
  position: relative;
}

.how-steps .how-arrow::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(168, 85, 247, 0.8);
  border-bottom: 2px solid rgba(168, 85, 247, 0.8);
}

/* =====================================================
   WHY CHOOSE CARDS
===================================================== */
/* REDUCE TOP SPACING FOR WHY SECTION */
.how-why .how-container {
  padding-top: 80px;
  text-align: center;
}

.how-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  margin-top: 80px;
}

.how-card {
  padding: 40px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  transition: all .3s ease;
}

/* WHY CARD BASE */
.how-card {
  padding: 44px;
  border-radius: 28px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(14px);
  position: relative;
  transition: all .35s ease;
  border: 1px solid rgba(255,255,255,.08);
}


/* FRONT + EDGE GLOW ON HOVER */
.how-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(168,85,247,.35),
    0 0 40px rgba(168,85,247,.45),
    0 0 80px rgba(34,211,238,.25);
}

/* NEON ICON CONTAINER INSIDE WHY CARDS */
.how-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  stroke: #22d3ee;
  filter: drop-shadow(0 0 12px rgba(34,211,238,.85));
}

/* ===============================
   WHY CHOOSE EARNXEO – TYPOGRAPHY
================================ */

.how-why .how-section-title {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
}

.how-why .how-section-subtitle {
  font-size: 20px;
  max-width: 720px;
  margin: 0 auto 72px;
  color: rgba(255,255,255,.75);
}

.how-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.how-card p {
  font-size: 16.5px;
  line-height: 1.6;
  opacity: .8;
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 768px) {
  .how-steps .how-step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .how-steps .how-arrow {
    margin: 40px auto;
  }

  .how-cards {
    grid-template-columns: 1fr;
  }

  .how-cta-buttons {
    flex-direction: column;
  }
}
/* ===============================
   WHY CHOOSE – FRONT NEON GLOW
================================ */

.how-card {
  position: relative;
  overflow: hidden;
}

/* front neon outline */
.how-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
  background:
    linear-gradient(
      135deg,
      rgba(168,85,247,0.55),
      rgba(34,211,238,0.45),
      transparent 65%
    );
}

.how-card:hover::before {
  opacity: 1;
}

/* stronger hover lift */
.how-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 50px rgba(168,85,247,.45),
    0 0 90px rgba(34,211,238,.35);
}
/* ===============================
   WHY CHOOSE – NEON SVG GLOW
================================ */

.how-card svg {
  width: 36px;
  height: 36px;
  stroke: #22d3ee;
  filter:
    drop-shadow(0 0 6px rgba(34,211,238,.6))
    drop-shadow(0 0 14px rgba(34,211,238,.4));
  transition: transform .3s ease, filter .3s ease;
}

.how-card:hover svg {
  transform: scale(1.08);
  filter:
    drop-shadow(0 0 10px rgba(168,85,247,.85))
    drop-shadow(0 0 26px rgba(34,211,238,.65));
}
/* ===============================
   WHY CHOOSE – SPACING FIX
================================ */

.how-why .how-container {
  padding-top: 80px;   /* reduced */
  padding-bottom: 120px;
/* ===============================
   CTA SECTION – FINAL (BASE44)
================================ */

.cta-section {
  position: relative;
  padding: 180px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Badge */
.cta-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 32px;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.35);
  color: #ffd54a;
}

/* Title */
.cta-title {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-title span {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}

/* Text */
.cta-text {
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
}

/* Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #8e3cff, #ec4899);
  box-shadow:
    0 0 40px rgba(142,60,255,0.45),
    0 0 80px rgba(236,72,153,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 60px rgba(142,60,255,0.65),
    0 0 120px rgba(236,72,153,0.55);
}

/* Note */
.cta-note {
  margin-top: 20px;
  font-size: 14px;
  opacity: .7;
}

/* Trust line */
.cta-trust {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  opacity: .8;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-trust {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===============================
   Dashboard Page — EarnXeo
================================ */

/* HEADER */
.dash-header {
  text-align: center;
  margin-bottom: 36px;
}
.dash-header h1 {
  font-size: 48px;
  font-weight: 800;
}
.dash-header p {
  color: var(--muted);
  font-size: 18px;
}

/* STAT CARDS */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.dash-stats .dash-card.stat {
  padding: 24px;
  text-align: center;
}
.dash-stats .stat-label {
  display: block;
  font-size: 14px;
  color: var(--muted);
}
.dash-stats .stat-value {
  font-size: 32px;
  font-weight: 700;
  margin-top: 6px;
  background: linear-gradient(90deg,var(--purple),var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* MAIN GRID */
.dash-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

/* CHART CARD */
.chart-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
}
.chart-placeholder {
  height: 220px;
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
}

/* RIGHT COLUMN */
.dash-right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* LEVEL PROGRESS */
.prog-card h3,
.streak-card h3 {
  font-size: 20px;
  font-weight: 700;
}
.level-wrap {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}
.lvl-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--purple),var(--cyan));
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
.level-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 4px;
}
.level-bar span {
  width: 25%;
  display: block;
  height: 100%;
  background: linear-gradient(90deg,var(--purple),var(--cyan));
}

/* STREAK */
.streak-days {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.streak-days span {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
}
.streak-days .passed { background:#f97316; color:#fff; }
.streak-days .today {
  border: 2px dashed #f97316;
  background: transparent;
  color:#f97316;
}

/* TASKS */
.dash-tasks-section {
  margin-top: 24px;
}
.tasks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tasks-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  margin-top: 18px;
}
.task {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.task-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}
.task-info h4 {
  font-size: 18px;
  font-weight: 700;
}
.task-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}
.btn-outline {
  padding: 8px 16px;
  font-size: 14px;
}
.btn-primary {
  padding: 10px 18px;
  font-size: 14px;
}

/* COLOR VARIANTS */
.task-icon.purple { background:#8e3cff }
.task-icon.cyan { background:#22d3ee;color:#000 }
.task-icon.green { background:#10b981 }
.task-icon.pink { background:#ec4899 }
.btn-primary.purple { background:#8e3cff }
.btn-primary.cyan { background:#22d3ee;color:#000 }
.btn-primary.green { background:#10b981 }
.btn-primary.pink { background:#ec4899 }

/* MOBILE RESPONSIVENESS */
@media (max-width: 992px) {
  .dash-stats { grid-template-columns: repeat(2,1fr); }
  .dash-main-grid { grid-template-columns: 1fr; }
  .tasks-grid { grid-template-columns: 1fr; }
}
/* =====================================================
   DASHBOARD – BASE44 CONSISTENT
===================================================== */

.earnxeo-dashboard {
  padding: 160px 24px;
}

/* dashboard-specific grid tweak */
.dashboard-stats {
  margin-bottom: 120px;
}

/* dashboard numbers */
.dashboard-stats p strong {
  font-size: 36px;
  display: block;
  margin-top: 10px;
}

/* activity spacing */
.dashboard-activity {
  margin-top: 120px;
}

/* mobile */
@media (max-width: 768px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   DASHBOARD – PIXEL MATCH
================================ */

.dashboard-layout {
  padding: 160px 24px;
  max-width: 1400px;
  margin: auto;
}

/* HEADER */
.dashboard-header h1 {
  font-size: 42px;
  font-weight: 800;
}
.dashboard-header p {
  color: var(--muted);
  margin-bottom: 48px;
}

/* TOP STATS */
.dashboard-stats {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  min-height: 140px;
}
.stat-card strong {
  font-size: 28px;
}

/* MIDDLE GRID */
.dashboard-middle {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.earnings-chart {
  min-height: 340px;
}
.area-chart {
  width: 100%;
  margin-top: 20px;
}

/* SIDE */
.dashboard-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.level-row {
  display: flex;
  gap: 16px;
  align-items: center;
}
.level-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--purple),var(--cyan));
  display: grid;
  place-items: center;
  font-weight: 800;
}
.level-bar {
  height: 8px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  overflow: hidden;
}
.level-bar span {
  width: 25%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg,var(--purple),var(--cyan));
}

/* STREAK */
.streak-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.streak-days span {
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
}
.streak-days .on {
  background: #f97316;
}
.streak-days .today {
  border: 1px dashed #f97316;
}

/* BOTTOM */
.dashboard-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.tasks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.promo-card {
  background: linear-gradient(135deg,#4c1d95,#1e3a8a);
}
.promo-bar {
  height: 8px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  margin: 16px 0;
}
.promo-bar span {
  width: 40%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg,var(--purple),var(--cyan));
}

/* MOBILE */
@media (max-width: 900px) {
  .dashboard-stats,
  .dashboard-middle,
  .dashboard-bottom {
    grid-template-columns: 1fr;
  }

  .tasks-grid {
    grid-template-columns: 1fr;
  }
}
