/* ── CREATORS PAGE ── */

.creators-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 80px 48px 80px;
}

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

.creators-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.creators-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.creators-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.creators-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(245,158,11,0.05);
  margin-bottom: 28px;
}

.creators-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.creators-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.creators-headline em {
  font-style: normal;
  color: #f59e0b;
}

.creators-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.creators-cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.cta-button-amber {
  display: inline-block;
  padding: 14px 32px;
  background: #f59e0b;
  color: #080b14;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cta-button-amber:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.3);
}

.cta-button-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg);
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.cta-button-ghost:hover {
  border-color: rgba(245,158,11,0.4);
  color: #f59e0b;
}

.creators-tag-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag-amber {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: #f59e0b;
  background: rgba(245,158,11,0.05);
}

.pipeline-vis {
  background: var(--surface);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 0 80px rgba(245,158,11,0.04), 0 32px 64px rgba(0,0,0,0.4);
}

.pipeline-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.pipeline-label {
  font-family: 'Sora', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: #f59e0b;
  opacity: 0.6;
}

.pipeline-nodes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pipeline-node {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  position: relative;
}

.pipeline-node::after {
  content: '';
  position: absolute;
  left: 36px;
  bottom: -13px;
  width: 1px;
  height: 12px;
  background: rgba(245,158,11,0.15);
}

.pipeline-node:last-child::after {
  display: none;
}

.pipeline-node-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.pipeline-node-icon.ai { background: rgba(245,158,11,0.15); }
.pipeline-node-icon.tone { background: rgba(34,211,238,0.15); }
.pipeline-node-icon.binaural { background: rgba(167,139,250,0.15); }
.pipeline-node-icon.output { background: rgba(52,211,153,0.15); }

.pipeline-node-label {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.pipeline-node-sub {
  font-size: 11px;
  color: var(--fg-muted);
}

.pipeline-live-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #34d399;
  opacity: 0.7;
}

.pulse-ring {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  position: relative;
}

.pulse-ring::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid #34d399;
  animation: pulse-ring 2s infinite;
  opacity: 0.5;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

/* ── PILLARS ── */
.pillars-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(13,18,32,0.5) 100%);
}

.pillars-header {
  text-align: center;
  margin-bottom: 64px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid rgba(245,158,11,0.08);
  border-radius: 20px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar-card:hover {
  border-color: rgba(245,158,11,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-card-icon {
  margin-bottom: 20px;
  width: 48px;
  height: 48px;
}

.pillar-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pillar-card-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── FEATURES ── */
.features-section {
  padding: 120px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid rgba(245,158,11,0.1);
  border-radius: 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-3px);
}

.feature-card-icon {
  margin-bottom: 20px;
}

.feature-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.feature-card-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.feature-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: #34d399;
  margin-top: 16px;
}

/* ── PRICING ── */
.pricing-section {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(245,158,11,0.03) 100%);
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 120px rgba(245,158,11,0.06);
}

.pricing-card-top {
  padding: 40px 48px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.pricing-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f59e0b;
  opacity: 0.7;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: 'Sora', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.pricing-currency {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.pricing-term {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: #f59e0b;
  color: #080b14;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.pricing-cta:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

.pricing-card-bottom {
  padding: 32px 48px;
}

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.pricing-check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* ── SOCIAL PROOF ── */
.social-proof-section {
  padding: 80px 0 120px;
}

.social-proof-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.testimonial-stars {
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.star { color: #f59e0b; font-size: 14px; }

.testimonial-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
}

.author-name {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.author-role {
  font-size: 11px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .creators-hero { padding: 64px 24px 48px; }
  .creators-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card { margin: 0 16px; }
  .pricing-card-top { padding: 32px 28px 24px; }
  .pricing-card-bottom { padding: 24px 28px; }
  .creators-cta-row { flex-direction: column; }
}