/* ═══ Layout — ElevenLabs (light, clean) ═══ */
main { padding-bottom: calc(var(--player-h) + var(--sp-8)); }

#voicesSection { display: none; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--sp-6);
  height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.navbar-brand { justify-self: start; }
.navbar-actions { justify-self: end; }
.navbar-links { display: flex; gap: var(--sp-2); align-items: center; justify-self: center; }
.navbar-link {
  font-size: 13px; font-weight: 600; color: var(--text-2);
  padding: 6px 14px; border-radius: var(--r-full);
  border: 1px solid var(--border); background: var(--elevated);
  transition: all var(--t-fast, 0.15s) ease;
}
.navbar-link:hover { background: var(--border); color: var(--text); border-color: var(--border-hover); }
.navbar-link.active { background: var(--accent-light); color: var(--accent); border-color: var(--accent); }
@media (max-width: 640px) { .navbar-links { display: none; } }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.navbar-logo {
  width: 32px;
  height: 32px;
  background: var(--black);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.navbar-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: nowrap;
}
.navbar-status {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  color: var(--text-2);
  white-space: nowrap;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.status-dot.offline { background: var(--error); }

/* ── Hero ── */
.hero {
  padding: var(--sp-12) 0 var(--sp-8);
  text-align: center;
}
.hero-content {
  max-width: 640px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  margin-bottom: var(--sp-5);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--sp-4);
}
.hero-title span {
  color: var(--text);
}
.hero-desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: var(--sp-8);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-8);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}
.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── Sections ── */
.section {
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-6);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
  gap: var(--sp-4);
}
.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.section-title span { color: var(--text); }
.section-count {
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--sp-8) 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-brand { font-weight: 600; color: var(--text-2); }
.footer a.footer-link-accent { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 768px) {
  .hero { padding: var(--sp-8) 0 var(--sp-6); }
  .hero-title { font-size: 1.75rem; }
  .hero-stats { gap: var(--sp-5); }
  .section { padding-top: var(--sp-8); }
}
