/* ============================================================
   Sherlock Project – app.css
   Design system: Dark theme, glassmorphism, Shadcn-inspired
   ============================================================ */

/* ── Navigation ── */
.site-nav {
  position: sticky; top: 0; z-index: 50; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: background .3s, box-shadow .3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 56px;
  position: relative;
}
.nav-brand {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-box {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon { color: #ef4444; font-size: 11px; }
.nav-logo-img { display: block; width: 28px; height: 28px; border-radius: 6px; }
.nav-brand-name { font-weight: 700; font-size: 15px; color: #f5f5f5; letter-spacing: -.01em; }
.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-lnk {
  padding: 6px 12px; font-size: 13px; font-weight: 500; color: #a1a1aa;
  border-radius: 6px; text-decoration: none; transition: color .15s, background .15s;
}
.nav-lnk:hover { color: #f5f5f5 !important; background: rgba(255,255,255,0.06) !important; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-cta { padding: 6px 16px; font-size: 13px; text-decoration: none; }
.nav-cta-icon { font-size: 11px; }
.nav-hamburger {
  display: none; width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: 8px; background: none; border: none; cursor: pointer; color: #a1a1aa;
  font-size: 16px;
}
.nav-mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  border-top: 1px solid rgba(255,255,255,0.07); background: rgba(10,10,10,0.98);
  z-index: 100;
}
.nav-mobile-menu.open { max-height: 400px; }
.nav-mobile-inner { padding: 12px 16px; display: flex; flex-direction: column; gap: 2px; }
.mob-lnk {
  padding: 10px 12px; font-size: 14px; font-weight: 500; color: #a1a1aa;
  border-radius: 8px; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: color .15s, background .15s;
}
.mob-lnk:hover { color: #f5f5f5 !important; background: rgba(255,255,255,0.06) !important; }
.mob-icon { width: 14px; color: #ef4444; font-size: 11px; flex-shrink: 0; }
.nav-mobile-cta-wrap { padding: 8px 0 4px; }
.nav-mobile-cta { width: 100%; box-sizing: border-box; justify-content: center; }

@media (max-width: 767px) {
  .nav-desktop { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .nav-cta { display: none !important; }
}
@media (min-width: 768px) {
  .nav-hamburger { display: none !important; }
  .nav-cta { display: inline-flex !important; }
}

/* ── Footer ── */
.site-footer {
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.07); background: #111111;
}
.footer-bg-grid { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 48px 24px 32px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-brand-col { grid-column: auto; }
}
.footer-brand-col { grid-column: 1 / -1; }
@media (min-width: 900px) { .footer-brand-col { grid-column: auto; } }
.footer-brand-link {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; margin-bottom: 12px;
}
.footer-logo-box {
  width: 26px; height: 26px; border-radius: 6px;
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon { color: #ef4444; font-size: 10px; }
.footer-brand-name { font-weight: 700; font-size: 14px; color: #f5f5f5; letter-spacing: -.01em; }
.footer-tagline { font-size: 13px; line-height: 1.65; color: #71717a; max-width: 280px; margin: 0 0 14px; }
.footer-social-row { display: flex; gap: 10px; }
.footer-social-btn {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: #71717a; text-decoration: none; transition: border-color .15s, color .15s;
}
.footer-social-btn:hover { border-color: rgba(239,68,68,0.4); color: #ef4444; }
.footer-social-icon { font-size: 13px; }
.footer-col-hd {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: #52525b; margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.footer-col-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: #ef4444; display: inline-block; flex-shrink: 0;
}
.footer-link-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.footer-lnk {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 4px; font-size: 13px; color: #71717a;
  text-decoration: none; border-radius: 4px; transition: color .15s;
}
.footer-lnk:hover { color: #f5f5f5 !important; }
.footer-arr {
  color: #ef4444; opacity: 0; font-size: 11px;
  transition: opacity .15s, transform .15s; transform: translateX(-4px);
}
.footer-lnk:hover .footer-arr { opacity: 1 !important; transform: translateX(0) !important; }
.footer-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 10px;
}
.footer-copy { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #52525b; margin: 0; }
.footer-wordmark { margin-top: 24px; overflow: hidden; user-select: none; }
.footer-wordmark-text {
  font-size: clamp(2rem,6vw,4.5rem); font-weight: 700; line-height: 1; letter-spacing: -.02em;
  background: linear-gradient(180deg,rgba(245,245,245,0.06) 0%,rgba(245,245,245,0.01) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; margin: 0;
}
.footer-wordmark-dot { color: rgba(239,68,68,0.2); -webkit-text-fill-color: rgba(239,68,68,0.2); }

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-base:        #0a0f1a;
  --bg-surface:     #0f1629;
  --bg-elevated:    #141d35;
  --bg-card:        #161e36;
  --bg-hover:       #1e2a4a;

  --border:         rgba(99, 130, 219, 0.18);
  --border-active:  rgba(99, 130, 219, 0.45);

  --text-primary:   #f0f4ff;
  --text-secondary: #8b9bb4;
  --text-muted:     #4a5568;

  --accent:         #6366f1;
  --accent-hover:   #5558e8;
  --accent-light:   rgba(99, 102, 241, 0.15);
  --accent-glow:    rgba(99, 102, 241, 0.35);

  --success:        #22c55e;
  --success-bg:     rgba(34, 197, 94, 0.1);
  --error:          #ef4444;
  --error-bg:       rgba(239, 68, 68, 0.1);
  --warning:        #f59e0b;
  --warning-bg:     rgba(245, 158, 11, 0.1);
  --info:           #3b82f6;
  --info-bg:        rgba(59, 130, 246, 0.1);

  --radius-sm:      6px;
  --radius:         10px;
  --radius-md:      14px;
  --radius-lg:      18px;
  --radius-xl:      24px;
  --radius-2xl:     32px;
  --radius-full:    9999px;

  --shadow-sm:      0 1px 3px rgba(0,0,0,0.4);
  --shadow:         0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.6);
  --shadow-glow:    0 0 30px var(--accent-glow);

  --nav-height:     64px;
  --transition:     0.2s ease;
  --transition-md:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body.wmn-body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: var(--border-active); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.wmn-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 15, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.wmn-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.wmn-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wmn-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.wmn-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border: 1px solid var(--border-active);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  transition: background var(--transition), box-shadow var(--transition);
}
.wmn-logo:hover .wmn-logo-icon {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-glow);
}
.wmn-logo-icon.small { width: 28px; height: 28px; font-size: 12px; }

.wmn-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.wmn-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.wmn-nav-link {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}
.wmn-nav-link:hover, .wmn-nav-link.active {
  color: var(--text-primary);
  background: var(--accent-light);
}

.wmn-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.wmn-btn-search-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.wmn-btn-search-nav:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

/* Hamburger */
.wmn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.wmn-hamburger:hover { background: var(--bg-elevated); }
.wmn-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform var(--transition-md), opacity var(--transition);
}
.wmn-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wmn-hamburger.open span:nth-child(2) { opacity: 0; }
.wmn-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.wmn-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border);
  background: rgba(10, 15, 26, 0.98);
  gap: 4px;
}
.wmn-mobile-menu.open { display: flex; }

.wmn-mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}
.wmn-mobile-link:hover { color: var(--text-primary); background: var(--bg-elevated); }
.wmn-mobile-link i { width: 18px; text-align: center; color: var(--accent); }

/* ============================================================
   BUTTONS
   ============================================================ */
.wmn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.wmn-btn-primary {
  background: var(--accent);
  color: white;
}
.wmn-btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}
.wmn-btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-active);
}
.wmn-btn-outline:hover {
  background: var(--accent-light);
  border-color: var(--accent);
}
.wmn-btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.wmn-btn-ghost:hover { background: var(--bg-elevated); color: var(--text-primary); }

.wmn-btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
}
.wmn-btn-sm {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: var(--radius-sm);
}
.wmn-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================================
   CARDS
   ============================================================ */
.wmn-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.wmn-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow);
}
.wmn-card-glass {
  background: rgba(20, 29, 53, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ============================================================
   BADGES
   ============================================================ */
.wmn-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.wmn-badge-found {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.wmn-badge-notfound {
  background: rgba(148, 163, 184, 0.08);
  color: var(--text-muted);
  border: 1px solid rgba(148, 163, 184, 0.15);
}
.wmn-badge-category {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(99, 102, 241, 0.25);
}
.wmn-badge-error {
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ============================================================
   SEARCH BOX (shared)
   ============================================================ */
.wmn-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.wmn-search-input {
  width: 100%;
  height: 56px;
  padding: 0 160px 0 52px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  font-size: 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.wmn-search-input::placeholder { color: var(--text-muted); }
.wmn-search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  background: var(--bg-card);
}
.wmn-search-icon {
  position: absolute;
  left: 18px;
  color: var(--text-muted);
  font-size: 18px;
  pointer-events: none;
}
.wmn-search-btn {
  position: absolute;
  right: 6px;
  height: 44px;
  padding: 0 22px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wmn-search-btn:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

/* ============================================================
   SKELETON LOADING
   ============================================================ */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.wmn-skeleton {
  background: linear-gradient(90deg, var(--bg-elevated) 25%, var(--bg-hover) 50%, var(--bg-elevated) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.6s infinite linear;
  border-radius: var(--radius);
}
.wmn-skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wmn-skeleton-avatar { width: 40px; height: 40px; border-radius: var(--radius); flex-shrink: 0; }
.wmn-skeleton-line { height: 12px; }
.wmn-skeleton-line.short { width: 40%; }
.wmn-skeleton-line.medium { width: 65%; }
.wmn-skeleton-line.long { width: 85%; }

/* ============================================================
   RESULT CARD
   ============================================================ */
.wmn-result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
  animation: cardIn 0.3s ease both;
}
.wmn-result-card:hover {
  border-color: var(--border-active);
  background: var(--bg-hover);
  transform: translateX(2px);
  box-shadow: var(--shadow-sm);
}
.wmn-result-card.found {
  border-left: 3px solid var(--success);
}
.wmn-result-card.not-found {
  border-left: 3px solid transparent;
  opacity: 0.72;
}
.wmn-result-card.not-found:hover { opacity: 1; }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wmn-result-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
}
.wmn-result-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.wmn-result-info { flex: 1; min-width: 0; }
.wmn-result-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wmn-result-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.wmn-result-url {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.wmn-result-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.wmn-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.wmn-open-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.wmn-stats-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.wmn-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.wmn-stat-pill:hover { border-color: var(--accent); color: var(--text-primary); }
.wmn-stat-pill.active {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}
.wmn-stat-count {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.wmn-stat-pill.found-tab .wmn-stat-count  { color: var(--success); }
.wmn-stat-pill.error-tab .wmn-stat-count  { color: var(--error); }

/* ============================================================
   CATEGORY SIDEBAR
   ============================================================ */
.wmn-cat-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
}
.wmn-cat-btn:hover { background: var(--bg-elevated); color: var(--text-primary); }
.wmn-cat-btn.active {
  background: var(--accent-light);
  border-color: rgba(99, 102, 241, 0.3);
  color: var(--accent);
}
.wmn-cat-count {
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-elevated);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  min-width: 22px;
  text-align: center;
  transition: all var(--transition);
}
.wmn-cat-btn.active .wmn-cat-count { background: var(--accent); color: white; }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.wmn-progress-wrap {
  height: 4px;
  background: var(--bg-elevated);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.wmn-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #818cf8);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.wmn-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 24px;
}

.wmn-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.wmn-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.wmn-hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  top: -200px; left: -100px;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.wmn-hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #818cf8, transparent 70%);
  bottom: -100px; right: -80px;
  animation: orbFloat 15s ease-in-out infinite alternate-reverse;
}
.wmn-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

.wmn-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  text-align: center;
}

.wmn-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--accent-light);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.wmn-hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.wmn-hero-title .accent { color: var(--accent); }

.wmn-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.wmn-hero-search {
  max-width: 580px;
  margin: 0 auto 32px;
}

.wmn-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.wmn-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wmn-hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
}
.wmn-hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   POPULAR SEARCHES
   ============================================================ */
.wmn-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.wmn-search-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.wmn-search-tag:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.wmn-search-tag i { font-size: 10px; }

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.wmn-section {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.wmn-section-header { text-align: center; margin-bottom: 56px; }
.wmn-section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.wmn-section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.wmn-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.wmn-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-md);
}
.wmn-feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.wmn-feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 16px;
}
.wmn-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.wmn-feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.wmn-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.wmn-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.wmn-faq-item:hover { border-color: var(--border-active); }
.wmn-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  gap: 12px;
}
.wmn-faq-q i { color: var(--accent); transition: transform var(--transition-md); flex-shrink: 0; }
.wmn-faq-item.open .wmn-faq-q i { transform: rotate(45deg); }
.wmn-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.wmn-faq-item.open .wmn-faq-a {
  max-height: 300px;
  padding: 0 20px 18px;
}

/* ============================================================
   SEARCH RESULTS PAGE LAYOUT
   ============================================================ */
.wmn-search-page {
  min-height: calc(100vh - var(--nav-height));
  padding: 0;
}

.wmn-search-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
  backdrop-filter: blur(10px);
}
.wmn-search-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wmn-search-header-top {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wmn-search-header-wrap { flex: 1; min-width: 200px; max-width: 520px; }
.wmn-search-header-wrap .wmn-search-input { height: 44px; font-size: 14px; padding: 0 130px 0 42px; }
.wmn-search-header-wrap .wmn-search-btn { height: 34px; padding: 0 14px; font-size: 13px; }
.wmn-search-header-wrap .wmn-search-icon { font-size: 14px; left: 14px; }

.wmn-search-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.wmn-search-time {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.wmn-search-status {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}
.wmn-search-status .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
.wmn-search-status.done .dot { background: var(--success); animation: none; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.wmn-results-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  min-height: 100%;
}

/* Sidebar */
.wmn-sidebar {
  border-right: 1px solid var(--border);
  padding: 20px 16px;
  position: sticky;
  top: calc(var(--nav-height) + 120px);
  height: fit-content;
  max-height: calc(100vh - var(--nav-height) - 140px);
  overflow-y: auto;
}
.wmn-sidebar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding: 0 4px;
}
.wmn-sidebar-cats { display: flex; flex-direction: column; gap: 3px; }

/* Results area */
.wmn-results-main { padding: 20px 24px; }
.wmn-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 10px;
}

/* Cancel button */
.wmn-cancel-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.wmn-cancel-btn:hover { background: var(--error); color: white; }

/* Empty state */
.wmn-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  color: var(--text-muted);
}
.wmn-empty i { font-size: 48px; margin-bottom: 16px; opacity: 0.4; }
.wmn-empty h3 { font-size: 18px; color: var(--text-secondary); margin-bottom: 8px; }
.wmn-empty p { font-size: 14px; }

/* ============================================================
   TOAST
   ============================================================ */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.wmn-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
  pointer-events: all;
  animation: toastIn 0.3s ease both;
  min-width: 260px;
  max-width: 360px;
}
.wmn-toast.out { animation: toastOut 0.3s ease both; }
.wmn-toast.success { border-left: 3px solid var(--success); }
.wmn-toast.error   { border-left: 3px solid var(--error); }
.wmn-toast.info    { border-left: 3px solid var(--accent); }
@keyframes toastIn  { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(0); }     to { opacity: 0; transform: translateX(30px); } }

/* ============================================================
   FOOTER
   ============================================================ */
.wmn-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.wmn-footer-inner { max-width: 1280px; margin: 0 auto; padding: 60px 24px 40px; }
.wmn-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.wmn-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.wmn-footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.wmn-footer-social { display: flex; gap: 12px; }
.wmn-footer-social a {
  width: 34px; height: 34px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 15px;
  transition: all var(--transition);
}
.wmn-footer-social a:hover { background: var(--accent-light); border-color: var(--accent); color: var(--accent); }
.wmn-footer-heading { font-size: 13px; font-weight: 700; color: var(--text-primary); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
.wmn-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.wmn-footer-links a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.wmn-footer-links a:hover { color: var(--text-primary); }
.wmn-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.wmn-footer-tagline { display: flex; align-items: center; gap: 6px; }
.wmn-footer-tagline i { color: var(--accent); }

/* ============================================================
   PROSE (article content)
   ============================================================ */
.wmn-prose {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  max-width: 760px;
}
.wmn-prose h2 { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); margin: 32px 0 12px; }
.wmn-prose h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin: 24px 0 10px; }
.wmn-prose p  { margin-bottom: 16px; }
.wmn-prose ul, .wmn-prose ol { padding-left: 24px; margin-bottom: 16px; }
.wmn-prose li { margin-bottom: 6px; }
.wmn-prose a  { color: var(--accent); text-decoration: underline; }
.wmn-prose code {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 13px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
}
.wmn-prose pre {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 20px;
}
.wmn-prose pre code { background: none; border: none; padding: 0; }

/* ============================================================
   MOBILE CATEGORY TABS (scroll)
   ============================================================ */
.wmn-cat-tabs-mobile {
  display: none;
  overflow-x: auto;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  scrollbar-width: none;
}
.wmn-cat-tabs-mobile::-webkit-scrollbar { display: none; }
.wmn-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}
.wmn-cat-tab.active {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   BLOG GRID
   ============================================================ */
.wmn-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.wmn-blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-md);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.wmn-blog-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.wmn-blog-img {
  height: 160px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 40px;
  overflow: hidden;
}
.wmn-blog-img img { width: 100%; height: 100%; object-fit: cover; }
.wmn-blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.wmn-blog-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.wmn-blog-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--accent); background: var(--accent-light); padding: 3px 8px; border-radius: var(--radius-full); }
.wmn-blog-date { font-size: 11px; color: var(--text-muted); }
.wmn-blog-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; line-height: 1.4; }
.wmn-blog-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.wmn-blog-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.wmn-blog-read-time { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.wmn-blog-arrow { font-size: 12px; color: var(--accent); transition: transform var(--transition); }
.wmn-blog-card:hover .wmn-blog-arrow { transform: translateX(4px); }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .wmn-results-layout { grid-template-columns: 180px 1fr; }
  .wmn-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .wmn-nav-links, .wmn-btn-search-nav span { display: none; }
  .wmn-hamburger { display: flex; }
  .wmn-btn-search-nav { padding: 8px 12px; }
  .wmn-btn-search-nav i { margin: 0; }

  .wmn-results-layout { grid-template-columns: 1fr; }
  .wmn-sidebar { display: none; }
  .wmn-cat-tabs-mobile { display: flex; }

  .wmn-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .wmn-footer-bottom { flex-direction: column; text-align: center; }

  .wmn-search-input { padding-right: 120px; }
  .wmn-results-grid { grid-template-columns: 1fr; }

  .wmn-hero { padding: 40px 16px; }
  .wmn-hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .wmn-footer-grid { grid-template-columns: 1fr; }
  .wmn-search-header-wrap { max-width: 100%; }
  .wmn-search-header-top { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.wmn-divider { height: 1px; background: var(--border); margin: 32px 0; }
.wmn-text-gradient {
  background: linear-gradient(135deg, var(--accent), #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wmn-glow { text-shadow: 0 0 20px var(--accent-glow); }
.wmn-page-wrap { max-width: 1280px; margin: 0 auto; padding: 40px 24px; }
.wmn-content-wrap { max-width: 800px; margin: 0 auto; padding: 40px 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================
   HOMEPAGE EXTRAS
   ============================================================ */
.wmn-hint-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
  transition: color var(--transition);
}

.wmn-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}
.wmn-section-label i { color: var(--accent); }

.wmn-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* How It Works Steps */
.wmn-how-section { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 0; max-width: 100%; }
.wmn-how-section .wmn-section { max-width: 1000px; }
.wmn-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.wmn-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 0 20px;
}
.wmn-step-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.wmn-step-icon {
  width: 56px; height: 56px;
  background: var(--accent-light);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  margin: 0 auto 16px;
}
.wmn-step-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.wmn-step-desc  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.wmn-step-arrow { display: flex; align-items: center; padding: 0 8px; color: var(--border); font-size: 20px; padding-top: 60px; }

/* CTA Section */
.wmn-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}
.wmn-cta-inner { position: relative; z-index: 1; }
.wmn-cta-orb {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.2), transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.wmn-cta-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--text-primary); margin-bottom: 12px; letter-spacing: -0.8px; }
.wmn-cta-sub   { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 32px; }
.wmn-cta-btn   { display: inline-flex; font-size: 16px; padding: 14px 32px; gap: 10px; }

/* ============================================================
   SEARCH PAGE EXTRAS
   ============================================================ */
.wmn-done-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--success-bg);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-md);
  margin-top: 20px;
  font-size: 13px;
  color: var(--success);
  flex-wrap: wrap;
}
.wmn-done-banner i { font-size: 18px; }
.wmn-done-banner span { flex: 1; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.wmn-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.wmn-breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.wmn-breadcrumb a:hover { color: var(--accent); }
.wmn-breadcrumb i { font-size: 10px; }
.wmn-breadcrumb span { color: var(--text-secondary); }

/* ============================================================
   CONTENT PAGES (about/privacy/terms)
   ============================================================ */
.wmn-page-hero {
  text-align: center;
  padding: 40px 0 48px;
}
.wmn-article-header {
  text-align: center;
  padding: 40px 0 32px;
}

/* ============================================================
   API PAGE
   ============================================================ */
.wmn-api-section { margin-bottom: 48px; }
.wmn-api-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wmn-api-heading i { color: var(--accent); }
.wmn-api-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }

.wmn-code-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 14px;
}
.wmn-code-label {
  padding: 3px 10px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.wmn-code-block code { color: var(--text-primary); }

.wmn-code-block-full {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.wmn-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-hover);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}
.wmn-code-block-full pre {
  padding: 20px 16px;
  overflow-x: auto;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
}
.wmn-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 11px;
  cursor: pointer;
  transition: all var(--transition);
}
.wmn-copy-btn:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent); }

.wmn-api-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.wmn-api-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.3px;
}
.wmn-api-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}
.wmn-api-table tr:last-child td { border-bottom: none; }
.wmn-api-table tr:hover td { background: var(--bg-elevated); }
.wmn-api-table code {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  color: var(--accent);
}

/* ============================================================
   HOMEPAGE v2 — new class-based design system
   ============================================================ */

/* ── Design tokens ── */
:root {
  --c-bg:     #0a0a0a;
  --c-s1:     #111111;
  --c-s2:     #1a1a1a;
  --c-border: rgba(255,255,255,0.08);
  --c-text:   #f5f5f5;
  --c-muted:  #71717a;
  --c-faint:  #52525b;
  --c-red:    #ef4444;
  --c-red-dk: #dc2626;
  --c-green:  #22c55e;
  --c-mono:   'JetBrains Mono', ui-monospace, monospace;
}

/* ── Keyframes ── */
@keyframes hp-glow    { 0%,100%{opacity:.45} 50%{opacity:.65} }
@keyframes hp-blink   { 0%,100%{opacity:1}   50%{opacity:.3}  }
@keyframes hp-fade-up { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ── Layout helpers ── */
.hp-container  { 
    max-width:1200px; 
    margin:0 auto;
   /* padding:0 24px;  */
}
.hp-section    { padding:64px 24px; }
.hp-section-alt{ padding:64px 24px; background:rgba(255,255,255,0.02); }
.hp-section-hd { max-width:560px; margin:0 auto 48px; text-align:center; }

/* ── Grid dot background ── */
.hp-grid-bg {
  position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
  background-size:40px 40px;
}

/* ── Dividers ── */
.hp-divider {
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(239,68,68,0.5) 20%,rgba(239,68,68,0.5) 80%,transparent);
}

/* ── Section label pill ── */
.hp-label {
  display:inline-flex; align-items:center; gap:8px;
  padding:4px 12px; border-radius:9999px;
  border:1px solid rgba(255,255,255,0.1); background:rgba(255,255,255,0.04);
  font-size:11px; font-weight:500; color:var(--c-muted); letter-spacing:.04em;
}
.hp-label-dot { width:6px; height:6px; border-radius:50%; background:var(--c-red); flex-shrink:0; }

/* ── Section headings ── */
.hp-h2 {
  font-size:clamp(1.75rem,4vw,2.25rem); font-weight:700;
  letter-spacing:-.02em; color:var(--c-text); line-height:1.1; margin:0 0 14px;
}
.hp-h2 em { font-style:normal; color:var(--c-red); }
.hp-lead { font-size:15px; line-height:1.65; color:var(--c-muted); margin:0; }

/* ── Primary / outline buttons ── */
.hp-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 24px; font-size:14px; font-weight:600; border-radius:8px;
  border:none; cursor:pointer; text-decoration:none; transition:background .15s;
  font-family:inherit; white-space:nowrap;
}
.hp-btn-primary { background:var(--c-red); color:#fff; }
.hp-btn-primary:hover { background:var(--c-red-dk); }
.hp-btn-outline {
  background:rgba(255,255,255,0.06); color:var(--c-text);
  border:1px solid rgba(255,255,255,0.1);
}
.hp-btn-outline:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.2); }

/* ── Tag pills (popular / recent searches) ── */
.hp-tag {
  display:inline-flex; align-items:center; gap:6px;
  padding:5px 12px; border-radius:9999px;
  border:1px solid rgba(255,255,255,0.1); background:rgba(255,255,255,0.04);
  font-size:12px; color:var(--c-muted); text-decoration:none;
  transition:border-color .15s,color .15s,background .15s;
}
.hp-tag:hover { border-color:rgba(239,68,68,0.4); color:var(--c-text); background:rgba(239,68,68,0.07); }
.hp-tag i { color:var(--c-red); font-size:9px; }

/* ── Generic card ── */
.hp-card {
  background:var(--c-s1); border:1px solid var(--c-border); border-radius:16px;
  padding:24px; transition:border-color .2s;
}
.hp-card:hover { border-color:rgba(239,68,68,0.3); }

/* ── Icon box ── */
.hp-icon-box {
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:10px; border:1px solid rgba(239,68,68,0.25);
  background:rgba(239,68,68,0.1); color:var(--c-red);
}

/* ── Mono badge (feature tags) ── */
.hp-mono-tag {
  display:inline-flex; align-items:center;
  padding:3px 8px; border-radius:6px;
  border:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.05);
  font-family:var(--c-mono); font-size:10.5px; color:var(--c-muted);
}
.hp-mono-tag-red { color:var(--c-red); border-color:rgba(239,68,68,0.3); }

/* ── HERO section ── */
.hp-hero { position:relative; overflow:clip; }
.hp-hero-glow {
  position:absolute; left:50%; top:-8rem; z-index:0;
  width:56rem; height:28rem; transform:translateX(-50%);
  border-radius:50%; filter:blur(80px); pointer-events:none;
  background:radial-gradient(closest-side,rgba(239,68,68,0.35),transparent 70%);
  animation:hp-glow 4s ease-in-out infinite;
}
.hp-hero-inner { max-width:1200px; margin:0 auto; padding:60px 24px 56px; position:relative; z-index:1; }
@media (max-width: 480px) {
  .hp-hero-inner { padding: 32px 16px 40px; }
  .hp-hero-title { font-size: clamp(1.6rem, 8vw, 2.4rem); margin-bottom: 14px; }
  .hp-hero-desc { font-size: 14px; max-width: 100%; }
  .hp-search-btn { padding: 8px 14px; }
  .hp-search-btn-text { display: none; }
}

/* ── Announcement badge ── */
.hp-announce {
  display:inline-flex; align-items:center; gap:8px;
  padding:4px 12px; border-radius:9999px;
  border:1px solid rgba(239,68,68,0.25); background:rgba(239,68,68,0.06);
  text-decoration:none; max-width:100%; transition:border-color .15s;
}
.hp-announce:hover { border-color:rgba(239,68,68,0.45); }
.hp-announce-badge {
  display:inline-flex; align-items:center; gap:4px;
  padding:2px 6px; border-radius:9999px;
  background:rgba(239,68,68,0.15); color:var(--c-red);
  font-size:10px; font-weight:600; flex-shrink:0;
}
.hp-announce-text { font-size:11px; font-weight:500; color:var(--c-muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

/* ── Hero two-column grid ── */
.hp-hero-grid {
  display:grid; grid-template-columns:1fr; gap:40px; align-items:center;
}
@media(min-width:1024px) {
  .hp-hero-grid { grid-template-columns:minmax(0,1.1fr) minmax(0,1fr); gap:48px; }
}

/* ── Hero headline ── */
.hp-hero-title {
  font-size:clamp(2rem,5vw,3.5rem); font-weight:700; line-height:1.08;
  letter-spacing:-.02em; color:var(--c-text); margin:0 0 20px;
}
.hp-hero-title em { font-style:normal; color:var(--c-red); }
.hp-hero-desc { font-size:16px; line-height:1.65; color:var(--c-muted); max-width:480px; margin:0 0 24px; }

/* ── Hero bullet list ── */
.hp-hero-list { list-style:none; margin:0 0 20px; padding:0; display:flex; flex-direction:column; gap:10px; }
.hp-hero-list li { display:flex; align-items:center; gap:10px; font-size:13px; color:var(--c-text); }
.hp-hero-bullet {
  width:22px; height:22px; flex-shrink:0; border-radius:6px;
  background:rgba(239,68,68,0.1); border:1px solid rgba(239,68,68,0.2);
  display:flex; align-items:center; justify-content:center; color:var(--c-red);
}
.hp-hero-bullet i { font-size:9px; }
.hp-hero-note { display:flex; align-items:center; gap:6px; font-size:11px; color:var(--c-faint); }
.hp-hero-note i { color:var(--c-red); font-size:10px; }

/* ── Hero search card ── */
.hp-search-card {
  position:relative; background:var(--c-s1);
  border:1px solid rgba(255,255,255,0.09); border-radius:16px; padding:6px;
}
.hp-search-card-glow {
  position:absolute; inset:-16px; z-index:-1; border-radius:24px;
  filter:blur(40px); pointer-events:none;
  background:radial-gradient(closest-side,rgba(239,68,68,0.14),transparent 70%);
}
.hp-search-wrap {
  display:flex; align-items:center;
  border:1px solid rgba(255,255,255,0.1); border-radius:12px;
  background:rgba(255,255,255,0.04); transition:border-color .2s,box-shadow .2s;
  position:relative;
}
.hp-search-wrap:focus-within {
  border-color:rgba(239,68,68,0.5);
  box-shadow:0 0 0 3px rgba(239,68,68,0.12);
}
.hp-search-at { position:absolute; left:14px; color:var(--c-faint); font-size:14px; pointer-events:none; }
.hp-search-clear {
  display:flex; align-items:center; justify-content:center;
  width:26px; height:26px; padding:0; margin:0 2px 0 0;
  color:var(--c-faint); background:none; border:none; cursor:pointer;
  transition:color .15s; flex-shrink:0;
}
.hp-search-clear:hover { color:var(--c-text); }
.hp-search-input {
  flex:1; border:none; background:transparent; color:var(--c-text);
  font-size:15px; padding:14px 14px 14px 40px; outline:none; min-width:0;
  font-family:'Inter',sans-serif;
}
.hp-search-input::placeholder { color:var(--c-faint); }
.hp-search-btn {
  margin:6px; padding:8px 20px; background:var(--c-red); color:#fff;
  border:none; border-radius:8px; font-size:13px; font-weight:600;
  cursor:pointer; display:flex; align-items:center; gap:6px;
  white-space:nowrap; flex-shrink:0; transition:background .15s; font-family:inherit;
}
.hp-search-btn:hover { background:var(--c-red-dk); }
.hp-search-try { display:flex; flex-wrap:wrap; align-items:center; gap:6px; margin-top:10px; }
.hp-search-try-label { font-size:11px; color:var(--c-faint); flex-shrink:0; }
#hp-search-try-list { display:inline-flex; flex-wrap:wrap; align-items:center; gap:10px; }
.hp-search-demo {
  font-size:11px; color:var(--c-muted); background:none; border:none;
  cursor:pointer; padding:0; text-decoration:underline; text-underline-offset:2px;
  font-family:inherit; transition:color .15s; white-space:nowrap;
}
.hp-search-demo:hover { color:var(--c-text); }
.hp-trust { display:flex; flex-wrap:wrap; align-items:center; gap:10px; margin-top:14px; font-size:11px; color:var(--c-faint); }
.hp-trust-badge {
  display:inline-flex; align-items:center; gap:5px;
  padding:3px 8px; border-radius:9999px;
  border:1px solid rgba(255,255,255,0.07); background:rgba(255,255,255,0.03);
}
.hp-trust-badge i { color:var(--c-red); font-size:9px; }

/* ── Stats bar ── */
.hp-stats-grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  border-top:none; border-bottom:none;
}
@media(min-width:640px) {
  .hp-stats-grid { grid-template-columns:repeat(4,1fr); }
}
.hp-stat-cell {
  padding:20px 16px; text-align:center;
  border-right:1px solid rgba(255,255,255,0.07);
}
.hp-stat-cell:last-child { border-right:none; }
.hp-stat-cell:nth-child(n+3) { border-top:1px solid rgba(255,255,255,0.07); }
@media(min-width:640px) {
  .hp-stat-cell:nth-child(n+3) { border-top:none; }
}
.hp-stat-num  { font-size:clamp(1.25rem,3vw,1.5rem); font-weight:700; color:var(--c-text); letter-spacing:-.02em; margin:0 0 4px; }
.hp-stat-lbl  { font-size:10px; text-transform:uppercase; letter-spacing:.1em; color:var(--c-faint); margin:0; }

/* ── Popular/Recent search sections ── */
.hp-search-meta-label {
  display:flex; align-items:center; gap:6px;
  font-size:11px; font-weight:600; text-transform:uppercase;
  letter-spacing:.1em; color:var(--c-faint); margin:0 0 12px;
}
.hp-search-meta-label i { color:var(--c-red); font-size:10px; }
.hp-tag-row { display:flex; flex-wrap:wrap; gap:8px; }

/* ── How-it-works steps ── */
.hp-steps { display:grid; grid-template-columns:1fr; gap:40px; position:relative; }
@media(min-width:768px) {
  .hp-steps { grid-template-columns:repeat(3,1fr); gap:32px; }
  .hp-steps-line-h { display:block !important; }
  .hp-steps-line-v { display:none !important; }
  .hp-step { flex-direction:column !important; gap:0 !important; }
  .hp-step-body { padding-top:24px !important; }
}
.hp-steps-line-h {
  display:none; position:absolute; left:0; right:0; top:28px; height:1px;
  background:linear-gradient(90deg,transparent,rgba(239,68,68,0.45) 12%,rgba(239,68,68,0.45) 88%,transparent);
}
.hp-steps-line-v {
  position:absolute; left:28px; top:0; bottom:0; width:1px;
  background:linear-gradient(180deg,transparent,rgba(239,68,68,0.4) 8%,rgba(239,68,68,0.4) 92%,transparent);
}
.hp-step { display:flex; gap:20px; }
.hp-step-icon-wrap { position:relative; width:56px; height:56px; flex-shrink:0; }
.hp-step-icon {
  position:relative; z-index:1; display:flex; width:56px; height:56px;
  align-items:center; justify-content:center; border-radius:50%;
  border:1px solid rgba(239,68,68,0.3); background:var(--c-bg); color:var(--c-red);
  box-shadow:0 0 0 6px var(--c-bg);
}
.hp-step-icon i { font-size:18px; }
.hp-step-num {
  position:absolute; top:-4px; right:-4px; z-index:2;
  display:inline-flex; width:20px; height:20px;
  align-items:center; justify-content:center; border-radius:50%;
  background:var(--c-red); font-family:var(--c-mono); font-size:9px; font-weight:700; color:#fff;
}
.hp-step-glow {
  position:absolute; inset:-4px; z-index:0; border-radius:50%;
  filter:blur(10px);
  background:radial-gradient(closest-side,rgba(239,68,68,0.3),transparent 70%);
}
.hp-step-body { padding-top:8px; }
.hp-step-title { font-size:15px; font-weight:600; color:var(--c-text); margin:0 0 6px; }
.hp-step-desc  { font-size:13px; line-height:1.6; color:var(--c-muted); margin:0; }

/* ── Features bento grid ── */
.hp-features-grid { display:grid; grid-template-columns:1fr; gap:12px; }
@media(min-width:768px) {
  .hp-features-grid { grid-template-columns:repeat(12,1fr); }
  .hp-feat-large { grid-column:span 7; }
  .hp-feat-sm-5  { grid-column:span 5; }
  .hp-feat-sm-4  { grid-column:span 4; }
}
.hp-feat-large-gradient { background:linear-gradient(135deg,rgba(239,68,68,0.06),var(--c-s1) 60%); }
.hp-feat-glow {
  position:absolute; top:-48px; right:-48px;
  width:192px; height:192px; border-radius:50%;
  filter:blur(48px); opacity:.6; pointer-events:none;
  background:radial-gradient(closest-side,rgba(239,68,68,0.4),transparent);
}
.hp-feat-icon { display:inline-flex; align-items:center; justify-content:center; width:48px; height:48px; border-radius:10px; border:1px solid rgba(239,68,68,0.25); background:rgba(239,68,68,0.1); color:var(--c-red); }
.hp-feat-icon-sm { width:40px; height:40px; }
.hp-feat-title-lg { font-size:17px; font-weight:600; color:var(--c-text); margin:20px 0 6px; }
.hp-feat-title    { font-size:15px; font-weight:600; color:var(--c-text); margin:16px 0 6px; }
.hp-feat-desc-lg  { font-size:14px; line-height:1.65; color:var(--c-muted); margin:0 0 20px; max-width:480px; }
.hp-feat-desc     { font-size:13px; line-height:1.6;  color:var(--c-muted); margin:0 0 16px; }
.hp-feat-desc-sm  { font-size:13px; line-height:1.6;  color:var(--c-muted); margin:0; }
.hp-feat-terminal { display:flex; flex-direction:column; gap:6px; font-family:var(--c-mono); font-size:11px; }
.hp-feat-term-row { display:flex; align-items:center; gap:8px; color:var(--c-muted); }
.hp-term-dot { width:6px; height:6px; border-radius:50%; flex-shrink:0; animation:hp-blink 1.2s ease-in-out infinite; }
.hp-term-dot-green { background:var(--c-green); }
.hp-term-dot-red   { background:var(--c-red);   animation-delay:.8s; }
.hp-term-found     { color:var(--c-green); }
.hp-term-scan      { color:var(--c-red);   }
.hp-feat-filter-row { display:flex; gap:6px; flex-wrap:wrap; }
.hp-filter-tag-found {
  display:inline-flex; align-items:center; gap:5px; padding:4px 10px;
  border-radius:6px; background:rgba(34,197,94,0.1); border:1px solid rgba(34,197,94,0.25);
  font-size:11px; color:var(--c-green); font-weight:500;
}
.hp-filter-tag-neutral {
  display:inline-flex; align-items:center; gap:5px; padding:4px 10px;
  border-radius:6px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
  font-size:11px; color:var(--c-muted); font-weight:500;
}
.hp-api-code {
  display:inline-flex; align-items:center; gap:6px; padding:6px 10px;
  border-radius:6px; border:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.04);
  font-family:var(--c-mono); font-size:11px; color:var(--c-text);
}
.hp-api-method {
  padding:2px 6px; border-radius:4px; background:rgba(239,68,68,0.2);
  font-size:10px; font-weight:700; color:var(--c-red);
}

/* ── Use cases ── */
.hp-uc-grid { display:grid; grid-template-columns:1fr; gap:40px; }
@media(min-width:1024px) {
  .hp-uc-grid { grid-template-columns:minmax(0,18rem) 1fr; gap:40px 64px; }
  .hp-uc-aside { position:sticky; top:80px; align-self:start; }
  .hp-uc-num  { display:block !important; }
}
.hp-uc-aside-title { font-size:clamp(1.75rem,4vw,2.25rem); font-weight:700; letter-spacing:-.02em; color:var(--c-text); margin:0 0 14px; }
.hp-uc-aside-desc  { font-size:14px; line-height:1.65; color:var(--c-muted); margin:0 0 24px; }
.hp-uc-count-row   { display:flex; align-items:center; gap:10px; }
.hp-uc-count-num   { font-family:var(--c-mono); font-size:11px; color:var(--c-faint); }
.hp-uc-count-lbl   { font-size:10px; text-transform:uppercase; letter-spacing:.12em; color:var(--c-faint); }
.hp-uc-list { list-style:none; margin:0; padding:0; border-top:1px solid rgba(255,255,255,0.07); }
.hp-uc-item {
  display:flex; align-items:flex-start; gap:16px;
  padding:20px 0; border-bottom:1px solid rgba(255,255,255,0.07); position:relative;
}
.hp-uc-item:last-child { border-bottom:none; }
.hp-uc-num { display:none; font-family:var(--c-mono); font-size:10px; color:var(--c-faint); padding-top:2px; flex-shrink:0; width:28px; }
.hp-uc-icon {
  width:38px; height:38px; flex-shrink:0; border-radius:8px;
  border:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.03);
  display:flex; align-items:center; justify-content:center; color:var(--c-red);
  transition:border-color .2s,background .2s;
}
.hp-uc-item:hover .hp-uc-icon { border-color:rgba(239,68,68,0.4); background:rgba(239,68,68,0.08); }
.hp-uc-item-title { font-size:14px; font-weight:600; color:var(--c-text); margin:0 0 4px; }
.hp-uc-item-desc  { font-size:13px; line-height:1.6; color:var(--c-muted); margin:0; }

/* ── FAQ ── */
.hp-faq-wrap { max-width:720px; margin:0 auto; border:1px solid rgba(255,255,255,0.08); border-radius:16px; background:var(--c-s1); overflow:hidden; }
.hp-faq-item { border-bottom:1px solid rgba(255,255,255,0.07); }
.hp-faq-item:last-child { border-bottom:none; }
.hp-faq-btn {
  width:100%; text-align:left; padding:18px 20px; background:none; border:none;
  cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-family:inherit;
}
.hp-faq-q   { font-size:14px; font-weight:500; color:var(--c-text); }
.hp-faq-icon { font-size:12px; color:var(--c-faint); flex-shrink:0; transition:transform .25s ease; }
.hp-faq-item.open .hp-faq-icon { transform:rotate(180deg); }
.hp-faq-body { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.hp-faq-body.open { max-height:400px; }
.hp-faq-body p { padding:0 20px 18px; font-size:13px; line-height:1.7; color:var(--c-muted); margin:0; }

/* ── CTA section ── */
.hp-cta-section { position:relative; overflow:hidden; padding:0 24px; }
.hp-cta-inner  { max-width:1200px; margin:0 auto; padding:64px 0; }
.hp-cta-box    { position:relative; }
.hp-cta-glow {
  position:absolute; left:50%; top:50%; z-index:0;
  width:56rem; height:24rem; transform:translate(-50%,-50%);
  border-radius:50%; filter:blur(80px); pointer-events:none;
  background:radial-gradient(closest-side,rgba(239,68,68,0.28),transparent 70%);
}
.hp-cta-content { position:relative; z-index:1; text-align:center; padding:56px 16px; }
.hp-cta-eyebrow { font-family:var(--c-mono); font-size:10px; text-transform:uppercase; letter-spacing:.18em; color:var(--c-red); margin:0 0 14px; }
.hp-cta-title  {
  font-size:clamp(1.75rem,5vw,3rem); font-weight:700; letter-spacing:-.02em;
  color:var(--c-text); line-height:1.1; margin:0 0 16px; max-width:600px; margin-left:auto; margin-right:auto;
}
.hp-cta-title em { font-style:normal; color:var(--c-red); }
.hp-cta-sub    { font-size:15px; line-height:1.65; color:var(--c-muted); max-width:420px; margin:0 auto 32px; }
.hp-cta-btns   { display:flex; flex-direction:column; align-items:stretch; gap:10px; max-width:320px; margin:0 auto; }

/* ── Inline search results overlay (homepage) ── */
.hp-results-overlay {
  display:none; position:fixed; inset:0; z-index:200;
  background:rgba(10,10,10,0.97); backdrop-filter:blur(4px);
  flex-direction:column; overflow:hidden;
}
.hp-results-overlay.open { display:flex; }
.hp-results-header {
  flex-shrink:0; border-bottom:1px solid var(--c-border);
  background:rgba(10,10,10,0.98); padding:12px 20px;
}
.hp-results-header-row1 { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.hp-results-close {
  width:32px; height:32px; border-radius:8px; border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.05); color:var(--c-muted); cursor:pointer;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:background .15s,color .15s; font-family:inherit;
}
.hp-results-close:hover { background:rgba(239,68,68,0.12); color:var(--c-red); border-color:rgba(239,68,68,0.3); }
.hp-results-search-wrap {
  flex:1; min-width:200px; display:flex; align-items:center;
  border:1px solid rgba(255,255,255,0.1); border-radius:10px; background:rgba(255,255,255,0.04);
}
.hp-results-search-at { padding:0 10px 0 14px; color:var(--c-faint); font-size:13px; flex-shrink:0; }
.hp-results-search-input {
  flex:1; min-width:0; border:none; background:transparent; color:var(--c-text);
  font-size:14px; padding:10px 8px; outline:none; font-family:inherit;
}
.hp-results-search-input::placeholder { color:var(--c-faint); }
.hp-results-search-btn {
  margin:5px; padding:7px 16px; background:var(--c-red); color:#fff;
  border:none; border-radius:7px; font-size:12px; font-weight:600;
  cursor:pointer; display:inline-flex; align-items:center; gap:5px;
  white-space:nowrap; flex-shrink:0; transition:background .15s; font-family:inherit;
}
.hp-results-search-btn:hover { background:var(--c-red-dk); }
.hp-results-status-row { display:flex; align-items:center; gap:8px; flex-shrink:0; }
.hp-res-status-dot { display:inline-block; width:7px; height:7px; border-radius:50%; }
.hp-res-dot-scanning { background:var(--c-red); animation:hp-blink 1.2s ease-in-out infinite; }
.hp-res-dot-paused   { background:var(--c-amber); }
.hp-res-dot-done     { background:var(--c-green); }
.hp-res-dot-cancelled{ background:var(--c-faint); }
.hp-results-status-text { font-size:12px; color:var(--c-muted); white-space:nowrap; }
.hp-results-elapsed { display:none; font-size:11px; color:var(--c-faint); font-family:var(--c-mono); white-space:nowrap; }
.hp-results-checked { font-size:11px; color:var(--c-faint); font-family:var(--c-mono); white-space:nowrap; }
.hp-results-ctrl-btn {
  padding:5px 12px; font-size:11px; font-weight:600; border-radius:7px;
  cursor:pointer; display:none; align-items:center; gap:5px;
  font-family:inherit; transition:background .15s; white-space:nowrap;
}
.hp-results-pause { color:var(--c-text); background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.1); }
.hp-results-pause:hover { background:rgba(255,255,255,0.12); }
.hp-results-cancel { color:var(--c-red); background:rgba(239,68,68,0.08); border:1px solid rgba(239,68,68,0.2); }
.hp-results-cancel:hover { background:rgba(239,68,68,0.15); }
.hp-results-progress { margin-top:10px; }
.hp-results-progress-track { flex:1; height:3px; border-radius:9999px; background:rgba(255,255,255,0.07); overflow:hidden; }
.hp-results-progress-bar { height:100%; width:0%; background:linear-gradient(90deg,var(--c-red),#f87171); border-radius:9999px; transition:width .35s ease; }
.hp-results-pct { font-size:10px; font-family:var(--c-mono); color:var(--c-faint); width:30px; text-align:right; flex-shrink:0; }
.hp-results-tabs { display:flex; align-items:center; gap:6px; margin-top:10px; }
.hp-results-body {
  flex:1; overflow-y:auto; display:flex; gap:0;
  scrollbar-width:thin; scrollbar-color:rgba(255,255,255,0.1) transparent;
}
.hp-results-sidebar {
  width:180px; flex-shrink:0; border-right:1px solid var(--c-border);
  padding:16px 12px; overflow-y:auto;
}
.hp-results-sidebar-title {
  font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.12em;
  color:var(--c-faint); margin:0 0 10px; padding:0 4px;
  display:flex; align-items:center; gap:6px;
}
.hp-results-sidebar-dot { width:4px; height:4px; border-radius:50%; background:var(--c-red); display:inline-block; }
.hp-results-cats  { display:flex; flex-direction:column; gap:2px; }
.hp-results-main-area { flex:1; min-width:0; padding:16px 20px; }
.hp-res-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:8px; }
.hp-res-done-banner {
  display:none; margin-top:16px; padding:14px 18px;
  background:rgba(34,197,94,0.06); border:1px solid rgba(34,197,94,0.18); border-radius:12px;
  align-items:center; gap:12px; flex-wrap:wrap;
}
.hp-res-done-icon { color:var(--c-green); font-size:16px; flex-shrink:0; }
.hp-res-done-text { font-size:13px; color:#86efac; flex:1; min-width:0; }
@media(max-width:767px) {
  .hp-results-sidebar { display:none; }
  .hp-results-body { flex-direction:column; }
}

/* ============================================================
   HOMEPAGE INLINE RESULTS PANEL  (hp-rp-*)
   ============================================================ */
.hp-results-section {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 0 40px;
}

/* ── Control bar ── */
.hp-rp-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 10px;
  position: sticky;
  top: 56px;
  z-index: 30;
  background: #0d0d0d;
}
@media (max-width: 639px) {
  .hp-rp-bar { gap: 6px; padding: 10px 0 8px; top: 56px; }
  .hp-rp-search { max-width: 100% !important; flex: 1 1 100%; min-width: 0; }
  .hp-rp-status { order: 2; }
  .hp-rp-meta   { order: 3; }
  .hp-rp-ctrl   { order: 4; padding: 5px 9px; font-size: 10px; }
}
.hp-rp-search {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 180px;
  max-width: 420px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  transition: border-color .2s;
}
.hp-rp-search:focus-within {
  border-color: rgba(239,68,68,0.5);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.hp-rp-at { padding: 0 8px 0 12px; color: #52525b; font-size: 13px; flex-shrink: 0; }
.hp-rp-input {
  flex: 1; min-width: 0; border: none; background: transparent;
  color: #f5f5f5; font-size: 14px; padding: 9px 6px; outline: none; font-family: inherit;
}
.hp-rp-input::placeholder { color: #52525b; }
.hp-rp-btn {
  margin: 5px; padding: 6px 14px; background: #ef4444; color: #fff;
  border: none; border-radius: 7px; font-size: 12px; font-weight: 600;
  cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
  flex-shrink: 0; transition: background .15s; font-family: inherit;
}
.hp-rp-btn:hover { background: #dc2626; }
.hp-rp-status { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.hp-rp-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; }
.hp-rp-dot-scanning { background: #ef4444; animation: hp-blink 1.2s ease-in-out infinite; }
.hp-rp-dot-paused   { background: #f59e0b; }
.hp-rp-dot-done     { background: #22c55e; }
.hp-rp-dot-cancelled{ background: #52525b; }
.hp-rp-status-text  { font-size: 12px; color: #71717a; white-space: nowrap; }
.hp-rp-meta { font-size: 11px; color: #52525b; display: flex; align-items: center; gap: 4px; white-space: nowrap; font-family: 'JetBrains Mono', monospace; }
.hp-rp-ctrl {
  padding: 5px 11px; font-size: 11px; font-weight: 600; border-radius: 7px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
  font-family: inherit; transition: background .15s; white-space: nowrap;
}
.hp-rp-ctrl-pause { color: #f5f5f5; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); }
.hp-rp-ctrl-pause:hover { background: rgba(255,255,255,0.12); }
.hp-rp-ctrl-cancel { color: #ef4444; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); }
.hp-rp-ctrl-cancel:hover { background: rgba(239,68,68,0.15); }
.hp-rp-ctrl-export { color: #22c55e; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); }
.hp-rp-ctrl-export:hover { background: rgba(34,197,94,0.15); }
.hp-rp-ctrl-toggle { color: #a1a1aa; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.hp-rp-ctrl-toggle:hover { background: rgba(255,255,255,0.1); color: #f5f5f5; }

/* ── Progress ── */
.hp-rp-progress-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.hp-rp-progress-track { flex: 1; height: 3px; border-radius: 9999px; background: rgba(255,255,255,0.07); overflow: hidden; }
.hp-rp-progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg,#ef4444,#f87171); border-radius: 9999px; transition: width .35s ease; }
.hp-rp-pct { font-size: 10px; font-family: 'JetBrains Mono', monospace; color: #52525b; width: 30px; text-align: right; flex-shrink: 0; }

/* ── Filter tabs ── */
.hp-rp-tabs { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.hp-rp-tab {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px; border-radius: 8px;
  font-size: 12px; font-weight: 500; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04);
  color: #71717a; transition: all .15s; font-family: inherit; white-space: nowrap;
}
.hp-rp-tab:hover { border-color: rgba(255,255,255,0.15); color: #f5f5f5; }
.hp-rp-tab.active { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #f5f5f5; }
.hp-rp-tab-found.active { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.3); color: #22c55e; }
.hp-rp-tab-nf.active { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.25); color: #ef4444; }
.hp-rp-tab-badge {
  font-size: 10px; font-weight: 700; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9999px; background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
}
@media (max-width: 639px) {
  .hp-rp-tab { padding: 5px 10px; font-size: 11px; }
}

/* ── Layout: sidebar + main ── */
.hp-rp-layout { display: grid; grid-template-columns: 160px 1fr; gap: 20px; min-height: 320px; align-items: start; }
@media (max-width: 767px) { .hp-rp-layout { grid-template-columns: minmax(0, 1fr); } }

/* ── Sidebar ── */
.hp-rp-sidebar {
  display: flex; flex-direction: column; gap: 0;
  position: sticky; top: 124px; align-self: start;
  max-height: calc(100vh - 140px); overflow-y: auto;
}
.hp-rp-sidebar::-webkit-scrollbar { width: 4px; }
.hp-rp-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

/* Mobile category toggle */
.hp-rp-cats-toggle {
  display: none;
}
@media (max-width: 767px) {
  .hp-rp-sidebar {
    position: static;
    left: auto; top: auto;
    transform: none;
    width: 100%; min-width: 0; max-height: none;
    overflow: visible;
    display: flex;
    margin-bottom: 12px; padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    z-index: auto;
    box-shadow: none;
  }
  .hp-rp-sidebar.open { display: flex; }
  .hp-rp-cats-toggle { display: none !important; }
  .hp-rp-sidebar-hd { display: none; }
}
.hp-rp-sidebar-hd {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: #52525b; margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.hp-rp-sidebar-dot { width: 4px; height: 4px; border-radius: 50%; background: #ef4444; display: inline-block; }
.hp-rp-cats { display: flex; flex-direction: column; gap: 2px; }
.hp-rp-cat-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 7px 9px; border-radius: 7px; font-size: 12px; font-weight: 500;
  color: #71717a; background: transparent; border: 1px solid transparent;
  cursor: pointer; transition: all .15s; text-align: left; font-family: inherit;
}
.hp-rp-cat-btn:hover { background: rgba(255,255,255,0.05); color: #f5f5f5; }
.hp-rp-cat-btn.active { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.2); color: #ef4444; }
.hp-rp-cat-btn > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hp-rp-cat-count {
  font-size: 10px; font-weight: 700; background: rgba(255,255,255,0.07);
  padding: 1px 6px; border-radius: 9999px; min-width: 20px; text-align: center;
  display: inline-flex; align-items: center; gap: 4px;
}
.hp-rp-cat-btn.active .hp-rp-cat-count { background: #ef4444; color: #fff; }
.hp-rp-cat-found { font-size: 9px; color: #22c55e; font-style: normal; }

@media (max-width: 767px) {
  .hp-rp-sidebar-hd { display: none; }
  .hp-rp-cats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hp-rp-cats::-webkit-scrollbar { display: none; }
  .hp-rp-cat-btn {
    flex: 0 0 auto;
    width: auto;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    border-radius: 9999px;
  }
}

/* ── Results area ── */
.hp-rp-main { min-width: 0; }

/* ── Grid: 3-col desktop, 2-col tablet, 1-col mobile ── */
.hp-rp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 1023px) { .hp-rp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .hp-rp-grid { grid-template-columns: 1fr; gap: 8px; } }

/* ── Skeleton ── */
@keyframes hp-shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.hp-rp-skel-card {
  background: #111; border: 1px solid rgba(255,255,255,0.06); border-radius: 10px;
  padding: 12px; display: flex; align-items: center; gap: 10px;
}
.hp-rp-skel {
  background: linear-gradient(90deg,#1a1a1a 25%,#222 50%,#1a1a1a 75%);
  background-size: 200% 100%;
  animation: hp-shimmer 1.4s infinite linear;
}

/* ── Result card ── */
/* ── Done banner ── */
.hp-rp-done {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 12px 16px;
  background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.18);
  border-radius: 10px; flex-wrap: wrap;
}
.hp-rp-done-close {
  padding: 5px 12px; font-size: 11px; font-weight: 600; border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.06);
  color: #a1a1aa; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 5px; transition: background .15s;
}
.hp-rp-done-close:hover { background: rgba(255,255,255,0.1); color: #f5f5f5; }

/* ── Result card ── */
.hp-rp-card {
  background: #111; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  padding: 14px 16px; display: flex; flex-direction: column; align-items: stretch;
  gap: 10px; transition: border-color .15s, background .15s;
  animation: hp-fade-up .2s ease both;
  min-width: 0; overflow: hidden;
}
.hp-rp-card:hover { border-color: rgba(255,255,255,0.15); background: #161616; }
.hp-rp-card.hp-rp-found { border-left: 3px solid #22c55e; }
.hp-rp-card.hp-rp-nf    { border-left: 3px solid rgba(255,255,255,0.08); opacity: .65; }
.hp-rp-card.hp-rp-nf:hover { opacity: 1; }

/* head: logo + title (truncated) + badge */
/* head: logo LEFT (fixed) — title (flex, truncate) — badge RIGHT (fixed) */
.hp-rp-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  width: 100%;
}
.hp-rp-logo {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 7px;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.hp-rp-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; display: block; }
.hp-rp-card-title {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 100%;
  font-size: 12px;
  font-weight: 700;
  color: #f5f5f5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hp-rp-badge-wrap {
  flex-shrink: 0;
  min-width: 0;
}
.hp-rp-badge-found {
  display: inline-flex; align-items: center; gap: 3px; padding: 3px 8px;
  border-radius: 6px; flex-shrink: 0; background: #22c55e; color: #fff;
  font-size: 10px; font-weight: 700;
}
.hp-rp-badge-nf {
  display: inline-flex; align-items: center; gap: 3px; padding: 3px 8px;
  border-radius: 6px; flex-shrink: 0;
  background: rgba(255,255,255,0.05); color: #52525b;
  font-size: 10px; font-weight: 600; border: 1px solid rgba(255,255,255,0.08);
}

/* URL row — left-aligned, truncate long URLs, never wrap or overflow */
.hp-rp-url-row { min-width: 0; overflow: hidden; width: 100%; display: block; }
.hp-rp-url-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: color .15s;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.hp-rp-url-icon { font-size: 9px; flex-shrink: 0; color: #3b82f6; }
.hp-rp-url-text {
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  color: #3b82f6;
}
.hp-rp-url-link:hover .hp-rp-url-text,
.hp-rp-url-link:hover .hp-rp-url-icon { color: #60a5fa; }
.hp-rp-url-nf .hp-rp-url-icon,
.hp-rp-url-nf .hp-rp-url-text { color: #3f3f46; }
.hp-rp-url-nf:hover .hp-rp-url-icon,
.hp-rp-url-nf:hover .hp-rp-url-text { color: #52525b; }

/* footer: time LEFT — category RIGHT */
.hp-rp-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 8px;
  margin-top: auto;
  box-sizing: border-box;
}
.hp-rp-foot-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #52525b;
  white-space: nowrap;
}
.hp-rp-foot-right {
  margin-left: auto;
}

/* mobile */
@media (max-width: 639px) {
  .hp-rp-card { padding: 11px 12px; gap: 8px; }
  .hp-rp-logo { width: 30px; height: 30px; }
  .hp-rp-card-title { font-size: 11px; }
  .hp-rp-url-text { font-size: 10px; }
  .hp-rp-foot-item { font-size: 10px; }
}

@keyframes hp-fade-up { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
@keyframes hp-blink   { 0%,100%{opacity:1} 50%{opacity:.25} }

/* ── Extracted from header.html ── */
body { background:#0a0a0a; color:#f5f5f5; font-family:'Inter',sans-serif; margin:0; -webkit-font-smoothing:antialiased; }
.grid-bg {
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
  background-size:40px 40px;
}
.divider-red { background:linear-gradient(90deg,transparent,rgba(239,68,68,0.5) 20%,rgba(239,68,68,0.5) 80%,transparent); height:1px; }
@keyframes pulse-dot  { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes glow-pulse { 0%,100%{opacity:.45} 50%{opacity:.65} }
@keyframes fade-up    { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.pulse-dot  { animation:pulse-dot 2s ease-in-out infinite; }
.glow-pulse { animation:glow-pulse 4s ease-in-out infinite; }
.fade-up    { animation:fade-up .6s ease both; }
#mobile-menu { max-height:0; overflow:hidden; transition:max-height .3s ease; }
#mobile-menu.open { max-height:400px; }
.faq-body { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-body.open { max-height:400px; }
.faq-chevron { transition:transform .25s ease; }
.faq-item.open .faq-chevron { transform:rotate(180deg); }
.tag-pill {
  display:inline-flex; align-items:center; gap:6px; padding:5px 12px;
  border-radius:9999px; border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.04); font-size:12px; color:#a1a1aa;
  text-decoration:none; transition:border-color .15s,color .15s,background .15s;
}
.tag-pill:hover { border-color:rgba(239,68,68,0.4); color:#f5f5f5; background:rgba(239,68,68,0.07); }
.btn-primary {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 24px; font-size:14px; font-weight:600; color:#fff; background:#ef4444;
  border:none; border-radius:8px; cursor:pointer; text-decoration:none;
  transition:background .15s; white-space:nowrap;
}
.btn-primary:hover { background:#dc2626; }
.btn-outline {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 24px; font-size:14px; font-weight:600; color:#f5f5f5;
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
  border-radius:8px; cursor:pointer; text-decoration:none;
  transition:background .15s,border-color .15s;
}
.btn-outline:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.2); }
.section-label {
  display:inline-flex; align-items:center; gap:8px; padding:4px 12px;
  border-radius:9999px; border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.04); font-size:11px; font-weight:500;
  color:#a1a1aa; letter-spacing:.04em;
}
.section-label .dot { width:6px; height:6px; border-radius:50%; background:#ef4444; flex-shrink:0; }
.card {
  background:#111111; border:1px solid rgba(255,255,255,0.08);
  border-radius:16px; padding:24px; transition:border-color .2s;
}
.card:hover { border-color:rgba(239,68,68,0.3); }
.icon-box {
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:10px; border:1px solid rgba(239,68,68,0.25);
  background:rgba(239,68,68,0.1); color:#ef4444;
}
.feature-tag {
  display:inline-flex; align-items:center; padding:3px 8px; border-radius:6px;
  border:1px solid rgba(255,255,255,0.08); background:rgba(255,255,255,0.05);
  font-family:'JetBrains Mono',monospace; font-size:10.5px; color:#a1a1aa;
}
.nav-lnk:hover { color:#f5f5f5 !important; background:rgba(255,255,255,0.06) !important; }
.mob-lnk:hover { color:#f5f5f5 !important; background:rgba(255,255,255,0.06) !important; }

/* ── Extracted from footer.html ── */
.footer-lnk:hover { color:#f5f5f5 !important; }
.footer-lnk:hover .footer-arr { opacity:1 !important; transform:translateX(0) !important; }
@media (min-width:640px) {
  footer > div > div:first-of-type { grid-template-columns: 2fr 1fr 1fr 1fr !important; }
  footer > div > div:first-of-type > div:first-child { grid-column: auto !important; }
}

/* ================================================================
   Static pages — blog, article, about, privacy, terms
   ================================================================ */

/* ── Shared page layout ── */
.pg-wrap {
  max-width: 860px; margin: 0 auto; padding: 40px 24px 80px;
}
.pg-wrap-wide {
  max-width: 1100px; margin: 0 auto; padding: 40px 24px 80px;
}

/* ── Breadcrumb ── */
.pg-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #52525b; margin-bottom: 40px; flex-wrap: wrap;
}
.pg-breadcrumb a {
  color: #71717a; text-decoration: none; transition: color .15s;
}
.pg-breadcrumb a:hover { color: #f5f5f5; }
.pg-breadcrumb i { font-size: 9px; color: #3f3f46; }
.pg-breadcrumb span { color: #a1a1aa; }

/* ── Page hero ── */
.pg-hero { text-align: center; padding: 16px 0 48px; }
.pg-hero-icon {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25);
  color: #ef4444; font-size: 22px;
}
.pg-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800;
  color: #f5f5f5; letter-spacing: -.02em; line-height: 1.2; margin: 0 0 12px;
}
.pg-hero-title span {
  background: linear-gradient(135deg, #ef4444, #f97316);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.pg-hero-sub {
  font-size: 15px; color: #71717a; max-width: 520px; margin: 0 auto; line-height: 1.65;
}

/* ── Divider ── */
.pg-divider {
  height: 1px; margin: 40px 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08) 20%,
    rgba(255,255,255,0.08) 80%, transparent);
}

/* ── Prose ── */
.pg-prose { color: #a1a1aa; line-height: 1.75; font-size: 15px; }
.pg-prose h2 {
  font-size: 1.15rem; font-weight: 700; color: #f5f5f5;
  margin: 36px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pg-prose h3 { font-size: 1rem; font-weight: 600; color: #e4e4e7; margin: 24px 0 8px; }
.pg-prose p { margin: 0 0 16px; }
.pg-prose ul, .pg-prose ol { padding-left: 20px; margin: 0 0 16px; }
.pg-prose li { margin-bottom: 6px; }
.pg-prose a { color: #ef4444; text-decoration: none; transition: color .15s; }
.pg-prose a:hover { color: #f87171; text-decoration: underline; }
.pg-prose strong { color: #e4e4e7; font-weight: 600; }
.pg-prose code {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  background: rgba(255,255,255,0.07); padding: 2px 6px; border-radius: 4px; color: #f5f5f5;
}

/* ── Article header ── */
.pg-article-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 20px;
}
.pg-article-cat {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: #ef4444; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2);
  padding: 3px 10px; border-radius: 9999px;
}
.pg-article-date, .pg-article-rt {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: #52525b;
}
.pg-article-rt i { font-size: 10px; }

/* ── Article CTA box ── */
.pg-cta-box {
  background: #111; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 40px 32px; text-align: center;
  transition: border-color .2s;
}
.pg-cta-box:hover { border-color: rgba(239,68,68,0.25); }
.pg-cta-icon {
  width: 52px; height: 52px; border-radius: 12px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2);
  color: #ef4444; font-size: 20px;
}
.pg-cta-title { font-size: 1.2rem; font-weight: 700; color: #f5f5f5; margin: 0 0 8px; }
.pg-cta-sub { font-size: 14px; color: #71717a; margin: 0 0 24px; }

/* ── Back link ── */
.pg-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: #71717a;
  text-decoration: none; padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  background: rgba(255,255,255,0.04); transition: color .15s, border-color .15s, background .15s;
}
.pg-back:hover { color: #f5f5f5; border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.08); }

/* ── Blog grid ── */
.pg-blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .pg-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pg-blog-grid { grid-template-columns: 1fr; } }

/* ── Blog card ── */
.pg-blog-card {
  background: #111; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; overflow: hidden; text-decoration: none;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, background .2s;
}
.pg-blog-card:hover {
  border-color: rgba(239,68,68,0.3); background: #161616;
  transform: translateY(-2px);
}
.pg-blog-thumb {
  position: relative; height: 120px; background: rgba(239,68,68,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(239,68,68,0.4); font-size: 32px;
  flex-shrink: 0; overflow: hidden;
}
.pg-blog-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: left top;
}
.pg-blog-body { padding: 18px 18px 16px; display: flex; flex-direction: column; flex: 1; }
.pg-blog-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap;
}
.pg-blog-cat {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: #ef4444; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2);
  padding: 2px 8px; border-radius: 9999px;
}
.pg-blog-date { font-size: 11px; color: #52525b; }
.pg-blog-title {
  font-size: 14px; font-weight: 700; color: #f5f5f5; line-height: 1.45;
  margin: 0 0 8px; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  line-clamp: 2;
}
.pg-blog-excerpt {
  font-size: 12px; color: #71717a; line-height: 1.6; margin: 0 0 14px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden; flex: 1;
  line-clamp: 3;
}
.pg-blog-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); margin-top: auto;
}
.pg-blog-rt {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: #52525b;
}
.pg-blog-rt i { font-size: 9px; }
.pg-blog-more {
  font-size: 11px; font-weight: 600; color: #ef4444;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .15s;
}
.pg-blog-card:hover .pg-blog-more { gap: 7px; }
@keyframes hp-blink   { 0%,100%{opacity:1} 50%{opacity:.25} }

/* ================================================================
   Contact page
   ================================================================ */
.ct-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .ct-layout { grid-template-columns: 1fr; } }

/* heading block */
.ct-label  { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ef4444; margin: 0 0 12px; }
.ct-title  { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: #f5f5f5; letter-spacing: -.02em; line-height: 1.15; margin: 0 0 16px; }
.ct-desc   { font-size: 14px; color: #71717a; line-height: 1.7; margin: 0 0 32px; max-width: 520px; }
.ct-email-link { color: #f5f5f5; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); transition: border-color .15s, color .15s; }
.ct-email-link:hover { color: #ef4444; border-color: rgba(239,68,68,0.5); }

/* form card */
.ct-form {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 28px 24px;
}
.ct-field-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.ct-field-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .ct-field-row { grid-template-columns: 1fr; } }

.ct-label-field { font-size: 13px; font-weight: 500; color: #e4e4e7; }
.ct-required    { color: #ef4444; }

.ct-input, .ct-select, .ct-textarea {
  width: 100%; box-sizing: border-box;
  background: #0a0a0a; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: #f5f5f5; font-family: inherit;
  font-size: 14px; padding: 10px 14px;
  transition: border-color .15s, box-shadow .15s;
  outline: none; -webkit-appearance: none; appearance: none;
}
.ct-input::placeholder, .ct-textarea::placeholder { color: #3f3f46; }
.ct-input:focus, .ct-select:focus, .ct-textarea:focus {
  border-color: rgba(239,68,68,0.5);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.ct-input.invalid, .ct-select.invalid, .ct-textarea.invalid {
  border-color: rgba(239,68,68,0.7);
}
.ct-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }

.ct-select-wrap { position: relative; }
.ct-select { padding-right: 36px; cursor: pointer; }
.ct-select-icon {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: #52525b; font-size: 11px; pointer-events: none;
}
.ct-select option { background: #111; color: #f5f5f5; }

.ct-char-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 6px;
}
.ct-direct-email { font-size: 12px; color: #52525b; }
.ct-char-count   { font-size: 11px; color: #3f3f46; font-family: 'JetBrains Mono', monospace; }

.ct-form-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06); margin-top: 4px;
}
.ct-disclaimer { font-size: 12px; color: #3f3f46; max-width: 340px; line-height: 1.5; margin: 0; }
.ct-submit     { flex-shrink: 0; }

/* feedback states */
.ct-success, .ct-error { display: none; }
.ct-success.show, .ct-error.show { display: flex; align-items: flex-start; gap: 12px; margin-top: 16px; padding: 14px 16px; border-radius: 10px; }
.ct-success.show { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); color: #22c55e; }
.ct-error.show   { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); color: #f87171; font-size: 14px; }
.ct-success-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ct-success-title { font-weight: 700; font-size: 14px; color: #f5f5f5; margin: 0 0 2px; }
.ct-success-sub   { font-size: 13px; color: #71717a; margin: 0; }

/* right column — info cards */
.ct-right { display: flex; flex-direction: column; gap: 16px; }
.ct-info-card {
  background: #111; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 20px;
  transition: border-color .2s;
}
.ct-info-card:hover { border-color: rgba(255,255,255,0.14); }
.ct-info-card-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.ct-info-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.ct-info-icon--red   { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.25); color: #ef4444; }
.ct-info-icon--muted { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #71717a; }
.ct-info-tag        { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ef4444; margin: 0 0 3px; }
.ct-info-card-title { font-size: 14px; font-weight: 700; color: #f5f5f5; margin: 0; line-height: 1.35; }
.ct-info-body { font-size: 13px; color: #71717a; line-height: 1.65; margin: 0 0 12px; }
.ct-info-list { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.ct-info-list li { font-size: 13px; color: #a1a1aa; display: flex; align-items: center; gap: 8px; }
.ct-li-icon     { color: #ef4444; font-size: 10px; width: 12px; flex-shrink: 0; }
.ct-inline-link { color: #ef4444; text-decoration: none; transition: color .15s; }
.ct-inline-link:hover { color: #f87171; text-decoration: underline; }
.ct-info-action {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: #f5f5f5;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 8px 14px; text-decoration: none;
  transition: background .15s, border-color .15s;
}
.ct-info-action:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }

/* ============================================================
   HOMEPAGE SEARCH TYPE TABS & OSINT PANEL
   ============================================================ */
.hp-search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px 6px 10px;
}
.hp-search-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--c-muted);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.hp-search-tab i { font-size: 10px; }
.hp-search-tab:hover { color: var(--c-text); border-color: rgba(255,255,255,0.15); }
.hp-search-tab.active { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.35); color: var(--c-red); }

.hp-osint-section {
  background: var(--c-s1);
  border: 1px solid rgba(239,68,68,0.6);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(12px);
}
.hp-osint-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.hp-osint-status {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  min-width: 120px;
}
.hp-osint-target {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  font-family: 'JetBrains Mono', monospace;
  word-break: break-all;
}
.hp-osint-body { display: none; }
.hp-osint-body.osint-visible { display: block; }

.hp-osint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 1023px) { .hp-osint-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .hp-osint-grid { grid-template-columns: 1fr; } }

.hp-osint-card {
  background: rgba(24,24,27,0.5);
  border: 1px solid rgba(239,68,68,0.5);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: border-color .15s, background .15s;
}
.hp-osint-card:hover { background: rgba(255,255,255,0.04); border-color: rgba(239,68,68,0.75); }
.hp-osint-logo {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.hp-osint-logo img { width: 100%; height: 100%; object-fit: cover; }
.hp-osint-logo i { color: var(--c-red); font-size: 14px; }
.hp-osint-info { flex: 1; min-width: 0; }
.hp-osint-name { font-size: 14px; font-weight: 600; color: var(--c-text); margin: 0 0 2px; }
.hp-osint-domain { font-size: 12px; color: var(--c-muted); }
.hp-osint-extra { font-size: 11px; color: var(--c-faint); margin-top: 6px; }
.hp-osint-extra div { margin-bottom: 2px; }

.hp-osint-ghunt {
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(24,24,27,0.5); border: 1px solid rgba(239,68,68,0.5); border-radius: 16px; padding: 18px;
  margin-bottom: 16px;
}
.hp-osint-ghunt-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hp-osint-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(239,68,68,0.4); }
.hp-osint-ghunt-meta { flex: 1; min-width: 0; }
.hp-osint-ghunt-name { font-size: 18px; font-weight: 700; color: var(--c-text); margin: 0 0 4px; }
.hp-osint-ghunt-id { font-size: 12px; color: var(--c-muted); font-family: 'JetBrains Mono', monospace; }
.hp-osint-services { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.hp-osint-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 9999px; font-size: 11px; font-weight: 600;
  background: rgba(99,102,241,0.12); color: var(--c-accent); border: 1px solid rgba(99,102,241,0.25);
}
.hp-osint-pill.green { background: rgba(34,197,94,0.1); color: var(--c-green); border-color: rgba(34,197,94,0.25); }
.hp-osint-pill.blue { background: rgba(59,130,246,0.1); color: #60a5fa; border-color: rgba(59,130,246,0.25); }

.hp-osint-domain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 767px) { .hp-osint-domain-grid { grid-template-columns: 1fr; } }
.hp-osint-domain-block {
  background: rgba(24,24,27,0.5); border: 1px solid rgba(239,68,68,0.5); border-radius: 16px; padding: 16px;
}
.hp-osint-domain-title { font-size: 14px; font-weight: 700; color: var(--c-text); margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.hp-osint-dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; font-size: 12px; }
.hp-osint-dt { color: var(--c-faint); text-align: right; }
.hp-osint-dd { color: var(--c-text); word-break: break-word; }
.hp-osint-remarks { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.hp-osint-remark { font-size: 11px; color: var(--c-faint); margin: 0 0 4px; }

.hp-osint-domain-grid { gap: 20px; }
.hp-osint-domain-block {
  background: rgba(30,30,35,0.55);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.hp-osint-domain-block:hover {
  border-color: rgba(239,68,68,0.65);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}
.hp-osint-domain-title i { color: var(--c-red); }
.hp-osint-dt { text-align: left; }

.hp-osint-link-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.hp-osint-link-item {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 8px;
  background: rgba(59,130,246,0.1); color: #60a5fa;
  border: 1px solid rgba(59,130,246,0.22);
  font-size: 11px; font-weight: 500;
  text-decoration: none; transition: background .15s, border-color .15s;
}
.hp-osint-link-item:hover { background: rgba(59,130,246,0.18); border-color: rgba(59,130,246,0.35); }
.hp-osint-link-item::before {
  content: '\f0c1'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 9px; opacity: .7;
}
