.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0 70px;
    text-align: center;
}

    .hero .container {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0;
    }

    .hero-content {
        width: min(760px, 100%);
        margin: 0 auto;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        padding: 7px 13px;
        border: 1px solid rgba(229, 181, 65, .25);
        border-radius: 999px;
        background: rgba(229, 181, 65, .08);
        color: #e5b541;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .hero-eyebrow::before {
        content: "";
        width: 7px;
        height: 7px;
        flex: 0 0 7px;
        border-radius: 50%;
        background: #e5b541;
        box-shadow: 0 0 12px rgba(229, 181, 65, .75);
    }

    .hero-title {
        margin: 0 0 10px;
        font-size: clamp(48px, 7vw, 82px);
        line-height: .95;
        letter-spacing: -4px;
    }

    .hero-title span {
        color: #e5b541;
    }

    .hero-subtitle {
        max-width: 680px;
        margin: 0 auto 10px;
        color: #c1c8d2;
        font-size: clamp(17px, 2vw, 21px);
        line-height: 1.4;
    }

    .hero-description {
        max-width: 620px;
        margin: 0 auto 18px;
        color: #7f8a99;
        font-size: 14px;
        line-height: 1.55;
    }

    .discovery-rotator {
        position: relative;
        width: 100%;
        height: 54px;
        margin: 0 auto 20px;
        overflow: hidden;
        isolation: isolate;
    }

    .discovery-rotator::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 12%;
        left: 12%;
        height: 38px;
        transform: translateY(-50%);
        border-radius: 999px;
        background: rgba(229, 181, 65, .10);
        filter: blur(24px);
        z-index: -1;
    }

    .discovery-track {
        animation: rotateDiscoveries 25s infinite cubic-bezier(.65, 0, .35, 1);
        will-change: transform;
    }

    .discovery-item {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 54px;
        margin: 0;
        padding: 0 20px;
        color: #f7ca5c;
        font-family: Arial, sans-serif;
        font-size: clamp(16px, 2vw, 21px);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -.02em;
        text-align: center;
        text-shadow:
            0 3px 12px rgba(0, 0, 0, .75),
            0 0 20px rgba(229, 181, 65, .20);
    }

    .search-box {
        width: min(680px, 100%);
        height: 60px;
        display: flex;
        margin: 0 auto;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .9);
        border-radius: 12px;
        background: #ffffff;
        box-shadow:
            0 16px 45px rgba(0, 0, 0, .28),
            0 0 40px rgba(229, 181, 65, .06);
        transition: box-shadow .2s ease;
    }

    .search-box:focus-within {
        box-shadow:
            0 18px 50px rgba(0, 0, 0, .35),
            0 0 0 4px rgba(229, 181, 65, .12);
    }

    .search-box input {
        min-width: 0;
        flex: 1;
        padding: 0 22px;
        border: 0;
        outline: 0;
        background: #ffffff;
        color: #11161d;
        font-size: 16px;
    }

    .search-box input::placeholder {
        color: #7c8490;
    }

    .search-box button {
        flex: 0 0 auto;
        min-width: 130px;
        padding: 0 28px;
        border: 0;
        background: #e5b541;
        color: #11161d;
        font-size: 16px;
        font-weight: 800;
        cursor: pointer;
        transition:
            background .2s ease,
            transform .2s ease;
    }

    .search-box button:hover {
        background: #f0c353;
    }

    .search-box button:active {
        transform: scale(.98);
    }

    .search-error {
        margin-top: 12px;
        color: #ff8b8b;
        font-size: 14px;
    }

    .search-hint {
        margin-top: 12px;
        color: #697483;
        font-size: 13px;
    }

    .search-hint strong {
        color: #aeb7c3;
        font-weight: 600;
    }

    @keyframes rotateDiscoveries {
        0%,
        15% {
            transform: translateY(0);
        }

        20%,
        35% {
            transform: translateY(-54px);
        }

        40%,
        55% {
            transform: translateY(-108px);
        }

        60%,
        75% {
            transform: translateY(-162px);
        }

        80%,
        95% {
            transform: translateY(-216px);
        }

        100% {
            transform: translateY(0);
        }
    }

    @media (max-height: 720px) and (min-width: 601px) {
        .hero {
            min-height: 500px;
            padding-top: 18px;
            padding-bottom: 18px;
        }

        .hero-eyebrow {
            margin-bottom: 8px;
        }

        .hero-title {
            font-size: clamp(44px, 6vw, 68px);
        }

        .hero-description {
            margin-bottom: 12px;
        }

        .discovery-rotator {
            margin-bottom: 14px;
        }
    }

    @media (max-width: 600px) {
        .hero {
            height: auto;
            min-height: calc(100dvh - 120px);
            padding: 30px 18px;
            overflow: visible;
        }

        .hero-title {
            font-size: clamp(46px, 16vw, 66px);
            letter-spacing: -3px;
        }

        .hero-subtitle {
            font-size: 17px;
        }

        .hero-description {
            margin-bottom: 14px;
            font-size: 14px;
        }

        .discovery-rotator {
            height: 68px;
            margin-bottom: 16px;
        }

        .discovery-item {
            height: 68px;
            padding: 0 8px;
            font-size: 17px;
            line-height: 1.25;
        }

        .search-box {
            height: auto;
            display: block;
            overflow: visible;
            border: 0;
            background: transparent;
            box-shadow: none;
        }

        .search-box:focus-within {
            box-shadow: none;
        }

        .search-box input {
            width: 100%;
            height: 56px;
            padding: 0 18px;
            border-radius: 10px;
        }

        .search-box button {
            width: 100%;
            height: 52px;
            margin-top: 9px;
            border-radius: 10px;
        }

        @keyframes rotateDiscoveries {
            0%,
            15% {
                transform: translateY(0);
            }

            20%,
            35% {
                transform: translateY(-68px);
            }

            40%,
            55% {
                transform: translateY(-136px);
            }

            60%,
            75% {
                transform: translateY(-204px);
            }

            80%,
            95% {
                transform: translateY(-272px);
            }

            100% {
                transform: translateY(0);
            }
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .discovery-track {
            animation: none;
        }

        .discovery-item:not(:first-child) {
            display: none;
        }
    }


.actor-discovery {
    width: min(820px, 100%);
    margin: 46px auto 0;
    text-align: left;
}

.actor-discovery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.actor-list-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 14px;
    font-size: 19px;
}

.actor-list-title span {
    color: #e5b541;
}

.actor-list-description {
    min-height: 42px;
    margin: 0 0 18px;
    color: #697483;
    font-size: 13px;
    line-height: 1.55;
}

.actor-card-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.actor-link-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 12px 38px 12px 15px;
    overflow: hidden;
    border: 1px solid #242b35;
    border-radius: 9px;
    background: #11161d;
    color: #cbd2dc;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    transition:
        border-color .2s ease,
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.actor-link-card::after {
    content: "→";
    position: absolute;
    right: 15px;
    color: #e5b541;
    font-size: 17px;
    transition: transform .2s ease;
}

.actor-link-card:hover {
    border-color: rgba(229, 181, 65, .45);
    background: #171d25;
    color: #ffffff;
    transform: translateY(-2px);
}

.actor-link-card:hover::after {
    transform: translateX(3px);
}

@media (max-width: 760px) {
    .actor-discovery {
        margin-top: 36px;
    }

    .actor-discovery-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .actor-list-description {
        min-height: auto;
    }
}

@media (max-width: 430px) {
    .actor-card-list {
        grid-template-columns: 1fr;
    }
}


.search-area {
    position: relative;
    margin: 12px auto 0;
    padding: 24px;
    border: 1px solid rgba(229, 181, 65, .18);
    border-radius: 18px;
    background:
        radial-gradient(
            circle at top,
            rgba(229, 181, 65, .09),
            transparent 65%
        ),
        #10151c;
}

.search-label {
    margin-bottom: 14px;
    color: #e5b541;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.search-box {
    border: 2px solid #e5b541;
    box-shadow:
        0 20px 55px rgba(0, 0, 0, .38),
        0 0 30px rgba(229, 181, 65, .12);
}

.search-box input {
    padding: 22px 24px;
    font-size: 18px;
}

.search-box button {
    padding: 0 34px;
}