:root {
    --bg: #0b0d0e;
    --panel: #151718;
    --panel2: #191b1d;
    --line: #303234;
    --text: #f1f1f1;
    --muted: #c2c2c2;
    --orange: #ff9d00;
    --orange2: #ffb21c
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: radial-gradient(circle at 65% 13%,rgba(255,157,0,.10),transparent 28%),linear-gradient(180deg,#080a0b 0%,#0d0f10 48%,#080a0b 100%);
    color: var(--text);
    font-family: Inter,Arial,sans-serif;
    min-width: 320px
}

.site-header {
    height: 59px;
    border-bottom: 1px solid #242628;
    background: rgba(3,4,5,.88);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 20
}

.nav-shell {
    height: 100%;
    max-width: 1358px;
    margin: auto;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

/* TOP NAVIGATION HOME LOGO */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f4f4f4;
    letter-spacing: 3px
}

.nav-logo-image {
    width: 100px;
    height: auto;
    display: block
}

/* OLD TEXT LOGO - NOT USED */
.logo-word {
    font-size: 28px;
    font-weight: 800
}

.logo-dsp {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-left: 6px
}

/* NAVIGATION */
.main-nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 38px
}

    .main-nav > a {
        color: #e9e9e9;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500
    }

        .main-nav > a.active {
            color: var(--orange)
        }

.nav-divider {
    height: 28px;
    width: 1px;
    background: #3a3a3a;
    margin-left: -16px
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 5px
}

    .cart-link svg,
    .explore-button svg,
    .buy-button svg {
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round
    }

    .cart-link svg {
        width: 29px;
        height: 29px;
        color: #ddd
    }

.cart-count {
    position: absolute;
    right: -8px;
    top: 15px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: #111;
    font-size: 10px;
    font-weight: 800
}

.mobile-menu {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 24px
}

/* HERO */
.hero {
    max-width: 1358px;
    margin: auto;
    min-height: 357px;
    display: flex;
    align-items: center;
    padding: 30px 6px 26px
}

.hero-copy {
    padding-left: 6px;
    padding-right: 6px;
    max-width: none;
    width: 100%
}

/* MIDDLE HERO LOGO */
.hero-logo-image {
    width: 280px;
    height: auto;
    display: block;
    margin: 0 auto
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--orange);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .4px
}

.hero h1 {
    font-size: 58px;
    line-height: 1.12;
    letter-spacing: -1.7px;
    margin: 0 0 16px;
    font-weight: 800
}

    .hero h1 span,
    .lower-section h2 span {
        color: var(--orange)
    }

.hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: #d1d1d1;
    margin: 0 0 20px;
    max-width: 100%
}

.explore-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 43px;
    padding: 0 26px;
    border: 1px solid var(--orange);
    border-radius: 3px;
    color: var(--orange);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: .2s ease
}

    .explore-button svg {
        width: 18px;
        height: 18px
    }

    .explore-button:hover,
    .buy-button:hover {
        background: rgba(255,157,0,.08);
        box-shadow: 0 0 22px rgba(255,157,0,.13)
    }

.hero-product {
    position: relative
}

.hero-glow {
    position: absolute;
    inset: -35px -15px;
    background: radial-gradient(ellipse at center,rgba(255,157,0,.28),transparent 64%);
    filter: blur(22px);
    pointer-events: none
}

.plugin-window {
    position: relative;
    border: 1px solid #383838;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 16px 55px rgba(0,0,0,.55)
}

    .plugin-window img {
        width: 100%;
        display: block
    }

/* PRODUCTS */
.products-section {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 0 30px
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 12px
}

.product-card {
    height: 272px;
    border: 1px solid #353738;
    border-radius: 6px;
    background: linear-gradient(145deg,#191b1c,#131516);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 10px 16px;
    box-shadow: inset 0 1px rgba(255,255,255,.025),0 6px 18px rgba(0,0,0,.15);
    transition: transform .2s ease,border-color .2s ease
}

    .product-card:hover {
        transform: translateY(-3px);
        border-color: #4a4a4a
    }

.pack {
    height: 181px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden
}

    .pack img {
        height: 176px;
        width: auto;
        max-width: 90%;
        object-fit: contain;
        display: block
    }

.product-card h2 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin: 4px 0 9px;
    white-space: nowrap
}

.buy-button {
    height: 35px;
    width: 198px;
    border: 1px solid var(--orange);
    border-radius: 3px;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .2s ease;
    margin-top: auto
}

    .buy-button svg {
        width: 17px;
        height: 17px
    }

/* CLIPPER ONLY STOREFRONT */
.clipper-only-grid {
    grid-template-columns: minmax(280px,420px);
    justify-content: start
}

.clipper-product-card .pack img {
    height: 170px;
    width: auto;
    max-width: 100%;
    object-fit: contain
}

/* ABOUT */
.lower-section {
    max-width: 1360px;
    margin: 0 auto;
    padding: 75px 0;
    border-top: 1px solid #242628
}

.lower-inner {
    padding: 0 4px
}

.lower-section h2 {
    font-size: 60px;
    line-height: .98;
    letter-spacing: -2px;
    margin: 8px 0 15px
}

.lower-section p:last-child
/* SUPPORT */
.support-section {
    border-top: 1px solid #242628;
    border-bottom: 1px solid #242628
}

.support-inner {
    max-width: 1360px;
    margin: auto;
    padding: 24px 4px;
    display: flex;
    justify-content: space-between
}

    .support-inner span {
        color: var(--orange);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px
    }

    .support-inner a {
        color: #ddd;
        text-decoration: none;
        font-size: 14px
    }

/* FOOTER */
footer {
    padding: 22px 0
}

.footer-inner {
    max-width: 1360px;
    margin: auto;
    padding: 0 4px;
    display: flex;
    justify-content: space-between;
    color: #767a7d;
    font-size: 11px;
    letter-spacing: 1px
}

/* TABLET */
@media(max-width:1100px) {

    .nav-shell,
    .hero,
    .products-section,
    .lower-section,
    .support-inner,
    .footer-inner {
        width: calc(100% - 32px)
    }

        .hero h1 {
            font-size: 46px
        }

    .product-grid {
        grid-template-columns: repeat(3,1fr)
    }
}

/* MOBILE */
@media(max-width:760px) {

    .site-header {
        height: 64px
    }

    .main-nav {
        position: absolute;
        display: none;
        top: 64px;
        left: 0;
        right: 0;
        height: auto;
        background: #0b0d0e;
        border-bottom: 1px solid #333;
        padding: 18px 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px
    }

        .main-nav.open {
            display: flex
        }

    .nav-divider {
        display: none
    }

    .cart-link {
        height: 28px
    }

    .mobile-menu {
        display: block
    }

    .hero {
        display: flex;
        flex-direction: column;
        padding: 46px 0 34px;
        gap: 28px;
        align-items: stretch
    }

    .hero-copy {
        padding: 0
    }

    .hero h1 {
        font-size: 39px
    }

    .hero-text {
        font-size: 16px
    }

    .hero-product {
        order: -1
    }

    .products-section {
        padding-bottom: 20px
    }

    .product-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 10px
    }

    .product-card {
        height: 265px
    }

        .product-card h2 {
            font-size: 13px
        }

    .buy-button {
        width: 100%;
        font-size: 12px
    }

    .lower-section {
        padding: 55px 0
    }

        .lower-section h2 {
            font-size: 44px
        }

    .support-inner {
        flex-direction: column;
        gap: 12px
    }

    .footer-inner {
        flex-direction: column;
        gap: 10px
    }
}

/* SMALL MOBILE */
@media(max-width:470px) {

    .product-grid {
        grid-template-columns: 1fr
    }

    .product-card {
        height: 280px
    }

    .pack {
        height: 190px
    }

        .pack img {
            height: 186px
        }

    .main-nav > a {
        font-size: 14px
    }
}
