/* ============ HERO ============ */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(107, 70, 193, .15), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle at center, rgba(124, 58, 237, .12), transparent 70%);
  pointer-events: none;
}

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

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(107, 70, 193, .22);
  animation: pulse 2s infinite;
}
.hero-badge strong {
  color: var(--ink);
  font-weight: 700;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(107, 70, 193, .22); }
  50% { box-shadow: 0 0 0 6px rgba(107, 70, 193, .05); }
}

.hero-title { margin-bottom: 24px; }
.hero-title em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.stat .num {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat .label {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 6px;
  line-height: 1.3;
}

/* hero visual mock */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 9 / 11;
}

.phone-mock {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a22, #0e0e12);
  border-radius: 36px;
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.08) inset;
  transform: rotate(-3deg);
}
.phone-screen {
  background: linear-gradient(180deg, #0e0e12, #1a1a22);
  border-radius: 24px;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 18px;
  color: white;
}
.phone-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.creator-profile {
  text-align: center;
  margin-bottom: 16px;
}
.creator-avatar {
  width: 64px; height: 64px;
  background: var(--gradient);
  border-radius: 50%;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}
.creator-name { font-weight: 700; font-size: 0.95rem; }
.creator-handle {
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.creator-metrics {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.72rem;
  margin-bottom: 16px;
}
.creator-metrics div { text-align: center; }
.creator-metrics b {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
}
.creator-metrics span { color: rgba(255,255,255,.5); }
.follow-btn {
  background: var(--accent);
  color: white;
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.82rem;
  display: inline-block;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 16px;
}
.vid {
  aspect-ratio: 9/13;
  background: linear-gradient(135deg, #2a2a3a, #1a1a26);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.vid::after {
  content: attr(data-views);
  position: absolute;
  bottom: 4px; left: 4px;
  font-size: 0.6rem;
  color: white;
  font-weight: 600;
}
.vid:nth-child(1) { background: linear-gradient(135deg, #6B46C1, #F6AD55); }
.vid:nth-child(2) { background: linear-gradient(135deg, #8B6BD8, #A78BFA); }
.vid:nth-child(3) { background: linear-gradient(135deg, #F6AD55, #D88932); }

.floating-card {
  position: absolute;
  background: white;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  z-index: 2;
  border: 1px solid var(--line);
}
.floating-1 {
  top: 10%;
  left: -10%;
  transform: rotate(-6deg);
  animation: float 4s ease-in-out infinite;
}
.floating-2 {
  bottom: 14%;
  right: -8%;
  transform: rotate(4deg);
  animation: float 4s ease-in-out infinite 1s;
}
@keyframes float {
  0%, 100% { transform: rotate(var(--r, -6deg)) translateY(0); }
  50% { transform: rotate(var(--r, -6deg)) translateY(-8px); }
}
.floating-1 { --r: -6deg; }
.floating-2 { --r: 4deg; }

.floating-card .ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.floating-card b {
  display: block;
  font-weight: 700;
  color: var(--ink);
}
.floating-card span {
  color: var(--ink-mute);
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  .hero-visual { max-width: 360px; }
  .floating-1 { left: -4%; }
  .floating-2 { right: -4%; }
}