/* ═══ Layout ═══ */
main { padding-bottom: calc(var(--player-h) + var(--sp-10)); }

#voicesSection { display: none; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 var(--sp-6);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0.85;
  pointer-events: none;
}
.navbar-brand { display: flex; align-items: center; gap: var(--sp-3); }
.navbar-logo {
  width: 32px;
  height: 32px;
  background: var(--gradient);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar-title { font-size: 16px; font-weight: 700; letter-spacing: -0.3px; }
.navbar-subtitle { font-size: 11px; color: var(--text-muted); font-weight: 400; }
.navbar-status {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 12px;
  color: var(--text-2);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.status-dot.offline { background: var(--error); }

.hero {
  padding: var(--sp-16) 0 var(--sp-12);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 10%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-full);
  padding: var(--sp-1) var(--sp-4) var(--sp-1) var(--sp-3);
  font-size: 12px;
  color: var(--text-accent);
  font-weight: 500;
  margin-bottom: var(--sp-5);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: var(--sp-5);
}
.hero-title span {
  background: var(--gradient-text);
  background-size: 200% 200%;
  animation: gradientShift 4s var(--ease) infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}
.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-full);
  font-size: 13px;
}
.hero-stat-value { font-weight: 700; color: var(--text); }
.hero-stat-label { color: var(--text-muted); font-size: 12px; }

.section {
  padding: var(--sp-24) 0 var(--sp-10);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  gap: var(--sp-4);
}
.section-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.section-title span { color: var(--text-accent); }
.section-count { font-size: 13px; color: var(--text-muted); flex-shrink: 0; }

.footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--sp-8) 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-brand { font-weight: 700; color: var(--text-accent); }
.footer a.footer-link-accent { color: var(--text-accent); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 768px) {
  .hero { padding: var(--sp-12) 0 var(--sp-12); }
  .section { padding: var(--sp-16) 0 var(--sp-8); }
  .hero-stats { gap: var(--sp-2); }
}
@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }
  .section { padding: var(--sp-12) 0 var(--sp-6); }
}
