/* Home refresh */
* {
    box-sizing: border-box;
}

.navbar {
    min-height: 64px;
    padding: 6px 26px;
    background: rgba(12, 15, 20, 0.92);
    border-bottom: 1px solid rgba(115, 196, 252, 0.22);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
    gap: 22px;
}

.brand-link {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.brand-link img {
    display: block;
    height: 50px;
    width: auto;
    transition: .2s;
}

.brand-link:hover img {
    filter: brightness(1.12);
}

.nav-list {
    flex: 1 1 auto;
    justify-content: center;
    gap: 4px;
}

.nav-list li {
    padding: 0;
}

.nav-item {
    min-height: 38px;
    padding: 0 12px;
    color: #d8ecfb;
    font-size: 14px;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.nav-item::before {
    width: 16px;
    height: 16px;
    margin-right: 7px;
}

.nav-item:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.auth {
    margin-left: 0;
    flex: 0 0 auto;
}

.navbar .cta-button2 {
    width: auto;
    min-width: 142px;
    padding: 12px 22px;
    font-size: 14px;
    line-height: 1;
}

.hero-section {
    min-height: 92vh;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 96px 24px 72px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 8, 13, 0.86) 0%, rgba(8, 12, 18, 0.56) 44%, rgba(3, 5, 9, 0.84) 100%),
        linear-gradient(0deg, rgba(2, 4, 8, 0.92) 0%, rgba(2, 4, 8, 0.08) 24%, rgba(2, 4, 8, 0.28) 100%),
        url('../../assets/images/bg/bg.jpg') no-repeat center center;
    background-size: cover;
}

.hero-content {
    width: min(980px, 100%);
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
}

.hero-brand {
    display: block;
    width: 360px;
    max-width: 76vw;
    height: auto;
    margin: 0 auto 14px;
    filter: drop-shadow(0 0 24px rgba(115, 196, 252, 0.48));
}

.hero-kicker {
    margin: 0 0 10px;
    color: #f2be55;
    font-family: DIN Next W1G Bold, Arial, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.hero-title {
    max-width: 760px;
    margin: 0 auto 14px;
    color: #ffffff;
    font-family: DIN Next W1G Bold, Arial, sans-serif;
    font-size: 56px;
    line-height: 1.02;
    text-transform: uppercase;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.85);
}

.hero-copy {
    max-width: 720px;
    margin: 0 auto 28px;
    color: #b9d8eb;
    font-size: 18px;
    line-height: 1.55;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.hero-actions .cta-button3 {
    width: 190px;
    padding: 16px 30px;
    font-size: 21px;
    line-height: 1;
}

.hero-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    padding: 0 28px;
    color: #f7f0df;
    text-decoration: none;
    text-transform: uppercase;
    font-family: DIN Next W1G Bold, Arial, sans-serif;
    font-size: 15px;
    border: 1px solid rgba(242, 190, 85, 0.62);
    border-radius: 6px;
    background: rgba(18, 18, 18, 0.55);
    box-shadow: inset 0 0 16px rgba(242, 190, 85, 0.08), 0 10px 28px rgba(0, 0, 0, 0.28);
    transition: .2s;
}

.hero-link-button:hover {
    color: #ffffff;
    border-color: rgba(242, 190, 85, 0.94);
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 18px;
}

.hero-stats span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 15px;
    color: #dceefa;
    font-size: 14px;
    border: 1px solid rgba(115, 196, 252, 0.24);
    border-radius: 6px;
    background: rgba(4, 9, 15, 0.68);
    box-shadow: inset 0 0 14px rgba(115, 196, 252, 0.08);
}

.hero-stats b {
    margin-right: 6px;
    color: #f2be55;
    font-family: DIN Next W1G Bold, Arial, sans-serif;
}

.hero-status {
    max-width: 720px;
    margin: 0 auto;
    color: #89adbf;
    font-size: 14px;
}

.feature-column {
    border: 1px solid rgba(115, 196, 252, 0.18);
    border-radius: 8px;
    background: rgba(5, 8, 13, 0.74);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.feature-column h2 {
    color: #f2be55;
    background: rgba(11, 46, 67, 0.92);
    border-bottom: 1px solid rgba(115, 196, 252, 0.18);
}

@media only screen and (max-width: 1100px) {
    .navbar {
        gap: 12px;
        padding: 6px 14px;
    }

    .brand-link img {
        height: 44px;
    }

    .nav-item {
        padding: 0 8px;
        font-size: 13px;
    }

    .navbar .cta-button2 {
        min-width: 124px;
        padding: 11px 16px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 46px;
    }
}

@media only screen and (max-width: 768px) {
    .navbar {
        min-height: 56px;
        flex-direction: row;
        align-items: center;
        padding: 6px 12px;
    }

    .brand-link img {
        height: 42px;
    }

    .hamburger {
        order: 2;
        margin-left: auto;
        margin-right: 0;
        align-self: center;
    }

    .auth {
        display: none;
    }

    .nav-list {
        order: 3;
        flex-basis: 100%;
        padding: 8px 0 10px;
        background: rgba(12, 15, 20, 0.96);
        border-top: 1px solid rgba(115, 196, 252, 0.16);
    }

    .nav-list li {
        padding: 4px 0;
    }

    .nav-item {
        justify-content: center;
        min-height: 34px;
        font-size: 13px;
    }

    .hero-section {
        min-height: 92vh;
        padding: 86px 18px 54px;
        background-position: 35% center;
    }

    .hero-brand {
        width: 280px;
    }

    .hero-kicker {
        font-size: 13px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.08;
    }

    .hero-copy {
        font-size: 16px;
        line-height: 1.45;
    }

    .hero-actions .cta-button3,
    .hero-link-button {
        width: min(280px, 100%);
    }

    .hero-stats {
        gap: 8px;
    }

    .hero-stats span {
        min-height: 38px;
        padding: 0 12px;
        font-size: 13px;
    }
}
