/* ============================================================
   NeilHunter — Complete Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --bg:        #0d1117;
  --bg-soft:   #161c26;
  --bg-card:   #1c2333;
  --border:    #2a3347;
  --text:      #e8eaf0;
  --text-soft: #8892a4;
  --accent:    #14b8a6;
  --accent-lo: rgba(20,184,166,.1);
  --amber:     #fbbf24;
  --red:       #f87171;
  --green:     #34d399;

  --r:    10px;
  --r-lg: 14px;
  --r-xl: 18px;

  --sb-width:     210px;
  --sb-width-col: 60px;
}

body.light {
  --bg:        #f4f5f7;
  --bg-soft:   #ebedf0;
  --bg-card:   #ffffff;
  --border:    #dde1e8;
  --text:      #111827;
  --text-soft: #6b7280;
  --accent:    #0d9488;
  --accent-lo: rgba(13,148,136,.08);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.6; }
a    { color: inherit; text-decoration: none; }
button, input, select { font-family: var(--font-body); }
::selection { background: rgba(20,184,166,.2); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ── Animations ── */
@keyframes fadeIn  { from{opacity:0}    to{opacity:1} }
@keyframes slideUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse   { 0%,100%{opacity:1} 50%{opacity:.4} }
@keyframes spin    { to{transform:rotate(360deg)} }
@keyframes shimmer { from{background-position:-400px 0} to{background-position:400px 0} }

/* ── Shared utils ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 20px; border-radius:var(--r);
  font-size:14px; font-weight:500; cursor:pointer; border:none;
  white-space:nowrap; transition:all .18s ease;
  font-family: var(--font-body);
}
.btn-primary { background:var(--accent); color:#fff; box-shadow:0 0 20px -4px rgba(20,184,166,.4); }
.btn-primary:hover { opacity:.88; transform:translateY(-1px); }
.btn-ghost { background:var(--bg-card); color:var(--text); border:1px solid var(--border); }
.btn-ghost:hover { border-color:var(--accent); }
.btn-outline { background:transparent; color:var(--text); border:1px solid var(--border); }
.btn-outline:hover { border-color:var(--accent); color:var(--accent); }
.btn-lg { padding:13px 28px; font-size:15px; border-radius:var(--r-lg); }
.btn-sm { padding:6px 14px; font-size:12px; }
.btn:disabled { opacity:.5; cursor:not-allowed !important; transform:none !important; }

.skeleton {
  background:linear-gradient(90deg, var(--bg-soft) 25%, var(--border) 50%, var(--bg-soft) 75%);
  background-size:400px 100%; animation:shimmer 1.4s ease infinite; border-radius:4px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

#nh-sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sb-width);
  height: 100%;
  background: #111827;
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  z-index: 9000;
  overflow: hidden;
  transition: width .25s ease, transform .25s ease;
  box-shadow: 4px 0 24px rgba(0,0,0,.4);
}

/* Collapsed desktop */
#nh-sidebar.sb-collapsed { width: var(--sb-width-col); }

/* Mobile: full-width overlay sidebar */
@media (max-width: 900px) {
  #nh-sidebar {
    transform: translateX(-100%);
    width: min(300px, 88vw) !important;
    box-shadow: 8px 0 48px rgba(0,0,0,.7);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    z-index: 10000;
    background: var(--bg-card) !important;
    border-right: 1px solid var(--border) !important;
  }
  #nh-sidebar.sb-open { transform: translateX(0); }

  /* Nav items — bigger touch targets, chevron style */
  .sb-nav a {
    padding: 13px 16px !important;
    font-size: 14.5px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    color: var(--text) !important;
    font-weight: 500 !important;
  }
  .sb-nav a::after {
    content: '';
    display: block;
    width: 6px; height: 6px;
    border-right: 1.5px solid var(--text-soft);
    border-top: 1.5px solid var(--text-soft);
    transform: rotate(45deg);
    flex-shrink: 0;
    opacity: .5;
  }
  .sb-nav a.active::after { opacity: 1; border-color: var(--accent); }
  .sb-nav a svg { width: 18px !important; height: 18px !important; flex-shrink: 0; }
  .sb-lbl { font-size: 14.5px !important; flex: 1; }

  /* Make sure labels always visible on mobile */
  #nh-sidebar .sb-lbl { opacity: 1 !important; width: auto !important; }
  #nh-sidebar .sb-logo-text { opacity: 1 !important; width: auto !important; }
  #nh-sidebar .sb-plan { opacity: 1 !important; }
  #nh-sidebar .sb-profile-info { opacity: 1 !important; width: auto !important; }
  #nh-sidebar .sb-user-name,
  #nh-sidebar .sb-user-email { opacity: 1 !important; }

  /* Community section */
  .sb-community { margin: 0 0 8px !important; }

  /* Overlay backdrop */
  #nh-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9999;
    backdrop-filter: blur(2px);
  }
  #nh-overlay.ov-open { display: block; }
}

/* Collapse toggle button */
.sb-toggle {
  position: absolute;
  top: 20px; right: -13px;
  width: 26px; height: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  color: var(--text-soft);
  transition: transform .25s ease, background .15s, color .15s;
}
.sb-toggle:hover { background: var(--bg-soft); color: var(--text); }
#nh-sidebar.sb-collapsed .sb-toggle { transform: rotate(180deg); }
@media (max-width: 900px) { .sb-toggle { display: none; } }

/* Logo row */
.sb-logo {
  height: 52px;
  display: flex; align-items: center; gap: 9px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  overflow: hidden; white-space: nowrap;
  text-decoration: none;
}
.sb-logo-icon {
  width: 26px; height: 26px; min-width: 26px;
  background: var(--accent); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 12px -2px rgba(20,184,166,.5);
  flex-shrink: 0;
}
.sb-logo-text {
  font-family: var(--font-display);
  font-size: 16px; color: var(--text);
  transition: opacity .2s, width .2s;
  overflow: hidden;
}
#nh-sidebar.sb-collapsed .sb-logo-text { opacity: 0; width: 0; }

/* Profile header */
.sb-profile {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0; overflow: hidden; white-space: nowrap;
}
.sb-avatar {
  width: 30px; height: 30px; min-width: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0891b2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}
.sb-profile-info { overflow: hidden; transition: opacity .2s, width .2s; }
.sb-profile-name { font-size: 12px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sb-profile-role { font-size: 10px; color: var(--text-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
#nh-sidebar.sb-collapsed .sb-profile-info { opacity: 0; width: 0; }

/* LOGOUT BUTTON */
.sb-logout-btn {
  width: 100%;
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid rgba(248,113,113,.2);
  background: rgba(248,113,113,.06);
  color: #f87171;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  white-space: nowrap; overflow: hidden;
  transition: all .15s;
  font-family: var(--font-body);
  margin-top: 6px;
}
.sb-logout-btn:hover { background: rgba(248,113,113,.14); border-color: rgba(248,113,113,.4); color: #fca5a5; }
.sb-logout-btn svg { flex-shrink: 0; opacity: .85; }

/* Labels that hide when collapsed */
.sb-lbl { transition: opacity .2s, width .2s; overflow: hidden; }
#nh-sidebar.sb-collapsed .sb-lbl { opacity: 0; width: 0; }

.sb-divider { margin: 12px 10px; border: none; border-top: 1px solid var(--border); flex-shrink: 0; }

/* Nav links */
.sb-nav { flex: 1; padding: 6px 8px 0; display: flex; flex-direction: column; gap: 1px; overflow-y: auto; overflow-x: hidden; }
.sb-nav a {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: 8px;
  color: #6b7a8f; font-size: 13px;
  white-space: nowrap; overflow: hidden;
  text-decoration: none;
  transition: background .15s, color .15s;
  font-weight: 450;
  letter-spacing: .01em;
  position: relative;
}
.sb-nav a:hover { background: rgba(255,255,255,.05); color: #c9d1dd; }
.sb-nav a.active { background: rgba(20,184,166,.12); color: var(--accent); font-weight: 550; }
.sb-nav a svg:first-child { flex-shrink: 0; opacity: .75; }
.sb-nav a:hover svg, .sb-nav a.active svg { opacity: 1; }
/* Chevron arrow on right */
.sb-nav a .sb-chevron {
  margin-left: auto; flex-shrink: 0;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .35; transition: opacity .15s;
}
.sb-nav a:hover .sb-chevron, .sb-nav a.active .sb-chevron { opacity: .7; }
#nh-sidebar.sb-collapsed .sb-chevron { display: none; }

/* Plan badge */

/* Community icon button + popover */
.sb-community-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: 8px; margin: 0 8px 2px;
  color: #6b7a8f; font-size: 13px; font-weight: 450;
  cursor: pointer; border: none; background: none;
  white-space: nowrap; overflow: hidden;
  transition: background .15s, color .15s;
  font-family: var(--font-body);
  width: calc(100% - 16px);
  position: relative;
}
.sb-community-btn:hover { background: rgba(255,255,255,.05); color: #c9d1dd; }
.sb-community-btn svg { flex-shrink: 0; opacity: .75; }
.sb-community-btn:hover svg { opacity: 1; }
.sb-community-btn .sb-chevron {
  margin-left: auto; flex-shrink: 0;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .35;
}
#nh-sidebar.sb-collapsed .sb-community-btn .sb-lbl,
#nh-sidebar.sb-collapsed .sb-community-btn .sb-chevron { opacity: 0; width: 0; display: none; }

/* Community popover */
.sb-community-popover {
  position: fixed;
  bottom: 80px; left: 14px;
  width: 176px;
  background: #1a2332;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 6px;
  z-index: 99999;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  display: none;
  flex-direction: column; gap: 2px;
}
.sb-community-popover.open { display: flex; }
#nh-sidebar.sb-collapsed + * .sb-community-popover { left: 70px; }
.sb-pop-label {
  font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); opacity: .6; padding: 4px 8px 6px;
}
.sb-pop-link {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 12.5px; text-decoration: none; color: #9aa5b4;
  transition: background .15s, color .15s;
}
.sb-pop-link:hover { background: rgba(255,255,255,.06); }
.sb-pop-link.whatsapp:hover { color: #25d366; }
.sb-pop-link.x:hover { color: #e2e8f0; }
.sb-pop-link.instagram:hover { color: #e1306c; }
.sb-pop-link svg { flex-shrink: 0; opacity: .8; }

#nh-sidebar.sb-collapsed .sb-community-label,
#nh-sidebar.sb-collapsed .sb-community { opacity: 0; pointer-events: none; }

.sb-plan {
  margin: 0 0 6px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  font-size: 12px; text-align: center;
  color: #6b7a8f;
  background: rgba(255,255,255,.04);
  transition: opacity .2s;
  white-space: nowrap; overflow: hidden;
  font-weight: 500;
}
.sb-plan a { color: var(--accent); text-decoration: underline; }
.sb-plan.starter { border-color: rgba(20,184,166,.3); color: var(--accent); background: rgba(20,184,166,.08); }
.sb-plan.pro {
  border-color: rgba(251,191,36,.4);
  color: var(--amber);
  background: rgba(251,191,36,.08);
  box-shadow: 0 0 14px -4px rgba(251,191,36,.25);
  font-weight: 600;
}
#nh-sidebar.sb-collapsed .sb-plan { opacity: 0; }

/* User info */
.sb-bottom {
  padding: 8px 8px 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
  overflow: hidden;
}
.sb-user { margin-bottom: 4px; overflow: hidden; }
.sb-user-name { font-size: 12px; font-weight: 600; color: #c9d1dd; padding: 4px 2px 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: opacity .2s; }
.sb-user-email { font-size: 10.5px; color: #4b5563; padding: 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: opacity .2s; }
#nh-sidebar.sb-collapsed .sb-user-name,
#nh-sidebar.sb-collapsed .sb-user-email { opacity: 0; }
#nh-sidebar.sb-collapsed .sb-plan { opacity: 0; }

/* Mobile overlay */
#nh-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 8999;
}

/* ============================================================
   DASHBOARD MAIN LAYOUT
   ============================================================ */

#nh-main {
  margin-left: var(--sb-width);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: margin-left .25s ease;
}
#nh-main.sb-main-collapsed { margin-left: var(--sb-width-col); }

@media (max-width: 900px) {
  #nh-main { margin-left: 0 !important; }
}

/* Topbar */
.nh-topbar {
  height: 64px; flex-shrink: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  position: sticky; top: 0; z-index: 100;
}
.nh-topbar-left { display: flex; align-items: center; gap: 10px; }

/* Hamburger (mobile) */
#sb-hamburger {
  display: none;
  width: 36px; height: 36px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: none; color: var(--text-soft);
  align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .15s, color .15s;
}
#sb-hamburger:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 900px) { #sb-hamburger { display: flex; } }

/* Theme toggle */
.theme-btn {
  width: 36px; height: 36px; border-radius: var(--r);
  border: 1px solid var(--border); background: none;
  color: var(--text-soft); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .15s, color .15s;
}
.theme-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Page body */
.nh-page { flex: 1; padding: 28px 28px; overflow-y: auto; }
.page-title { font-family: var(--font-display); font-size: 30px; font-weight: 400; margin-bottom: 4px; }
.page-sub { font-size: 14px; color: var(--text-soft); margin-bottom: 24px; }

/* ============================================================
   LANDING PAGE (index.html)
   ============================================================ */

.landing-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,17,23,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
body.light .landing-nav { background: rgba(244,245,247,.9); }
.landing-nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; }
.nav-logo-icon { width: 32px; height: 32px; background: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 0 16px -2px rgba(20,184,166,.5); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-link { color: var(--text-soft); font-size: 14px; padding: 8px 14px; border-radius: var(--r); transition: color .15s; }
.nav-link:hover { color: var(--text); }

.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 28px 28px; opacity: .5; pointer-events: none;
}
.hero-glow {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(20,184,166,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--bg-card); font-size: 13px; color: var(--text-soft); margin-bottom: 32px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease infinite; }
.hero-title { font-family: var(--font-display); font-size: clamp(40px,7vw,74px); line-height: 1.08; margin-bottom: 24px; }
.hero-title em { color: var(--accent); font-style: italic; }
.hero-sub { font-size: 18px; color: var(--text-soft); max-width: 520px; margin: 0 auto 40px; font-weight: 300; line-height: 1.65; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-note { font-size: 13px; color: var(--text-soft); }

.features-section { padding: 80px 0; border-top: 1px solid var(--border); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px,4vw,44px); margin-bottom: 12px; font-weight: 400; }
.section-sub { font-size: 16px; color: var(--text-soft); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 16px; }
.feature-card { padding: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); transition: border-color .18s; }
.feature-card:hover { border-color: rgba(20,184,166,.4); }
.feature-icon { width: 40px; height: 40px; background: var(--accent-lo); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 16px; }
.feature-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

.steps-section { padding: 80px 0; border-top: 1px solid var(--border); }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 24px; flex-wrap: wrap; }
.step { text-align: center; max-width: 200px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--accent-lo); border: 2px solid rgba(20,184,166,.3); color: var(--accent); font-family: var(--font-display); font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--text-soft); }
.step-arrow { font-size: 24px; color: var(--border); padding-top: 14px; }

.cta-section { padding: 80px 0; border-top: 1px solid var(--border); }
.cta-box { text-align: center; padding: 64px 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 400px; height: 250px; background: radial-gradient(ellipse, rgba(20,184,166,.08) 0%, transparent 70%); pointer-events: none; }

.landing-footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--text-soft); transition: color .15s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-soft); 
max-width: 720px;
margin: 0 auto;
padding: 0 24px;
}







.footer-wrap{max-width:720px;padding :0 24px;text-align:center; margin-bottom: 48px;}

/* ============================================================
   AUTH PAGES
   ============================================================ */

.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; position: relative; }
.auth-page::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, var(--border) 1px, transparent 1px); background-size: 28px 28px; opacity: .5; pointer-events: none; }
.auth-card { width: 100%; max-width: 420px; position: relative; z-index: 1; }
.auth-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 40px; font-family: var(--font-display); font-size: 26px; }
.auth-logo-icon { width: 36px; height: 36px; background: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 0 16px -2px rgba(20,184,166,.5); }
.auth-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px; }
.auth-box h1 { font-family: var(--font-display); font-size: 26px; font-weight: 400; margin-bottom: 4px; }
.auth-sub { font-size: 14px; color: var(--text-soft); margin-bottom: 24px; }
.auth-perks { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.auth-perk { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-soft); }
.auth-perk svg { color: var(--accent); flex-shrink: 0; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.form-group input { width: 100%; height: 44px; border-radius: var(--r); border: 1px solid var(--border); background: var(--bg); padding: 0 14px; font-size: 14px; color: var(--text); outline: none; transition: border-color .15s, box-shadow .15s; }
.form-group input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(20,184,166,.1); }
.input-wrap { position: relative; }
.input-wrap input { padding-right: 42px; }
.toggle-pwd { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-soft); cursor: pointer; display: flex; align-items: center; }
.form-submit { width: 100%; height: 44px; background: var(--accent); color: #fff; border: none; border-radius: var(--r); font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: opacity .15s, transform .15s; margin-top: 4px; }
.form-submit:hover { opacity: .9; transform: translateY(-1px); }
.form-submit:disabled { opacity: .5; transform: none; cursor: not-allowed; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-soft); }
.auth-footer a { color: var(--accent); }
.auth-error { display: none; padding: 10px 14px; border-radius: var(--r); background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.2); color: #f87171; font-size: 13px; margin-bottom: 16px; }

/* ============================================================
   DASHBOARD — SEARCH
   ============================================================ */

.search-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 22px; margin-bottom: 24px; }
.search-fields { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end; }
.search-field label { display: block; font-size: 12px; font-weight: 500; color: var(--text-soft); margin-bottom: 6px; }
.search-field input { width: 100%; height: 44px; border: 1px solid var(--border); border-radius: var(--r); background: var(--bg); padding: 0 14px; font-size: 14px; color: var(--text); outline: none; transition: border-color .15s, box-shadow .15s; }
.search-field input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(20,184,166,.1); }
.search-btn { height: 44px; padding: 0 24px; background: var(--accent); color: #fff; border: none; border-radius: var(--r); font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 8px; box-shadow: 0 0 18px -4px rgba(20,184,166,.4); transition: opacity .15s, transform .15s; white-space: nowrap; }
.search-btn:hover { opacity: .9; transform: translateY(-1px); }
.search-btn:disabled { opacity: .5; transform: none; cursor: not-allowed; }
.quick-searches { display: flex; align-items: center; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.quick-label { font-size: 12px; color: var(--text-soft); }
.quick-chip { font-size: 12px; padding: 4px 12px; border-radius: 999px; border: 1px solid var(--border); background: none; color: var(--text-soft); cursor: pointer; transition: all .15s; }
.quick-chip:hover { border-color: rgba(20,184,166,.4); color: var(--accent); }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 20px; }
.stat-card { border-radius: var(--r-lg); border: 1px solid; padding: 16px; display: flex; align-items: center; gap: 12px; }
.stat-card.blue  { border-color: rgba(96,165,250,.25);  background: rgba(96,165,250,.06); }
.stat-card.amber { border-color: rgba(251,191,36,.25);  background: rgba(251,191,36,.06); }
.stat-card.red   { border-color: rgba(248,113,113,.25); background: rgba(248,113,113,.06); }
.stat-card.teal  { border-color: rgba(20,184,166,.25);  background: rgba(20,184,166,.06); }
.stat-icon { width: 38px; height: 38px; border-radius: var(--r); background: var(--bg-card); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-card.blue  .stat-icon { color: #60a5fa; }
.stat-card.amber .stat-icon { color: var(--amber); }
.stat-card.red   .stat-icon { color: var(--red); }
.stat-card.teal  .stat-icon { color: var(--accent); }
.stat-val { font-family: var(--font-display); font-size: 26px; line-height: 1; }
.stat-card.blue  .stat-val { color: #60a5fa; }
.stat-card.amber .stat-val { color: var(--amber); }
.stat-card.red   .stat-val { color: var(--red); }
.stat-card.teal  .stat-val { color: var(--accent); }
.stat-lbl { font-size: 12px; color: var(--text-soft); margin-top: 3px; }

/* Filter bar */
.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-size: 12px; color: var(--text-soft); }
.filter-chip { font-size: 12px; padding: 6px 14px; border-radius: 999px; border: 1px solid var(--border); background: none; color: var(--text-soft); cursor: pointer; transition: all .15s; }
.filter-chip:hover { border-color: rgba(20,184,166,.4); }
.filter-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.filter-select { height: 32px; padding: 0 10px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg); color: var(--text-soft); font-size: 12px; outline: none; cursor: pointer; }
.export-wrap { position: relative; }
.export-btn { display: flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: var(--r); border: 1px solid var(--border); background: var(--bg-card); font-size: 13px; color: var(--text); cursor: pointer; transition: border-color .15s; }
.export-btn:hover { border-color: rgba(20,184,166,.4); }
.export-dropdown { position: absolute; right: 0; top: calc(100% + 6px); width: 180px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: 0 8px 32px rgba(0,0,0,.3); overflow: hidden; display: none; z-index: 200; animation: fadeIn .15s ease; }
.export-dropdown.open { display: block; }
.export-item { display: flex; align-items: center; gap: 10px; padding: 11px 16px; font-size: 13px; color: var(--text); cursor: pointer; transition: background .12s; border: none; background: none; width: 100%; text-align: left; }
.export-item:hover { background: var(--bg-soft); }
.export-item.locked { color: var(--text-soft); }

/* Results table */
/* ── Lead Table (Image 4 style) ── */
.results-table-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; }
.table-header { display: grid; grid-template-columns: 2.2fr 1.3fr 0.9fr 1fr 1.3fr 0.8fr; gap: 12px; padding: 11px 20px; background: var(--bg-soft); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-soft); border-bottom: 1px solid var(--border); }
.table-row { display: grid; grid-template-columns: 2.2fr 1.3fr 0.9fr 1fr 1.3fr 0.8fr; gap: 12px; padding: 15px 20px; align-items: center; border-bottom: 1px solid var(--border); cursor: pointer; transition: background .12s; }
.table-row:last-child { border-bottom: none; }
.table-row:hover { background: var(--bg-soft); }
.row-hot { background: rgba(248,113,113,0.04); border-left: 3px solid rgba(248,113,113,0.5); padding-left: 17px; }
.row-hot:hover { background: rgba(248,113,113,0.08); }
.row-lead {}
.row-name { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 7px; color: var(--text-main); }
.row-name-sub { font-size: 11.5px; color: var(--text-soft); margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 240px; }
.hot-pulse { width:7px; height:7px; border-radius:50%; background:var(--red); animation:pulse 2s infinite; flex-shrink:0; display:inline-block; }

/* Score bar */
.score-cell { display:flex; align-items:center; gap:8px; }
.score-track { flex:1; height:5px; border-radius:3px; background:var(--border); overflow:hidden; min-width:40px; }
.score-fill { height:100%; border-radius:3px; transition:width .5s cubic-bezier(.34,1.56,.64,1); }
.score-num { font-family:var(--font-mono); font-size:13px; font-weight:700; min-width:24px; text-align:right; }

/* Status pills */
.st-pill { display:inline-flex; align-items:center; font-size:11px; font-weight:600; padding:4px 10px; border-radius:999px; white-space:nowrap; border:1px solid; }
.st-hot  { color:#ff6b4a; background:rgba(255,107,74,0.12);  border-color:rgba(255,107,74,0.3); }
.st-good { color:#fbbf24; background:rgba(251,191,36,0.12); border-color:rgba(251,191,36,0.3); }
.st-warm { color:#818cf8; background:rgba(129,140,248,0.12); border-color:rgba(129,140,248,0.25); }
.st-cold { color:var(--text-soft); background:var(--bg-soft); border-color:var(--border); }

/* Website pills */
.row-web { display:inline-flex; align-items:center; font-size:11.5px; font-weight:500; padding:4px 9px; border-radius:999px; text-decoration:none; white-space:nowrap; border:1px solid; transition:opacity .15s; }
.row-web:hover { opacity:.75; }
.rw-none     { color:var(--red);   background:rgba(248,113,113,0.08); border-color:rgba(248,113,113,0.2); cursor:default; }
.rw-outdated { color:var(--amber); background:rgba(251,191,36,0.08);  border-color:rgba(251,191,36,0.2);  cursor:pointer; }
.rw-modern   { color:var(--green); background:rgba(52,211,153,0.08);  border-color:rgba(52,211,153,0.2);  cursor:pointer; }

/* Phone */
.row-phone { display:inline-flex; align-items:center; gap:5px; font-size:12px; color:var(--text-soft); text-decoration:none; transition:color .15s; white-space:nowrap; }
.row-phone:hover { color:var(--accent); }
.row-na { color:var(--text-soft); font-size:13px; }

/* Analyse button */
.analyse-btn { font-size:11.5px; font-weight:600; padding:6px 13px; border-radius:8px; border:1px solid rgba(20,184,166,0.3); background:rgba(20,184,166,0.08); color:var(--accent); cursor:pointer; white-space:nowrap; transition:background .15s,border-color .15s; font-family:inherit; }
.analyse-btn:hover { background:rgba(20,184,166,0.18); border-color:rgba(20,184,166,0.5); }
.row-rating { font-size: 13px; color: var(--text-soft); }
.row-website.none     { color: var(--red); font-size: 12px; }
.row-website.outdated { color: var(--amber); font-size: 12px; }
.row-website.modern   { color: var(--green); font-size: 12px; }
.opp-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; padding: 3px 8px; border-radius: 999px; border: 1px solid; }
.opp-badge.hot  { color: var(--red);   border-color: rgba(248,113,113,.3); background: rgba(248,113,113,.08); }
.opp-badge.high { color: var(--amber); border-color: rgba(251,191,36,.3);  background: rgba(251,191,36,.08); }
.opp-badge.low  { color: var(--green); border-color: rgba(52,211,153,.3);  background: rgba(52,211,153,.08); }
.score-cell { display: flex; align-items: center; gap: 8px; }
.score-track { flex: 1; height: 5px; border-radius: 3px; background: var(--border); overflow: hidden; }
.score-fill { height: 100%; border-radius: 3px; transition: width .5s cubic-bezier(.34,1.56,.64,1); }
.score-num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; width: 26px; text-align: right; }
.table-footer { padding: 10px 20px; background: var(--bg-soft); border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-soft); }

.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 24px; text-align: center; }
.empty-icon { font-size: 48px; margin-bottom: 20px; }
.empty-title { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.empty-sub { font-size: 14px; color: var(--text-soft); max-width: 300px; }

/* ============================================================
   MODAL
   ============================================================ */

.modal-overlay { position: fixed; inset: 0; z-index: 20000; background: rgba(0,0,0,.65); backdrop-filter: blur(4px); display: flex; align-items: flex-end; justify-content: center; animation: fadeIn .2s ease; }
@media (min-width: 600px) { .modal-overlay { align-items: center; padding: 24px; } }
.modal { width: 100%; max-width: 680px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl) var(--r-xl) 0 0; max-height: 92vh; overflow: hidden; display: flex; flex-direction: column; animation: slideUp .25s ease; }
@media (min-width: 600px) { .modal { border-radius: var(--r-xl); } }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 22px 22px 0; flex-shrink: 0; }
.modal-title { font-family: var(--font-display); font-size: 22px; margin-bottom: 4px; }
.modal-sub { font-size: 13px; color: var(--text-soft); display: flex; align-items: center; gap: 5px; }
.modal-close { width: 32px; height: 32px; border-radius: var(--r); border: none; background: none; color: var(--text-soft); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; flex-shrink: 0; }
.modal-close:hover { background: var(--bg-soft); }
.modal-body { overflow-y: auto; flex: 1; padding: 18px 22px 22px; }
.modal-details { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 20px; }
.detail-card { background: var(--bg-soft); border-radius: var(--r); padding: 12px; text-align: center; text-decoration: none; color: var(--text); display: block; transition: background .15s; }
.detail-card:hover { background: var(--accent-lo); }
.detail-val { font-size: 15px; font-weight: 500; margin-bottom: 2px; }
.detail-lbl { font-size: 11px; color: var(--text-soft); }
.analysis-head { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft); margin-bottom: 10px; }
.analysis-block { border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--bg); padding: 16px; margin-bottom: 12px; }
.analysis-block.danger { border-color: rgba(248,113,113,.2); background: rgba(248,113,113,.04); }
.analysis-block.danger .analysis-head { color: var(--red); }
.analysis-block.teal { border-color: rgba(20,184,166,.2); background: rgba(20,184,166,.04); }
.analysis-block.teal .analysis-head { color: var(--accent); }
.analysis-block p { font-size: 14px; line-height: 1.65; }
.improve-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.improve-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.improve-num { width: 22px; height: 22px; border-radius: 50%; background: rgba(20,184,166,.15); color: var(--accent); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.outreach-block { border-radius: var(--r-lg); border: 1px solid var(--border); padding: 16px; margin-bottom: 12px; }
.outreach-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.copy-btn { display: flex; align-items: center; gap: 6px; font-size: 12px; padding: 6px 12px; border-radius: var(--r); border: 1px solid var(--border); background: none; color: var(--text-soft); cursor: pointer; transition: all .15s; }
.copy-btn:hover, .copy-btn.copied { border-color: rgba(20,184,166,.4); color: var(--accent); }
.outreach-text { font-size: 13px; line-height: 1.7; color: var(--text-soft); white-space: pre-wrap; }
.upgrade-gate { border-radius: var(--r-lg); border: 1px solid rgba(251,191,36,.25); background: rgba(251,191,36,.04); padding: 32px; text-align: center; }
.upgrade-gate .ug-icon { font-size: 36px; margin-bottom: 14px; }
.upgrade-gate h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.upgrade-gate p { font-size: 14px; color: var(--text-soft); margin-bottom: 20px; }
.upgrade-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: var(--r); background: var(--amber); color: #000; font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: opacity .15s; text-decoration: none; }
.upgrade-btn:hover { opacity: .85; }

/* ============================================================
   ANALYTICS PAGE
   ============================================================ */

.nh-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; margin-bottom: 16px; }
.nh-card-head { padding: 16px 20px; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 15px; }
.history-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 20px; border-bottom: 1px solid var(--border); font-size: 14px; }
.history-row:last-child { border-bottom: none; }
.h-meta { font-size: 12px; color: var(--text-soft); }
.h-badge { padding: 3px 10px; border-radius: 999px; border: 1px solid; font-size: 11px; }
.h-badge.found { border-color: var(--border); color: var(--text-soft); }
.h-badge.hot { border-color: rgba(251,191,36,.3); color: var(--amber); background: rgba(251,191,36,.06); }
.usage-label { display: flex; align-items: center; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.usage-track { height: 8px; border-radius: 4px; background: var(--border); overflow: hidden; }
.usage-fill { height: 100%; border-radius: 4px; background: var(--accent); transition: width .6s ease; }

/* ============================================================
   PRICING PAGE
   ============================================================ */

.pricing-hero { text-align: center; padding: 48px 24px 40px; position: relative; overflow: hidden; }
.pricing-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, var(--border) 1px, transparent 1px); background-size: 28px 28px; opacity: .5; pointer-events: none; }
.pricing-hero-inner { position: relative; }
.pricing-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg-card); font-size: 12px; color: var(--text-soft); margin-bottom: 20px; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 16px; padding: 0 24px 40px; max-width: 980px; margin: 0 auto; }
.plan-card { border-radius: var(--r-xl); border: 1px solid var(--border); background: var(--bg-card); padding: 28px; display: flex; flex-direction: column; position: relative; }
.plan-card.popular { border-color: rgba(20,184,166,.4); }
.plan-card.pro-card { border-color: rgba(251,191,36,.3); }
.popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 3px 14px; border-radius: 999px; font-size: 12px; font-weight: 500; white-space: nowrap; }
.plan-icon { width: 36px; height: 36px; border-radius: var(--r); background: var(--accent-lo); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 14px; }
.plan-name { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.plan-price { margin-bottom: 6px; display: flex; align-items: baseline; gap: 2px; }
.plan-price-num { font-family: var(--font-display); font-size: 38px; }
.plan-price-period { font-size: 14px; color: var(--text-soft); }
.plan-desc { font-size: 13px; color: var(--text-soft); margin-bottom: 20px; }
.plan-features { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.plan-feature { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; }
.plan-feature svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.plan-feature.excluded { opacity: .4; text-decoration: line-through; }
.plan-cta { width: 100%; height: 44px; border-radius: var(--r); font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; border: none; font-family: var(--font-body); transition: all .18s; }
.plan-cta.ghost { background: none; border: 1px solid var(--border); color: var(--text); }
.plan-cta.ghost:hover { border-color: rgba(20,184,166,.5); }
.plan-cta.primary { background: var(--accent); color: #fff; box-shadow: 0 0 18px -4px rgba(20,184,166,.4); }
.plan-cta.primary:hover { opacity: .88; }
.plan-cta.gold { background: var(--amber); color: #000; }
.plan-cta.gold:hover { opacity: .88; }
.plan-cta:disabled { opacity: .5; cursor: default; }
.pricing-note { text-align: center; padding: 0 24px 18px; font-size: 14px; color: var(--text-soft); }
.pricing-note a { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .search-fields { grid-template-columns: 1fr 1fr; gap: 8px; }
  .search-fields .search-btn { grid-column: 1 / -1; width: 100%; }

  .modal-details { grid-template-columns: repeat(2,1fr); }
  .biz-name { font-size: 13px; }
  .biz-addr { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
}
@media (max-width: 480px) {
  .nh-page { padding: 16px; }
  .plans-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .search-fields { grid-template-columns: 1fr 1fr; gap: 8px; }
  .search-fields .search-btn { grid-column: 1 / -1; width: 100%; }

}
@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .search-fields { grid-template-columns: 1fr; gap: 10px; }
  .search-fields .search-btn { width: 50%; }

  .modal-details { grid-template-columns: repeat(2,1fr); }
  .biz-name { font-size: 13px; }
  .biz-addr { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
}
@media (max-width: 480px) {
  .nh-page { padding: 16px; }
  .plans-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .search-fields { grid-template-columns: 1fr; gap: 10px; }
  .search-fields .search-btn { width: 50%; }

}

/* ── Horizontal scroll table (all screen sizes) ── */
.results-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-xl);
}
.table-header,
.table-row {
  min-width: 700px;
}
@media (max-width: 768px) {
  .results-table-wrap { border-radius: var(--r); }
  .table-header,
  .table-row { min-width: 680px; }
  .analyse-btn { padding: 5px 10px; font-size: 11px; }
  .row-name-sub { max-width: 160px; }
}

/* ── Notification Dropdown Panel ── */
#nh-notif-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: transparent;
  z-index: 999;
}
#nh-notif-backdrop.open { display: block; }
#nh-notif-panel {
  display: none;
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  max-width: calc(100vw - 32px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
  z-index: 1000;
  overflow: hidden;
}
#nh-notif-panel.open { display: block; }
.nh-notif-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid var(--border);
}
.nh-notif-head-title { font-size: 13px; font-weight: 600; color: var(--text); }
.nh-notif-clear-btn {
  font-size: 11px; font-weight: 500; color: var(--text-soft);
  background: none; border: none; cursor: pointer; padding: 4px 6px;
  border-radius: 6px; transition: color .15s, background .15s;
}
.nh-notif-clear-btn:hover { color: var(--red); background: rgba(248,113,113,.1); }
.nh-notif-list { max-height: 320px; overflow-y: auto; }
.nh-notif-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px; border-bottom: 1px solid var(--border);
  font-size: 13px; line-height: 1.4; color: var(--text);
  cursor: pointer; transition: background .15s;
}
.nh-notif-item:hover { background: var(--bg-soft); }
.nh-notif-item:last-child { border-bottom: none; }
.nh-notif-item.read { opacity: .55; }
.nh-notif-read-icon { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.nh-notif-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.nh-notif-msg { flex: 1; }
.nh-notif-time { font-size: 11px; color: var(--text-soft); margin-top: 4px; }
