/* ── HERO ───────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 92vh; min-height: 600px;
    display: flex; align-items: flex-end;
    padding: 0 48px 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('https://picsum.photos/seed/phantom/1400/800') center/cover no-repeat;
    transition: opacity 0.5s ease;
}
.hero-bg.fading { opacity: 0; }
.hero-content { transition: opacity 0.4s ease; }
.hero-content.fading { opacity: 0; }
.hero-overlay {
    position: absolute; inset: 0;
    background:
    linear-gradient(to right, rgba(8,10,15,.95) 0%, rgba(8,10,15,.7) 40%, rgba(8,10,15,.1) 70%, transparent 100%),
    linear-gradient(to top,   rgba(8,10,15,1)   0%, rgba(8,10,15,.4) 30%, transparent 60%);
}
.hero-content {
    position: relative; z-index: 2; max-width: 560px;
    animation: fadeUp .8s ease both;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(232,197,71,.15); border: 1px solid rgba(232,197,71,.3);
    border-radius: 4px; padding: 4px 10px;
    font-size: 11px; font-weight: 500; letter-spacing: 1px;
    color: var(--accent); text-transform: uppercase; margin-bottom: 16px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 88px);
    line-height: .95; letter-spacing: 1px; margin-bottom: 16px;
}
.hero-meta {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px; font-size: 13px; color: var(--muted);
}
.hero-meta .rating { color: var(--accent); font-weight: 600; }
.hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.hero-desc {
    font-size: 14px; line-height: 1.7; color: rgba(240,242,247,.7);
    margin-bottom: 32px; max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; }
.hero-dots {
    position: absolute; bottom: 32px; left: 48px; z-index: 2;
    display: flex; gap: 8px;
}
.hero-dot {
    width: 24px; height: 3px; border-radius: 2px;
    background: rgba(255,255,255,.2); cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}
.hero-dot.active { background: var(--accent); width: 40px; }
@media (max-width: 768px) {
    .hero { padding: 0 20px 60px; }
    .hero-dots { left: 20px; }
}
