/* ══════════════════════════════════════════════════════════ */
/*  HOME — PREMIUM BENTO + TABLE DESIGN                      */
/* ══════════════════════════════════════════════════════════ */

/* ── Heroicon sizing ── */
.n2-hi { width: 24px; height: 24px; }
.n2-hi-sm { width: 16px; height: 16px; }

/* ── Layout ── */
.n2-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

/* ── Hero ── */
.n2-hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  text-align: center;
}
.n2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(168, 85, 247, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.n2-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 158, 11, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 10%, transparent 70%);
  pointer-events: none;
}

.n2-hero-inner {
  position: relative;
  z-index: 1;
}

/* Badge pill */
.n2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px 5px 8px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.18);
  font-size: 11px;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 24px;
}
.n2-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #f59e0b;
}

.n2-h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--text);
}
.n2-h1 .n2-gradient {
  background: linear-gradient(135deg, #f59e0b, #d97706, #b45309);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.n2-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 auto 32px;
  max-width: 500px;
  line-height: 1.6;
}

/* Search bar */
.n2-search {
  position: relative;
  max-width: 520px;
  margin: 0 auto 40px;
}
.n2-search input {
  width: 100%;
  padding: 14px 52px 14px 48px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  outline: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.n2-search input:focus {
  border-color: #f59e0b;
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.12), 0 0 0 3px rgba(245, 158, 11, 0.08);
}
.n2-search input::placeholder { color: var(--text-faint); }
.n2-search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--text-faint); pointer-events: none;
}
.n2-search-kbd {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-faint);
  font-family: var(--mono, 'SF Mono', monospace);
  pointer-events: none;
}

/* ── Facebook Group Banner ── */
.n2-fb-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.08), rgba(24, 119, 242, 0.15));
  border: 1px solid rgba(24, 119, 242, 0.2);
  margin-bottom: 48px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.n2-fb-banner:hover {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.12), rgba(24, 119, 242, 0.22));
  border-color: rgba(24, 119, 242, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.15);
}
.n2-fb-banner-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.n2-fb-banner-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.n2-fb-banner-text span {
  color: #1877F2;
}
.n2-fb-banner-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.n2-fb-banner:hover .n2-fb-banner-arrow {
  transform: translateX(3px);
}
body.dark-mode .n2-fb-banner {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.06), rgba(24, 119, 242, 0.12));
  border-color: rgba(24, 119, 242, 0.15);
}

/* ── Tool of the Day Spotlight ── */
/* ── Featured Videos ── */
.n2-featured-videos {
  margin-bottom: 48px;
}
.n2-fv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.n2-fv-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.n2-fv-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.n2-fv-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #0f0f0f;
  cursor: pointer;
}
.n2-fv-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.n2-fv-thumb .n2-video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.n2-fv-card:hover .n2-fv-thumb .n2-video-play { background: rgba(0,0,0,0.15); }
.n2-fv-thumb .n2-video-play-btn {
  width: 40px; height: 28px;
  background: rgba(255,0,0,0.85);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.n2-fv-card:hover .n2-fv-thumb .n2-video-play-btn { background: #ff0000; }
.n2-fv-info {
  padding: 10px 12px;
}
.n2-fv-name {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 900px) {
  .n2-fv-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .n2-fv-grid { grid-template-columns: repeat(2, 1fr); }
}

.n2-spotlight {
  margin-bottom: 48px;
}
.n2-spotlight-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d97706;
  margin-bottom: 14px;
}
.n2-spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
}
.n2-spotlight-card:hover {
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}
.n2-spotlight-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.n2-spotlight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.n2-spotlight-logo {
  width: 48px; height: 48px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.n2-spotlight-logo img { width: 100%; height: 100%; object-fit: cover; }
.n2-spotlight-logo span { font-size: 16px; font-weight: 800; color: var(--text-muted); }
.n2-spotlight-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.n2-spotlight-tag {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.n2-spotlight-badges {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.n2-spotlight-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.n2-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 800;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  width: fit-content;
}
.n2-spotlight-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3);
}
.n2-spotlight-visual {
  position: relative;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(168, 85, 247, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  overflow: hidden;
}
.n2-spotlight-visual-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 24px;
  text-align: center;
}
.n2-spotlight-visual .n2-vote-lg {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  padding: 16px 32px;
  border-radius: 16px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.2s;
}
body.dark-mode .n2-spotlight-visual .n2-vote-lg {
  background: rgba(40,40,40,0.6);
  border-color: rgba(255,255,255,0.08);
}
.n2-vote-lg:hover {
  transform: scale(1.05);
  border-color: rgba(245, 158, 11, 0.4);
}
.n2-vote-lg svg { color: #d97706; }
.n2-vote-count {
  font-size: 28px; font-weight: 900; color: var(--text);
}
.n2-vote-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ── Bento Featured Grid ── */
.n2-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.n2-section-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.n2-section-link {
  font-size: 13px;
  font-weight: 700;
  color: #d97706;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.n2-section-link:hover { gap: 8px; }

.n2-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.n2-bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.n2-bento-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.n2-bento-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  opacity: 0;
  transition: opacity 0.3s;
}
.n2-bento-card:hover::after { opacity: 1; }

.n2-bento-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.n2-bento-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.n2-bento-logo img { width: 100%; height: 100%; object-fit: cover; }
.n2-bento-logo span { font-size: 14px; font-weight: 800; color: var(--text-muted); }
.n2-bento-rank {
  font-size: 11px;
  font-weight: 900;
  color: #d97706;
  background: rgba(245, 158, 11, 0.08);
  padding: 3px 10px;
  border-radius: 8px;
}
.n2-bento-name {
  font-size: 15px; font-weight: 700;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.n2-bento-tagline {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
  flex: 1;
}
.n2-bento-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.n2-bento-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.n2-bento-votes {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
}
.n2-bento-votes svg { color: #d97706; }

/* ── Category carousel ── */
.n2-categories {
  margin-bottom: 48px;
}
.n2-cat-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.n2-cat-scroll::-webkit-scrollbar { height: 0; }
.n2-cat-card {
  flex-shrink: 0;
  width: 140px;
  padding: 20px 16px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  text-align: center;
  transition: all 0.3s;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.n2-cat-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.03);
  transform: translateY(-2px);
}
.n2-cat-card:hover .n2-cat-icon-wrap {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}
.n2-cat-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  color: var(--text-muted);
  transition: all 0.3s;
}
.n2-cat-icon-wrap .n2-hi { width: 22px; height: 22px; }
.n2-cat-name {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.n2-cat-count {
  font-size: 10px;
  color: var(--text-faint);
  font-weight: 600;
}

/* ── Tabs ── */
.n2-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 20px;
  overflow-x: auto;
}
.n2-tab {
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 10px;
  cursor: pointer;
  border: none;
  background: none;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  position: relative;
}
.n2-tab:hover { color: var(--text); background: var(--bg); }
.n2-tab.active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

/* ── Category filter pills ── */
.n2-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.n2-filters::-webkit-scrollbar { height: 0; }
.n2-filter {
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.n2-filter .n2-hi { width: 14px; height: 14px; }
.n2-filter:hover, .n2-filter.active {
  border-color: #f59e0b;
  color: #d97706;
  background: rgba(245, 158, 11, 0.05);
}

/* ── Enhanced Table ── */
.n2-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.n2-table-head {
  display: grid;
  grid-template-columns: 48px 52px 1fr 120px 100px 100px 80px;
  gap: 12px;
  padding: 12px 24px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.n2-row {
  display: grid;
  grid-template-columns: 48px 52px 1fr 120px 100px 100px 80px;
  gap: 12px;
  padding: 14px 24px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
  position: relative;
}
.n2-row:last-child { border-bottom: none; }
.n2-row:hover {
  background: rgba(245, 158, 11, 0.02);
}
.n2-row:hover::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #f59e0b, #d97706);
  border-radius: 0 3px 3px 0;
}

/* Rank */
.n2-rank {
  font-size: 14px;
  font-weight: 900;
  color: var(--text-muted);
  text-align: center;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.n2-row:nth-child(-n+3) .n2-rank {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

/* Logo */
.n2-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.n2-row:hover .n2-logo { border-color: rgba(245, 158, 11, 0.3); }
.n2-logo img { width: 100%; height: 100%; object-fit: cover; }
.n2-logo span { font-size: 14px; font-weight: 800; color: var(--text-muted); }

/* Info */
.n2-info { min-width: 0; }
.n2-name {
  font-size: 14px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: flex; align-items: center; gap: 6px;
}
.n2-new-badge {
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.n2-tagline {
  font-size: 12px; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 2px;
}

/* Pricing badge */
.n2-pricing {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
  text-align: center;
  white-space: nowrap;
}
.n2-pricing.free {
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
}
.n2-pricing.freemium {
  background: rgba(59, 130, 246, 0.08);
  color: #2563eb;
}
.n2-pricing.paid {
  background: rgba(168, 85, 247, 0.08);
  color: #7c3aed;
}

/* Category badge */
.n2-cat-badge {
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  padding: 5px 12px;
  border-radius: 8px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Vote button */
.n2-vote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 0;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  width: 60px;
  justify-self: center;
}
.n2-vote:hover, .n2-vote.upvoted {
  border-color: #f59e0b;
  color: #d97706;
  background: rgba(245, 158, 11, 0.06);
  transform: scale(1.05);
}
.n2-vote:active { transform: scale(0.95); }

/* ── Inline video demo column ── */
.n2-demo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}
.n2-demo-thumb {
  width: 100px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #0f0f0f;
  border: 2px solid var(--border);
  position: relative;
  flex-shrink: 0;
  transition: all 0.25s;
  cursor: pointer;
}
.n2-row:hover .n2-demo-thumb {
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.n2-demo-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.n2-demo-play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: all 0.2s;
}
.n2-demo-thumb:hover .n2-demo-play { background: rgba(0,0,0,0.15); }
.n2-demo-empty {
  width: 100px; height: 56px;
}

.n2-video {
  display: flex;
  align-items: center;
  justify-content: center;
}
.n2-video-thumb {
  width: 100px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: #0f0f0f;
  border: 2px solid var(--border);
  position: relative;
  flex-shrink: 0;
  transition: all 0.25s;
  cursor: pointer;
}
.n2-row:hover .n2-video-thumb {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: scale(1.03);
}
.n2-video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.n2-video-play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: all 0.25s;
}
.n2-video-play:hover { background: rgba(0,0,0,0.15); }

/* ── Yellow circle play icon ── */
.n2-play-circle {
  width: 48px; height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.2s;
}
.n2-play-circle--lg { width: 64px; height: 64px; }
.n2-play-circle--sm { width: 32px; height: 32px; }
.n2-fv-card:hover .n2-play-circle,
.n2-demo-thumb:hover .n2-play-circle,
.n2-spotlight-video:hover .n2-play-circle {
  transform: scale(1.15);
}

/* ── Spotlight video ── */
.n2-spotlight-video {
  width: 100%; max-width: 320px;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: #0f0f0f;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.n2-spotlight-video:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transform: scale(1.02);
}
.n2-spotlight-video img { width: 100%; height: 100%; object-fit: cover; display: block; }
.n2-spotlight-video .n2-video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: all 0.25s;
}
.n2-spotlight-video:hover .n2-video-play { background: rgba(0,0,0,0.15); }

/* ── Ad row ── */
.n2-promo-row {
  display: grid;
  grid-template-columns: 48px 52px 1fr 120px 100px 100px 80px;
  gap: 12px;
  padding: 14px 24px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.03), transparent);
}
.n2-promo-row:hover { background: linear-gradient(90deg, rgba(245, 158, 11, 0.06), rgba(245, 158, 11, 0.02)); }
.n2-ad-label {
  font-size: 8px; font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d97706;
  background: rgba(245, 158, 11, 0.12);
  padding: 3px 8px;
  border-radius: 5px;
  text-align: center;
}

/* ── Pagination ── */
.n2-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.n2-pagination button {
  font-size: 12px; font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.n2-pagination button:hover:not(:disabled) {
  border-color: rgba(245, 158, 11, 0.4);
  color: #d97706;
  background: rgba(245, 158, 11, 0.05);
}
.n2-pagination button.active {
  background: #d97706;
  border-color: #d97706;
  color: #fff;
}
.n2-pagination button:disabled {
  opacity: 0.4; cursor: default;
}
.n2-pagination .n2-page-info {
  font-size: 11px; color: var(--text-faint); font-weight: 600;
  margin: 0 8px;
}

/* ── Community Section ── */
.n2-community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.n2-comm-card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.n2-comm-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.n2-comm-card.fb {
  border-left: 4px solid #1877f2;
}
.n2-comm-card.fb:hover { border-color: rgba(24, 119, 242, 0.4); border-left-color: #1877f2; }
.n2-comm-card.newsletter {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.04), rgba(168, 85, 247, 0.03));
  border-left: 4px solid #f59e0b;
}
.n2-comm-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.n2-comm-icon.fb { background: #1877f2; }
.n2-comm-icon.nl { background: linear-gradient(135deg, #f59e0b, #d97706); }
.n2-comm-title {
  font-size: 16px; font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.n2-comm-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.n2-comm-stats {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); font-weight: 600;
  margin-bottom: 16px;
}
.n2-comm-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
}
.n2-comm-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.n2-comm-btn.fb-btn { background: #1877f2; color: #fff; }
.n2-comm-btn.fb-btn:hover { background: #1565c0; }
.n2-comm-btn.nl-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1a1a1a;
}
.n2-comm-btn.nl-btn:hover {
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.n2-nl-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.n2-nl-input:focus { border-color: #f59e0b; }

/* ── CTA ── */
.n2-cta {
  text-align: center;
  padding: 56px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(168, 85, 247, 0.03));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.n2-cta::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.06);
  filter: blur(60px);
  top: -60px; right: -40px;
  pointer-events: none;
}
.n2-cta-h {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  position: relative;
}
.n2-cta-h span { color: #d97706; }
.n2-cta-p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 auto 28px;
  max-width: 420px;
  line-height: 1.6;
  position: relative;
}
.n2-cta-btns {
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.n2-cta-btns .btn-submit {
  padding: 12px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.n2-cta-btns .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}
.n2-cta-btns .btn-plans {
  padding: 12px 28px;
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.n2-cta-btns .btn-plans:hover {
  border-color: var(--text-muted);
  background: var(--bg);
}



/* ── Responsive ── */
@media (max-width: 900px) {
  .n2-spotlight-card { grid-template-columns: 1fr; }
  .n2-spotlight-visual { min-height: 160px; }
  .n2-bento { grid-template-columns: repeat(2, 1fr); }
  .n2-community { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .n2-table-head { display: none; }
  .n2-row, .n2-promo-row {
    grid-template-columns: 28px 40px 1fr 60px;
    gap: 8px;
    padding: 12px 16px;
  }
  .n2-pricing { display: none; }
  .n2-cat-badge { display: none; }
  .n2-demo-cell { display: none; }
  .n2-logo { width: 40px; height: 40px; border-radius: 10px; }
  .n2-vote { width: 48px; padding: 6px 0; font-size: 11px; }
  .n2-rank { font-size: 12px; width: 24px; height: 24px; }
  .n2-bento { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .n2-page { padding: 0 14px 60px; }
  .n2-hero { padding: 56px 0 40px; }
}
@media (max-width: 480px) {
  .n2-hero-title { font-size: 26px; }
  .n2-hero-sub { font-size: 14px; }
  .n2-section-head h2 { font-size: 18px; }
  .n2-tabs { gap: 4px; }
  .n2-tab { font-size: 12px; padding: 8px 12px; }
  .n2-row, .n2-promo-row {
    grid-template-columns: 24px 36px 1fr 48px;
    gap: 6px;
    padding: 10px 12px;
  }
  .n2-name { font-size: 13px; }
  .n2-tagline { font-size: 11px; }
  .n2-logo { width: 36px; height: 36px; border-radius: 8px; }
  .n2-rank { font-size: 11px; width: 22px; height: 22px; }
  .n2-vote { width: 44px; font-size: 10px; }
  .n2-bento-card { padding: 16px; }
  .n2-cta { padding: 32px 16px; }
}
