/* Spotlit — Make Money & Sponsors Pages */

:root {
  --purple: #8B5CF6;
  --purple-dim: #6d42d9;
  --purple-glow: rgba(139, 92, 246, 0.35);
  --bg: #000000;
  --bg-2: #0d0d0d;
  --surface: #111115;
  --surface-2: #18181f;
  --border: #1e1e28;
  --white: #ffffff;
  --silver: #b8b8c8;
  --muted: #55556a;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* ─── HERO ─────────────────────────────────────────────── */
.mm-hero {
  position: relative;
  padding: 160px 40px 100px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.mm-hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.mm-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.mm-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
}

.mm-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.mm-hero-sub {
  font-size: 1.125rem;
  color: var(--silver);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ─── INCOME STREAMS GRID ────────────────────────────── */
.mm-streams {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mm-streams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ─── INCOME CARD ────────────────────────────────────── */
.mm-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.mm-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.15), 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.mm-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mm-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.mm-card-desc {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.65;
}

.mm-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  padding: 3px 10px;
}

.mm-card-early {
  opacity: 0.72;
}

/* ─── CTA ─────────────────────────────────────────────── */
.mm-cta {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.03) 50%, transparent);
}

.mm-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.mm-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.mm-cta-sub {
  font-size: 1rem;
  color: var(--silver);
  margin-bottom: 36px;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--purple-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
  text-decoration: none;
  color: var(--white);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.125rem;
  border-radius: var(--radius);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  text-align: center;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--white);
}

/* ─── SPONSORS PAGE ───────────────────────────────────── */

/* Sponsor Hero */
.sp-hero {
  position: relative;
  padding: 180px 40px 120px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.sp-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  pointer-events: none;
}

.sp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.sp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.06);
}

.sp-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.sp-hero-sub {
  font-size: 1.2rem;
  color: var(--silver);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

/* Why Sponsor */
.sp-why {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.sp-why-header {
  text-align: center;
  margin-bottom: 60px;
}

.sp-why-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.sp-why-header p {
  color: var(--silver);
  font-size: 1rem;
}

.sp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.sp-why-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.sp-why-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.1);
}

.sp-why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sp-why-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.sp-why-card p {
  font-size: 0.875rem;
  color: var(--silver);
  line-height: 1.6;
}

/* Sponsorship Tiers */
.sp-tiers {
  padding: 80px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sp-tiers-header {
  text-align: center;
  margin-bottom: 48px;
}

.sp-tiers-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.sp-tiers-header p {
  color: var(--silver);
  font-size: 1rem;
}

.sp-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sp-tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.sp-tier:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.sp-tier-featured {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple), 0 0 60px rgba(139, 92, 246, 0.15);
  position: relative;
}

.sp-tier-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--purple);
  border-radius: 100px;
  padding: 4px 14px;
  white-space: nowrap;
}

.sp-tier-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.sp-tier-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.sp-tier-price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.sp-tier-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.sp-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.sp-tier-features li {
  font-size: 0.8rem;
  color: var(--silver);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.sp-tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B5CF6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.sp-tier .btn-secondary {
  width: 100%;
  padding: 12px;
  font-size: 0.875rem;
}

/* Impact Stats */
.sp-impact {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.sp-impact-header {
  text-align: center;
  margin-bottom: 48px;
}

.sp-impact-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.sp-impact-header p {
  color: var(--silver);
  font-size: 1rem;
}

.sp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sp-stat {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.sp-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
}

.sp-stat-label {
  font-size: 0.875rem;
  color: var(--silver);
  font-weight: 500;
}

.sp-stat-highlight {
  color: var(--purple);
}

/* Sponsor Form */
.sp-form-section {
  padding: 80px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.sp-form-inner {
  max-width: 720px;
  margin: 0 auto;
}

.sp-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.sp-form-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.sp-form-header p {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.6;
}

.sp-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.sp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.sp-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.sp-form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.sp-form-group input,
.sp-form-group select,
.sp-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.sp-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2355556a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.sp-form-group select option {
  background: var(--surface-2);
  color: var(--white);
}

.sp-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.sp-form-group input:focus,
.sp-form-group select:focus,
.sp-form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.sp-form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  color: #fca5a5;
  padding: 12px 16px;
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.sp-form-success {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-sm);
  color: #c4b5fd;
  padding: 16px 20px;
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-align: center;
}

.sp-form-submit {
  width: 100%;
  margin-top: 8px;
}

/* Mobile Nav Active */
.nav-active {
  color: var(--purple) !important;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 40px 40px;
  background: var(--bg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--silver);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .sp-tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mm-hero, .sp-hero {
    padding: 120px 24px 80px;
  }
  .mm-streams, .sp-why, .sp-impact, .sp-form-section {
    padding: 60px 24px;
  }
  .sp-tiers {
    padding: 60px 24px;
  }
  .sp-tiers-grid {
    grid-template-columns: 1fr;
  }
  .sp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-form-row {
    grid-template-columns: 1fr;
  }
  .sp-form {
    padding: 24px;
  }
  .site-footer {
    padding: 40px 24px 32px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
  .mm-cta {
    padding: 60px 24px;
  }
}