/* ============================================
   CHIPDROP CREATORS PAGE
   ============================================ */

/* ============================================
   HERO
   ============================================ */
.creators-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.creators-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.creators-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.creators-headline {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}

.creators-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.creators-cta-wrapper {
  max-width: 480px;
}

.creators-form {
  max-width: 480px;
}

.creators-form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--fg-subtle);
  letter-spacing: 0.5px;
}

.creators-hero-chip-art {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.chip-illustration {
  position: relative;
  width: 260px;
  height: 320px;
}

.chip-body {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 220px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0D0D0D 100%);
  border: 2px solid rgba(255, 68, 0, 0.4);
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(255, 68, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}

.chip-inner {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255, 68, 0, 0.3), inset 0 0 20px rgba(255, 68, 0, 0.1);
}

.chip-inner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 6px;
  box-shadow: 0 0 20px var(--accent-glow);
}

.chip-antenna {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 68, 0, 0.6), transparent);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.creators-how {
  padding: 120px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.hiw-steps {
  display: flex;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
  gap: 0;
}

.hiw-step {
  flex: 1;
  padding: 40px 32px;
  border: 1px solid var(--border);
  margin-right: -1px;
  position: relative;
  text-align: center;
}

.hiw-step-divider {
  width: 40px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-step-divider::after {
  content: '';
  width: 1px;
  height: 60%;
  background: var(--border);
  position: absolute;
}

.hiw-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
}

.hiw-step-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.hiw-step h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hiw-step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ============================================
   BENEFITS
   ============================================ */
.creators-benefits {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  margin-right: -1px;
  margin-bottom: -1px;
  transition: border-color 0.3s;
}

.benefit-card:hover {
  border-color: rgba(255, 68, 0, 0.3);
}

.benefit-icon {
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ============================================
   STATS
   ============================================ */
.creators-stats {
  padding: 80px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.stat-number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  text-shadow: 0 0 40px var(--accent-glow);
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ============================================
   CTA SECTION
   ============================================ */
.creators-cta {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.creators-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.creators-form--centered {
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--fg); }

.nav-link-active {
  color: var(--accent) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }
  .creators-hero { padding: 100px 24px 60px; }
  .creators-hero-chip-art { display: none; }
  .creators-headline { letter-spacing: -1px; }
  .email-form { flex-direction: column; }
  .email-input { border-right: 1px solid var(--border); }
  .btn-primary { width: 100%; }
  .creators-how { padding: 80px 24px; }
  .hiw-steps { flex-direction: column; }
  .hiw-step-divider { width: auto; height: 40px; }
  .hiw-step-divider::after { width: 60%; height: 1px; }
  .creators-benefits { padding: 80px 24px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { margin-right: 0; }
  .creators-stats { padding: 60px 24px; }
  .stats-inner { flex-direction: column; gap: 40px; }
  .stat-divider { width: 60px; height: 1px; }
  .creators-cta { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; }
}