/* ─────────────────────────────────────────────────────────────
   Promoter Pass — page-specific styles
   Layered on top of styles.css
   ───────────────────────────────────────────────────────────── */

/* ============ HERO ============ */
.promoter-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 96px;
  overflow: hidden;
  background:
    radial-gradient(55% 45% at 18% 22%, rgba(255,46,138,0.30) 0%, rgba(255,46,138,0) 60%),
    radial-gradient(50% 40% at 88% 12%, rgba(180,22,224,0.22) 0%, rgba(180,22,224,0) 60%),
    linear-gradient(180deg, #15082B 0%, #08030F 100%);
}
.promoter-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
  min-height: 560px;
  position: relative;
  z-index: 2;
}
.promoter-h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.8vw, 80px);
  line-height: 0.98; letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.promoter-lede {
  font-size: clamp(15.5px, 1.4vw, 18.5px);
  color: var(--ink-2); max-width: 520px; line-height: 1.6;
  margin: 0 0 32px;
}
.promoter-trust {
  display: inline-flex; align-items: center; gap: 22px;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  flex-wrap: wrap;
}
.promoter-trust .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--ink-3); letter-spacing: -0.01em;
  line-height: 1.1;
}
.promoter-trust .num strong { color: var(--ink-0); font-weight: 800; font-size: 18px; }
.promoter-trust .lbl {
  font-size: 10.5px; color: var(--ink-3);
  letter-spacing: 0.16em; text-transform: uppercase; margin-top: 3px;
}
.promoter-trust .sep {
  width: 1px; height: 28px; background: var(--line-strong);
}

/* film perforations across top + bottom */
.film-strip {
  position: absolute; left: 0; right: 0; height: 26px;
  background: #050208;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 18px;
  padding: 0 16px;
  z-index: 1;
}
.film-strip-top { top: var(--nav-h); }
.film-strip-bot { bottom: 0; }
.film-strip::before {
  content: "";
  flex: 1; height: 12px;
  background-image: repeating-linear-gradient(90deg,
    #1A0F2E 0 22px,
    transparent 22px 30px);
  border-radius: 2px;
  mask-image: repeating-linear-gradient(90deg,
    #000 0 22px,
    transparent 22px 30px);
}

/* hero visual — film reel collage */
.promoter-hero-visual {
  position: relative;
  height: 540px;
}
.reel { position: relative; width: 100%; height: 100%; }
.reel-frame {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
}
.reel-frame-1 {
  width: 64%; aspect-ratio: 3 / 4; top: 0; right: 0;
  z-index: 2;
  background: #050208;
}
.reel-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.reel-overlay-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--pink-glow);
  background: rgba(8,3,15,0.75);
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}
.reel-frame-2 {
  width: 48%; aspect-ratio: 4 / 3; bottom: 60px; left: 0;
  z-index: 3;
  transform: rotate(-4deg);
}
.reel-frame-3 {
  width: 42%; aspect-ratio: 1.2; bottom: 0; right: 14%;
  z-index: 4;
  transform: rotate(3deg);
}
.reel-frame .ph {
  width: 100%; height: 100%;
  background:
    radial-gradient(60% 70% at 40% 35%, rgba(255,46,138,0.45) 0%, rgba(255,46,138,0) 70%),
    linear-gradient(135deg, #2A1247 0%, #4A1668 60%, #08030F 100%);
  position: relative;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 14px;
}
.reel-frame .ph.alt {
  background:
    radial-gradient(60% 70% at 60% 50%, rgba(255,209,92,0.40) 0%, rgba(255,209,92,0) 70%),
    linear-gradient(135deg, #2A1B00 0%, #5A3700 60%, #08030F 100%);
}
.reel-frame .ph.dark {
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(77,227,255,0.25) 0%, rgba(77,227,255,0) 60%),
    linear-gradient(135deg, #0A0418 0%, #170836 50%, #050208 100%);
}
.reel-frame .ph span {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  background: rgba(8,3,15,0.6);
  padding: 4px 8px; border-radius: 4px;
  text-transform: uppercase;
}
.reel-frame .ph .rec {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--pink-glow);
  background: rgba(8,3,15,0.7);
}
.reel-frame .ph .rec i {
  width: 8px; height: 8px; border-radius: 50%; background: #FF2E8A;
  box-shadow: 0 0 6px #FF2E8A;
  animation: pp-pulse 1.4s infinite;
}

.reel-clap {
  position: absolute;
  left: 50%; top: 32%;
  transform: translate(-50%,-50%) rotate(-8deg);
  width: 200px;
  background: #0E0520;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 8px;
  z-index: 5;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.7);
}
.reel-clap .row.top {
  display: flex; gap: 4px;
  margin-bottom: 8px;
  height: 16px;
}
.reel-clap .row.top span {
  flex: 1;
  background: repeating-linear-gradient(45deg,
    #F4ECFF 0 10px,
    #0E0520 10px 20px);
  border-radius: 2px;
}
.reel-clap .rows {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; font-family: var(--font-mono);
}
.reel-clap .rows > div {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px 4px;
  text-align: center;
}
.reel-clap .rows b {
  display: block; font-size: 8.5px;
  color: var(--ink-3);
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600;
}
.reel-clap .rows span {
  display: block; font-size: 13px;
  color: var(--gold); font-weight: 600;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .promoter-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .promoter-hero-visual { height: 420px; max-width: 560px; }
}
@media (max-width: 560px) {
  .promoter-hero { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 60px; }
  .promoter-hero-visual { height: 340px; }
  .reel-clap { width: 150px; }
  .reel-clap .rows span { font-size: 11px; }
  .film-strip { height: 18px; }
  .promoter-trust { padding: 12px 16px; gap: 14px; }
  .promoter-trust .sep { height: 22px; }
}

/* ============ THE SWAP ============ */
.swap-section { background: linear-gradient(180deg, #08030F 0%, #0E0520 50%, #08030F 100%); }
.swap-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 32px;
  align-items: stretch;
}
.swap-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3.5vw, 44px);
  position: relative;
  overflow: hidden;
}
.swap-col-give {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,46,138,0.08) 0%, transparent 50%),
    var(--surface);
}
.swap-col-get {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(255,209,92,0.10) 0%, transparent 50%),
    var(--surface);
  border-color: rgba(255,209,92,0.20);
}
.swap-col-head { margin-bottom: 28px; }
.swap-tag {
  display: inline-flex; align-items: center;
  white-space: nowrap;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink-glow);
  padding: 5px 12px;
  background: rgba(255,46,138,0.14);
  border: 1px solid rgba(255,46,138,0.3);
  border-radius: 999px;
  margin-bottom: 16px;
}
.swap-tag.gold {
  color: var(--gold);
  background: rgba(255,209,92,0.14);
  border-color: rgba(255,209,92,0.35);
}
.swap-col-head h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em; line-height: 1.05;
  margin: 0;
}
.swap-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 22px;
}
.swap-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}
.swap-num {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--pink-glow);
  background: rgba(255,46,138,0.10);
  border: 1px solid rgba(255,46,138,0.3);
  border-radius: 8px;
  height: 32px; width: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.swap-num.gold {
  color: var(--gold);
  background: rgba(255,209,92,0.10);
  border-color: rgba(255,209,92,0.35);
}
.swap-list h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: -0.015em; line-height: 1.2;
  margin: 4px 0 6px;
  color: var(--ink-0);
}
.swap-list p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px; line-height: 1.55;
}
.swap-divider {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink-3);
  background: linear-gradient(180deg, transparent 0%, var(--surface-2) 50%, transparent 100%);
  border-radius: 999px;
  position: relative;
}
.swap-divider span {
  background: var(--bg-0);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-1);
  position: sticky; top: 50%;
}
@media (max-width: 880px) {
  .swap-grid { grid-template-columns: 1fr; gap: 22px; }
  .swap-divider { display: none; }
}

/* ============ FILMING TIMELINE ============ */
.filming-section { background: var(--bg-0); }
.timeline {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute;
  top: 22px; left: 22px; right: 22px;
  height: 1px;
  background: repeating-linear-gradient(90deg,
    var(--line-strong) 0 6px,
    transparent 6px 12px);
  z-index: 0;
}
.timeline-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
}
.timeline-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-pink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  color: #fff;
  box-shadow: var(--shadow-pink);
  border: 4px solid var(--bg-0);
}
.timeline-dot span { font-size: 16px; line-height: 1; }
.timeline-step:nth-child(even) .timeline-dot {
  background: var(--grad-gold);
  color: #2A1500;
  box-shadow: var(--shadow-gold);
}
.timeline-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  flex: 1;
}
.timeline-time {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--gold);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline-card h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink-0);
}
.timeline-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px; line-height: 1.55;
}

@media (max-width: 960px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .timeline::before {
    top: 22px; bottom: 22px; left: 22px; right: auto;
    width: 1px; height: auto;
    background: repeating-linear-gradient(180deg,
      var(--line-strong) 0 6px,
      transparent 6px 12px);
  }
  .timeline-step {
    flex-direction: row; align-items: flex-start;
    gap: 18px;
    padding-bottom: 14px;
  }
  .timeline-card { flex: 1; }
}

/* ============ ELIGIBILITY ============ */
.elig-section {
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(77,227,255,0.08) 0%, transparent 60%),
    var(--bg-0);
}
.elig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.elig-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color 200ms, background 200ms, transform 200ms;
}
.elig-card:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.elig-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,46,138,0.18), rgba(180,22,224,0.18));
  border: 1px solid rgba(255,46,138,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.elig-card:nth-child(2) .elig-icon {
  background: linear-gradient(135deg, rgba(255,209,92,0.18), rgba(255,139,61,0.18));
  border-color: rgba(255,209,92,0.35);
}
.elig-card:nth-child(3) .elig-icon {
  background: linear-gradient(135deg, rgba(77,227,255,0.18), rgba(77,227,255,0.10));
  border-color: rgba(77,227,255,0.35);
}
.elig-card:nth-child(4) .elig-icon {
  background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(34,197,94,0.10));
  border-color: rgba(34,197,94,0.35);
}
.elig-card h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; letter-spacing: -0.015em; line-height: 1.2;
  margin: 0 0 8px;
  color: var(--ink-0);
}
.elig-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px; line-height: 1.55;
}

@media (max-width: 960px) { .elig-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .elig-grid { grid-template-columns: 1fr; } }
