.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #050505;
    padding-top: 16px;
}

.hero-glow {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.05);
    transform: translate(-50%, -50%);
    filter: blur(120px);
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(-48px);
}

.hero-content {
    width: 100%;
    text-align: center;
    transform: translateY(-80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.is-preload {
    opacity: 0;
    transform: translateY(-56px);
}

.hero-content.is-ready {
    opacity: 1;
    transform: translateY(-80px);
}

.hero-label {
    display: block;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    color: #00f5c4;
}

.hero-title {
    max-width: 1320px;
    margin: 0 auto;
    font-size: clamp(46px, 8vw, 110px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.08em;
    color: #fff;
}

.hero-title-last {
    display: inline-block;
    margin-top: 0.08em;
}

.hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.tech-marquee {
    width: 100%;
    overflow: hidden;
}

.tech-marquee-track {
    display: flex;
    width: max-content;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 24s linear infinite;
}

.tech-marquee-track span {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.55);
}

.hero-scroll-link {
    display: block;
    margin: 0;
    border: 0;
    background: transparent;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    color: rgba(255, 255, 255, 0.30);
    cursor: pointer;
    transition: color 0.2s ease;
}

.hero-scroll-link:hover {
    color: var(--accent);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        transform: translateY(-36px);
    }

    .hero-title {
        line-height: 1;
    }

    .hero-title-last {
        margin-top: 0.06em;
    }

    .hero-bottom {
        bottom: 28px;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: calc(100vh - 72px);
    }

    .hero-inner {
        min-height: calc(100vh - 72px);
        transform: translateY(-18px);
    }

    .hero-content,
    .hero-content.is-ready {
        transform: translateY(-36px);
    }

    .hero-content.is-preload {
        transform: translateY(-16px);
    }

    .hero-label {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .hero-title {
        line-height: 1.02;
    }

    .hero-title-last {
        margin-top: 0.05em;
    }

    .hero-bottom {
        bottom: 20px;
        gap: 12px;;
    }

    .tech-marquee-track {
        gap: 28px;
    }

    .tech-marquee-track span {
        font-size: 16px;
    }
}