/* ============================================================
   06 CREATORS  (slug: creators)
   "Watch the pros play": one hero card per media owner, stacked.
   Dewier first (glow), Kryptoke below. No rank numbers on creators.
   Frost / ice theme, tokens only. Prefix: .creators-
   ============================================================ */

.creators-eyebrow svg { width: 16px; height: 16px; }

/* ---------- media-owner hero card (one per creator) ---------- */
.creators-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 50px);
  max-width: 960px;
  margin: 0 auto clamp(20px, 3vw, 32px);
  padding: clamp(26px, 3.6vw, 46px);
  border-radius: var(--r-lg);
}

/* avatar column */
.creators-hero-media { position: relative; justify-self: center; }
.creators-hero-ring {
  position: relative;
  width: clamp(120px, 17vw, 178px);
  aspect-ratio: 1 / 1;
  padding: 5px;
  border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: var(--glow);
  transition: transform var(--t) var(--e-out), box-shadow var(--t);
}
.creators-hero:hover .creators-hero-ring { transform: translateY(-2px) scale(1.02); }
.creators-hero-avatar {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: var(--bg-2);
  border: 4px solid var(--bg-1);
}

/* body column */
.creators-hero-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}
.creators-hero-id { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; }
.creators-hero-name {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.05;
}
.creators-hero-handle {
  color: var(--text-mute);
  font-size: 15px; font-weight: 600;
  transition: color var(--t);
}
.creators-hero-handle:hover { color: var(--accent); }

.creators-hero-desc {
  color: var(--text-dim);
  font-size: 14.5px; line-height: 1.62;
  max-width: 48ch;
}

.creators-hero-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 9px;
  margin-top: 2px;
}
.creators-hero-btn { margin-top: 10px; }

/* ---------- subs pill + focus tag chip (shared hero + cards) ---------- */
.creators-subs {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: var(--accent-grad-soft);
  border: 1px solid rgba(180,204,228,.28);
  color: var(--ice-100);
  font-size: 12.5px; font-weight: 700; white-space: nowrap;
}
.creators-subs svg { width: 14px; height: 14px; color: var(--accent); flex: 0 0 auto; }

.creators-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  color: var(--text-dim);
  font-size: 12.5px; font-weight: 600; white-space: nowrap;
}
.creators-tag::before {
  content: '';
  width: 7px; height: 7px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(180,204,228,.16);
}

/* ---------- three supporting creator cards ---------- */
.creators-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
  max-width: 960px;
  margin: 0 auto;
}

.creators-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: clamp(22px, 2.8vw, 34px) clamp(18px, 2.4vw, 28px);
  border-radius: var(--r-lg);
}

.creators-avatar-ring {
  position: relative;
  width: clamp(88px, 11vw, 106px);
  aspect-ratio: 1 / 1;
  padding: 4px;
  border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: var(--glow-soft);
  transition: transform var(--t) var(--e-out), box-shadow var(--t);
}
.creators-avatar {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: var(--bg-2);
  border: 3px solid var(--bg-1);
}
.creators-card.hover:hover .creators-avatar-ring {
  transform: translateY(-1px) scale(1.03);
  box-shadow: var(--glow);
}

.creators-id { display: grid; gap: 4px; }
.creators-name {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
}
.creators-handle {
  color: var(--text-mute);
  font-size: 13.5px; font-weight: 600;
  transition: color var(--t);
}
.creators-handle:hover { color: var(--accent); }

.creators-meta {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px;
  margin-top: 2px;
}

/* watch button pinned to the card bottom for alignment */
.creators-btn { margin-top: auto; }
.creators-card .creators-btn { width: 100%; }
.creators-btn svg { width: 17px; height: 17px; flex: 0 0 auto; }

/* ---------- closing "become a creator" line ---------- */
.creators-more {
  margin: clamp(28px, 4vw, 44px) auto 0;
  text-align: center;
  color: var(--text-mute);
  font-size: 14.5px;
}
.creators-more-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-left: 6px;
  color: var(--accent);
  font-weight: 700;
  transition: color var(--t), gap var(--t);
}
.creators-more-link svg { width: 15px; height: 15px; transition: transform var(--t) var(--e-out); }
.creators-more-link:hover { color: var(--ice-100); }
.creators-more-link:hover svg { transform: translateX(3px); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .creators-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .creators-hero-body { align-items: center; }
  .creators-hero-id { justify-content: center; }
  .creators-hero-desc { max-width: 54ch; }
  .creators-hero-btn { width: 100%; max-width: 320px; }
}

@media (max-width: 720px) {
  .creators-cards { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 380px) {
  .creators-subs, .creators-tag { font-size: 12px; }
  .creators-hero-rank { font-size: 12.5px; padding: 5px 10px; }
}

/* ---------- Creator program: requirements & perks accordion ---------- */
.creators-reqs { margin-top: 26px; }
.creators-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 6px;
}
@media (max-width: 940px) { .creators-tiers { grid-template-columns: 1fr; } }
.creators-tier {
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.02);
  padding: 18px 20px;
}
.creators-tier-h { font-size: 19px; color: var(--text); margin-bottom: 10px; }
.creators-tier-k {
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin: 12px 0 6px;
}
.creators-tier-list { list-style: none; }
.creators-tier-list li {
  position: relative; padding-left: 18px; margin-bottom: 6px;
  font-size: 14px; line-height: 1.55; color: var(--text-dim);
}
.creators-tier-list li::before {
  content: ''; position: absolute; left: 2px; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: .7;
}
.creators-tiers-note {
  margin-top: 18px; text-align: center;
  font-size: 14.5px; font-weight: 600; color: var(--text);
}

/* ---------- Creator program tweaks ---------- */
.creators-reqs-head { justify-content: center; text-align: center; gap: 10px; }
.creators-reqs-head > span { flex: 0 1 auto; }
/* Perks headings line up across tiers via subgrid: the tier grid owns three
   row tracks (heading / requirements / perks) and each tier spans them, so the
   Requirements block is the same height in every column and Perks starts on a
   shared line. */
.creators-tiers { grid-auto-rows: min-content; }
@supports (grid-template-rows: subgrid) {
  .creators-tiers { grid-template-rows: auto auto auto; }
  .creators-tier { display: grid; grid-row: span 3; grid-template-rows: subgrid; align-content: start; }
}
/* Fallback for no-subgrid browsers: flex column, requirements grows. */
@supports not (grid-template-rows: subgrid) {
  .creators-tier { display: flex; flex-direction: column; }
  .creators-tier-group:first-of-type { flex: 1 1 auto; }
}

/* ---------- Owner socials row ---------- */
.creators-socials { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 14px; }
.creators-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid var(--hairline); background: rgba(255,255,255,.03);
  color: var(--text-dim); transition: color .15s, border-color .15s, background .15s;
}
.creators-social:hover { color: var(--text); border-color: var(--hairline-strong); background: rgba(255,255,255,.07); }
.creators-social svg { width: 17px; height: 17px; }

/* ---------- Creator listings (Tier 2 / Tier 3) ---------- */
.creators-cat { margin-top: clamp(40px, 5vw, 64px); }
.creators-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; margin-bottom: 20px;
}
.creators-cat-title { font-size: clamp(22px, 3vw, 30px); }
.creators-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .creators-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .creators-grid { grid-template-columns: 1fr; } }
.creators-listing {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 22px 18px; gap: 8px;
}
.creators-listing-pfp {
  width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--hairline-strong); background: var(--surface-2);
}
.creators-listing-name { font-size: 18px; font-weight: 800; }
.creators-listing-code {
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--accent); background: var(--accent-grad-soft, rgba(180,204,228,.12));
  border: 1px solid var(--hairline); border-radius: 999px; padding: 3px 12px;
}
.creators-listing-socials { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 4px; }
.creators-empty { grid-column: 1 / -1; text-align: center; color: var(--text-mute); font-size: 14px; padding: 20px; }
.creators-addbtn { flex: 0 0 auto; }
