.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-black);
    overflow: hidden;
}

.hero--small {
    min-height: 60vh;
}

.hero__bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
}

.hero__lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__line {
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
    width: 1px;
    height: 200%;
    animation: hero-lineMove 20s linear infinite;
}

.hero__line:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero__line:nth-child(2) { left: 25%; animation-delay: -5s; }
.hero__line:nth-child(3) { left: 50%; animation-delay: -10s; }
.hero__line:nth-child(4) { left: 75%; animation-delay: -15s; }
.hero__line:nth-child(5) { left: 90%; animation-delay: -3s; }

@keyframes hero-lineMove {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0%); }
}

.hero__content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    max-width: 900px;
}

.hero__label {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: hero-fadeUp 0.8s ease 0.2s forwards;
}

.hero__label.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
}

.hero__title {
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: hero-fadeUp 0.8s ease 0.4s forwards;
}

.hero__title.heading-xl {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    letter-spacing: -0.02em;
    font-weight: 400;
    font-style: italic;
    line-height: 1.15;
}

.hero__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-gray-400);
    max-width: 600px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    animation: hero-fadeUp 0.8s ease 0.6s forwards;
}

.hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: hero-fadeUp 0.8s ease 0.8s forwards;
}

@keyframes hero-fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gray-400), transparent);
    animation: hero-scrollLine 2s ease infinite;
}

@keyframes hero-scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Hero with background image */
.hero--with-image {
    position: relative;
}

.hero--with-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

@media (max-width: 768px) {
    .hero--small {
        min-height: 50vh;
    }
}
