/* Hustle Buddies — Creator Roster */

.hero-influencers {
  padding: 3.5rem 0 5rem;
  position: relative;
}

.hero-influencers .hero-grid {
  align-items: center;
}

.hero-badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

/* Dual audience tabs */
.audience-switch {
  display: inline-flex;
  padding: 0.3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.audience-switch button {
  padding: 0.55rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.audience-switch button.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 4px 16px var(--gold-glow);
}

/* Showcase */
.influencer-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 420px;
  margin-left: auto;
}

.showcase-card {
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  box-shadow: var(--shadow-soft);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card:nth-child(1) { transform: rotate(-4deg) translateY(8px); }
.showcase-card:nth-child(2) { transform: translateY(-14px); z-index: 2; border-color: rgba(240, 193, 77, 0.4); }
.showcase-card:nth-child(3) { transform: rotate(4deg) translateY(8px); }

.showcase-card .niche-tag {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  background: rgba(8, 17, 31, 0.9);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  text-align: center;
}

.showcase-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  z-index: -1;
}

.showcase-label {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  z-index: 3;
  letter-spacing: 0.04em;
}

/* Model section */
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.model-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.model-card.creators {
  border-color: rgba(240, 193, 77, 0.25);
  background: linear-gradient(160deg, rgba(240, 193, 77, 0.08), transparent);
}

.model-card.brands {
  border-color: rgba(56, 189, 248, 0.2);
  background: linear-gradient(160deg, rgba(56, 189, 248, 0.06), transparent);
}

.model-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.model-card.creators .tag {
  background: rgba(240, 193, 77, 0.15);
  color: var(--gold);
}

.model-card.brands .tag {
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
}

.model-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.model-card > p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.model-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.model-steps li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}

.model-steps li span {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}

.model-card.creators .model-steps li span {
  background: rgba(240, 193, 77, 0.15);
}

/* Filters */
.filter-bar {
  margin-bottom: 2rem;
}

.niche-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.niche-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.niche-btn:hover {
  border-color: rgba(240, 193, 77, 0.35);
  color: var(--white);
}

.niche-btn.active {
  background: linear-gradient(135deg, rgba(240, 193, 77, 0.2), rgba(240, 193, 77, 0.08));
  border-color: var(--gold);
  color: var(--gold);
}

.roster-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  background: rgba(240, 193, 77, 0.06);
  border: 1px solid rgba(240, 193, 77, 0.15);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.roster-note strong {
  color: var(--gold);
}

/* Creator cards */
.influencer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.influencer-card {
  background: linear-gradient(160deg, rgba(22, 42, 66, 0.9), rgba(15, 28, 46, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.influencer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 193, 77, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px var(--gold-glow);
}

.influencer-card.hidden { display: none; }

.influencer-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.influencer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.influencer-card:hover .influencer-photo img {
  transform: scale(1.04);
}

.influencer-niche-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(8, 17, 31, 0.9);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 193, 77, 0.25);
}

.influencer-status {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.influencer-status.available {
  background: rgba(52, 211, 153, 0.15);
  color: var(--success);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.influencer-status.featured {
  background: rgba(240, 193, 77, 0.15);
  color: var(--gold);
  border: 1px solid rgba(240, 193, 77, 0.3);
}

.influencer-followers {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  background: rgba(8, 17, 31, 0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.influencer-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.influencer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.influencer-handle {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.demographic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.demo-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
}

.demo-item .label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}

.demo-item .value {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.platform-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: rgba(240, 193, 77, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(240, 193, 77, 0.15);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.engagement-stat .rate {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--success);
  line-height: 1;
}

.engagement-stat .rate-label {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.pricing-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
  text-align: right;
}

.pricing-note em {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: 0.72rem;
  margin-top: 0.15rem;
}

/* Join roster CTA */
.join-roster {
  margin-top: 3rem;
  padding: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(240, 193, 77, 0.1), rgba(15, 28, 46, 0.9));
  border: 2px dashed rgba(240, 193, 77, 0.35);
  border-radius: var(--radius-lg);
}

.join-roster h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.join-roster p {
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
}

.process-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.why-card {
  padding: 1.75rem;
  background: linear-gradient(145deg, rgba(240, 193, 77, 0.06), transparent);
  border: 1px solid rgba(240, 193, 77, 0.15);
  border-radius: var(--radius);
}

.why-card .icon { font-size: 1.75rem; margin-bottom: 0.85rem; }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Contact split */
.contact-section { padding: 4rem 0 5rem; }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-panel.creators-panel {
  background: linear-gradient(160deg, rgba(240, 193, 77, 0.08), rgba(15, 28, 46, 0.95));
  border-color: rgba(240, 193, 77, 0.2);
}

.contact-panel.brands-panel {
  background: linear-gradient(160deg, rgba(56, 189, 248, 0.05), rgba(15, 28, 46, 0.95));
  border-color: rgba(56, 189, 248, 0.15);
}

.contact-panel h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-panel h2 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-panel > p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.contact-panel .form-card {
  background: var(--white);
  margin: 0;
  box-shadow: var(--shadow-soft);
}

.results-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.result-stat { text-align: center; }

.result-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.result-stat span {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.35rem;
  display: block;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-dim);
  display: none;
}

.empty-state.visible { display: block; }

.roster-loading {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.roster-loading::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: 1rem auto 0;
  border: 3px solid rgba(240, 193, 77, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.roster-error {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  line-height: 1.65;
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .influencer-showcase { display: none; }
  .model-grid,
  .contact-split { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .results-banner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
  .demographic-grid { grid-template-columns: 1fr; }
}

/* Rate calculator + file uploads */
.rate-estimate {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(240, 193, 77, 0.08);
  border: 1px solid rgba(240, 193, 77, 0.25);
  border-radius: var(--radius);
}

.rate-estimate-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.rate-estimate .estimate-lines {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.rate-estimate .estimate-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

.form-group label small {
  font-weight: 400;
  color: var(--text-dim);
}

.upload-row input[type="file"] {
  width: 100%;
  padding: 0.65rem;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-dim);
  font-size: 0.82rem;
}

body.marketing .upload-row input[type="file"] {
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  color: var(--text-dim);
}

body.marketing .file-preview {
  border: 1px solid #e2e8f0;
}

body.marketing .file-preview.wide img {
  background: #f1f5f9;
}

.file-preview {
  margin-top: 0.65rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 140px;
}

.file-preview.wide { max-width: 100%; }

.file-preview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
}

.file-preview.wide img { max-height: 200px; object-fit: contain; background: #0a1424; }