.hero-section {
  position: relative;
  padding-top: clamp(1.2rem, 2.5vw, 1.8rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.15) 0%, rgba(0, 240, 255, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* On mobile, place the celebrity visual card first above fold */
.hero-visual-card {
  order: -1;
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
  }

  .hero-visual-card {
    order: 0; /* Left on desktop */
  }

  .hero-content {
    order: 1; /* Right on desktop */
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-meta-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-wrap: nowrap;
  }

  .hero-actions .btn {
    padding: 0.7rem 1.15rem;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (min-width: 1200px) {
  .hero-actions .btn {
    padding: 0.75rem 1.35rem;
    font-size: 0.95rem;
    gap: 0.6rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    align-items: center;
  }

  .hero-meta-strip {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .hero-content {
    text-align: left;
    align-items: flex-start;
  }

  .hero-meta-strip {
    justify-content: flex-start;
  }

  .hero-actions {
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions .btn {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 600px) {
  .hero-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  color: #fff;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
}

/* Hero Portrait Card Showcase */
.hero-visual-card {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 85, 0, 0.25);
}

.portrait-img {
  width: 100%;
  height: clamp(380px, 42vw, 440px);
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.5s ease;
}

.portrait-frame:hover .portrait-img {
  transform: scale(1.03);
}

.portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 5, 10, 0.9) 100%);
  pointer-events: none;
}

.creator-badge-floating {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 12, 24, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-cyan);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
}

.creator-id {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.creator-avatar-mini {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
}

.creator-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.creator-text p {
  font-size: 0.7rem;
  color: var(--text-dim);
}
