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

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0f1510;
  --bg-tertiary: #141a14;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-emerald: #059669;
  --accent-green: #16a34a;
  --accent-cyan: #06b6d4;
  --accent-gold: #fbbf24;
  --accent-red: #ef4444;
  --accent-purple: #8b5cf6;
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --glass-hover: rgba(255,255,255,0.08);
  --shadow-glow: 0 0 20px rgba(5,150,105,0.4);
  --shadow-glass: 0 8px 32px rgba(0,0,0,0.3);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}
* { box-sizing:border-box; margin:0; padding:0; }
::selection { background:rgba(5,150,105,0.3); color:var(--text-primary); }
html { overflow-x:hidden; }
body { background:var(--bg-primary); color:var(--text-primary); font-family:var(--font-body);
       font-size:14px; min-height:100vh; overflow-x:hidden; max-width:100vw; }
main { max-width:1400px; margin:0 auto; padding:16px 20px; padding-top:80px; padding-bottom:70px;
       overflow:hidden; }
h1, h2, h3, h4 { font-family:var(--font-heading); font-weight:600; }
h1 { font-size:24px; margin-bottom:4px; }
h3 { font-size:16px; margin-bottom:12px; }
a { color:var(--accent-cyan); text-decoration:none; transition:color 0.2s; }
a:hover { color:var(--accent-emerald); }

/* Navbar - floating pill style */
.navbar { position:fixed; top:0; left:0; right:0; z-index:50; padding:12px 16px; }
.navbar-inner { max-width:900px; margin:0 auto; display:flex; align-items:center;
                justify-content:space-between; height:48px; padding:0 20px;
                border-radius:16px; background:rgba(15,21,16,0.85);
                backdrop-filter:blur(24px); border:1px solid var(--glass-border);
                box-shadow:var(--shadow-glass); }
.navbar-brand { font-family:var(--font-heading); font-weight:700; font-size:15px;
                background:linear-gradient(135deg,#059669,#16a34a,#22c55e);
                -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.navbar-links { display:flex; gap:4px; overflow-x:auto; -webkit-overflow-scrolling:touch; }
.navbar-links::-webkit-scrollbar { display:none; }
.navbar-links a { padding:6px 12px; border-radius:10px; font-size:13px; font-weight:500;
                  color:var(--text-secondary); transition:all 0.2s; white-space:nowrap; flex-shrink:0; }
.navbar-links a:hover { color:var(--text-primary); background:var(--glass-bg); }
.navbar-links a.active { color:var(--accent-emerald); background:rgba(5,150,105,0.1); }

/* Mobile menu button */
.mobile-menu-btn { display:none; align-items:center; justify-content:center; background:none;
  border:none; color:var(--text-secondary); cursor:pointer; padding:6px; border-radius:8px;
  transition:all 0.15s; }
.mobile-menu-btn:hover { color:var(--text-primary); background:var(--glass-bg); }

/* Mobile slide menu */
.mobile-menu-overlay { display:none; position:fixed; inset:0; z-index:200; background:rgba(0,0,0,0.5);
  backdrop-filter:blur(4px); opacity:0; transition:opacity 0.2s; }
.mobile-menu-overlay.open { display:block; opacity:1; }
.mobile-menu { position:fixed; top:0; right:-280px; width:280px; height:100%; z-index:201;
  background:rgba(15,21,16,0.97); backdrop-filter:blur(24px);
  border-left:1px solid var(--glass-border); padding:24px 20px;
  transition:right 0.25s ease; overflow-y:auto; }
.mobile-menu.open { right:0; }
.mobile-menu-header { display:flex; align-items:center; justify-content:space-between;
  margin-bottom:24px; padding-bottom:16px; border-bottom:1px solid var(--glass-border); }
.mobile-menu-close { background:none; border:none; color:var(--text-muted); cursor:pointer;
  font-size:20px; padding:4px 8px; border-radius:6px; transition:all 0.15s; }
.mobile-menu-close:hover { color:var(--text-primary); background:var(--glass-bg); }
.mobile-menu-user { font-size:13px; color:var(--text-secondary); font-weight:500; }
.mobile-menu-links { display:flex; flex-direction:column; gap:4px; }
.mobile-menu-links a { display:flex; align-items:center; gap:10px; padding:10px 12px;
  border-radius:10px; font-size:14px; font-weight:500; color:var(--text-secondary);
  text-decoration:none; transition:all 0.15s; }
.mobile-menu-links a:hover { color:var(--text-primary); background:var(--glass-bg); }
.mobile-menu-links a svg { flex-shrink:0; }
.mobile-menu-divider { height:1px; background:var(--glass-border); margin:12px 0; }
.mobile-menu-push { display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px; border-radius:10px; font-size:14px; color:var(--text-secondary); }
.mobile-menu-push-toggle { position:relative; width:40px; height:22px; border-radius:11px;
  background:rgba(255,255,255,0.1); border:none; cursor:pointer; transition:background 0.2s; }
.mobile-menu-push-toggle.active { background:var(--accent-emerald); }
.mobile-menu-push-toggle::after { content:''; position:absolute; top:3px; left:3px;
  width:16px; height:16px; border-radius:50%; background:#fff; transition:transform 0.2s; }
.mobile-menu-push-toggle.active::after { transform:translateX(18px); }

/* Notification center */
.notif-bell { position:relative; background:none; border:none; cursor:pointer; padding:6px;
  color:var(--text-muted); transition:color 0.15s; display:inline-flex; align-items:center; }
.notif-bell:hover { color:var(--text-primary); }
.notif-badge { position:absolute; top:2px; right:2px; width:8px; height:8px; border-radius:50%;
  background:var(--accent-emerald); display:none; }
.notif-badge.has-notifs { display:block; }
.notif-center { display:none; position:fixed; top:64px; right:20px; width:360px; max-height:480px;
  z-index:250; background:rgba(15,21,16,0.97); backdrop-filter:blur(24px);
  border:1px solid var(--glass-border); border-radius:14px; box-shadow:0 12px 40px rgba(0,0,0,0.5);
  overflow:hidden; }
.notif-center.open { display:flex; flex-direction:column; }
.notif-center-header { display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px; border-bottom:1px solid var(--glass-border); }
.notif-center-header h4 { font-size:14px; font-weight:600; margin:0; }
.notif-clear-btn { background:none; border:none; color:var(--text-muted); font-size:12px;
  cursor:pointer; transition:color 0.15s; }
.notif-clear-btn:hover { color:var(--accent-red); }
.notif-list { flex:1; overflow-y:auto; max-height:420px; }
.notif-item { display:flex; align-items:flex-start; gap:10px; padding:12px 16px;
  border-bottom:1px solid rgba(255,255,255,0.04); text-decoration:none; color:inherit;
  transition:background 0.15s; cursor:pointer; }
.notif-item:hover { background:var(--glass-hover); }
.notif-item-icon { flex-shrink:0; margin-top:2px; }
.notif-item-body { flex:1; min-width:0; }
.notif-item-title { font-size:13px; font-weight:500; color:var(--text-primary);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.notif-item-text { font-size:12px; color:var(--text-secondary); margin-top:2px;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.notif-item-time { font-size:10px; color:var(--text-muted); margin-top:4px; }
.notif-item-dismiss { flex-shrink:0; background:none; border:none; color:var(--text-muted);
  cursor:pointer; font-size:14px; padding:2px; opacity:0; transition:opacity 0.15s; }
.notif-item:hover .notif-item-dismiss { opacity:1; }
.notif-empty { padding:40px 16px; text-align:center; color:var(--text-muted); font-size:13px; }
.notif-viewed { opacity:0.55; }
.notif-viewed .notif-item-title { font-weight:400; }

/* Glass cards */
.glass-card { background:var(--glass-bg); backdrop-filter:blur(24px);
              border:1px solid var(--glass-border); border-radius:16px; padding:20px;
              transition:all 0.3s ease; }
.glass-card:hover { border-color:rgba(255,255,255,0.15); }

/* Stats row */
.stats { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:20px; }
.stat { background:var(--glass-bg); border:1px solid var(--glass-border); border-radius:12px;
        padding:14px 20px; min-width:130px; transition:all 0.3s; }
.stat:hover { border-color:var(--accent-emerald); box-shadow:0 0 15px rgba(5,150,105,0.15); }
.stat .n { font-size:28px; font-weight:700; font-family:var(--font-heading);
           background:linear-gradient(135deg,#059669,#22c55e);
           -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.stat .label { font-size:11px; color:var(--text-muted); text-transform:uppercase;
               letter-spacing:0.5px; margin-top:2px; }

/* Tables */
table { width:100%; border-collapse:collapse; border-radius:12px; overflow:hidden; }
thead { background:rgba(255,255,255,0.03); }
th { padding:10px 12px; text-align:left; font-size:11px; font-weight:600;
     text-transform:uppercase; letter-spacing:0.5px; color:var(--text-muted);
     border-bottom:1px solid var(--glass-border); position:sticky; top:0;
     background:var(--bg-primary); }
td { padding:10px 12px; font-size:13px; border-bottom:1px solid rgba(255,255,255,0.04);
     white-space:nowrap; max-width:220px; overflow:hidden; text-overflow:ellipsis; }
tr { transition:background 0.15s; }
tr:hover td { background:var(--glass-hover); }
.table-wrap { background:var(--glass-bg); border:1px solid var(--glass-border);
              border-radius:12px; overflow:hidden; }

/* Badges */
.badge { display:inline-flex; align-items:center; padding:3px 10px; border-radius:9999px;
         font-size:11px; font-weight:600; border:1px solid; }
.badge-new { background:rgba(6,182,212,0.1); color:var(--accent-cyan); border-color:rgba(6,182,212,0.2); }
.badge-to_call { background:rgba(251,191,36,0.1); color:var(--accent-gold); border-color:rgba(251,191,36,0.2); }
.badge-called { background:rgba(5,150,105,0.1); color:var(--accent-emerald); border-color:rgba(5,150,105,0.2); }
.badge-callback { background:rgba(139,92,246,0.1); color:var(--accent-purple); border-color:rgba(139,92,246,0.2); }
.badge-interested { background:rgba(22,163,74,0.15); color:var(--accent-green); border-color:rgba(22,163,74,0.25); }
.badge-not_interested { background:rgba(239,68,68,0.1); color:var(--accent-red); border-color:rgba(239,68,68,0.2); }
.badge-not_a_good_fit { background:rgba(239,68,68,0.1); color:var(--accent-red); border-color:rgba(239,68,68,0.2); }
.badge-opted_out { background:rgba(239,68,68,0.15); color:var(--accent-red); border-color:rgba(239,68,68,0.25); }
.badge-closed { background:var(--glass-bg); color:var(--text-muted); border-color:var(--glass-border); }
.badge-do_not_call { background:rgba(239,68,68,0.15); color:var(--accent-red); border-color:rgba(239,68,68,0.25); }
.badge-mobile { background:rgba(5,150,105,0.1); color:var(--accent-emerald); border-color:rgba(5,150,105,0.2); }
.badge-landline { background:var(--glass-bg); color:var(--text-secondary); border-color:var(--glass-border); }
.badge-unknown { background:rgba(251,191,36,0.08); color:var(--accent-gold); border-color:rgba(251,191,36,0.15); }
.badge-mold { background:rgba(34,197,94,0.1); color:#4ade80; border-color:rgba(34,197,94,0.2); }

/* Toolbar / Filters */
.toolbar { display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-bottom:16px; }
.toolbar input, .toolbar select, input.input, select.input {
  padding:8px 14px; border-radius:10px; background:var(--glass-bg);
  border:1px solid var(--glass-border); color:var(--text-primary);
  font-family:var(--font-body); font-size:13px; transition:all 0.2s; }
.toolbar input:focus, .toolbar select:focus, input.input:focus, select.input:focus {
  outline:none; border-color:var(--accent-cyan); box-shadow:0 0 0 3px rgba(6,182,212,0.1); }
.toolbar input[type=text] { width:280px; }
.toolbar input::placeholder, input.input::placeholder { color:var(--text-muted); }

/* Buttons */
.btn { padding:8px 18px; border:1px solid var(--glass-border); border-radius:10px;
       background:var(--glass-bg); color:var(--text-primary); cursor:pointer;
       font-size:13px; font-family:var(--font-body); font-weight:500; transition:all 0.2s; }
.btn:hover { background:var(--glass-hover); border-color:rgba(255,255,255,0.15); }
.btn-primary { background:linear-gradient(135deg,#059669,#16a34a,#22c55e); color:#fff;
               border:none; box-shadow:var(--shadow-glow); }
.btn-primary:hover { box-shadow:0 0 30px rgba(5,150,105,0.5); transform:scale(1.02); }
.btn-primary:active { transform:scale(0.98); }

/* Detail page */
.detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; min-width:0; }
@media (max-width:768px) { .detail-grid { grid-template-columns:1fr; } }
.detail-card { background:var(--glass-bg); backdrop-filter:blur(24px);
               border:1px solid var(--glass-border); border-radius:16px; padding:20px;
               min-width:0; overflow:hidden; max-width:100%; }
.detail-card h3 { margin:0 0 14px; font-size:15px; font-family:var(--font-heading);
                  background:linear-gradient(135deg,#059669,#16a34a);
                  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.field { margin-bottom:8px; }
.field .lbl { font-size:10px; color:var(--text-muted); text-transform:uppercase;
              letter-spacing:0.7px; font-weight:600; }
.field .val { font-size:14px; margin-top:2px; color:var(--text-primary); overflow-wrap:break-word; word-break:break-word; min-width:0; }

/* Sticky action bar */
.action-bar-wrap {
    position:fixed; bottom:16px; left:50%; transform:translateX(-50%); z-index:100;
    max-width:640px; width:calc(100% - 32px);
    display:flex; flex-direction:column; gap:6px;
}
.action-bar {
    display:flex; align-items:center; gap:2px; padding:6px;
    border-radius:14px; background:rgba(15,20,18,0.88);
    backdrop-filter:blur(24px); border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 8px 40px rgba(0,0,0,0.5);
}
.action-bar select {
    background:transparent; border:none; -webkit-appearance:none; appearance:none;
    color:var(--text-primary); padding:8px 12px; font-size:13px; font-weight:500;
    font-family:var(--font-heading); cursor:pointer; min-width:100px;
}
.action-bar select:focus { outline:none; }
.action-bar option { background:#1a1f1c; color:var(--text-primary); }
.ab { display:flex; align-items:center; justify-content:center; gap:6px;
      padding:8px 14px; border-radius:10px; font-size:12px; font-weight:500;
      letter-spacing:0.02em; text-transform:uppercase; font-family:var(--font-heading);
      border:none; cursor:pointer; white-space:nowrap; transition:all 0.15s;
      text-decoration:none; color:rgba(255,255,255,0.7); background:rgba(255,255,255,0.06); }
.ab:hover { background:rgba(255,255,255,0.1); color:#fff; }
.ab svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2;
          stroke-linecap:round; stroke-linejoin:round; }
.ab-primary { background:rgba(5,150,105,0.2); color:var(--accent-emerald); }
.ab-primary:hover { background:rgba(5,150,105,0.35); }
.ab-icon { padding:8px; width:36px; }
.ab-sep { width:1px; height:20px; background:rgba(255,255,255,0.08); margin:0 2px; flex-shrink:0; }

/* Note expand */
.note-expand {
    display:none; align-items:center; gap:8px; padding:8px;
    border-radius:14px; background:rgba(15,20,18,0.92);
    backdrop-filter:blur(24px); border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 8px 40px rgba(0,0,0,0.5);
}
.note-expand.open { display:flex; animation:slideUp 0.15s ease-out; }
@keyframes slideUp { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
@keyframes spin { to { transform:rotate(360deg); } }
.note-input {
    flex:1; padding:8px 12px; border-radius:8px; font-size:13px;
    background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08);
    color:var(--text-primary); font-family:var(--font-body);
}
.note-input:focus { outline:none; border-color:rgba(255,255,255,0.2); }

/* Slide-up action menu */
.ab-menu {
    display:none; position:fixed; inset:0; z-index:200; background:rgba(0,0,0,0.5);
}
.ab-menu.open { display:flex; align-items:flex-end; justify-content:center; }
.ab-menu-panel {
    width:100%; max-width:640px; padding:12px 16px; padding-bottom:calc(12px + env(safe-area-inset-bottom));
    margin:0 16px 8px; border-radius:14px;
    background:rgba(15,20,18,0.95); backdrop-filter:blur(24px);
    border:1px solid rgba(255,255,255,0.08); box-shadow:0 8px 40px rgba(0,0,0,0.5);
    animation:slideUp 0.15s ease-out;
    display:flex; flex-direction:column; gap:2px;
}
.ab-menu-item {
    display:flex; align-items:center; gap:10px; padding:12px 14px; border-radius:10px;
    font-size:14px; font-weight:500; font-family:var(--font-heading);
    color:rgba(255,255,255,0.8); text-decoration:none; transition:background 0.15s;
}
.ab-menu-item:hover { background:rgba(255,255,255,0.08); color:#fff; }
.ab-menu-item svg { width:18px; height:18px; }

/* Mobile/desktop visibility */
.ab-mobile-only { display:none; }

@media (max-width:768px) {
    main { padding:12px 12px; padding-top:76px; padding-bottom:70px; }
    .action-bar-wrap { bottom:8px; width:calc(100% - 16px); }
    .action-bar { gap:1px; padding:4px; }
    .ab { font-size:11px; padding:7px 10px; }
    .ab-icon { padding:7px; width:32px; }
    .detail-card { overflow:hidden; padding:14px; }
    .meta-grid { grid-template-columns:1fr !important; }
    .ads-columns { columns:2 !important; }
    .ab-desktop-only { display:none !important; }
    .ab-mobile-only { display:flex; }
    .navbar-inner { padding:0 12px; gap:4px; }
    .navbar-links a { padding:4px 8px; font-size:12px; }
    .navbar-links a[href="/settings"] { display:none; }
    .nav-user-area { display:none !important; }
    #push-toggle { display:none !important; }
    .mobile-menu-btn { display:flex !important; }
    .notif-center { right:8px; max-width:calc(100vw - 16px); }
    .field .val { overflow-wrap:anywhere; }
    .field .val a { word-break:break-all; }
}

/* Scrape dropdown (action bar) */
.scrape-drop { position:relative; }
.scrape-drop-btn {
    display:flex; align-items:center; gap:5px;
    padding:8px 14px; border-radius:10px; font-size:12px; font-weight:500;
    letter-spacing:0.02em; text-transform:uppercase; font-family:var(--font-heading);
    border:none; cursor:pointer; white-space:nowrap; transition:all 0.15s;
    color:#818cf8; background:rgba(99,102,241,0.12);
}
.scrape-drop-btn:hover { background:rgba(99,102,241,0.22); color:#a5b4fc; }
.scrape-drop-btn.active { background:rgba(99,102,241,0.25); color:#c7d2fe; }
.scrape-drop-menu {
    display:none; position:absolute; bottom:calc(100% + 8px); left:50%; transform:translateX(-50%);
    min-width:280px; max-height:70vh; overflow-y:auto;
    background:rgba(15,20,18,0.96); backdrop-filter:blur(24px);
    border:1px solid rgba(255,255,255,0.1); border-radius:12px;
    box-shadow:0 -8px 40px rgba(0,0,0,0.5); padding:6px;
    animation:slideUp 0.12s ease-out; z-index:300;
}
.scrape-drop-menu.open { display:block; }
.sd-header {
    padding:6px 12px 4px; font-size:10px; font-weight:600; text-transform:uppercase;
    letter-spacing:0.5px; color:var(--text-secondary);
}
.sd-sep { height:1px; background:rgba(255,255,255,0.06); margin:4px 8px; }
.sd-item {
    display:flex; align-items:center; gap:10px; padding:9px 12px; border-radius:8px;
    font-size:13px; color:rgba(255,255,255,0.8); cursor:pointer; transition:background 0.12s;
    border:none; background:none; width:100%; text-align:left; font-family:var(--font-body);
}
.sd-item:hover { background:rgba(255,255,255,0.08); color:#fff; }
.sd-item .sd-sub { font-size:10px; color:var(--text-secondary); margin-left:auto; }
.sd-item.sd-accent { color:#818cf8; font-weight:500; }
.sd-item.sd-google { color:#fbbf24; }
.sd-item.sd-yelp { color:#ef4444; }
.sd-item.sd-verify { color:#22d3ee; }
.sd-sub-menu { display:none; padding-left:8px; }
.sd-sub-menu.open { display:block; }
.sd-sub-toggle { position:relative; }
.sd-status {
    display:none; align-items:center; gap:6px; padding:8px 14px;
    border-radius:10px; font-size:11px; color:#f59e0b; white-space:nowrap;
}
.sd-status.active { display:flex; }
.sd-status .sd-spinner {
    width:12px; height:12px; border:2px solid rgba(245,158,11,0.3);
    border-top-color:#f59e0b; border-radius:50%; animation:spin 0.8s linear infinite;
}
.sd-chk { color:#22c55e; font-size:13px; margin-left:auto; flex-shrink:0; }
.sd-review-count {
    font-size:10px; color:var(--text-secondary); margin-left:auto; font-weight:400;
    font-family:var(--font-body);
}
.sd-toggle {
    display:flex; align-items:center; gap:8px; padding:6px 12px; cursor:pointer;
    font-size:12px; color:rgba(255,255,255,0.7);
}
.sd-toggle input[type="checkbox"] {
    width:14px; height:14px; accent-color:#818cf8; cursor:pointer; margin:0;
}
.sd-toggle span { pointer-events:none; }
.sd-toggle-desc { font-size:10px; color:var(--text-secondary); padding:0 12px 6px; margin-top:-2px; }
@media (max-width:768px) {
    .scrape-drop-menu { min-width:260px; left:auto; right:0; transform:none; }
    .scrape-drop-btn { padding:7px 10px; font-size:11px; }
}

/* Notes */
.notes-list { list-style:none; padding:0; margin:10px 0; }
.notes-list li { padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.04); font-size:13px; }
.notes-list .ts { color:var(--text-muted); font-size:11px; }
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=url], input[type=search], input[type=password],
textarea, select {
    padding:10px 14px; border-radius:10px; background:var(--glass-bg);
    border:1px solid var(--glass-border); color:var(--text-primary);
    font-family:var(--font-body); font-size:13px; transition:all 0.2s;
    -webkit-appearance:none; appearance:none;
}
textarea { width:100%; resize:vertical; }
select { padding-right:28px; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
         background-repeat:no-repeat; background-position:right 10px center; cursor:pointer; }
option { background:var(--card-bg); color:var(--text-primary); }
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=url]:focus, input[type=search]:focus, input[type=password]:focus,
textarea:focus, select:focus { outline:none; border-color:var(--accent-cyan); box-shadow:0 0 0 3px rgba(6,182,212,0.1); }
input[type=checkbox], input[type=radio] {
    -webkit-appearance:none; appearance:none; width:16px; height:16px; border-radius:4px;
    border:1px solid var(--glass-border); background:var(--glass-bg); cursor:pointer;
    vertical-align:middle; position:relative; transition:all 0.15s; flex-shrink:0;
}
input[type=radio] { border-radius:50%; }
input[type=checkbox]:checked, input[type=radio]:checked {
    background:var(--accent-emerald); border-color:var(--accent-emerald);
}
input[type=checkbox]:checked::after {
    content:''; position:absolute; left:4.5px; top:1.5px; width:4px; height:8px;
    border:solid #fff; border-width:0 2px 2px 0; transform:rotate(45deg);
}
input[type=radio]:checked::after {
    content:''; position:absolute; left:4px; top:4px; width:6px; height:6px;
    border-radius:50%; background:#fff;
}
input[type=checkbox]:focus, input[type=radio]:focus {
    outline:none; box-shadow:0 0 0 3px rgba(6,182,212,0.15);
}

/* Social links */
.social-links a { margin-right:12px; padding:4px 10px; border-radius:8px;
                  background:var(--glass-bg); border:1px solid var(--glass-border);
                  font-size:12px; display:inline-block; margin-bottom:4px; transition:all 0.2s; }
.social-links a:hover { border-color:var(--accent-emerald); color:var(--accent-emerald); }

/* Utility */
.muted { color:var(--text-muted); }
.gradient-text { background:linear-gradient(135deg,#059669,#16a34a,#22c55e);
                 -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
