/* ---- SITE NAV ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #111111;
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-search {
  flex: 1;
  display: flex;
  gap: 8px;
}
.nav-search-input {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 14px;
  color: #111111;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.nav-search-input:focus { border-color: #888888; }
.nav-search-input::placeholder { color: #aaaaaa; }
.nav-search-btn {
  padding: 8px 18px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-search-btn:hover { background: #333333; }

/* ---- PERFORMER HERO ---- */
.performer-hero {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 60px 24px 48px;
}
.performer-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.performer-photo-col { flex-shrink: 0; }
.performer-photo {
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
}
.performer-photo--placeholder {
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder-glyph {
  font-size: 64px;
  color: #cccccc;
}
.performer-meta-col { flex: 1; min-width: 0; }
.performer-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.performer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.stat-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: #555555;
}
.stat-label {
  color: #888888;
  margin-right: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.db-link {
  font-size: 13px;
  color: #555555;
  text-decoration: none;
  font-family: var(--font-mono);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.db-link:hover { opacity: 1; }

/* ---- PAYWALL SECTIONS ---- */
.paywall-sections {
  padding: 64px 24px;
  background: #ffffff;
}
.sections-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.paywall-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
}
.paywall-card.just-unlocked {
  border-color: #666666;
  box-shadow: 0 0 30px rgba(0,0,0,0.06);
}
.paywall-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.paywall-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.paywall-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
}
.paywall-card-desc {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.5;
}

/* Locked state */
.paywall-gate {
  display: flex;
  align-items: center;
  gap: 24px;
}
.paywall-blur {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blur-line {
  height: 38px;
  background: var(--border);
  border-radius: 8px;
  opacity: 0.5;
}
.blur-line.short { width: 60%; height: 38px; }
.blur-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--border);
  opacity: 0.5;
}
.similar-blur-grid {
  display: flex;
  gap: 12px;
  align-items: center;
  height: auto;
}

.unlock-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 28px;
  background: #000000;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.unlock-btn:hover { background: #333333; transform: translateY(-1px); }
.unlock-btn:active { transform: translateY(0); }
.unlock-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.unlock-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

/* Unlocked content */
.paywall-content.unlocked { display: flex; flex-direction: column; gap: 12px; }
.platform-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.platform-link:hover { border-color: #888888; }
.platform-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #111111;
}
.platform-arrow { color: #555555; font-size: 1.1rem; }
.no-data-msg { color: #888888; font-size: 0.9rem; font-style: italic; }

/* Similar performers grid */
.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.similar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.similar-card:hover { opacity: 0.7; }
.similar-photo {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: block;
}
.similar-photo--placeholder {
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #cccccc;
}
.similar-name {
  font-size: 13px;
  color: #555555;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
}

/* ---- SEARCH AGAIN ---- */
.search-again {
  padding: 80px 24px;
  background: var(--bg-surface);
  text-align: center;
  border-top: 1px solid var(--border);
}
.search-again-inner { max-width: 560px; margin: 0 auto; }
.search-prompt {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 24px;
}
.search-form { display: flex; gap: 10px; }
.search-input {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 14px 18px;
  color: #111111;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: #888888; }
.search-input::placeholder { color: #aaaaaa; }
.search-submit {
  padding: 14px 28px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.search-submit:hover { background: #333333; }

/* ---- RESPONSIVE ---- */
@media (max-width: 680px) {
  .performer-hero-inner { flex-direction: column; gap: 28px; }
  .performer-photo { width: 140px; height: 180px; }
  .paywall-gate { flex-direction: column; align-items: flex-start; }
  .unlock-btn { width: 100%; align-items: center; flex-direction: row; justify-content: center; gap: 12px; }
  .similar-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-search { display: none; }
  .search-form { flex-direction: column; }
}