/* ===================== */
/* Landing Page Styles */
/* ===================== */

html, body {
    min-height: 100vh;
}

body {
    background-color: #080b0d;
}

#layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===================== */
/* Hero Section */
/* ===================== */

.landing-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.landing-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(254, 1, 168, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at center bottom, rgba(1, 47, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.landing-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.landing-hero__logo {
    height: 4rem;
    margin-bottom: 3rem;
}

.landing-hero__title {
    font-family: var(--font-bold, 'GilroyBold'), sans-serif;
    font-size: 4rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 3rem;
}

.landing-hero__highlight {
    background: linear-gradient(103deg, #fe01a8 32.44%, #012fff 72.55%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-hero__btn {
    min-width: 20rem;
}

/* ===================== */
/* Benefits Section */
/* ===================== */

.landing-benefits {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, transparent 0%, rgba(254, 1, 168, 0.03) 100%);
}

.landing-benefits__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.landing-benefits__list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    max-width: 60rem;
}

.landing-benefits__item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0;
    font-family: var(--font-bold, 'GilroyBold'), sans-serif;
    font-size: 1.8rem;
    color: #fff;
    text-align: left;
}

.landing-benefits__icon {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    color: #fe01a8;
}

.landing-benefits__text {
    margin-bottom: 3rem;
    font-size: 1.6rem;
    color: #6b7276;
    max-width: 50rem;
}

.landing-benefits__btn {
    min-width: 22rem;
}

/* ===================== */
/* Footer */
/* ===================== */

.landing-footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-footer__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.landing-footer__links a {
    font-size: 1.2rem;
    color: #6b7276;
    text-decoration: none;
    transition: color 0.3s ease;
}

.landing-footer__links a:hover {
    color: #fe01a8;
}

.landing-footer__copy {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7276;
}

/* ===================== */
/* Responsive */
/* ===================== */

@media (max-width: 768px) {
    .landing-hero {
        min-height: 50vh;
        padding: 4rem 0 3rem;
    }

    .landing-hero__logo {
        height: 3rem;
        margin-bottom: 2rem;
    }

    .landing-hero__title {
        font-size: 2.6rem;
        margin-bottom: 2rem;
    }

    .landing-hero__btn {
        min-width: 16rem;
    }

    .landing-benefits {
        padding: 3rem 0 4rem;
    }

    .landing-benefits__item {
        font-size: 1.4rem;
        padding: 1rem 0;
        gap: 1rem;
    }

    .landing-benefits__icon {
        width: 2rem;
        height: 2rem;
    }

    .landing-benefits__text {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .landing-benefits__btn {
        min-width: 18rem;
    }
}

@media (max-width: 480px) {
    .landing-hero__title {
        font-size: 2.2rem;
    }

    .landing-benefits__item {
        font-size: 1.3rem;
    }

    .landing-benefits__list {
        padding: 0 1rem;
    }

    .landing-footer__links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}
