﻿:root {
    --pink: #ff7aa2;
    --orange: #ffa26b;
    --sky: #6ecbff;
    --ink: #111827;
    --muted: #6b7280;
    --card: #ffffff;
    --shadow: 0 14px 38px rgba(17,24,39,.12), 0 4px 12px rgba(17,24,39,.06);
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font: 16px/1.6 'Poppins',sans-serif;
    color: var(--ink);
    background: radial-gradient(1200px 600px at -10% -10%, var(--sky) 0%, transparent 40%), radial-gradient(1200px 600px at 110% -20%, var(--pink) 0%, transparent 45%), linear-gradient(180deg, #fff 0%, #fff7fb 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

    body.noscroll {
        overflow: hidden
    }

.container {
    width: min(1200px,92%);
    margin-inline: auto
}

h1, h2, h3 {
    margin: 0 0 .5rem
}

.lead {
    color: var(--muted)
}

    .lead.mini {
        font-size: .95rem
    }

.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.1rem;
    border-radius: 999px;
    border: 1px solid #00000010;
    background: #111827;
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow);
    cursor: pointer
}

    .btn.ghost {
        background: #fff;
        color: var(--ink);
        border-color: #00000020
    }

    .btn.small {
        padding: .55rem .9rem;
        font-size: .9rem
    }

.tag {
    border: 1px dashed #00000016;
    padding: .35rem .6rem;
    border-radius: 999px;
    background: #fff;
    font-size: .85rem
}

.tags {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem
}

.cta-row {
    display: flex;
    gap: .8rem;
    align-items: center
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255,255,255,.75);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid #00000012
}

    header.shrink {
        background: rgba(255,255,255,.9);
        box-shadow: 0 4px 20px rgba(0,0,0,.08);
        padding-block: .2rem;
        transition: all .3s ease
    }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem 0
}

.brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-weight: 900;
    letter-spacing: .2px
}

    .brand .logo {
        inline-size: 36px;
        block-size: 36px;
        border-radius: 10px;
        object-fit: cover;
        box-shadow: var(--shadow)
    }

.menu {
    display: flex;
    align-items: center;
    gap: 1rem
}

    .menu a {
        position: relative;
        padding: .6rem .9rem;
        font-weight: 600;
        text-transform: capitalize;
        color: var(--ink);
        transition: color .25s ease;
        text-decoration: none
    }

        .menu a:hover {
            color: var(--pink)
        }

.burger {
    display: none;
    inline-size: 40px;
    block-size: 40px;
    border-radius: 10px;
    border: 1px solid #00000018;
    background: #fff;
    box-shadow: var(--shadow);
    cursor: pointer
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 16px;
        border-radius: 1rem;
        box-shadow: 0 10px 25px rgba(0,0,0,.15);
        padding: 1rem 1.2rem
    }

        .menu.show {
            display: flex
        }

    .burger {
        display: block
    }
}

.ribbon {
    height: 3px;
    background: linear-gradient(90deg,var(--pink),var(--orange),var(--sky));
    background-size: 200% 100%;
    animation: shift 6s linear infinite
}

@keyframes shift {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 200% 0
    }
}

/* HERO */
.hero .container {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: start;
    padding: 4rem 0
}

.headline {
    font-size: clamp(2rem,3.6vw + .5rem,3.3rem);
    line-height: 1.1
}

.accent {
    background: linear-gradient(90deg,var(--pink),var(--orange),var(--sky));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

/* Spotlight (unchanged) */
.hero-showcase .spotlight-card {
    background: #fff;
    border-radius: 1.4rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #00000010;
    display: flex;
    flex-direction: column;
    /*max-height: 560px*/
}

.spotlight-media {
    position: relative;
    aspect-ratio: 4/3;
    background: #0b1220;
    display: grid;
    place-items: center
}

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

.rating-badge {
    position: absolute;
    right: .8rem;
    bottom: .8rem;
    background: #fff;
    border-radius: .8rem;
    padding: .3rem .55rem;
    font-weight: 800;
    box-shadow: var(--shadow);
    color: #0b1220;
    border: 1px solid #00000010
}

.spotlight-body {
    padding: 1rem 1.1rem;
    overflow: auto
}

.facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .35rem;
    margin: .6rem 0 1rem;
    padding: 0;
    list-style: none
}

    .facts li {
        background: #f8fafc;
        border: 1px dashed #e5e7eb;
        border-radius: .7rem;
        padding: .45rem .6rem;
        font-size: .9rem
    }

.spotlight-tabs {
    display: flex;
    gap: .5rem;
    position: sticky;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.85) 0, #fff 40%);
    padding-top: .4rem
}

    .spotlight-tabs .tab {
        flex: 1;
        border: 1px solid #e5e7eb;
        background: #fff;
        padding: .5rem .6rem;
        border-radius: .7rem;
        cursor: pointer;
        font-weight: 700
    }

        .spotlight-tabs .tab.active {
            color: #0b1220;
            background: linear-gradient(90deg, rgba(255,122,162,.15), rgba(255,162,107,.15), rgba(110,203,255,.15));
            border-color: #ffd2e1
        }

/* Sections */
.section {
    padding: 3.2rem 0
}

.highlighted, .products {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap: 1rem;
    align-items: stretch
}

/* ===== Product cards with FULL-BLEED BG & BOTTOM OVERLAY ===== */
.card.bgcard {
    grid-column: span 4;
    position: relative;
    min-height: 620px;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #00000012;
    isolation: isolate;
    background: #0b1220;
}

    .card.bgcard::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--card-bg) center/cover no-repeat;
        transform: scale(1.02);
        z-index: -2;
    }

    .card.bgcard::after {
        content: "";
        position: absolute;
        inset: 0;
        /* subtle top fade + strong bottom scrim under overlay */
        background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.75) 100%);
        z-index: -1;
    }

/* Bottom overlay that holds details above the button */
.overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    padding: 1rem 1.1rem 1.1rem;
}

.overlay-body {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,.35)
}

    .overlay-body .title {
        margin: .15rem 0
    }

    .overlay-body .desc {
        opacity: .95;
        min-height: 48px
    }

.overlay .chips {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap
}

.pill {
    font-size: .75rem;
    padding: .2rem .55rem;
    border-radius: 999px
}

.chip {
    border-radius: .7rem;
    padding: .35rem .6rem;
    font-size: .9rem
}

.glass {
    backdrop-filter: blur(6px) saturate(120%);
    background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.12));
    border: 1px solid rgba(255,255,255,.28);
    color: #fff;
}

/* fixed button area at very bottom */
.overlay-footer {
    display: flex;
    justify-content: flex-start
}

    .overlay-footer .btn {
        background: #fff;
        color: #111827;
        border-color: #00000010
    }

/* Videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap: 1rem
}

.vertical {
    grid-column: span 4
}

.phone {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
    aspect-ratio: 9/16
}

    .phone video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover
    }

/* Footer */
footer {
    background: #0b1220;
    color: #cbd5e1;
    margin-top: 2rem
}

.footer-wrap {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap: 1.2rem;
    padding: 2.4rem 0
}

.foot-brand {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.foot-brand-row {
    display: flex;
    align-items: center;
    gap: .6rem
}

.foot-brand .logo {
    inline-size: 42px;
    block-size: 42px;
    border-radius: 10px
}

.foot-links {
    grid-column: span 4
}

    .foot-links a {
        display: block;
        color: #cbd5e1;
        padding: .25rem 0
    }

.contact-info {
    grid-column: span 4
}

    .contact-info a {
        color: #cbd5e1
    }

.foot-bottom {
    border-top: 1px solid #203049;
    padding: 1rem 0;
    text-align: center;
    color: #94a3b8
}

/* Modal */
.modal[aria-hidden="true"] {
    display: none
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(2px)
}

.modal-dialog {
    position: relative;
    z-index: 101;
    width: min(920px, 92%);
    margin: 6vh auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.1fr
}

.modal-media {
    background: #0b1220
}

    .modal-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

.modal-body {
    padding: 1.1rem
}

.modal-close {
    position: absolute;
    top: .6rem;
    right: .6rem;
    border: 1px solid #00000020;
    background: #fff;
    border-radius: .6rem;
    padding: .35rem .5rem;
    cursor: pointer
}

@media (max-width: 820px) {
    .modal-dialog {
        grid-template-columns: 1fr
    }
}

/* Responsive grid */
@media (max-width: 980px) {
    .hero .container {
        grid-template-columns: 1fr
    }

    .card.bgcard {
        grid-column: span 6;
        min-height: 560px
    }
}

@media (max-width: 640px) {
    .card.bgcard {
        grid-column: span 12;
        min-height: 520px
    }
}
