/* =========================================================
   PanelSaga Products
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #08080f;
    color: #f5f5f7;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.products-page {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(126, 55, 255, 0.12),
            transparent 35%
        ),
        #08080f;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.products-nav {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 28px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-icon {
    font-size: 25px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #9b9ba8;
    font-size: 14px;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a.active {
    color: #ffffff;
}


/* =========================================================
   HERO
   ========================================================= */

.products-hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 20px 70px;
}

.hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(130, 60, 255, 0.10);

    filter: blur(100px);

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 25px;

    color: #a879ff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.eyebrow span {
    width: 28px;
    height: 1px;

    background: #a879ff;

    opacity: 0.6;
}

.products-hero h1 {
    margin: 0;

    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.05;

    letter-spacing: -3px;
}

.products-hero h1 strong {
    background: linear-gradient(
        90deg,
        #ffffff,
        #b784ff
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.products-hero > .hero-content > p {
    margin: 22px 0 0;

    color: #b5b5c0;

    font-size: 21px;
}

.hero-line {
    width: 70px;
    height: 2px;

    margin: 30px auto;

    background: #914cff;

    box-shadow:
        0 0 20px rgba(145, 76, 255, 0.7);
}

.hero-description {
    max-width: 600px;

    margin: 0 auto !important;

    color: #777784 !important;

    font-size: 15px !important;
    line-height: 1.8;
}


/* =========================================================
   PRODUCTS SECTION
   ========================================================= */

.products-section {
    width: min(1100px, 92%);
    margin: 0 auto;

    padding: 40px 0 120px;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    margin-bottom: 30px;
}

.section-number {
    color: #8550d9;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-label {
    color: #777784;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 8px 0 0;

    font-size: 30px;
    letter-spacing: -1px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.product-card {
    position: relative;

    min-height: 430px;

    display: flex;
    justify-content: space-between;

    overflow: hidden;

    padding: 48px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    border-color: rgba(151, 86, 255, 0.45);
}

.product-card-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    right: -100px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(123, 54, 255, 0.15);

    filter: blur(70px);

    pointer-events: none;
}

.product-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.product-badge {
    display: inline-block;

    margin-bottom: 22px;
    padding: 7px 12px;

    border: 1px solid rgba(168, 121, 255, 0.35);
    border-radius: 999px;

    color: #bd96ff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;

    background: rgba(135, 72, 255, 0.08);
}

.product-content h2 {
    margin: 0;

    font-size: clamp(34px, 5vw, 52px);
    letter-spacing: -2px;
}

.product-tagline {
    max-width: 600px;

    margin: 15px 0 12px;

    color: #ffffff;

    font-size: 18px;
    line-height: 1.6;
}

.product-description {
    max-width: 650px;

    margin: 0;

    color: #858592;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   PRODUCT STATS
   ========================================================= */

.stats {
    display: flex;
    gap: 45px;

    margin: 35px 0;
}

.stats div {
    display: flex;
    flex-direction: column;
}

.stats span {
    font-size: 25px;
    font-weight: 700;
}

.stats small {
    margin-top: 4px;

    color: #666672;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* =========================================================
   PRODUCT BOTTOM
   ========================================================= */

.product-bottom {
    display: flex;
    align-items: center;
    gap: 45px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price {
    display: flex;
    flex-direction: column;
}

.price small {
    margin-bottom: 4px;

    color: #666672;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.price strong {
    font-size: 30px;
}

.product-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 13px 22px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;

    background: #ffffff;
    color: #09090d;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
}

.product-button span {
    font-size: 18px;

    transition: transform 0.25s ease;
}

.product-button:hover {
    background: #a66cff;
    color: #ffffff;

    box-shadow:
        0 10px 35px rgba(130, 62, 255, 0.30);
}

.product-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   PRODUCT MARK
   ========================================================= */

.product-mark {
    position: absolute;

    right: 45px;
    top: 45px;

    width: 130px;
    height: 130px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(143, 77, 255, 0.12),
            transparent 70%
        );

    transform: rotate(8deg);
}

.product-mark span {
    font-size: 45px;
}

.product-mark small {
    margin-top: 5px;

    color: #777784;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 2px;

    text-align: center;
}


/* =========================================================
   FOOTER
   ========================================================= */

.products-footer {
    width: min(1200px, 92%);
    margin: 0 auto;

    padding: 45px 0 35px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    text-align: center;
}

.footer-brand {
    font-size: 18px;
    font-weight: 700;
}

.products-footer p {
    margin: 8px 0 25px;

    color: #777784;

    font-size: 13px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;

    margin-bottom: 25px;
}

.footer-links a {
    color: #777784;

    font-size: 12px;

    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    color: #44444e;

    font-size: 10px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .products-nav {
        padding: 20px 0;
    }

    .brand {
        font-size: 21px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .products-hero {
        min-height: 430px;

        padding: 65px 15px 50px;
    }

    .products-hero h1 {
        letter-spacing: -2px;
    }

    .products-hero > .hero-content > p {
        font-size: 18px;
    }

    .products-section {
        padding-bottom: 80px;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .product-card {
        padding: 30px 25px;

        min-height: auto;
    }

    .product-content h2 {
        font-size: 35px;
    }

    .product-tagline {
        font-size: 16px;
    }

    .stats {
        gap: 25px;
    }

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

    .product-button {
        width: 100%;
        justify-content: center;
    }

    .product-mark {
        display: none;
    }

    .footer-links {
        gap: 15px;
    }
}