* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #08080a;
    color: #f5f5f7;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: auto;
}


/* NAV */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(8,8,10,.92);
    border-bottom: 1px solid rgba(255,255,255,.06);

    backdrop-filter: blur(18px);
}

.nav {
    height: 76px;

    display: flex;
    align-items: center;
}

.logo {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.06em;
}

.logo span {
    color: #777781;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 30px;
}

.nav-links a {
    color: #85858e;
    font-size: 12px;
    transition: .2s;
}

.nav-links a:hover {
    color: white;
}

.nav-shop {
    padding: 10px 16px;

    background: white;
    color: #08080a;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 900;
}

.mobile-menu-button {
    display: none;

    margin-left: auto;

    background: none;
    border: 0;

    color: white;
    font-size: 23px;
}

.mobile-menu {
    display: none;
}


/* HERO */

.hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-background {
    position: absolute;

    width: 650px;
    height: 650px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: rgba(255,255,255,.035);

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 12px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50px;

    color: #777781;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

.online-badge span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #65e58b;

    box-shadow: 0 0 12px rgba(101,229,139,.6);
}

.hero h1 {
    margin-top: 28px;

    font-size: clamp(60px, 9vw, 108px);

    line-height: .88;

    letter-spacing: -.08em;

    font-weight: 900;
}

.hero h1 em {
    color: #74747d;
    font-style: normal;
}

.hero-content > p {
    max-width: 550px;

    margin: 30px auto 0;

    color: #6d6d77;

    font-size: 14px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;

    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 20px;

    border-radius: 9px;

    font-size: 11px;
    font-weight: 900;

    transition: .2s;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: white;
    color: #08080a;
}

.button-secondary {
    border: 1px solid rgba(255,255,255,.1);
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 70px;

    margin-top: 60px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 15px;
}

.hero-stats span {
    margin-top: 3px;

    color: #55555f;

    font-size: 8px;
    letter-spacing: .12em;
}


/* SECTIONS */

.section {
    padding: 105px 0;
}

.section-heading {
    margin-bottom: 50px;
    text-align: center;
}

.section-heading > span {
    color: #666670;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .17em;
}

.section-heading h2 {
    margin-top: 9px;

    font-size: 40px;
    letter-spacing: -.05em;
}

.section-heading p {
    margin-top: 9px;

    color: #606069;

    font-size: 13px;
}


/* FEATURES */

.features {
    border-top: 1px solid rgba(255,255,255,.05);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.feature-card {
    padding: 30px;

    background: #0d0d10;

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
}

.feature-number {
    color: #65656e;

    font-size: 10px;
    font-weight: 900;
}

.feature-card h3 {
    margin-top: 32px;

    font-size: 18px;
}

.feature-card p {
    margin-top: 8px;

    color: #62626c;

    font-size: 12px;
}


/* PRODUCTS */

.products-section {
    background: #0a0a0d;

    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.product-card {
    position: relative;

    padding: 28px;

    background: #0e0e12;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 15px;
}

.featured-product {
    border-color: rgba(255,255,255,.18);
}

.popular-badge {
    position: absolute;
    right: 0;
    top: 0;

    padding: 7px 12px;

    background: white;
    color: #08080a;

    border-radius: 0 14px 0 8px;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
}

.product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.product-tag {
    color: #6b6b75;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
}

.product-price {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -.06em;
}

.product-price sup {
    font-size: 15px;
    vertical-align: top;
}

.product-price small {
    font-size: 18px;
}

.product-card h3 {
    margin-top: 27px;

    font-size: 18px;
}

.product-card > p {
    min-height: 42px;

    margin-top: 7px;

    color: #65656f;

    font-size: 12px;
}

.product-card ul {
    list-style: none;

    margin: 24px 0;
}

.product-card li {
    padding: 6px 0;

    color: #92929b;

    font-size: 11px;
}

.product-card li span {
    color: #aaaab2;
    margin-right: 5px;
}

.purchase-button {
    width: 100%;

    padding: 13px;

    border: 0;
    border-radius: 8px;

    background: white;
    color: #08080a;

    font-size: 11px;
    font-weight: 900;

    transition: .2s;
}

.purchase-button:hover {
    opacity: .85;
    transform: translateY(-1px);
}


/* COMMUNITY */

.community-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 48px;

    background: #101014;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 17px;
}

.community-card > div > span {
    color: #666670;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

.community-card h2 {
    margin-top: 8px;

    font-size: 29px;
}

.community-card p {
    margin-top: 5px;

    color: #62626c;

    font-size: 12px;
}


/* FAQ */

.faq-section {
    border-top: 1px solid rgba(255,255,255,.05);
}

.faq-list {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.faq-question {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 21px 0;

    background: none;
    border: 0;

    color: white;

    text-align: left;

    font-size: 13px;
    font-weight: 800;
}

.faq-question b {
    color: #666670;

    font-size: 20px;

    transition: .2s;
}

.faq-item.open .faq-question b {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: .3s;
}

.faq-item.open .faq-answer {
    max-height: 150px;
}

.faq-answer p {
    padding-bottom: 20px;

    color: #62626c;

    font-size: 12px;
}


/* FOOTER */

footer {
    padding: 50px 0 25px;

    border-top: 1px solid rgba(255,255,255,.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
}

.footer-top p {
    margin-top: 7px;

    color: #50505a;

    font-size: 10px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-links a {
    color: #65656e;

    font-size: 10px;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.05);

    color: #44444c;

    font-size: 9px;
}


/* CHECKOUT OVERLAY */

.checkout-overlay {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,.82);

    backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;

    transition: .25s;
}

.checkout-overlay.active {
    opacity: 1;
    visibility: visible;
}

.checkout-modal {
    position: relative;

    width: min(600px,100%);
    max-height: 90vh;

    overflow-y: auto;

    padding: 30px;

    background: #0d0d11;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 17px;

    box-shadow: 0 30px 100px rgba(0,0,0,.7);

    transform: translateY(15px);

    transition: .25s;
}

.checkout-overlay.active .checkout-modal {
    transform: translateY(0);
}

.checkout-close {
    position: absolute;

    right: 20px;
    top: 20px;

    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 8px;

    background: rgba(255,255,255,.05);

    color: #9999a2;

    font-size: 22px;
}

.checkout-header > span {
    color: #666670;

    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
}

.checkout-header h2 {
    margin-top: 6px;

    font-size: 25px;
    letter-spacing: -.03em;
}

.order-box {
    display: flex;
    justify-content: space-between;

    margin-top: 22px;
    padding: 17px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 10px;
}

.order-box small {
    display: block;

    color: #5e5e68;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
}

.order-box strong {
    display: block;

    margin-top: 4px;

    font-size: 14px;
}

.order-total {
    text-align: right;
}

.order-total strong {
    font-size: 19px;
}

.checkout-section {
    margin-top: 24px;
}

.checkout-step-title {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 13px;

    font-size: 12px;
    font-weight: 900;
}

.checkout-step-title span {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.07);

    border-radius: 6px;

    color: #898991;

    font-size: 8px;
}

.cashapp-box {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 11px;
}

.cashapp-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #00d64f;
    color: white;

    border-radius: 10px;

    font-size: 21px;
    font-weight: 900;
}

.cashapp-details {
    flex: 1;
}

.cashapp-details small {
    display: block;

    color: #65656f;

    font-size: 8px;
    font-weight: 900;
}

.cashapp-details strong {
    display: block;

    margin-top: 3px;

    font-size: 14px;
}

.cashapp-open {
    padding: 9px 12px;

    background: white;
    color: #08080a;

    border-radius: 7px;

    font-size: 9px;
    font-weight: 900;
}

.checkout-note {
    margin-top: 9px;

    color: #65656f;

    font-size: 10px;
}

.checkout-note strong {
    color: #aaaab2;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.checkout-section label {
    display: block;

    margin-bottom: 12px;

    color: #85858e;

    font-size: 9px;
    font-weight: 800;
}

.checkout-section input {
    display: block;

    width: 100%;

    margin-top: 7px;

    padding: 12px;

    background: #09090c;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;

    color: white;

    outline: none;
}

.checkout-section input:focus {
    border-color: rgba(255,255,255,.25);
}

.verification-box {
    margin-bottom: 14px;
    padding: 18px;

    text-align: center;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
}

.verification-box small {
    display: block;

    color: #62626c;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
}

.verification-box strong {
    display: block;

    margin-top: 7px;

    font-size: 19px;
}

.checkout-message {
    min-height: 18px;

    margin-top: 10px;

    color: #ff7373;

    font-size: 10px;
}

.checkout-message.success {
    color: #65e58b;
}

.submit-order {
    width: 100%;

    padding: 14px;

    border: 0;
    border-radius: 9px;

    background: white;
    color: #08080a;

    font-size: 11px;
    font-weight: 900;
}

.manual-notice {
    margin-top: 11px;

    text-align: center;

    color: #46464e;

    font-size: 9px;
}


/* MOBILE */

@media (max-width: 800px) {

    .nav-links,
    .nav-shop {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
        flex-direction: column;

        padding: 10px 20px 20px;

        border-top: 1px solid rgba(255,255,255,.05);
    }

    .mobile-menu a {
        padding: 12px 0;

        color: #85858e;

        font-size: 12px;
    }

    .feature-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .community-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

}

@media (max-width: 550px) {

    .container {
        width: calc(100% - 28px);
    }

    .hero {
        min-height: 620px;
    }

    .hero h1 {
        font-size: 57px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        justify-content: center;
    }

    .hero-stats {
        gap: 25px;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .community-card {
        padding: 30px;
    }

    .input-grid {
        grid-template-columns: 1fr;
    }

    .cashapp-box {
        flex-wrap: wrap;
    }

    .cashapp-open {
        width: 100%;
        text-align: center;
    }

    .checkout-modal {
        padding: 22px;
    }

    .footer-top {
        flex-direction: column;
        gap: 25px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

}