/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #17162b;
    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    height: 900px;
    min-height: 100vh;

    overflow: hidden;

    background: #17162b;
}

.hero-bg {
    position: absolute;

    inset: 0;

    background:
        url("assets/hero/hero-bg.png")
        center top /
        cover
        repeat-y;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10, 9, 20, 0.48),
            rgba(10, 9, 20, 0.10) 35%,
            rgba(23, 22, 43, 0.15) 55%,
            #17162b 100%
        );
}


/* =========================================================
   HEADER
========================================================= */

header {
    position: absolute;

    inset: 0 0 auto;

    z-index: 5;

    padding: 35px 5vw;

    display: flex;

    justify-content: space-between;
    align-items: center;
}

.brand img {
    width: 125px;

    filter:
        drop-shadow(
            0 8px 18px
            rgba(0, 0, 0, 0.45)
        );
}

.support {
    font-size: 20px;

    font-weight: 700;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.support span {
    font-size: 25px;

    margin-right: 10px;
}

.support:hover {
    color: #ffc107;

    transform: translateY(-2px);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: absolute;

    z-index: 4;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -42%);

    width: 100%;

    text-align: center;
}

.hero-logo {
    width: 250px;

    margin:
        0 auto 35px;

    filter:
        drop-shadow(
            0 12px 25px
            rgba(0, 0, 0, 0.55)
        );
}

.hero-content h1 {
    font-size:
        clamp(
            48px,
            6.5vw,
            100px
        );

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: 4px;

    text-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.65);
}

.hero-fade {
    position: absolute;

    bottom: 0;

    left: 0;
    right: 0;

    height: 260px;

    background:
        linear-gradient(
            transparent,
            #17162b
        );

    z-index: 3;
}


/* =========================================================
   MAIN
========================================================= */

.awaits {
    overflow: hidden;

    background:
        linear-gradient(
            #17162b,
            #24213c 40%,
            #17162b
        );
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {
    text-align: center;

    padding:
        120px
        30px
        100px;
}

.section-title h2 {
    font-size:
        clamp(
            55px,
            8vw,
            125px
        );

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: 8px;

    text-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.55);
}

.section-title i {
    display: block;

    width: 90px;

    height: 4px;

    background: #ffc107;

    margin:
        35px auto 0;
}


/* =========================================================
   GENERIC FEATURE
========================================================= */

.feature {
    position: relative;

    width: 100%;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.copy {
    position: relative;

    z-index: 4;

    width: 43%;

    padding:
        80px
        7vw;
}

.copy small {
    display: block;

    margin-bottom: 20px;

    color: #ffc107;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 5px;
}

.copy h3 {
    margin-bottom: 30px;

    font-size:
        clamp(
            50px,
            6vw,
            95px
        );

    line-height: 0.88;

    font-weight: 900;

    letter-spacing: 2px;

    text-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.55);
}

.copy p {
    max-width: 430px;

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   CHARACTER
========================================================= */

.character {
    min-height: 780px;

    background:
        radial-gradient(
            circle at 75% 55%,
            rgba(255, 193, 7, 0.18),
            transparent 38%
        );
}

.art {
    position: absolute;

    z-index: 3;
}

.character .art {
    right: -3%;
    bottom: -20px;

    width: 62%;

    max-width: 900px;

    transition:
        transform 0.7s ease;
}

.character .art img {
    width: 100%;

    filter:
        drop-shadow(
            0 25px 35px
            rgba(0, 0, 0, 0.55)
        );
}

.character:hover .art {
    transform:
        translateX(-15px)
        scale(1.02);
}


/* =========================================================
   02 — CITY SHOWCASE
========================================================= */

.city-showcase {
    position: relative;

    width: 100%;

    height: 100vh;

    min-height: 720px;

    overflow: hidden;

    margin: 0;
    padding: 0;

    background: #080b18;
}


/* FULL IMAGE */

.city-showcase-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    display: block;

    object-fit: cover;

    object-position: center center;

    z-index: 1;
}


/* IMAGE DARKENING / TEXT READABILITY */

.city-showcase-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(5, 7, 18, 0.00) 25%,
            rgba(5, 7, 18, 0.04) 45%,
            rgba(5, 7, 18, 0.18) 70%,
            rgba(5, 7, 18, 0.48) 100%
        );
}


/* TEXT AREA */

.city-showcase-content {
    width: 43%;

    max-width: 650px;

    margin-right: 7%;

    color: #ffffff;

    text-align: left;
}


/* NUMBER */

.city-number {
    display: block;

    margin-bottom: 28px;

    color: #ffc107;

    font-size: 22px;

    font-weight: 800;

    letter-spacing: 7px;

    line-height: 1;
}


/* HEADING */

.city-showcase-content h2 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            64px,
            6vw,
            110px
        );

    font-weight: 900;

    line-height: 0.92;

    letter-spacing: -3px;

    text-transform: uppercase;

    text-shadow:
        0 4px 25px
        rgba(0, 0, 0, 0.40);
}


/* YELLOW LINE */

.city-yellow-line {
    width: 64px;

    height: 4px;

    margin-top: 34px;

    margin-bottom: 28px;

    background: #ffc107;
}


/* DESCRIPTION */

.city-showcase-content p {
    max-width: 560px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 20px;

    font-weight: 400;

    line-height: 1.7;

    text-shadow:
        0 2px 12px
        rgba(0, 0, 0, 0.55);
}


/* =========================================================
   CAR
========================================================= */

.car {
    min-height: 780px;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(100, 30, 180, 0.45),
            transparent 43%
        );
}

.car .art {
    right: -6%;
    bottom: 10px;

    width: 68%;

    max-width: 1050px;

    transition:
        transform 0.7s ease;
}

.car .art img {
    width: 100%;

    filter:
        drop-shadow(
            0 35px 40px
            rgba(0, 0, 0, 0.68)
        );
}

.car:hover .art {
    transform:
        translateX(-15px)
        scale(1.02);
}


/* =========================================================
   FEATURE ACCENT LINE
========================================================= */

.feature:before {
    content: "";

    position: absolute;

    left: 7vw;

    bottom: 55px;

    width: 100px;

    height: 3px;

    background: #ffc107;

    z-index: 6;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(255, 193, 7, 0.14),
            transparent 30%
        ),
        linear-gradient(
            #17162b,
            #12111f
        );

    border-top:
        1px solid
        rgba(255, 193, 7, 0.08);
}

.glow {
    position: absolute;

    width: 600px;
    height: 600px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(255, 193, 7, 0.08),
            transparent 68%
        );

    filter: blur(30px);
}

.cta-content {
    position: relative;

    z-index: 2;

    padding:
        100px
        25px;
}

.cta small {
    display: block;

    margin-bottom: 28px;

    color: #ffc107;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 6px;
}

.cta h2 {
    font-size:
        clamp(
            50px,
            7vw,
            105px
        );

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: 2px;

    text-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.55);
}

.cta p {
    margin:
        30px
        0
        38px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 18px;
}

.cta a {
    display: inline-flex;

    gap: 18px;

    align-items: center;

    padding:
        17px
        34px;

    background: #ffc107;

    color: #15131e;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;

    border-radius: 3px;

    box-shadow:
        0 10px 35px
        rgba(255, 193, 7, 0.16);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.cta a:hover {
    transform:
        translateY(-5px);

    background: #ffd54f;

    box-shadow:
        0 16px 45px
        rgba(255, 193, 7, 0.28);
}

.cta a b {
    font-size: 20px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    position: relative;

    background: #0a0911;

    border-top:
        1px solid
        rgba(255, 193, 7, 0.12);
}

footer:before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 180px;
    height: 2px;

    transform:
        translateX(-50%);

    background: #ffc107;
}


/* =========================================================
   FOOTER MAIN ROW
========================================================= */

.footer-inner {
    width:
        min(
            1250px,
            calc(100% - 80px)
        );

    margin: auto;

    padding:
        75px
        0
        55px;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    gap: 40px;
}


/* =========================================================
   FOOTER LEFT — ISRP
========================================================= */

.footer-brand {
    display: flex;

    align-items: center;

    gap: 22px;

    justify-self: start;
}

.footer-brand img {
    width: 85px;

    filter:
        drop-shadow(
            0 7px 18px
            rgba(0, 0, 0, 0.45)
        );
}

.footer-brand-text {
    display: flex;

    flex-direction: column;
}

.footer-brand-text strong {
    font-size: 20px;

    letter-spacing: 1px;
}

.footer-brand-text span {
    margin-top: 7px;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 12px;
}


/* =========================================================
   FOOTER CENTER — SOCIALS
========================================================= */

.footer-social-section {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-self: center;
}

.footer-social-title {
    margin-bottom: 17px;

    color: #ffc107;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;
}

.socials {
    display: flex;

    gap: 14px;
}

.socials a {
    width: 48px;
    height: 48px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        rgba(255, 255, 255, 0.72);

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.socials svg {
    width: 20px;
    height: 20px;

    fill: currentColor;
}

.socials a:hover {
    color: #ffc107;

    border-color:
        rgba(255, 193, 7, 0.55);

    background:
        rgba(255, 193, 7, 0.08);

    transform:
        translateY(-4px)
        scale(1.05);
}


/* =========================================================
   FOOTER RIGHT — KLYVORA
========================================================= */

.footer-klyvora {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-self: end;
}

.footer-klyvora img {
    width: 110px;

    max-height: 65px;

    object-fit: contain;

    margin-bottom: 10px;

    opacity: 0.82;
}

.footer-klyvora span {
    color:
        rgba(255, 255, 255, 0.32);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 4px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width:
        min(
            1250px,
            calc(100% - 80px)
        );

    margin: auto;

    padding:
        28px
        0
        35px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);

    display: flex;

    flex-direction: column;

    align-items: center;
}


/* LINKS ABOVE KLYVORA / COPYRIGHT */

.footer-bottom nav {
    display: flex;

    justify-content: center;

    gap: 35px;

    margin: 0 0 22px;

    padding: 0;

    border: 0;
}

.footer-bottom nav a {
    color:
        rgba(255, 255, 255, 0.52);

    font-size: 13px;

    transition:
        color 0.2s ease;
}

.footer-bottom nav a:hover {
    color: #ffc107;
}

.footer-bottom em {
    color:
        rgba(255, 255, 255, 0.24);

    font-size: 11px;

    font-style: normal;
}


/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-page {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at top center,
            rgba(255, 193, 7, 0.08),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #06070d 0%,
            #0e1224 100%
        );

    color: #ffffff;
}

.legal-header {
    max-width: 1220px;

    margin: 0 auto;

    padding:
        28px 24px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.legal-header img {
    width: 78px;

    filter:
        drop-shadow(
            0 8px 20px
            rgba(0, 0, 0, 0.35)
        );
}

.legal-header .support-link {
    color: #ffffff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 0.5px;
}

.legal-content {
    max-width: 980px;

    margin: 0 auto;

    padding:
        24px 24px 80px;
}

.back-button {
    margin: 0 0 24px;

    min-width: 150px;
    height: 46px;

    padding: 0 22px;

    border-radius: 999px;

    background: transparent;
    color: #ffc107;

    border: 1px solid
        rgba(255, 193, 7, 0.35);

    box-shadow:
        inset 0 0 0 1px
        rgba(255, 255, 255, 0.02);
}

.back-button:hover {
    transform: translateY(-2px);

    background: rgba(255, 193, 7, 0.1);
    color: #ffd84d;

    box-shadow:
        0 10px 24px
        rgba(255, 193, 7, 0.12);
}

.legal-label {
    display: inline-block;

    color: #ffc107;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;

    margin-bottom: 18px;
}

.legal-content h1 {
    font-size: clamp(34px, 5vw, 60px);

    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -1.5px;

    margin-bottom: 14px;
}

.legal-updated {
    color: rgba(255, 255, 255, 0.56);

    font-size: 14px;
    letter-spacing: 0.4px;

    margin-bottom: 34px;
    padding-bottom: 18px;

    border-bottom: 1px solid
        rgba(255, 255, 255, 0.1);
}

.legal-content section {
    margin-bottom: 18px;

    padding: 24px 26px;

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.18);
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 800;

    margin-bottom: 12px;

    color: #ffffff;
}

.legal-content p,
.legal-content li {
    color:
        rgba(255, 255, 255, 0.74);

    font-size: 16px;
    line-height: 1.85;
}

.legal-content p {
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 22px;
    margin-top: 8px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 50px;

    padding: 0 24px;

    background: linear-gradient(
        135deg,
        #ffe27a 0%,
        #ffc107 50%,
        #ffb300 100%
    );
    color: #111111;

    text-decoration: none;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    border-radius: 999px;

    box-shadow:
        0 12px 28px
        rgba(255, 193, 7, 0.26);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.legal-button:hover {
    transform: translateY(-3px);

    filter: brightness(1.06);

    box-shadow:
        0 16px 34px
        rgba(255, 193, 7, 0.32);
}

.legal-footer {
    max-width: 980px;

    margin: 0 auto;

    padding:
        0 24px 40px;

    text-align: center;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 13px;
    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .city-showcase-content {
        width: 45%;

        margin-right: 5%;
    }

    .city-showcase-content h2 {
        font-size:
            clamp(
                55px,
                6vw,
                85px
            );
    }

    .city-showcase-content p {
        font-size: 18px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .hero {
        height: 780px;
    }

    header {
        padding: 25px;
    }

    .brand img {
        width: 100px;
    }

    .hero-logo {
        width: 145px;
    }

    .hero-content h1 {
        font-size: 48px;

        letter-spacing: 2px;
    }

    .section-title {
        padding:
            90px
            20px
            70px;
    }

    .feature {
        min-height: 780px;

        align-items: flex-start;

        justify-content: flex-end;

        flex-direction: column;
    }

    .copy {
        width: 100%;

        padding:
            50px
            28px;

        background:
            linear-gradient(
                transparent,
                rgba(23, 22, 43, 0.92)
            );

        z-index: 4;
    }

    .copy h3 {
        font-size: 58px;
    }

    .copy p {
        font-size: 15px;
    }

    .character .art {
        right: -18%;

        top: 20px;

        bottom: auto;

        width: 115%;

        max-width: none;

        opacity: 0.85;
    }

    .car .art {
        right: -25%;

        top: 60px;

        bottom: auto;

        width: 135%;

        max-width: none;
    }

    .feature:before {
        left: 28px;

        bottom: 25px;
    }


    /* CITY */

    .city-showcase {
        height: 700px;

        min-height: 700px;
    }

    .city-showcase-overlay {
        align-items: flex-end;

        padding:
            0 0 70px;

        background:
            linear-gradient(
                0deg,
                rgba(5, 7, 18, 0.88) 0%,
                rgba(5, 7, 18, 0.30) 55%,
                rgba(5, 7, 18, 0.05) 100%
            );
    }

    .city-showcase-content {
        width: 90%;

        max-width: 700px;

        margin:
            0 auto;
    }

    .city-showcase-content h2 {
        font-size: 68px;
    }


    /* FOOTER */

    .footer-inner {
        width:
            calc(100% - 50px);

        grid-template-columns:
            1fr;

        justify-items: center;

        text-align: center;

        padding-top: 65px;
    }

    .footer-brand {
        justify-self: center;
    }

    .footer-social-section {
        justify-self: center;
    }

    .footer-klyvora {
        justify-self: center;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero {
        height: 700px;
    }

    .support {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-logo {
        width: 125px;
    }

    .section-title h2 {
        font-size: 48px;

        letter-spacing: 3px;
    }

    .copy h3 {
        font-size: 48px;
    }

    .character .art {
        width: 130%;

        right: -30%;
    }

    .car .art {
        width: 155%;

        right: -35%;
    }


    /* CITY */

    .city-showcase {
        height: 680px;

        min-height: 680px;
    }

    .city-showcase-image {
        object-position:
            center center;
    }

    .city-showcase-overlay {
        align-items: flex-end;

        padding-bottom: 45px;
    }

    .city-showcase-content {
        width:
            calc(100% - 40px);

        margin:
            0 20px;
    }

    .city-number {
        font-size: 16px;

        margin-bottom: 18px;

        letter-spacing: 5px;
    }

    .city-showcase-content h2 {
        font-size:
            clamp(
                48px,
                13vw,
                68px
            );

        line-height: 0.95;

        letter-spacing: -2px;
    }

    .city-yellow-line {
        margin-top: 25px;

        margin-bottom: 20px;
    }

    .city-showcase-content p {
        font-size: 16px;

        line-height: 1.55;
    }


    /* CTA */

    .cta {
        min-height: 570px;
    }

    .cta-content {
        padding:
            80px
            20px;
    }

    .cta small {
        font-size: 11px;

        letter-spacing: 4px;
    }

    .cta h2 {
        font-size: 47px;

        letter-spacing: 1px;
    }

    .cta p {
        font-size: 15px;
    }


    /* FOOTER */

    .footer-inner {
        width:
            calc(100% - 40px);

        padding-top: 60px;

        gap: 45px;
    }

    .footer-brand {
        flex-direction: column;

        gap: 12px;
    }

    .footer-brand-text {
        align-items: center;
    }

    .footer-brand img {
        width: 75px;
    }

    .footer-bottom {
        width:
            calc(100% - 40px);
    }

    .footer-bottom nav {
        flex-direction: column;

        gap: 17px;

        align-items: center;
    }

}