.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px var(--pad-x);
    min-height: 627px;
    display: flex;
    flex-direction: column;
    gap: 119px;
    position: relative;
    z-index: 1;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
}

.hero__title {
    font-weight: 700;
    font-size: 60px;
    text-transform: uppercase;
    color: var(--fg);
    max-width: 842px;
}

.hero__row {
    display: flex;
    align-items: flex-end;
    gap: 299px;
}

.hero__copy {
    width: 506px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: var(--fg);
}

.hero__copy p:first-child {
    font-weight: 300;
    font-size: 14px;
    text-align: justify;
}

.hero__copy p:last-child {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.hero__cta {
    width: 275px;
}

.quickplay__inner {
    display: flex;
    align-items: center;
    gap: 27px;
    padding: 60px var(--pad-x) 60px 0;
}

.quickplay__img {
    width: 495px;
    height: 577px;
    flex-shrink: 0;
    border-radius: 0 40px 40px 0;
    object-fit: cover;
}

.quickplay__content {
    flex: 1;
    width: 618px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.quickplay__bottom {
    display: flex;
    align-items: flex-end;
    gap: 38px;
    width: 100%;
}

.quickplay__text {
    width: 480px;
    font-weight: 300;
    font-size: 14px;
    color: var(--fg);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quickplay__thumb {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    flex-shrink: 0;
}

.lanes__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lanes .glow {
    left: -130px;
    top: 81px;
    z-index: 0;
}

.lanes__title {
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--fg);
    width: 100%;
    max-width: var(--content);
    text-align: center;
}

.lanes__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: var(--content);
}

.lane {
    border: 1px solid var(--fg);
    border-radius: 28px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    text-align: left;
    background: transparent;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.lane:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    background: rgba(161, 0, 255, .08);
    box-shadow: 0 18px 40px rgba(161, 0, 255, .25);
}

.lane__icon {
    transition: transform .35s ease;
}

.lane:hover .lane__icon {
    transform: scale(1.08) rotate(-4deg);
}

.snapshot__stat {
    transition: transform .3s ease;
}

.snapshot__stat:hover {
    transform: translateX(4px);
}

.snapshot__stat h3 {
    transition: color .3s ease;
}

.snapshot__stat:hover h3 {
    color: var(--accent);
}

.quickplay__img,
.snapshot__img-left,
.snapshot__img-right,
.quickplay__thumb {
    transition: transform .5s ease;
}

.quickplay__img:hover,
.snapshot__img-left:hover,
.snapshot__img-right:hover {
    transform: scale(1.02);
}

.quickplay__thumb:hover {
    transform: scale(1.08) rotate(4deg);
}

@keyframes jkt-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.glow img {
    animation: jkt-pulse 7s ease-in-out infinite;
}

@keyframes jkt-pulse {
    0%, 100% { opacity: .9; transform: scale(1.95); }
    50% { opacity: 1; transform: scale(2.05); }
}

.lane__head {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.lane__pill {
    border: 1px solid var(--fg);
    border-radius: 60px;
    padding: 14px 20px;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--fg);
    text-align: left;
}

.lane__desc {
    font-weight: 300;
    font-size: 14px;
    color: var(--fg);
    width: 100%;
}

.lane__icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    object-fit: cover;
    flex-shrink: 0;
}

.snapshot__inner {
    padding: 60px var(--pad-x);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.snapshot .glow {
    left: 935px;
    top: 73px;
}

.snapshot__head {
    width: 100%;
    max-width: var(--content);
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--fg);
}

.snapshot__head h2 {
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
}

.snapshot__head p {
    font-weight: 300;
    font-size: 14px;
}

.snapshot__row {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: var(--content);
}

.snapshot__img-left {
    flex: 1;
    height: 507px;
    border-radius: 0 40px 40px 0;
    object-fit: cover;
    min-width: 0;
}

.snapshot__stats {
    width: 387px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--fg);
    flex-shrink: 0;
}

.snapshot__stat h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 14px;
}

.snapshot__stat p {
    font-weight: 300;
    font-size: 14px;
}

.snapshot__img-right {
    width: 250px;
    height: 507px;
    border-radius: 40px 0 0 40px;
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .hero__inner {
        padding: 40px var(--pad-x);
        min-height: 0;
        gap: 20px;
    }

    .hero__title {
        font-size: 32px;
        width: 100%;
    }

    .hero__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .hero__copy {
        width: 100%;
        gap: 20px;
        order: 1;
    }

    .hero__cta {
        order: 2;
    }

    .hero__copy p:last-child {
        font-size: 20px;
    }

    .quickplay__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 40px var(--pad-x);
    }

    .quickplay__img {
        width: 100%;
        height: 200px;
        border-radius: 40px;
    }

    .quickplay__content {
        width: 100%;
        gap: 20px;
    }

    .quickplay__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .quickplay__text {
        width: 100%;
    }

    .lanes__inner {
        padding: 40px var(--pad-x);
        gap: 20px;
    }

    .lanes__title {
        font-size: 28px;
    }

    .lanes__grid {
        grid-template-columns: 1fr;
    }

    .lanes .glow {
        left: -130px;
        top: 81px;
    }

    .snapshot__inner {
        padding: 40px var(--pad-x);
        gap: 20px;
    }

    .snapshot__head h2 {
        font-size: 28px;
    }

    .snapshot__row {
        flex-direction: column;
        gap: 20px;
    }

    .snapshot__img-left,
    .snapshot__img-right {
        width: 100%;
        height: 200px;
        border-radius: 40px;
        flex: 0 0 auto;
    }

    .snapshot__stats {
        width: 100%;
    }

    .snapshot .glow {
        left: 195px;
        top: 36px;
    }
}
