/* ── APP NAVIGATION ── */
.app-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--purple-mid);
  text-decoration: none;
  flex-shrink: 0;
}

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

.nav-link {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-link:hover { color: var(--text-primary); }

.nav-btn-ghost {
  font-size: 14px;
  color: var(--text-secondary);
  background: none;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-family: inherit;
  border-radius: 4px;
  transition: color 0.2s;
}
.nav-btn-ghost:hover { color: var(--text-primary); }

.nav-btn-primary {
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--purple-dim);
  padding: 6px 16px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-btn-primary:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--purple-glow);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link:hover, .nav-mobile-link.neon { color: var(--purple-mid); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--purple-dim);
  padding: 10px 24px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: rgba(139, 92, 246, 0.22);
  border-color: var(--purple-glow);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.2);
}

.btn-ghost {
  display: inline-block;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  background: none;
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

.btn-full { width: 100%; text-align: center; }

/* ── AUTH PAGES ── */
.auth-page {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
}

.auth-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--purple-mid);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.auth-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.auth-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.auth-switch {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
}

.link-purple {
  color: var(--purple-mid);
  text-decoration: none;
}
.link-purple:hover { color: var(--purple-light); }

/* ── FORMS ── */
.auth-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-input {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus { border-color: var(--purple-dim); }
.form-input::placeholder { color: var(--text-muted); }

.form-select { cursor: pointer; appearance: none; }

.form-textarea { resize: vertical; min-height: 80px; }

.form-hint {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.form-hint-inline {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-mono);
  letter-spacing: 0;
  text-transform: none;
}

.form-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 2px;
  margin-bottom: 4px;
}

.form-divider {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── FORM PAGE (profile/event create) ── */
.form-page {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 24px;
}

.form-card {
  width: 100%;
  max-width: 640px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
}

/* ── FEED PAGE ── */
.feed-page { min-height: calc(100vh - 60px); }

.feed-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
}

.feed-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.feed-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 8px;
}

.feed-body { padding: 36px 0 60px; }

.feed-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-input { max-width: 400px; }

.filter-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}
.cat-pill:hover {
  color: var(--text-secondary);
  border-color: var(--text-muted);
}
.cat-pill.active {
  color: var(--purple-mid);
  border-color: var(--purple-dim);
  background: rgba(139, 92, 246, 0.08);
}

.profile-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

/* ── PROFILE GRID ── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
}

.profile-card {
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.profile-card:hover { background: var(--bg-card-hover); }

.profile-card-pic {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-card);
}

.profile-pic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-pic-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--purple-dim);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  letter-spacing: -2px;
}

.featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.25);
  border: 1px solid var(--purple-dim);
  padding: 3px 8px;
}

.verified-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: var(--purple-glow);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.profile-card-body { padding: 16px 18px 20px; }

.profile-card-category {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--purple-mid);
  margin-bottom: 6px;
}

.profile-card-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.profile-card-handle {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.profile-card-bio {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.profile-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ── EMPTY STATE ── */
.feed-empty {
  text-align: center;
  padding: 80px 24px;
}
.empty-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.empty-sub { color: var(--text-muted); font-size: 0.9rem; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.page-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--purple-mid);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--purple-dim);
  border-radius: 2px;
  transition: all 0.2s;
}
.page-btn:hover { background: rgba(139, 92, 246, 0.1); }

.page-info {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

/* ── PROFILE VIEW PAGE ── */
.profile-view-page { min-height: calc(100vh - 60px); }

.profile-hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}

.profile-hero-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: start;
}

.profile-avatar-wrap { flex-shrink: 0; }

.profile-avatar {
  width: 160px;
  height: 160px;
  border-radius: 2px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.profile-avatar-placeholder {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 700;
  color: var(--purple-dim);
}

.profile-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.profile-category-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--purple-mid);
  border: 1px solid var(--purple-dim);
  padding: 3px 10px;
}

.verified-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #86efac;
  background: rgba(134, 239, 172, 0.1);
  border: 1px solid rgba(134, 239, 172, 0.3);
  padding: 3px 10px;
}

.featured-badge-inline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--purple-dim);
  padding: 3px 10px;
}

.profile-hero-name {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.profile-hero-handle {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.profile-hero-bio {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 16px;
}

.profile-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.profile-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 2px;
  transition: all 0.2s;
}
.social-link:hover {
  color: var(--purple-light);
  border-color: var(--purple-dim);
}
.social-icon { color: var(--purple-mid); }

.profile-owner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-events { padding: 40px 0 60px; }

/* ── EVENTS LIST ── */
.events-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); }

.event-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--bg-secondary);
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.event-row:hover { background: var(--bg-card-hover); }

.event-date-col { text-align: center; }

.event-month {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--purple-mid);
}

.event-day {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.event-year {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.event-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.event-location {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.event-price {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--purple-mid);
  white-space: nowrap;
}

/* ── EVENTS GRID ── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
}

.event-card {
  background: var(--bg-secondary);
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.event-card:hover { background: var(--bg-card-hover); }

.event-card-date { text-align: center; }

.event-card-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--purple-mid);
  margin-bottom: 6px;
}

.event-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.event-card-location {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.event-card-host {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.event-card-price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--purple-mid);
  white-space: nowrap;
}

/* ── EVENT VIEW PAGE ── */
.event-view-page { padding: 48px 0 60px; }

.event-view-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  max-width: 720px;
}

.event-view-header {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 32px 28px;
  border-bottom: 1px solid var(--border);
}

.event-view-date-block {
  text-align: center;
  padding-top: 4px;
}

.event-month-lg {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--purple-mid);
  margin-bottom: 4px;
}

.event-day-lg {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
}

.event-year-lg {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.event-time-lg {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--purple-mid);
  margin-top: 8px;
}

.event-view-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}

.event-view-location {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.event-view-price-row { margin-bottom: 16px; }

.event-price-badge {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 2px;
}
.event-price-badge.free {
  color: #86efac;
  background: rgba(134, 239, 172, 0.1);
  border: 1px solid rgba(134, 239, 172, 0.3);
}
.event-price-badge.paid {
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--purple-dim);
}

.event-host-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.event-host-link:hover { color: var(--purple-mid); }

.event-view-desc { padding: 28px 32px; border-bottom: 1px solid var(--border); }

.event-desc-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  white-space: pre-wrap;
}

.event-view-actions {
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  .auth-card, .form-card { padding: 28px 20px; }

  .form-row { grid-template-columns: 1fr; }

  .profile-hero-inner {
    grid-template-columns: 1fr;
  }
  .profile-avatar, .profile-avatar-placeholder {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .event-view-header { grid-template-columns: 1fr; }
  .event-view-date-block { text-align: left; display: flex; gap: 8px; align-items: baseline; }
  .event-day-lg { font-size: 2.5rem; }

  .feed-title-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .event-row { grid-template-columns: 48px 1fr; }
  .event-price { display: none; }
  .event-card { grid-template-columns: 48px 1fr; }
  .event-card-price { display: none; }
}

/* ── PREMIUM PROFILE GLOW ── */
.profile-card.is-premium {
  box-shadow: 0 0 0 1px var(--purple-glow), 0 0 24px rgba(139, 92, 246, 0.18);
  background: linear-gradient(160deg, var(--bg-secondary), #1a1625);
}

.premium-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 3px 10px;
}

.premium-badge-inline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 3px 10px;
}

/* ── PRICING PAGE ── */
.pricing-page { min-height: calc(100vh - 60px); padding-bottom: 80px; }

.pricing-header {
  padding: 64px 0 48px;
  text-align: center;
}

.pricing-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--purple-mid);
  margin-bottom: 16px;
}

.pricing-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg-secondary);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.pricing-card-featured {
  background: linear-gradient(160deg, var(--bg-secondary), #1a1625);
}

.pricing-card-premium {
  background: linear-gradient(160deg, var(--bg-secondary), #1a1620);
}

.pricing-card-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 20px;
  align-self: flex-start;
}

.pricing-badge-purple {
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--purple-dim);
}

.pricing-badge-green {
  color: #86efac;
  background: rgba(134, 239, 172, 0.1);
  border: 1px solid rgba(134, 239, 172, 0.3);
}

.pricing-badge-orange {
  color: #fb923c;
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.3);
}

.pricing-badge-gold {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.pricing-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--purple-mid);
}

.pricing-card-icon.verified-icon { color: #86efac; }

.pricing-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-light);
  margin-bottom: 12px;
  font-family: var(--font-mono);
  letter-spacing: -1px;
}

.pricing-card-per {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.pricing-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-perks li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 0;
}

.pricing-cta { margin-top: auto; }

.pricing-cta-gold {
  color: #fbbf24 !important;
  border-color: rgba(251, 191, 36, 0.4) !important;
  background: rgba(251, 191, 36, 0.07) !important;
}
.pricing-cta-gold:hover {
  background: rgba(251, 191, 36, 0.14) !important;
  border-color: rgba(251, 191, 36, 0.7) !important;
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.15) !important;
}

.pricing-footer { text-align: center; }
.pricing-footer-text { font-size: 13px; color: var(--text-muted); }

/* ── SUCCESS PAGE ── */
.success-card { text-align: center; }

.success-icon {
  font-size: 2.5rem;
  width: 64px;
  height: 64px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--purple-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--purple-light);
}

.success-icon.error-icon {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ── CREATOR DASHBOARD ── */
.dashboard-features {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  margin-bottom: 48px;
}

.dashboard-feature-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--bg-secondary);
  padding: 16px 20px;
}

.dashboard-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.verified-badge-icon { color: #86efac; font-weight: 700; }
.featured-badge-icon { color: var(--purple-mid); }
.premium-badge-icon  { color: #fbbf24; }

.dashboard-feature-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.dashboard-feature-exp {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.active-status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: #86efac;
  background: rgba(134, 239, 172, 0.1);
  border: 1px solid rgba(134, 239, 172, 0.3);
  padding: 3px 10px;
  border-radius: 2px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.dashboard-upgrade { margin-top: 0; }

.dashboard-upgrade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
}

.dashboard-tier-card {
  background: var(--bg-secondary);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  text-align: center;
}
.dashboard-tier-card:hover { background: var(--bg-card-hover); }

.tier-icon { font-size: 1.5rem; color: var(--purple-mid); }
.tier-icon.verified-icon { color: #86efac; }

.dashboard-tier-premium .tier-icon { color: #fbbf24; }

.tier-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.tier-price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--purple-mid);
}
