* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #08090b;
    --panel: #101216;
    --panel2: #15171c;
    --border: #242831;
    --text: #f5f7fa;
    --muted: #9aa1ad;
    --accent: #5865f2;
    --accent2: #7b83ff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Segoe UI, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================================
   ANNOUNCEMENT
============================================================ */

.announcement {
    text-align: center;
    background: #10131a;
    border-bottom: 1px solid var(--border);
    padding: 9px;
    font-size: 13px;
    color: #bfc5ff;
}

/* ============================================================
   NAVBAR
============================================================ */

.navbar {
    height: 76px;
    border-bottom: 1px solid var(--border);

    display: flex;
    align-items: center;

    padding: 0 6%;

    position: sticky;
    top: 0;

    background: rgba(8, 9, 11, 0.88);
    backdrop-filter: blur(18px);

    z-index: 1000;
}

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

    font-weight: 800;
    letter-spacing: 0.6px;
    font-size: 15px;

    flex-shrink: 0;
}

.brand b {
    font-weight: 500;
    color: #8991a0;
}

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

.navbar nav {
    display: flex;
    align-items: center;
    gap: 28px;

    color: #aeb4bf;
    font-size: 14px;

    margin-left: auto;
    margin-right: auto;
}

.navbar nav a {
    transition: color 0.2s ease;
}

.navbar nav a:hover {
    color: white;
}

/* ============================================================
   NAVBAR RIGHT
============================================================ */

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

    flex-shrink: 0;
}

.account-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-user {
    display: flex;
    align-items: center;
    gap: 7px;

    max-width: 170px;

    padding: 9px 12px;

    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 9px;

    color: var(--text);

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

    overflow: hidden;
}

.account-icon {
    flex-shrink: 0;
}

.account-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-login,
.nav-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 9px 13px;

    border-radius: 9px;

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

    white-space: nowrap;

    transition:
        background 0.2s,
        border-color 0.2s,
        color 0.2s,
        transform 0.2s;
}

.nav-login {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: white;
}

.nav-login:hover {
    background: var(--accent2);
    border-color: var(--accent2);
    transform: translateY(-1px);
}

.nav-logout {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
}

.nav-logout:hover {
    color: var(--text);
    border-color: var(--accent);
    transform: translateY(-1px);
}

/* ============================================================
   MOBILE MENU BUTTON
============================================================ */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

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

    background: #111318;
    border: 1px solid var(--border);
    border-radius: 8px;

    color: white;

    font-size: 18px;

    cursor: pointer;

    flex-shrink: 0;
}

/* ============================================================
   CART BUTTON
============================================================ */

.cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #151820;
    color: white;

    border: 1px solid var(--border);
    border-radius: 9px;

    padding: 9px 14px;

    cursor: pointer;

    white-space: nowrap;
}

.cart-button span {
    background: var(--accent);
    border-radius: 20px;

    padding: 2px 7px;

    margin-left: 5px;
}

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

.hero {
    min-height: 650px;

    padding: 110px 8%;

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

    gap: 70px;

    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    background: rgba(88, 101, 242, 0.13);

    filter: blur(110px);

    border-radius: 50%;

    right: 18%;
    top: 80px;
}

.hero-content {
    max-width: 650px;
    z-index: 1;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 2.2px;

    color: #8189ff;

    font-weight: 800;

    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(55px, 8vw, 96px);

    line-height: 0.98;

    letter-spacing: -5px;
}

.hero h1 span {
    color: var(--accent2);
}

.hero p {
    font-size: 18px;
    color: var(--muted);

    max-width: 560px;

    margin: 28px 0;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.button {
    display: inline-block;

    border: 0;
    border-radius: 9px;

    padding: 13px 20px;

    font-weight: 700;

    cursor: pointer;
}

.button.primary {
    background: var(--accent);
    color: white;
}

.button.primary:hover {
    background: #4752d8;
}

.button.secondary {
    border: 1px solid var(--border);
    background: #111318;
    color: white;
}

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

.hero-card {
    width: 440px;

    background: #0d0f13;

    border: 1px solid var(--border);
    border-radius: 14px;

    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);

    z-index: 1;
}

.terminal-top {
    height: 42px;

    border-bottom: 1px solid var(--border);

    display: flex;
    gap: 7px;
    align-items: center;

    padding: 0 15px;
}

.terminal-top i {
    width: 10px;
    height: 10px;

    background: #363b45;

    border-radius: 50%;
}

.terminal-body {
    padding: 28px;

    font-family: Consolas, monospace;
    font-size: 14px;

    min-height: 260px;
}

.terminal-body p {
    margin: 12px 0;
}

.blue {
    color: #7b83ff;
}

.green {
    color: #53d18a;
}

.muted {
    color: #68707d;
}

.cursor {
    display: inline-block;

    width: 8px;
    height: 16px;

    background: #7b83ff;

    vertical-align: middle;

    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

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

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: #0b0d10;
}

.stats div {
    padding: 28px;

    text-align: center;

    border-right: 1px solid var(--border);
}

.stats div:last-child {
    border-right: 0;
}

.stats strong {
    display: block;
    font-size: 25px;
}

.stats span {
    color: var(--muted);
    font-size: 13px;
}

/* ============================================================
   SECTIONS
============================================================ */

.section {
    padding: 100px 8%;

    max-width: 1500px;

    margin: auto;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 30px;

    margin-bottom: 38px;
}

.section-heading h2,
.feature-section h2,
.support-section h2 {
    font-size: 44px;
    letter-spacing: -2px;
}

.section-heading > p {
    color: var(--muted);
    max-width: 390px;
}

/* ============================================================
   FILTERS
============================================================ */

.filters {
    display: flex;
    gap: 8px;

    margin-bottom: 25px;
}

.filter {
    background: #101216;
    color: #9fa6b2;

    border: 1px solid var(--border);

    padding: 9px 15px;

    border-radius: 8px;

    cursor: pointer;
}

.filter.active,
.filter:hover {
    background: #20243a;
    color: #fff;

    border-color: #3b4170;
}

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

.products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.product-card {
    background: var(--panel);

    border: 1px solid var(--border);
    border-radius: 13px;

    overflow: hidden;

    transition: 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #3b4050;
}

.product-image {
    height: 205px;

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

    font-size: 60px;

    position: relative;

    background: linear-gradient(135deg, #171a24, #0d0f13);
}

.product-image span {
    position: absolute;

    bottom: 12px;
    left: 14px;

    font-size: 9px;
    letter-spacing: 1.5px;

    color: #7f8795;
}

.ticket-image {
    background: linear-gradient(135deg, #171825, #101117);
}

.tools-image {
    background: linear-gradient(135deg, #151a22, #0d1014);
}

.free-image {
    background: linear-gradient(135deg, #111d1a, #0d1110);
}

.product-body {
    padding: 20px;
}

.tag {
    font-size: 10px;

    color: #7d86ff;

    text-transform: uppercase;

    letter-spacing: 1.3px;

    font-weight: 800;
}

.product-body h3 {
    font-size: 20px;

    margin: 7px 0;
}

.product-body p {
    font-size: 13px;

    color: var(--muted);

    min-height: 64px;
}

.product-bottom {
    display: flex;

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

    margin-top: 17px;
}

.product-bottom strong {
    font-size: 20px;
}

.product-bottom button {
    background: #fff;
    color: #090a0c;

    border: 0;

    border-radius: 7px;

    padding: 8px 11px;

    font-weight: 700;

    cursor: pointer;
}

.product-bottom button:hover {
    background: #dfe2ff;
}

/* ============================================================
   FEATURE
============================================================ */

.feature-section {
    max-width: 1500px;

    margin: auto;

    padding: 80px 8%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    border-top: 1px solid var(--border);
}

.feature-copy > p {
    color: var(--muted);

    max-width: 570px;

    margin: 20px 0 30px;
}

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-list > div {
    display: flex;
    gap: 14px;
}

.feature-list span {
    width: 27px;
    height: 27px;

    background: #171b31;
    color: #7f87ff;

    border-radius: 7px;

    text-align: center;

    flex-shrink: 0;
}

.feature-list b,
.feature-list small {
    display: block;
}

.feature-list small {
    color: var(--muted);
    margin-top: 2px;
}

.feature-panel {
    background: #0e1014;

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 35px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.panel-label {
    font-size: 10px;

    color: #7f87ff;

    letter-spacing: 2px;

    margin-bottom: 30px;
}

.panel-code {
    font-family: Consolas, monospace;

    color: #c8ccd5;

    font-size: 18px;

    line-height: 2;
}

.panel-code span {
    color: #c586c0;
}

.panel-code b {
    color: #4ec9b0;
}

/* ============================================================
   FAQ
============================================================ */

.faq-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.faq-grid details {
    background: var(--panel);

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 20px;
}

.faq-grid summary {
    cursor: pointer;
    font-weight: 700;
}

.faq-grid p {
    color: var(--muted);

    padding-top: 12px;

    font-size: 14px;
}

/* ============================================================
   SUPPORT
============================================================ */

.support-section {
    margin: 30px 8% 100px;

    padding: 55px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: linear-gradient(110deg, #111523, #0e1014);

    display: flex;

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

    gap: 30px;
}

.support-section p {
    color: var(--muted);
}

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

footer {
    border-top: 1px solid var(--border);

    padding: 45px 8%;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 20px;

    color: var(--muted);
}

.footer-brand {
    font-weight: 800;
    color: white;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a:hover {
    color: white;
}

footer small {
    grid-column: 1 / -1;

    border-top: 1px solid var(--border);

    padding-top: 22px;
}

/* ============================================================
   CART
============================================================ */

.cart {
    position: fixed;

    right: -440px;
    top: 0;

    width: 420px;
    max-width: 100%;

    height: 100vh;

    background: #101216;

    border-left: 1px solid var(--border);

    z-index: 5000;

    transition: 0.25s;

    display: flex;
    flex-direction: column;
}

.cart.open {
    right: 0;
}

.cart-header {
    padding: 22px;

    border-bottom: 1px solid var(--border);

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

.cart-header button {
    background: none;
    border: 0;

    color: white;

    font-size: 28px;

    cursor: pointer;
}

.cart-items {
    padding: 20px;

    flex: 1;

    overflow: auto;
}

.empty {
    color: var(--muted);

    text-align: center;

    margin-top: 50px;
}

.cart-item {
    display: flex;

    justify-content: space-between;

    gap: 12px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}

.cart-item small {
    display: block;
    color: var(--muted);
}

.remove {
    background: none;
    border: 0;

    color: #ff6b6b;

    cursor: pointer;
}

.cart-footer {
    padding: 20px;

    border-top: 1px solid var(--border);
}

.cart-footer > div {
    display: flex;

    justify-content: space-between;

    margin-bottom: 15px;
}

.checkout {
    width: 100%;
    text-align: center;
}

.overlay {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    z-index: 4000;
}

.overlay.open {
    display: block;
}

/* ============================================================
   CHECKOUT MODAL
============================================================ */

.checkout-modal {
    position: fixed;
    inset: 0;

    display: flex;

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

    padding: 20px;

    z-index: 7000;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.checkout-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.checkout-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(8px);

    z-index: 6900;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.checkout-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.checkout-box {
    position: relative;

    width: min(100%, 520px);

    max-height: 90vh;

    overflow: auto;

    background: #101216;

    border: 1px solid #303541;

    border-radius: 18px;

    padding: 34px;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.65),
        0 0 60px rgba(88, 101, 242, 0.12);

    transform: translateY(15px) scale(0.97);

    transition: transform 0.25s ease;
}

.checkout-modal.open .checkout-box {
    transform: translateY(0) scale(1);
}

.checkout-close {
    position: absolute;

    top: 16px;
    right: 17px;

    width: 36px;
    height: 36px;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: #171a20;

    color: #fff;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;
}

.checkout-close:hover {
    background: #252936;
    border-color: #41475a;
}

.checkout-box .eyebrow {
    margin-bottom: 8px;
}

.checkout-box h2 {
    font-size: 32px;

    letter-spacing: -1.5px;

    margin-bottom: 10px;
}

.checkout-description {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 26px;

    max-width: 430px;
}

.checkout-box label {
    display: block;

    font-size: 12px;

    font-weight: 700;

    color: #dfe2e8;

    margin-bottom: 8px;
}

.checkout-box input {
    width: 100%;

    height: 48px;

    background: #0b0d10;

    border: 1px solid var(--border);

    border-radius: 9px;

    color: #fff;

    padding: 0 14px;

    font-size: 14px;

    outline: none;
}

.checkout-box input::placeholder {
    color: #626a77;
}

.checkout-box input:focus {
    border-color: #5865f2;

    box-shadow:
        0 0 0 3px rgba(88, 101, 242, 0.12);
}

.checkout-summary {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin: 20px 0;
}

.checkout-summary div {
    background: #0b0d10;

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 14px;
}

.checkout-summary span {
    display: block;

    color: var(--muted);

    font-size: 11px;

    margin-bottom: 4px;
}

.checkout-summary strong {
    font-size: 17px;
    color: #fff;
}

.checkout-submit {
    width: 100%;

    font-size: 14px;

    padding: 14px 20px;
}

.checkout-note {
    text-align: center;

    color: #68707d;

    font-size: 11px;

    margin-top: 14px;
}

/* ============================================================
   NAV LINK
============================================================ */

.nav-link {
    color: var(--muted);

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: 0.2s;
}

.nav-link:hover {
    color: var(--text);
}

/* ============================================================
   LARGE DESKTOP
============================================================ */

@media (min-width: 1400px) {

    .navbar {
        padding-left: 7%;
        padding-right: 7%;
    }

    .hero {
        padding-left: 9%;
        padding-right: 9%;
    }

    .section {
        padding-left: 9%;
        padding-right: 9%;
    }

    .feature-section {
        padding-left: 9%;
        padding-right: 9%;
    }
}

/* ============================================================
   LAPTOP
============================================================ */

@media (max-width: 1200px) {

    .navbar {
        padding: 0 4%;
    }

    .hero {
        padding: 90px 5%;
        gap: 45px;
    }

    .section {
        padding: 85px 5%;
    }

    .feature-section {
        padding: 75px 5%;
        gap: 45px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-card {
        width: 390px;
    }

    .section-heading h2,
    .feature-section h2,
    .support-section h2 {
        font-size: 40px;
    }

    .navbar nav {
        gap: 18px;
    }

    .account-user {
        max-width: 130px;
    }

    .nav-login,
    .nav-logout {
        padding: 8px 10px;
    }
}

/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .navbar {
        height: 68px;

        padding: 0 5%;

        position: sticky;

        top: 0;
    }

    /* Correct mobile order:
       Brand | Login/Cart | Menu
    */

    .brand {
        order: 1;

        flex: 1;

        min-width: 0;
    }

    .navbar-right {
        order: 2;

        margin-left: 0;

        display: flex;

        align-items: center;

        gap: 6px;
    }

    .menu-toggle {
        order: 3;

        display: flex;

        margin-left: 6px;
    }

    /* Hide desktop navigation */
    .navbar nav {
        display: none;
    }

    /* Open mobile navigation */
    .navbar nav.mobile-open {
        display: flex;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        margin: 0;

        padding: 10px 5%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: rgba(8, 9, 11, 0.98);

        border-bottom: 1px solid var(--border);

        backdrop-filter: blur(18px);

        z-index: 9999;
    }

    .navbar nav.mobile-open a {
        display: block;

        width: 100%;

        padding: 15px 0;

        border-bottom: 1px solid #1d2027;

        color: var(--muted);

        text-align: left;
    }

    .navbar nav.mobile-open a:hover {
        color: white;
    }

    .navbar nav.mobile-open a:last-child {
        border-bottom: 0;
    }

    .account-user {
        display: none;
    }

    .nav-login,
    .nav-logout {
        min-height: 38px;

        padding: 8px 10px;

        font-size: 12px;
    }

    /* Hero */

    .hero {
        min-height: auto;

        padding: 75px 6%;

        display: block;

        text-align: center;
    }

    .hero-content {
        max-width: 760px;

        margin: auto;
    }

    .hero h1 {
        font-size: clamp(54px, 10vw, 78px);

        letter-spacing: -4px;
    }

    .hero p {
        margin: 24px auto;

        max-width: 620px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-card {
        display: block;

        width: min(100%, 520px);

        margin: 50px auto 0;

        text-align: left;
    }

    /* Stats */

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats div:nth-child(2) {
        border-right: 0;
    }

    .stats div {
        border-bottom: 1px solid var(--border);
    }

    .stats div:nth-child(3),
    .stats div:nth-child(4) {
        border-bottom: 0;
    }

    /* Products */

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 12px;
    }

    /* Feature */

    .feature-section {
        grid-template-columns: 1fr;

        padding: 75px 6%;
    }

    .feature-panel {
        max-width: 700px;
    }

    /* FAQ */

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Support */

    .support-section {
        margin: 20px 6% 75px;
    }

    footer {
        padding: 40px 6%;
    }
}

/* ============================================================
   PHONES
============================================================ */

@media (max-width: 600px) {

    .announcement {
        font-size: 11px;

        padding: 8px 14px;

        line-height: 1.4;
    }

    .navbar {
        height: 64px;

        padding: 0 4%;
    }

    .brand {
        font-size: 11px;

        letter-spacing: 0.4px;

        gap: 7px;
    }

    .brand-mark {
        font-size: 20px;
    }

    .navbar-right {
        gap: 5px;
    }

    .nav-login,
    .nav-logout {
        min-height: 36px;

        padding: 7px 9px;

        font-size: 11px;
    }

    .cart-button {
        min-height: 36px;

        padding: 7px 9px;

        font-size: 11px;
    }

    .cart-button span {
        padding: 2px 6px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;

        margin-left: 5px;

        padding: 0;

        font-size: 17px;
    }

    /* Mobile menu */

    .navbar nav.mobile-open {
        top: 100%;

        padding: 10px 5%;
    }

    .navbar nav.mobile-open a {
        padding: 14px 0;
    }

    /* Hero */

    .hero {
        padding: 62px 6% 70px;
    }

    .eyebrow {
        font-size: 9px;

        letter-spacing: 1.6px;
    }

    .hero h1 {
        font-size: clamp(47px, 14vw, 66px);

        letter-spacing: -3px;
    }

    .hero p {
        font-size: 15px;

        line-height: 1.65;

        margin: 20px auto;
    }

    .hero-actions {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;

        max-width: 340px;

        margin: auto;
    }

    .button {
        padding: 12px 16px;
    }

    .hero-card {
        margin-top: 38px;

        border-radius: 11px;
    }

    .terminal-body {
        padding: 20px;

        font-size: 12px;

        min-height: 220px;
    }

    .terminal-top {
        height: 36px;
    }

    /* Stats */

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .stats div {
        padding: 20px 10px;
    }

    .stats strong {
        font-size: 21px;
    }

    .stats span {
        font-size: 11px;
    }

    /* Sections */

    .section {
        padding: 65px 5%;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading h2,
    .feature-section h2,
    .support-section h2 {
        font-size: 32px;

        letter-spacing: -1.3px;
    }

    .section-heading > p {
        font-size: 13px;
    }

    /* Filters */

    .filters {
        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 5px;

        scrollbar-width: none;
    }

    .filters::-webkit-scrollbar {
        display: none;
    }

    .filter {
        white-space: nowrap;

        font-size: 12px;
    }

    /* Products */

    .products-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .product-image {
        height: 185px;
    }

    .product-body {
        padding: 17px;
    }

    .product-body h3 {
        font-size: 18px;
    }

    .product-body p {
        font-size: 12px;

        min-height: auto;
    }

    .product-bottom {
        margin-top: 15px;
    }

    .product-bottom strong {
        font-size: 18px;
    }

    /* Feature */

    .feature-section {
        padding: 65px 5%;

        gap: 35px;
    }

    .feature-copy > p {
        font-size: 13px;
    }

    .feature-list small {
        font-size: 12px;
    }

    .feature-panel {
        padding: 24px;
    }

    .panel-code {
        font-size: 13px;

        line-height: 1.9;

        overflow: auto;
    }

    /* FAQ */

    .faq-grid details {
        padding: 16px;
    }

    .faq-grid summary {
        font-size: 14px;
    }

    .faq-grid p {
        font-size: 12px;
    }

    /* Support */

    .support-section {
        margin: 10px 5% 60px;

        padding: 28px 22px;

        display: block;
    }

    .support-section p {
        font-size: 13px;

        margin-top: 8px;
    }

    .support-section .button {
        margin-top: 20px;

        width: 100%;

        text-align: center;
    }

    /* Footer */

    footer {
        display: block;

        padding: 38px 5%;
    }

    footer > p {
        font-size: 13px;

        margin: 8px 0 18px;
    }

    .footer-links {
        flex-wrap: wrap;

        font-size: 13px;

        margin-bottom: 22px;
    }

    footer small {
        display: block;

        font-size: 10px;
    }

    /* Cart */

    .cart {
        width: 100%;

        right: -100%;
    }

    .cart-header {
        padding: 18px;
    }

    .cart-items {
        padding: 18px;
    }

    /* Checkout */

    .checkout-modal {
        padding: 14px;
    }

    .checkout-box {
        width: 100%;

        max-height: 92vh;

        padding: 26px 20px 22px;

        border-radius: 15px;
    }

    .checkout-box h2 {
        font-size: 26px;

        letter-spacing: -1px;

        padding-right: 35px;
    }

    .checkout-description {
        font-size: 13px;

        margin-bottom: 22px;
    }

    .checkout-close {
        top: 12px;
        right: 12px;
    }

    .checkout-summary {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   VERY SMALL PHONES
============================================================ */

@media (max-width: 420px) {

    .brand b {
        display: none;
    }

    .brand {
        font-size: 12px;
    }

    .navbar-right {
        gap: 4px;
    }

    .nav-login,
    .nav-logout {
        padding: 7px 8px;

        font-size: 10px;
    }

    .cart-button {
        padding: 7px 8px;

        font-size: 10px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;

        margin-left: 4px;

        font-size: 16px;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }

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

    .hero p {
        font-size: 14px;
    }

    .stats strong {
        font-size: 18px;
    }

    .stats span {
        font-size: 10px;
    }

    .product-bottom {
        align-items: flex-end;

        gap: 8px;
    }

    .product-bottom button {
        font-size: 11px;
    }
}

/* ============================================================
   LANDSCAPE PHONES
============================================================ */

@media (max-height: 500px) and (orientation: landscape) {

    .hero {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .hero-card {
        display: none;
    }

    .hero h1 {
        font-size: 48px;
    }
}

/* ============================================================
   TOUCH DEVICES
============================================================ */

@media (hover: none) and (pointer: coarse) {

    .product-card:hover {
        transform: none;
    }

    .button,
    .filter,
    .product-bottom button,
    .cart-button {
        min-height: 44px;
    }
}

/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.menu-toggle {
    display: none;
}

@media (max-width: 900px) {

    .navbar {
        position: sticky;
        top: 0;
        height: 68px;

        display: flex;
        align-items: center;

        padding: 0 5%;

        z-index: 1000;
    }

    .menu-toggle {
        display: block;

        background: none;
        border: 1px solid var(--border);

        color: #fff;

        border-radius: 8px;

        padding: 7px 10px;

        font-size: 18px;

        cursor: pointer;

        margin-left: auto;
    }

    .navbar nav {
        display: none;
    }

    .navbar nav.mobile-open {
        display: flex;

        position: absolute;

        top: 68px;
        left: 0;
        right: 0;

        width: 100%;

        background: rgba(8, 9, 11, 0.98);

        border-bottom: 1px solid var(--border);

        padding: 18px 6%;

        flex-direction: column;

        gap: 0;

        z-index: 9999;
    }

    .navbar nav.mobile-open a {
        display: block;

        width: 100%;

        padding: 12px 0;

        border-bottom: 1px solid #1d2027;

        color: var(--muted);
    }

    .navbar nav.mobile-open a:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 600px) {

    .navbar {
        height: 64px;
    }

    .navbar nav.mobile-open {
        top: 64px;
        padding: 12px 5%;
    }
}