/*
 * premium.css — SupplementLabs.ai Premium Visual Layer
 * Agency-level design enhancements: glass morphism, glow effects,
 * micro-animations, depth, gradients. No functionality changes.
 */

/* ═══════════════════════════════════════════════════════
   1. GLOBAL TOKENS & ENHANCED VARIABLES
═══════════════════════════════════════════════════════ */
:root {
  /* Blueprint Light Palette — SupplementLabs.ai */
  --accent: #2196F3;
  --accent-dim: #1976D2;
  --accent-glow: rgba(33, 150, 243, 0.12);
  --accent-glow-strong: rgba(33, 150, 243, 0.22);
  --accent-glow-faint: rgba(33, 150, 243, 0.06);
  --bg-deep: #ffffff;
  --bg-card: #ffffff;
  --bg-elevated: #f5f5f5;
  --bg-glass: rgba(255, 255, 255, 0.88);
  --border: #e0e0e0;
  --border-light: #eeeeee;
  --border-glow: rgba(33, 150, 243, 0.2);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 20px rgba(33, 150, 243, 0.10), 0 4px 16px rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════
   2. BODY & BACKGROUND MESH
═══════════════════════════════════════════════════════ */
body {
  background-color: var(--bg-deep);
  /* Subtle light blue gradient for visual depth */
  background-image:
    radial-gradient(ellipse 60% 40% at 80% -10%, rgba(33, 150, 243, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(33, 150, 243, 0.02) 0%, transparent 100%);
  background-attachment: fixed;
  color: #1A1A2E;
}

/* ═══════════════════════════════════════════════════════
   3. SCROLLBAR
═══════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0, 229, 160, 0.3); }

/* ═══════════════════════════════════════════════════════
   4. PAGE ENTRANCE ANIMATION
═══════════════════════════════════════════════════════ */
@keyframes sl-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sl-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes sl-glow-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(33, 150, 243, 0.15); }
  50%       { box-shadow: 0 0 24px rgba(33, 150, 243, 0.3), 0 0 48px rgba(33, 150, 243, 0.08); }
}
@keyframes sl-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes sl-spin {
  to { transform: rotate(360deg); }
}
@keyframes sl-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

main, .dash-main, .plan-main, .ci-main, .stacks-main,
.guides-wrap, .wizard-wrap, .onb-main, [class*="-wrap"][class*="page"],
.page-wrap, .guides-page, .billing-wrap {
  animation: sl-fade-up 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ═══════════════════════════════════════════════════════
   5. NAV — PREMIUM GLASS BAR
═══════════════════════════════════════════════════════ */
nav,
.chat-nav,
#slab-nav,
[id="slab-nav"],
[class*="nav-bar"],
[class*="top-bar"] {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(20px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.2) !important;
  border-bottom: 1px solid #e0e0e0 !important;
  box-shadow: 0 1px 0 #eeeeee, 0 2px 12px rgba(0,0,0,0.05) !important;
}

/* ═══════════════════════════════════════════════════════
   6. CARDS — GLASS MORPHISM UPGRADE
═══════════════════════════════════════════════════════ */
.card,
[class*="card"]:not([class*="score-card-locked"]):not([class*="blur-card"]):not(.option-card):not(.plan-card-action) {
  background: #ffffff !important;
  border: 1px solid #eeeeee !important;
  box-shadow: var(--shadow-md) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 12px !important;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition) !important;
}
.card:hover,
[class*="stack-card"]:hover,
[class*="guide-card"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(33, 150, 243, 0.15) !important;
}

/* ═══════════════════════════════════════════════════════
   7. SCORE CARDS — PREMIUM GAUGE TREATMENT
═══════════════════════════════════════════════════════ */
.score-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 30, 0.95) 0%,
    rgba(14, 14, 22, 0.98) 100%
  ) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.04) !important;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition) !important;
  position: relative;
  overflow: hidden;
}
.score-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(0, 229, 160, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.score-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 229, 160, 0.08) !important;
  border-color: rgba(0, 229, 160, 0.18) !important;
}

/* Gauge glow — color by state */
.gauge-fill.green {
  filter: drop-shadow(0 0 4px rgba(0, 229, 160, 0.7));
}
.gauge-fill.yellow {
  filter: drop-shadow(0 0 4px rgba(255, 169, 77, 0.7));
}
.gauge-fill.red {
  filter: drop-shadow(0 0 4px rgba(255, 107, 107, 0.7));
}

/* Gauge track — subtle glow ring */
.gauge-track {
  stroke: rgba(255,255,255,0.05) !important;
}

/* ═══════════════════════════════════════════════════════
   8. STREAK HERO — PREMIUM GRADIENT BANNER
═══════════════════════════════════════════════════════ */
.streak-hero {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 160, 0.09) 0%,
    rgba(0, 100, 70, 0.06) 40%,
    rgba(116, 88, 240, 0.05) 100%
  ) !important;
  border: 1px solid rgba(0, 229, 160, 0.18) !important;
  box-shadow: 0 0 40px rgba(0, 229, 160, 0.06), var(--shadow-md) !important;
  position: relative;
  overflow: hidden;
}
.streak-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.streak-num {
  text-shadow: 0 0 30px rgba(0, 229, 160, 0.5) !important;
}

/* ═══════════════════════════════════════════════════════
   9. ACCENT BUTTONS — PREMIUM GLOW
═══════════════════════════════════════════════════════ */
.checkin-cta-btn,
.upgrade-cta-btn,
[class*="btn-primary"],
[class*="cta-btn"],
button[class*="primary"],
a[class*="buy-btn"],
.buy-btn,
.stack-buy-btn,
.guide-buy-btn,
.plan-btn {
  box-shadow: 0 0 20px rgba(0, 229, 160, 0.25), 0 4px 12px rgba(0, 0, 0, 0.4) !important;
  transition: all var(--transition) !important;
  position: relative;
  overflow: hidden;
}
.checkin-cta-btn::after,
.upgrade-cta-btn::after,
[class*="cta-btn"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.checkin-cta-btn:hover,
.upgrade-cta-btn:hover,
[class*="cta-btn"]:hover,
.buy-btn:hover,
.stack-buy-btn:hover {
  box-shadow: 0 0 32px rgba(0, 229, 160, 0.45), 0 6px 20px rgba(0, 0, 0, 0.5) !important;
  transform: translateY(-2px) scale(1.02) !important;
}

/* ═══════════════════════════════════════════════════════
   10. PROGRESS BARS — SHIMMER EFFECT
═══════════════════════════════════════════════════════ */
.progress-bar-fill,
.progress-fill,
[class*="progress-fill"],
[class*="prog-fill"],
.profile-nudge-fill {
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    #74c0fc 50%,
    var(--accent) 100%
  ) !important;
  background-size: 200% auto !important;
  animation: sl-shimmer 3s linear infinite !important;
  box-shadow: 0 0 8px rgba(0, 229, 160, 0.4) !important;
}

/* ═══════════════════════════════════════════════════════
   11. STREAK BAR — PREMIUM DOTS
═══════════════════════════════════════════════════════ */
.streak-day.done {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim)) !important;
  box-shadow: 0 0 8px rgba(0, 229, 160, 0.4) !important;
}
.streak-day.today {
  outline: 2px solid var(--accent) !important;
  outline-offset: 1px !important;
  box-shadow: 0 0 10px rgba(0, 229, 160, 0.2) !important;
}

/* ═══════════════════════════════════════════════════════
   12. CHAT PAGE — PREMIUM BUBBLES
═══════════════════════════════════════════════════════ */
/* AI message bubble */
.msg-ai .msg-bubble,
[class*="msg-ai"] [class*="bubble"],
.message.assistant .bubble,
.chat-bubble-ai,
.ai-bubble {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 38, 0.95) 0%,
    rgba(20, 20, 30, 0.98) 100%
  ) !important;
  border: 1px solid rgba(0, 229, 160, 0.1) !important;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.03) !important;
}

/* User message bubble */
.msg-user .msg-bubble,
[class*="msg-user"] [class*="bubble"],
.message.user .bubble,
.chat-bubble-user,
.user-bubble {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 160, 0.14) 0%,
    rgba(0, 180, 120, 0.1) 100%
  ) !important;
  border: 1px solid rgba(0, 229, 160, 0.2) !important;
  box-shadow: 0 0 16px rgba(0, 229, 160, 0.08), var(--shadow-sm) !important;
}

/* Chat input area */
.chat-input-area,
.input-area,
[class*="chat-input"] {
  background: rgba(10, 10, 15, 0.9) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(20px) !important;
}
.chat-input,
#chat-input,
[class*="msg-input"],
textarea.input-field {
  background: rgba(26, 26, 36, 0.9) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
}
.chat-input:focus,
#chat-input:focus,
[class*="msg-input"]:focus {
  border-color: rgba(0, 229, 160, 0.35) !important;
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.08), inset 0 0 0 1px rgba(0, 229, 160, 0.1) !important;
  outline: none !important;
}

/* Send button */
.send-btn,
#send-btn,
[class*="send-btn"] {
  background: var(--accent) !important;
  box-shadow: 0 0 16px rgba(0, 229, 160, 0.3) !important;
  transition: all var(--transition) !important;
}
.send-btn:hover,
#send-btn:hover,
[class*="send-btn"]:hover {
  box-shadow: 0 0 24px rgba(0, 229, 160, 0.5), 0 4px 12px rgba(0,0,0,0.4) !important;
  transform: scale(1.05) !important;
}

/* PPC Coach badge */
.ppc-badge,
[class*="ppc-badge"],
#ppc-coach-badge {
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.15), rgba(116, 192, 252, 0.1)) !important;
  border: 1px solid rgba(0, 229, 160, 0.25) !important;
  box-shadow: 0 0 12px rgba(0, 229, 160, 0.1) !important;
}

/* ═══════════════════════════════════════════════════════
   13. PLAN PAGE — SUPPLEMENT ITEMS
═══════════════════════════════════════════════════════ */
.plan-item {
  background: linear-gradient(
    135deg,
    rgba(20, 20, 30, 0.9),
    rgba(14, 14, 22, 0.95)
  ) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all var(--transition) !important;
}
.plan-item:hover {
  border-color: rgba(0, 229, 160, 0.15) !important;
  box-shadow: 0 0 16px rgba(0, 229, 160, 0.06), var(--shadow-md) !important;
  transform: translateX(2px) !important;
}
.plan-item.taken,
.plan-item[data-taken="true"],
.plan-item.done {
  border-color: rgba(0, 229, 160, 0.2) !important;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 160, 0.07),
    rgba(0, 150, 100, 0.05)
  ) !important;
}

/* Time-of-day section headers */
.slot-header .slot-badge.morning {
  box-shadow: 0 0 10px rgba(255, 212, 59, 0.2) !important;
}
.slot-header .slot-badge.afternoon {
  box-shadow: 0 0 10px rgba(116, 192, 252, 0.2) !important;
}
.slot-header .slot-badge.evening {
  box-shadow: 0 0 10px rgba(151, 117, 250, 0.2) !important;
}

/* ═══════════════════════════════════════════════════════
   14. CHECK-IN PAGE — SLIDERS & TOGGLES
═══════════════════════════════════════════════════════ */
/* Range sliders */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) var(--pct, 50%),
    rgba(255,255,255,0.08) var(--pct, 50%),
    rgba(255,255,255,0.08) 100%
  );
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.2), 0 2px 8px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 6px rgba(0, 229, 160, 0.25), 0 2px 10px rgba(0,0,0,0.5);
  transform: scale(1.15);
}
input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(1.25);
  box-shadow: 0 0 0 8px rgba(0, 229, 160, 0.2), 0 0 20px rgba(0, 229, 160, 0.3);
}
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.2), 0 2px 8px rgba(0,0,0,0.4);
  cursor: pointer;
}

/* Check-in supplement toggle buttons */
.ci-supp-btn,
.checkin-toggle,
[class*="supp-toggle"],
[class*="ci-toggle"] {
  transition: all var(--transition) !important;
}

/* ═══════════════════════════════════════════════════════
   15. STACKS PAGE — PREMIUM STACK CARDS
═══════════════════════════════════════════════════════ */
.stack-card,
[class*="stack-card"] {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 30, 0.95) 0%,
    rgba(14, 14, 22, 0.98) 100%
  ) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: var(--shadow-md) !important;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition) !important;
  position: relative;
  overflow: hidden;
}
.stack-card::before,
[class*="stack-card"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 160, 0.15), transparent);
  pointer-events: none;
}
.stack-card:hover,
[class*="stack-card"]:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 229, 160, 0.08) !important;
  border-color: rgba(0, 229, 160, 0.16) !important;
}

/* Stack category badge */
.stack-goal-badge,
[class*="goal-badge"],
[class*="category-badge"] {
  backdrop-filter: blur(8px) !important;
}

/* ═══════════════════════════════════════════════════════
   16. GUIDES PAGE — PREMIUM GUIDE CARDS
═══════════════════════════════════════════════════════ */
.guide-card,
[class*="guide-card"] {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 30, 0.95) 0%,
    rgba(14, 14, 22, 0.98) 100%
  ) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: var(--shadow-md) !important;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition) !important;
  position: relative;
  overflow: hidden;
}
.guide-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}
.guide-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg), 0 0 24px rgba(0, 229, 160, 0.07) !important;
  border-color: rgba(0, 229, 160, 0.14) !important;
}

/* ═══════════════════════════════════════════════════════
   17. ONBOARDING / WIZARD — PREMIUM FORM
═══════════════════════════════════════════════════════ */
.wizard-card,
.onb-card,
[class*="wizard-step"],
[class*="onb-step"] {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 30, 0.95),
    rgba(14, 14, 22, 0.98)
  ) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Step progress indicators */
.wizard-step-dot,
.step-dot,
[class*="step-indicator"] {
  transition: all var(--transition) !important;
}
.wizard-step-dot.active,
.step-dot.active {
  box-shadow: 0 0 12px rgba(0, 229, 160, 0.5) !important;
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
select,
textarea:not(.chat-input):not(#chat-input) {
  background: rgba(13, 13, 20, 0.8) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 10px !important;
  color: #f0f0f5 !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:not(.chat-input):focus {
  border-color: rgba(0, 229, 160, 0.4) !important;
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.08) !important;
  outline: none !important;
}

/* Option cards (yes/no, multiple choice) */
.option-card,
.choice-card,
[class*="option-btn"],
[class*="choice-btn"] {
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: rgba(17, 17, 24, 0.9) !important;
  transition: all var(--transition) !important;
}
.option-card:hover,
.choice-card:hover,
[class*="option-btn"]:hover {
  border-color: rgba(0, 229, 160, 0.25) !important;
  box-shadow: 0 0 16px rgba(0, 229, 160, 0.08) !important;
}
.option-card.selected,
.choice-card.selected,
[class*="option-btn"].selected,
[class*="option-btn"].active {
  border-color: rgba(0, 229, 160, 0.4) !important;
  background: rgba(0, 229, 160, 0.08) !important;
  box-shadow: 0 0 20px rgba(0, 229, 160, 0.12) !important;
}

/* ═══════════════════════════════════════════════════════
   18. SETTINGS / REMINDER — PREMIUM ROWS
═══════════════════════════════════════════════════════ */
.settings-row,
.reminder-row,
[class*="settings-row"],
[class*="pref-row"] {
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  transition: background var(--transition) !important;
}
.settings-row:hover,
.reminder-row:hover {
  background: rgba(0, 229, 160, 0.03) !important;
}

/* Toggle switches */
.toggle-track,
[class*="toggle-track"] {
  background: rgba(255,255,255,0.1) !important;
  transition: all var(--transition) !important;
}
.toggle-track.on,
[class*="toggle-track"].active,
input:checked + [class*="toggle"] {
  background: var(--accent) !important;
  box-shadow: 0 0 12px rgba(0, 229, 160, 0.4) !important;
}

/* ═══════════════════════════════════════════════════════
   19. AUTH MODAL / LOGIN / SIGNUP — PREMIUM GLASS
═══════════════════════════════════════════════════════ */
.auth-modal,
.modal-overlay,
[id*="auth-modal"],
[class*="auth-modal"],
[class*="login-modal"],
[class*="modal-wrap"] {
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
}
.auth-card,
.modal-card,
[class*="auth-card"],
[class*="modal-inner"],
[class*="modal-content"] {
  background: linear-gradient(
    145deg,
    rgba(22, 22, 34, 0.97),
    rgba(14, 14, 22, 0.99)
  ) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 40px rgba(0, 229, 160, 0.05) !important;
}

/* ═══════════════════════════════════════════════════════
   20. UPGRADE BANNER — PREMIUM GRADIENT
═══════════════════════════════════════════════════════ */
.upgrade-banner,
[class*="upgrade-banner"],
[class*="upsell-banner"] {
  background: linear-gradient(
    135deg,
    rgba(0, 229, 160, 0.07) 0%,
    rgba(0, 100, 70, 0.05) 40%,
    rgba(116, 88, 240, 0.04) 100%
  ) !important;
  border: 1px solid rgba(0, 229, 160, 0.18) !important;
  box-shadow: 0 0 30px rgba(0, 229, 160, 0.05), var(--shadow-md) !important;
}

/* ═══════════════════════════════════════════════════════
   21. QUICK ACTIONS — ELEVATED TILES (Light theme)
═══════════════════════════════════════════════════════ */
.quick-action,
[class*="quick-action"] {
  background: var(--bg-card, #ffffff) !important;
  border: 1.5px solid var(--border-light, #e8edf3) !important;
  border-radius: var(--radius-md, 14px) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all var(--transition) !important;
  color: var(--text-primary, #1a2332) !important;
}
.quick-action:hover {
  border-color: var(--border-glow, rgba(33,150,243,0.25)) !important;
  box-shadow: var(--shadow-glow) !important;
  transform: translateY(-2px) !important;
  color: var(--accent) !important;
  background: linear-gradient(135deg, var(--accent-glow-faint, rgba(33,150,243,0.04)), transparent) !important;
}

/* ═══════════════════════════════════════════════════════
   22. INSIGHT LIST ITEMS (Light theme)
═══════════════════════════════════════════════════════ */
.insight-item,
[class*="insight-item"] {
  background: var(--bg-card, #ffffff) !important;
  border: 1px solid var(--border-light, #eeeeee) !important;
  transition: all var(--transition) !important;
  color: var(--text-primary, #1a2332) !important;
}
.insight-item:hover {
  border-color: var(--border-glow, rgba(33,150,243,0.25)) !important;
  transform: translateX(3px) !important;
  box-shadow: var(--shadow-glow) !important;
}

/* ═══════════════════════════════════════════════════════
   23. BLOG PAGE — ARTICLE CARDS
═══════════════════════════════════════════════════════ */
.blog-card,
.article-card,
[class*="blog-card"],
[class*="article-card"],
[class*="post-card"] {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 30, 0.95),
    rgba(14, 14, 22, 0.98)
  ) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: var(--shadow-md) !important;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition) !important;
}
.blog-card:hover,
.article-card:hover,
[class*="blog-card"]:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(0, 229, 160, 0.12) !important;
}

/* ═══════════════════════════════════════════════════════
   24. LANDING PAGE — PREMIUM HERO & SECTIONS
═══════════════════════════════════════════════════════ */
.hero,
.hero-section,
[class*="hero-section"],
[class*="landing-hero"] {
  position: relative;
}
.hero::before,
.hero-section::before,
[class*="hero-section"]::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(0, 229, 160, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Feature cards on landing */
.feature-card,
[class*="feature-card"],
.benefit-card,
[class*="benefit-card"] {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 30, 0.95),
    rgba(14, 14, 22, 0.98)
  ) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: var(--shadow-md) !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.feature-card:hover,
[class*="feature-card"]:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 229, 160, 0.06) !important;
  border-color: rgba(0, 229, 160, 0.12) !important;
}

/* ═══════════════════════════════════════════════════════
   25. LOADING STATES — PREMIUM SKELETONS
═══════════════════════════════════════════════════════ */
.skeleton,
[class*="skeleton"] {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 25%,
    rgba(255,255,255,0.07) 50%,
    rgba(255,255,255,0.03) 75%
  ) !important;
  background-size: 200% auto !important;
  animation: sl-shimmer 1.8s ease infinite !important;
}

/* ═══════════════════════════════════════════════════════
   26. MISC — SCORE TRENDS, BADGES, CHIPS
═══════════════════════════════════════════════════════ */
.score-trend.up {
  box-shadow: 0 0 8px rgba(0, 229, 160, 0.2) !important;
}
.score-trend.down {
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.2) !important;
}

/* Bell notification icon */
#notif-bell,
.bell-btn,
[class*="bell-btn"] {
  transition: all var(--transition) !important;
}
#notif-bell:hover,
.bell-btn:hover {
  color: var(--accent) !important;
  filter: drop-shadow(0 0 6px rgba(0, 229, 160, 0.5)) !important;
}

/* Stack item dots */
.stack-item-dot {
  box-shadow: 0 0 6px rgba(0, 229, 160, 0.4) !important;
}

/* Adherence ring */
.ring-svg circle[stroke="#00e5a0"],
.ring-svg [class*="ring-fill"] {
  filter: drop-shadow(0 0 4px rgba(0, 229, 160, 0.5));
}

/* Profile nudge */
.profile-nudge {
  box-shadow: 0 0 20px rgba(0, 229, 160, 0.05), var(--shadow-sm) !important;
}

/* Lock overlay glass */
.score-card-locked {
  background: rgba(10, 10, 15, 0.82) !important;
  backdrop-filter: blur(6px) !important;
}

/* ═══════════════════════════════════════════════════════
   27. MOBILE BOTTOM NAV — PREMIUM TAB BAR
═══════════════════════════════════════════════════════ */
#slab-bottomnav,
.bottom-nav,
[class*="bottom-nav"],
[class*="tab-bar"] {
  background: rgba(10, 10, 15, 0.92) !important;
  backdrop-filter: blur(24px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.6) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3) !important;
}
.bottom-nav-item.active,
[class*="tab-item"].active,
[class*="nav-tab"].active {
  color: var(--accent) !important;
  filter: drop-shadow(0 0 6px rgba(0, 229, 160, 0.4)) !important;
}

/* ═══════════════════════════════════════════════════════
   28. PROFILE / AVATAR — GLOW RING
═══════════════════════════════════════════════════════ */
.user-avatar,
.profile-avatar,
[class*="avatar"] {
  box-shadow: 0 0 0 2px var(--bg-deep), 0 0 0 3px rgba(0, 229, 160, 0.3) !important;
  transition: box-shadow var(--transition) !important;
}
.user-avatar:hover,
.profile-avatar:hover {
  box-shadow: 0 0 0 2px var(--bg-deep), 0 0 0 3px var(--accent), 0 0 16px rgba(0, 229, 160, 0.3) !important;
}

/* ═══════════════════════════════════════════════════════
   29. DROPDOWN MENUS — GLASS
═══════════════════════════════════════════════════════ */
.dropdown,
.dropdown-menu,
[class*="dropdown"],
[class*="popover"] {
  background: rgba(20, 20, 30, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* ═══════════════════════════════════════════════════════
   30. MOBILE SHEET / SLIDE-UP PANEL
═══════════════════════════════════════════════════════ */
#slab-sheet,
.slide-sheet,
[class*="sheet"],
[class*="bottom-sheet"] {
  background: linear-gradient(
    180deg,
    rgba(22, 22, 34, 0.98) 0%,
    rgba(14, 14, 22, 0.99) 100%
  ) !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.6), 0 0 20px rgba(0, 229, 160, 0.04) !important;
}

/* ═══════════════════════════════════════════════════════
   31. PILL BADGES — CONSISTENT GLOW
═══════════════════════════════════════════════════════ */
.badge,
.pill,
.tag,
[class*="-badge"]:not([class*="locked"]):not([class*="close"]) {
  transition: all var(--transition) !important;
}

/* Accent pills */
[class*="-badge"][style*="color: var(--accent)"],
[class*="-badge"][style*="color:#00e5a0"],
.streak-milestone {
  box-shadow: 0 0 10px rgba(0, 229, 160, 0.2) !important;
}

/* ═══════════════════════════════════════════════════════
   32. CHECKIN CONFIRMATION / SUCCESS STATES
═══════════════════════════════════════════════════════ */
.ci-status.done,
[class*="success-banner"],
[class*="done-banner"] {
  box-shadow: 0 0 20px rgba(0, 229, 160, 0.08), var(--shadow-sm) !important;
}

.checkin-done-badge {
  box-shadow: 0 0 12px rgba(0, 229, 160, 0.15) !important;
}

/* ═══════════════════════════════════════════════════════
   33. SMOOTH FOCUS RINGS (ACCESSIBILITY)
═══════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid rgba(0, 229, 160, 0.5) !important;
  outline-offset: 2px !important;
}

/* ═══════════════════════════════════════════════════════
   34. SELECTION COLOR
═══════════════════════════════════════════════════════ */
::selection {
  background: rgba(0, 229, 160, 0.2);
  color: #f0f0f5;
}

/* ═══════════════════════════════════════════════════════
   35. REDUCED MOTION RESPECT
═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════
   36. CHAT PAGE — TARGETED ENHANCEMENTS
═══════════════════════════════════════════════════════ */

/* Message entrance — override basic fadeIn with premium version */
.message {
  animation: sl-fade-up 0.3s cubic-bezier(0.4, 0, 0.2, 1) both !important;
}

/* AI avatar — premium glow ring */
.message-avatar.assistant {
  background: linear-gradient(135deg, #00e5a0, #00b8ff) !important;
  box-shadow: 0 0 12px rgba(0, 229, 160, 0.35) !important;
}

/* User avatar */
.message-avatar.user {
  background: rgba(0, 229, 160, 0.1) !important;
  border: 1px solid rgba(0, 229, 160, 0.25) !important;
  box-shadow: 0 0 8px rgba(0, 229, 160, 0.15) !important;
}

/* Message content code blocks */
.message-content code {
  background: rgba(0, 229, 160, 0.08) !important;
  border: 1px solid rgba(0, 229, 160, 0.15) !important;
}

/* Input wrapper — premium glass */
.input-wrapper {
  background: rgba(13, 13, 20, 0.85) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(12px) !important;
}
.input-wrapper:focus-within {
  border-color: rgba(0, 229, 160, 0.4) !important;
  box-shadow: 0 0 0 3px rgba(0, 229, 160, 0.08), 0 0 20px rgba(0, 229, 160, 0.05) !important;
}

/* Send button glow */
.send-btn:not(:disabled) {
  box-shadow: 0 0 14px rgba(0, 229, 160, 0.3) !important;
}
.send-btn:hover:not(:disabled) {
  box-shadow: 0 0 24px rgba(0, 229, 160, 0.5), 0 4px 12px rgba(0,0,0,0.4) !important;
  transform: scale(1.08) !important;
}

/* Typing indicator — glow on dots */
.typing-dot {
  background: var(--accent) !important;
  box-shadow: 0 0 6px rgba(0, 229, 160, 0.5) !important;
}

/* Product cards in chat */
.product-card {
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(14, 14, 22, 0.98)) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
  transition: all var(--transition) !important;
}
.product-card:hover {
  border-color: rgba(0, 229, 160, 0.25) !important;
  box-shadow: 0 0 20px rgba(0, 229, 160, 0.08), 0 4px 16px rgba(0,0,0,0.4) !important;
  transform: translateY(-2px) !important;
}

/* Welcome screen — subtle glow on the AI icon */
.welcome-icon,
[class*="welcome-icon"],
.welcome-logo {
  filter: drop-shadow(0 0 20px rgba(0, 229, 160, 0.3)) !important;
}

/* Input area glass */
.input-area {
  background: rgba(10, 10, 15, 0.92) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(24px) !important;
}

/* ═══════════════════════════════════════════════════════
   37. DASHBOARD — TARGETED ENHANCEMENTS
═══════════════════════════════════════════════════════ */

/* Greeting text — subtle gradient shimmer */
.dash-greeting {
  background: linear-gradient(135deg, #f0f0f5 0%, rgba(0, 229, 160, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Score cards — stagger entrance */
.score-card:nth-child(1) { animation: sl-fade-up 0.4s 0.05s both; }
.score-card:nth-child(2) { animation: sl-fade-up 0.4s 0.10s both; }
.score-card:nth-child(3) { animation: sl-fade-up 0.4s 0.15s both; }
.score-card:nth-child(4) { animation: sl-fade-up 0.4s 0.20s both; }
.score-card:nth-child(5) { animation: sl-fade-up 0.4s 0.25s both; }
.score-card:nth-child(6) { animation: sl-fade-up 0.4s 0.30s both; }

/* Streak flame — float animation */
.streak-flame {
  display: inline-block;
  animation: sl-float 3s ease-in-out infinite !important;
}

/* Stat values — accent glow */
.stat-value {
  text-shadow: 0 0 24px rgba(0, 229, 160, 0.35) !important;
}

/* Today status dot — premium pulse */
.status-dot.done {
  background: var(--accent) !important;
  box-shadow: 0 0 8px rgba(0, 229, 160, 0.5) !important;
}
.status-dot.pending {
  box-shadow: 0 0 8px rgba(255, 169, 77, 0.4) !important;
}

/* Stack item dot — glow */
.stack-item {
  background: linear-gradient(135deg, rgba(26,26,36,0.9), rgba(20,20,28,0.95)) !important;
  border-radius: 8px;
  transition: background var(--transition) !important;
}

/* Profile nudge — premium */
.profile-nudge {
  border: 1px solid rgba(0, 229, 160, 0.2) !important;
  background: linear-gradient(135deg, rgba(0,229,160,0.07), rgba(0,100,70,0.04)) !important;
}

/* ═══════════════════════════════════════════════════════
   38. CHECK-IN PAGE — TARGETED ENHANCEMENTS
═══════════════════════════════════════════════════════ */

/* Section cards */
.ci-section {
  background: linear-gradient(145deg, rgba(20,20,30,0.95), rgba(14,14,22,0.98)) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.03) !important;
}

/* Supplement rows */
.sup-row {
  background: rgba(22, 22, 32, 0.85) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  transition: all var(--transition) !important;
}
.sup-row:hover {
  border-color: rgba(0, 229, 160, 0.12) !important;
}
.sup-row.taken-row {
  border-color: rgba(0, 229, 160, 0.25) !important;
  background: rgba(0, 229, 160, 0.05) !important;
}

/* Supplement toggle button — premium */
.sup-toggle {
  border: 2px solid rgba(255,255,255,0.1) !important;
  transition: all var(--transition) !important;
}
.sup-toggle:hover {
  border-color: rgba(0, 229, 160, 0.4) !important;
  box-shadow: 0 0 10px rgba(0, 229, 160, 0.2) !important;
}
.sup-toggle.active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 16px rgba(0, 229, 160, 0.45) !important;
}

/* ═══════════════════════════════════════════════════════
   39. STACKS PAGE — TARGETED ENHANCEMENTS
═══════════════════════════════════════════════════════ */

/* Keep the existing ::before top-bar but enhance it */
.stack-card::before {
  height: 2px !important;
  background: linear-gradient(90deg, var(--accent), #74c0fc, var(--accent)) !important;
  background-size: 200% auto !important;
  animation: sl-shimmer 4s linear infinite !important;
  animation-play-state: paused !important;
  opacity: 0.4 !important;
  transition: opacity 0.3s !important;
}
.stack-card:hover::before {
  opacity: 1 !important;
  animation-play-state: running !important;
}

/* Stack card — enhanced hover */
.stack-card:hover {
  border-color: rgba(0, 229, 160, 0.25) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 24px rgba(0,229,160,0.07) !important;
  transform: translateY(-4px) !important;
}

/* Stack card buy buttons */
.stack-buy-btn,
.buy-btn,
[class*="buy-btn"] {
  box-shadow: 0 0 16px rgba(0, 229, 160, 0.25), 0 2px 8px rgba(0,0,0,0.4) !important;
  transition: all var(--transition) !important;
}
.stack-buy-btn:hover,
.buy-btn:hover {
  box-shadow: 0 0 28px rgba(0, 229, 160, 0.45), 0 4px 16px rgba(0,0,0,0.5) !important;
  transform: translateY(-2px) !important;
}

/* ═══════════════════════════════════════════════════════
   40. GUIDES PAGE — TARGETED ENHANCEMENTS
═══════════════════════════════════════════════════════ */

/* Guide card — premium treatment (class names from guides.html) */
.guide-card,
.gc,
[class*="guide-card"] {
  background: linear-gradient(145deg, rgba(20,20,30,0.95), rgba(14,14,22,0.98)) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
  transition: all var(--transition) !important;
}
.guide-card:hover,
.gc:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0,229,160,0.06) !important;
  border-color: rgba(0, 229, 160, 0.15) !important;
}

/* ═══════════════════════════════════════════════════════
   41. ONBOARDING — TARGETED ENHANCEMENTS
═══════════════════════════════════════════════════════ */

/* Wizard step card */
.wizard-card {
  background: linear-gradient(145deg, rgba(20,20,30,0.97), rgba(14,14,22,0.99)) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,229,160,0.04) !important;
}

/* Option cards — choice buttons */
.opt-card,
[class*="opt-card"],
.option-item,
[class*="option-item"] {
  border: 1px solid rgba(255,255,255,0.08) !important;
  transition: all var(--transition) !important;
}
.opt-card:hover,
.option-item:hover {
  border-color: rgba(0,229,160,0.3) !important;
  box-shadow: 0 0 16px rgba(0,229,160,0.1) !important;
}
.opt-card.selected,
.option-item.selected {
  border-color: rgba(0,229,160,0.45) !important;
  background: rgba(0,229,160,0.08) !important;
  box-shadow: 0 0 20px rgba(0,229,160,0.14) !important;
}

/* Wizard progress bar */
.wizard-progress,
.progress-bar,
[class*="wizard-prog"] {
  background: rgba(255,255,255,0.06) !important;
  border-radius: 3px !important;
}

/* ═══════════════════════════════════════════════════════
   42. SETTINGS & REMINDER PAGES
═══════════════════════════════════════════════════════ */

/* Reminder settings cards */
.reminder-card,
[class*="reminder-card"],
.settings-card,
[class*="settings-card"] {
  background: linear-gradient(145deg, rgba(20,20,30,0.95), rgba(14,14,22,0.98)) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
}

/* ═══════════════════════════════════════════════════════
   43. LANDING PAGE (index.html) — PREMIUM HERO
═══════════════════════════════════════════════════════ */

/* Hero section gradient orb */
.hero-visual,
.hero-mockup,
.app-preview,
[class*="hero-img"],
[class*="app-screen"] {
  filter: drop-shadow(0 0 60px rgba(0, 229, 160, 0.15)) !important;
  transition: filter var(--transition) !important;
}

/* Social proof / testimonials */
.testimonial-card,
.review-card,
[class*="testimonial"],
[class*="social-proof"] {
  background: linear-gradient(145deg, rgba(20,20,30,0.95), rgba(14,14,22,0.98)) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
}

/* CTA section */
.cta-section,
[class*="cta-section"] {
  position: relative;
}
.cta-section::before,
[class*="cta-section"]::before {
  content: '';
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,229,160,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════
   44. CHECKIN HISTORY & ANALYTICS
═══════════════════════════════════════════════════════ */

.history-row,
[class*="history-row"],
.ci-hist-row {
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  transition: background var(--transition) !important;
}
.history-row:hover,
.ci-hist-row:hover {
  background: rgba(0,229,160,0.03) !important;
}

/* ═══════════════════════════════════════════════════════
   45. PLANS / PRICING PAGE
═══════════════════════════════════════════════════════ */

.plan-card,
.pricing-card,
[class*="plan-card"]:not(.plan-card-action),
[class*="pricing-card"] {
  background: linear-gradient(145deg, rgba(20,20,30,0.95), rgba(14,14,22,0.98)) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
  transition: all var(--transition) !important;
}
/* Billing page CTA buttons — green for upgrade, not overridden by card styles */
button.btn-primary.plan-card-action,
a.btn-primary.plan-card-action {
  background: var(--accent) !important;
  color: #000 !important;
}
.plan-card.featured,
.pricing-card.featured,
[class*="plan-card"].popular,
[class*="pricing-card"].recommended {
  border-color: rgba(0, 229, 160, 0.3) !important;
  box-shadow: 0 0 40px rgba(0,229,160,0.1), 0 8px 32px rgba(0,0,0,0.5) !important;
}

/* ═══════════════════════════════════════════════════════
   46. BLOG PAGE
═══════════════════════════════════════════════════════ */

.article-hero,
[class*="article-hero"] {
  position: relative;
}
.article-content,
[class*="article-content"] {
  line-height: 1.8 !important;
}
.article-content h2,
.article-content h3 {
  background: linear-gradient(135deg, #f0f0f5, rgba(0,229,160,0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════
   47. LANDING PAGE — CLASS-TARGETED
═══════════════════════════════════════════════════════ */

/* Hero CTA button */
.hero-cta {
  box-shadow: 0 0 24px rgba(0, 229, 160, 0.28), 0 4px 16px rgba(0,0,0,0.4) !important;
  position: relative;
  overflow: hidden;
}
.hero-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-cta:hover {
  box-shadow: 0 0 40px rgba(0, 229, 160, 0.5), 0 8px 30px rgba(0,0,0,0.5) !important;
  transform: translateY(-3px) !important;
}

/* Hero ambient orb — stronger */
.hero::before {
  background: radial-gradient(
    ellipse,
    rgba(0, 229, 160, 0.09) 0%,
    rgba(0, 229, 160, 0.03) 45%,
    transparent 70%
  ) !important;
  width: 900px !important;
  height: 900px !important;
}

/* How It Works steps */
.how-step {
  background: linear-gradient(145deg, rgba(20,20,30,0.95), rgba(14,14,22,0.98)) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
  transition: all var(--transition) !important;
}
.how-step:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(0,229,160,0.15) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(0,229,160,0.06) !important;
}
.how-step-num {
  text-shadow: 0 0 20px rgba(0,229,160,0.4) !important;
}

/* PPC scores mockup card */
.ppc-scores-mock {
  background: linear-gradient(145deg, rgba(20,20,30,0.97), rgba(14,14,22,0.99)) !important;
  border: 1px solid rgba(0,229,160,0.12) !important;
  box-shadow: 0 0 40px rgba(0,229,160,0.06), 0 8px 40px rgba(0,0,0,0.5) !important;
}
.ppc-score-bar {
  background: linear-gradient(90deg, var(--accent), #74c0fc) !important;
  box-shadow: 0 0 6px rgba(0,229,160,0.3) !important;
}

/* Journey walk steps */
.walk-step {
  background: linear-gradient(145deg, rgba(20,20,30,0.95), rgba(14,14,22,0.98)) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important;
  transition: all var(--transition) !important;
}
.walk-step:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(0,229,160,0.15) !important;
}

/* Market metrics */
.metric-val {
  text-shadow: 0 0 20px rgba(0,229,160,0.3) !important;
}

/* Closing CTA button */
.closing-cta {
  box-shadow: 0 0 24px rgba(0,229,160,0.28), 0 4px 16px rgba(0,0,0,0.4) !important;
}
.closing-cta:hover {
  box-shadow: 0 0 40px rgba(0,229,160,0.5), 0 8px 28px rgba(0,0,0,0.5) !important;
}

/* Section accent labels */
.section-label {
  text-shadow: 0 0 14px rgba(0,229,160,0.25) !important;
}

/* ═══════════════════════════════════════════════════════
   48. SCORE GAUGE — PREMIUM ENTRANCE
═══════════════════════════════════════════════════════ */
@keyframes sl-gauge-appear {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
.score-gauge {
  animation: sl-gauge-appear 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.score-card:nth-child(1) .score-gauge { animation-delay: 0.1s; }
.score-card:nth-child(2) .score-gauge { animation-delay: 0.15s; }
.score-card:nth-child(3) .score-gauge { animation-delay: 0.2s; }
.score-card:nth-child(4) .score-gauge { animation-delay: 0.25s; }
.score-card:nth-child(5) .score-gauge { animation-delay: 0.3s; }
.score-card:nth-child(6) .score-gauge { animation-delay: 0.35s; }

/* ═══════════════════════════════════════════════════════
   49. NAV — #slab-nav TARGETED
═══════════════════════════════════════════════════════ */
#slab-nav {
  background: rgba(10, 10, 15, 0.88) !important;
  backdrop-filter: blur(28px) saturate(2) !important;
  -webkit-backdrop-filter: blur(28px) saturate(2) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.03), 0 4px 20px rgba(0,0,0,0.2) !important;
}
#slab-bottomnav {
  background: rgba(10, 10, 15, 0.94) !important;
  backdrop-filter: blur(28px) saturate(1.8) !important;
  -webkit-backdrop-filter: blur(28px) saturate(1.8) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35) !important;
}

/* ═══════════════════════════════════════════════════════
   51. BLOG PAGES — PREMIUM VISUAL ENHANCEMENTS
═══════════════════════════════════════════════════════ */

/* Blog hero gradient accent line + enhanced heading */
.blog-hero {
  position: relative;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,160,0.4), transparent);
  pointer-events: none;
}
.blog-hero h1 {
  background: linear-gradient(135deg, #f0f0f5 0%, #c8c8d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-hero h1 span {
  background: linear-gradient(135deg, #00e5a0, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-hero-eyebrow {
  background: linear-gradient(135deg, rgba(0,229,160,0.12), rgba(167,139,250,0.08)) !important;
  border: 1px solid rgba(0,229,160,0.25) !important;
  box-shadow: 0 0 20px rgba(0,229,160,0.06);
}

/* Blog post cards — enhanced glass effect */
.post-card {
  background: linear-gradient(145deg, rgba(18,18,27,0.95) 0%, rgba(13,13,20,0.98) 100%) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05) !important;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s, border-color 0.25s !important;
}
.post-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,229,160,0.15), inset 0 1px 0 rgba(255,255,255,0.06) !important;
  border-color: rgba(0,229,160,0.2) !important;
}
.post-card.featured {
  background: linear-gradient(145deg, rgba(22,22,34,0.95) 0%, rgba(14,14,22,0.98) 100%) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 60px rgba(0,229,160,0.04), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

/* Post image overlay enhancement */
.post-img {
  position: relative;
  overflow: hidden;
}
.post-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,13,20,0.6) 100%);
  pointer-events: none;
}

/* Blog filter buttons */
.filter-btn.active {
  background: linear-gradient(135deg, rgba(0,229,160,0.15), rgba(0,229,160,0.08)) !important;
  border-color: rgba(0,229,160,0.4) !important;
  box-shadow: 0 0 12px rgba(0,229,160,0.12), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

/* Blog post reading layout */
.post-content h2 { color: #f0f0f5; }
.post-content h3 { color: #d8d8e8; }
.post-content strong { color: #f0f0f5; }
.post-content blockquote {
  border-left: 3px solid rgba(0,229,160,0.5) !important;
  background: rgba(0,229,160,0.04) !important;
}
.post-content code {
  background: rgba(167,139,250,0.12) !important;
  border: 1px solid rgba(167,139,250,0.2) !important;
}

/* Blog post hero */
.post-hero { position: relative; }
.post-category-badge {
  background: linear-gradient(135deg, rgba(0,229,160,0.12), rgba(0,229,160,0.06)) !important;
  border: 1px solid rgba(0,229,160,0.25) !important;
  box-shadow: 0 0 14px rgba(0,229,160,0.08) !important;
}
.post-title {
  background: linear-gradient(135deg, #f0f0f5 0%, #c0c0d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tag pills */
.tag, .post-tag, [class*="tag"] {
  background: rgba(167,139,250,0.1) !important;
  border: 1px solid rgba(167,139,250,0.2) !important;
  color: #c084fc !important;
  transition: all 0.15s !important;
}
.tag:hover, .post-tag:hover, [class*="tag"]:hover {
  background: rgba(167,139,250,0.18) !important;
  border-color: rgba(167,139,250,0.35) !important;
}

/* Blog related articles */
.related-card, [class*="related"] {
  background: linear-gradient(145deg, rgba(18,18,27,0.9) 0%, rgba(13,13,20,0.95) 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
}

/* ═══════════════════════════════════════════════════════
   52. ANALYTICS & REPORTS — PREMIUM VISUAL ENHANCEMENTS
═══════════════════════════════════════════════════════ */

/* Analytics page header gradient */
.page-header h1 {
  background: linear-gradient(135deg, #f0f0f5 0%, #c8c8d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Chart containers — glass treatment */
.chart-wrap, [class*="chart-wrap"], [class*="chart-container"],
canvas[id*="chart"], canvas[id*="Chart"] {
  border-radius: var(--radius-md) !important;
}

/* Analytics metric cards — premium pill values */
.stat-value {
  background: linear-gradient(135deg, #00e5a0, #00c88a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none !important;
}

/* Analytics stat cards */
.stat-card, [class*="stat-card"] {
  background: linear-gradient(145deg, rgba(18,18,27,0.95) 0%, rgba(13,13,20,0.98) 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04) !important;
  position: relative;
  overflow: hidden;
}
.stat-card::before, [class*="stat-card"]::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,160,0.2), transparent);
  pointer-events: none;
}

/* Analytics tab buttons */
[class*="period-btn"].active, [class*="tab-btn"].active,
[class*="range-btn"].active {
  background: linear-gradient(135deg, rgba(0,229,160,0.18), rgba(0,229,160,0.08)) !important;
  border-color: rgba(0,229,160,0.4) !important;
  color: var(--accent) !important;
  box-shadow: 0 0 12px rgba(0,229,160,0.1), inset 0 1px 0 rgba(255,255,255,0.06) !important;
}

/* PDF/printable report header */
.report-header, [class*="report-header"] {
  background: linear-gradient(145deg, #0d1a13 0%, #111118 100%) !important;
  border-bottom: 1px solid rgba(0,229,160,0.15) !important;
}

/* Report section cards */
.report-section, [class*="report-section"] {
  background: linear-gradient(145deg, rgba(18,18,27,0.9) 0%, rgba(13,13,20,0.95) 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
}

/* Upgrade banner premium treatment */
.upgrade-banner {
  background: linear-gradient(135deg, rgba(0,229,160,0.08), rgba(167,139,250,0.05)) !important;
  border: 1px solid rgba(0,229,160,0.2) !important;
  box-shadow: 0 0 40px rgba(0,229,160,0.06), inset 0 1px 0 rgba(255,255,255,0.04) !important;
  position: relative;
  overflow: hidden;
}
.upgrade-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse 40% 30% at 50% 0%, rgba(0,229,160,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   53. ICON ENHANCEMENTS — PREMIUM TREATMENTS
═══════════════════════════════════════════════════════ */

/* Nav icons — accent glow on active/current page */
.sn-link.active svg, .sn-link[aria-current="page"] svg,
.sn-tab.active .sn-tab-icon svg {
  filter: drop-shadow(0 0 4px rgba(0,229,160,0.5));
}
.sn-tab .sn-tab-icon svg {
  transition: filter 0.2s ease, transform 0.15s ease;
}

/* Action icons in quick actions */
.quick-action-icon {
  filter: none;
  transition: filter 0.2s !important;
}
.quick-action:hover .quick-action-icon {
  filter: drop-shadow(0 0 4px rgba(33,150,243,0.3)) !important;
}

/* Score category icons */
.score-gauge {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

/* Lock icon premium */
.lock-icon {
  filter: drop-shadow(0 0 6px rgba(85,85,106,0.3));
}

/* Status indicator dots */
[class*="status-dot"], [class*="indicator-dot"] {
  box-shadow: 0 0 6px currentColor !important;
}

/* Info icon premium styling */
.score-info-btn {
  background: linear-gradient(135deg, rgba(85,85,106,0.2), rgba(85,85,106,0.1)) !important;
  border: 1px solid rgba(85,85,106,0.35) !important;
  transition: all 0.15s cubic-bezier(0.4,0,0.2,1) !important;
}
.score-info-btn:hover {
  background: linear-gradient(135deg, rgba(0,229,160,0.2), rgba(0,229,160,0.08)) !important;
  border-color: rgba(0,229,160,0.5) !important;
  color: var(--accent) !important;
  box-shadow: 0 0 8px rgba(0,229,160,0.2) !important;
}

/* Emoji icons in navigation and action items */
.sn-link-icon, [class*="nav-icon"] {
  font-size: 1rem;
  transition: transform 0.15s ease !important;
}
.sn-link:hover .sn-link-icon {
  transform: scale(1.15) !important;
}

/* ═══════════════════════════════════════════════════════
   50. FINAL: REDUCED MOTION RESPECT
═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
