/* ── AUTO BuildList — Premium styles ─────────────────────────────────────── */

/* Inter everywhere */
*, *::before, *::after {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* Premium scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.16); }

/* ── Glass card ─────────────────────────────────────────────────────────── */
.glass-card {
  background: rgba(13, 17, 23, 0.85);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.glass-card:hover {
  border-color: rgba(249, 115, 22, 0.28);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.08),
              0 8px 32px rgba(0, 0, 0, 0.5),
              0 0 24px rgba(249, 115, 22, 0.04);
}
.glass-card-clickable {
  cursor: pointer;
}
.glass-card-clickable:hover {
  transform: translateY(-1px);
}

/* ── Stat cards — left accent border ────────────────────────────────────── */
.stat-card {
  background: linear-gradient(135deg, #0D1117 0%, #0F1520 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.625rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.stat-blue  { border-left: 3px solid #2F81F7; }
.stat-green { border-left: 3px solid #3FB950; }
.stat-orange { border-left: 3px solid #F97316; }
.stat-purple { border-left: 3px solid #A855F7; }

/* ── Big stat numbers ───────────────────────────────────────────────────── */
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #E6EDF3;
}

/* ── Orange gradient CTA button ─────────────────────────────────────────── */
.btn-cta {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35) !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  transition: all 0.2s ease !important;
}
.btn-cta:hover {
  background: linear-gradient(135deg, #FB923C 0%, #F97316 100%) !important;
  box-shadow: 0 6px 28px rgba(249, 115, 22, 0.5) !important;
  transform: translateY(-1px) !important;
}
.btn-cta:active {
  transform: translateY(0) !important;
}

/* ── Premium nav ────────────────────────────────────────────────────────── */
.premium-nav {
  background: linear-gradient(180deg, #060A10 0%, #080C12 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.03), 0 4px 16px rgba(0,0,0,0.4);
}

/* ── Premium sidebar ────────────────────────────────────────────────────── */
.premium-sidebar {
  background: linear-gradient(180deg, #080C12 0%, #0A0F18 100%);
  border-right: 1px solid rgba(255,255,255,0.05);
}
.sidebar-item-active {
  background: rgba(47, 129, 247, 0.12) !important;
  border-left: 2px solid #2F81F7;
  color: #58A6FF !important;
}
.sidebar-item-active svg { color: #58A6FF !important; }

/* ── Upgrade modal ──────────────────────────────────────────────────────── */
.upgrade-modal-card {
  background: linear-gradient(145deg, #0D1117 0%, #0F1520 60%, #12182A 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.06),
              0 24px 64px rgba(0, 0, 0, 0.7),
              0 0 80px rgba(249, 115, 22, 0.05);
}

/* ── Section headings ───────────────────────────────────────────────────── */
.section-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(230, 237, 243, 0.35);
}

/* ── Inputs — premium focus ─────────────────────────────────────────────── */
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(47, 129, 247, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(47, 129, 247, 0.12) !important;
}

/* ── Badge — beta ───────────────────────────────────────────────────────── */
.badge-beta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1;
  background: rgba(47, 129, 247, 0.15);
  color: #58A6FF;
  border: 1px solid rgba(47, 129, 247, 0.25);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
}

/* ── Nav right-side badges (mobile plan chip) ───────────────────────────── */
.premium-nav .badge {
  flex-shrink: 0;
  white-space: nowrap;
  align-self: center;
}

/* ── Loading spinner screen ─────────────────────────────────────────────── */
.loading-screen {
  background: radial-gradient(ellipse at center, #0D1528 0%, #080C12 70%);
}

/* ── Empty state ────────────────────────────────────────────────────────── */
.empty-state {
  background: linear-gradient(135deg, #0D1117 0%, #0F1520 100%);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 0.625rem;
}

/* ── Hero brand strip ───────────────────────────────────────────────────── */
.hero-strip {
  background: linear-gradient(135deg, #040810 0%, #080C18 40%, #0A1020 70%, #0C1530 100%);
  position: relative;
  overflow: hidden;
}
.hero-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(47, 129, 247, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(249, 115, 22, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
