/* ============================================================
   CREATORS PAGE — creators.html

   The hero, trust bar and contact blocks below are the same as
   partners.css: both pages are "Work With Us" siblings and are
   meant to look like a matched pair. If one changes, change both.
============================================================ */

/* ============================================================
   PAGE HERO
============================================================ */
.page-hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(74,184,232,.2) 0%, transparent 60%),
    radial-gradient(circle, rgba(255,255,255,.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 100% 100%, 150px 150px, 220px 220px;
  background-position: center, 20px 30px, 80px 70px;
  padding: 64px 20px 60px; text-align: center; color: #FFF;
}
.page-hero-eyebrow {
  display: inline-block; font-size: .76rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
}
.page-hero-title {
  font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.1; margin-bottom: 16px;
}
.page-hero-sub {
  font-size: .97rem; font-weight: 600; color: rgba(255,255,255,.72);
  max-width: 560px; margin: 0 auto 28px; line-height: 1.65;
}
.page-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================================
   TRUST BAR
============================================================ */
.partner-trust { background: var(--sky); }
.partner-trust-inner {
  display: flex; flex-wrap: wrap; justify-content: center;
}
.ptrust-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 22px 32px; flex: 1 1 160px; text-align: center;
  border-right: 1.5px solid rgba(255,255,255,.3); color: #FFF;
}
.ptrust-item:last-child { border-right: none; }
.ptrust-num   { font-family: var(--font-display); font-size: 2rem; line-height: 1; margin-bottom: 5px; }
.ptrust-label { font-size: .82rem; font-weight: 700; opacity: .88; line-height: 1.35; }
.ptrust-item--text .ptrust-label { font-size: 1rem; }

/* ============================================================
   COLLABORATION TIERS
============================================================ */
.creator-tiers {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 800px) { .creator-tiers { grid-template-columns: 1fr 1fr; gap: 26px; } }
.creator-tier {
  position: relative;
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 34px 28px 28px;
}
/* The paid tier is the one we want larger creators to notice. */
.creator-tier.featured {
  border-color: var(--orange);
  box-shadow: 0 10px 34px rgba(242,140,30,.16);
}
.ctier-badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--navy); color: #FFF;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: var(--radius-full);
}
.creator-tier.featured .ctier-badge { background: var(--orange); }
.ctier-icon  { font-size: 2rem; margin-bottom: 12px; }
.ctier-title {
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--heading); margin-bottom: 10px;
}
.ctier-text  { font-size: .93rem; font-weight: 600; color: var(--subtext); line-height: 1.65; }
.ctier-list  { margin: 16px 0 0; display: flex; flex-direction: column; gap: 9px; }
.ctier-list li {
  position: relative; padding-left: 24px;
  font-size: .9rem; font-weight: 700; color: var(--text-2); line-height: 1.5;
}
.ctier-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--sky); font-weight: 900;
}
.creator-tier.featured .ctier-list li::before { color: var(--orange); }
.ctier-foot {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: .84rem; font-weight: 700; color: var(--text-muted); line-height: 1.55;
}

/* ============================================================
   WHAT WE ASK
============================================================ */
/* Four cards: 2x2 on tablets, one row on desktop. A 3-column rule
   would strand the fourth card alone on its own line. */
.creator-ask-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 660px)  { .creator-ask-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .creator-ask-grid { grid-template-columns: repeat(4, 1fr); } }
.cask-card {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.cask-num {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin-bottom: 14px;
  background: var(--sky-light); color: var(--navy);
  border-radius: 50%; font-family: var(--font-display); font-size: 1rem;
}
.cask-title {
  font-family: var(--font-display); font-size: 1.08rem;
  color: var(--heading); margin-bottom: 8px;
}
.cask-text { font-size: .9rem; font-weight: 600; color: var(--subtext); line-height: 1.65; }

/* ============================================================
   GOOD TO KNOW
============================================================ */
.creator-notes {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  max-width: 780px; margin: 0 auto;
}
@media (min-width: 720px) { .creator-notes { grid-template-columns: 1fr 1fr; } }
.cnote {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--bg-alt); border-radius: var(--radius-md); padding: 18px 20px;
  font-size: .9rem; font-weight: 600; color: var(--text-2); line-height: 1.6;
}
.cnote strong { color: var(--text-1); font-weight: 800; }
.cnote-icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.3; }

/* ============================================================
   PROOF BAND — points at the creator reels on the visit page
============================================================ */
.creator-proof {
  background: linear-gradient(135deg, var(--navy) 0%, #1f3a7a 100%);
  padding: 44px 0;
}
.cproof-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 22px 36px;
}
.cproof-copy { flex: 1 1 380px; }
.cproof-eyebrow {
  font-size: .74rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 8px;
}
.cproof-title {
  font-family: var(--font-display); font-size: clamp(1.3rem, 3.4vw, 1.8rem);
  color: #FFF; line-height: 1.15; margin-bottom: 10px;
}
.cproof-text {
  font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.75);
  line-height: 1.6; max-width: 520px;
}
@media (max-width: 620px) {
  .cproof-inner { flex-direction: column; align-items: flex-start; }
  .cproof-inner .btn { width: 100%; }
}

/* ============================================================
   DM SECTION — handles instead of a contact form
============================================================ */
.creator-dm-section { background: var(--navy); }
.creator-dm-section .eyebrow   { color: var(--yellow); }
.creator-dm-section .sec-title { color: #FFF; }
.creator-dm-section .sec-sub   { color: rgba(255,255,255,.68); }

/* Three cards: one column until they can all sit in a row. A 2-column
   stage in between would strand the third card on its own. */
.creator-handles {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  max-width: 520px; margin: 0 auto;
}
@media (min-width: 880px) {
  .creator-handles { grid-template-columns: repeat(3, 1fr); max-width: 1000px; }
}

.chandle {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); padding: 20px 22px; color: #FFF;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.chandle:hover {
  background: rgba(255,255,255,.12); border-color: var(--sky);
  transform: translateY(-2px);
}
.chandle-icon  { display: flex; flex-shrink: 0; color: var(--sky); }
.chandle:hover .chandle-icon { color: var(--yellow); }
.chandle-text  { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.chandle-net   {
  font-size: .72rem; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.chandle-name  {
  font-family: var(--font-display); font-size: .96rem;
  overflow-wrap: anywhere;
}
/* Pushed to the far edge, and nudges on hover the way .ann-cta does. */
.chandle-go {
  margin-left: auto; flex-shrink: 0;
  font-size: 1.1rem; font-weight: 800; color: rgba(255,255,255,.45);
  transition: transform var(--transition), color var(--transition);
}
.chandle:hover .chandle-go { color: var(--yellow); transform: translateX(4px); }

.creator-dm-note {
  margin: 26px auto 0; max-width: 520px; text-align: center;
  font-size: .84rem; font-weight: 700; color: rgba(255,255,255,.5); line-height: 1.6;
}
