﻿/* =====================================================
   GLOBAL
   ===================================================== */

body {
    margin: 0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
}


/* =====================================================
   LANDER WRAPPER
   ===================================================== */

.lander {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: white;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 25% 35%, rgba(0,200,170,0.22), transparent 50%), radial-gradient(circle at 75% 70%, rgba(0,120,110,0.22), transparent 60%), linear-gradient(135deg,#061518 0%,#0a2326 40%,#0b3a36 100%);
}

    .lander::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 40%, rgba(0,255,200,0.05), transparent 60%);
        pointer-events: none;
    }


/* =====================================================
   MAIN GRID
   ===================================================== */

.lander__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1fr) 420px;
    gap: 80px;
    align-items: center;
}


/* =====================================================
   LEFT SIDE
   ===================================================== */

.lander__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #6ee7b7;
    border: 1px solid rgba(110,231,183,.25);
    background: rgba(110,231,183,.05);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 18px;
}

.lander__title {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 700;
    margin: 0 0 24px 0;
    letter-spacing: .01em;
    line-height: 1.05;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,.35), 0 0 30px rgba(0,255,200,.12);
    margin-bottom: 28px;
}

.lander__description {
    font-size: 18px;
    line-height: 1.6;
    opacity: .9;
    margin-bottom: 30px;
    max-width: 520px;
}

.lander__left {
    max-width: 600px;
}

.lander__right {
    width: 100%;
}

.lander__ownership {
    margin-top: 10px;
    margin-bottom: 18px;
    font-size: 13px;
    opacity: .65;
    letter-spacing: .02em;
}

/* =====================================================
   USP LIST
   ===================================================== */

.lander__usp {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

    .lander__usp li {
        margin-bottom: 12px;
        font-size: 16px;
        opacity: .95;
        padding-left: 22px;
        position: relative;
    }

        .lander__usp li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #34d399;
            font-weight: 600;
            text-shadow: 0 0 8px rgba(0,255,200,.25);
        }


/* =====================================================
   BUY BOX
   ===================================================== */

.buyBox {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 6px 20px rgba(0,0,0,.25);
    transition: transform .15s ease;
}

    .buyBox:hover {
        transform: translateY(-3px);
    }

.buyBox__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    margin-bottom: 10px;
    cursor: pointer;
    transition: .15s;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    gap: 10px;
}

    .buyBox__row span {
        white-space: nowrap;
    }

    .buyBox__row:hover {
        background: #f4f4f4;
    }

    .buyBox__row strong {
        font-size: 22px;
        font-weight: 700;
        color: #0f1720;
        white-space: nowrap;
    }

.buyBox__selected {
    border: 2px solid #19b28c;
    background: #eef8f5;
}

.buyBox__offer {
    border-bottom: none;
    color: #666;
}

    .buyBox__offer:hover {
        color: #111;
    }


/* =====================================================
   CTA
   ===================================================== */

.buyBox__cta {
    width: 100%;
    margin-top: 22px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(180deg,#2ac29a,#1da882);
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
    border: none;
    transition: all .15s ease;
    letter-spacing: .02em;
}

    .buyBox__cta:hover {
        background: #13a27d;
        transform: translateY(-3px);
    }

    .buyBox__cta:focus {
        outline: 2px solid #19b28c;
        outline-offset: 2px;
    }

.buyBox__trust {
    margin-top: 12px;
    font-size: 12px;
    text-align: center;
    color: #6b7280;
    letter-spacing: .02em;
    opacity: .9;
}

/* =====================================================
   PAYMENTS
   ===================================================== */

.buyBox__payments {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

    .buyBox__payments i {
        font-size: 20px;
        color: #b7bec6;
    }

/* =====================================================
   BUYER INTEREST
   ===================================================== */

.marketBox {
    margin-top: 16px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
}

.marketBox__interest {
    font-weight: 500;
    margin-bottom: 6px;
}

.marketBox__stats {
    opacity: .9;
    font-size: 13px;
}

.marketBox__stats .stat {
    margin-right: 12px;
}

@media (min-width:901px) {
    .buyBox:hover {
        transform: translateY(-3px);
    }
}

/* =====================================================
   TRUST BAR
   ===================================================== */

.lander__trust {
    margin-top: 80px;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    gap: 120px;
    opacity: .9;
}

.trustItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 15px;
}

.trustItem__icon {
    font-size: 28px;
    opacity: .95;
    text-shadow: 0 0 10px rgba(255,150,50,.35);
}

    .trustItem__icon.lock {
        color: #f3b44b;
    }

    .trustItem__icon.lightning {
        color: #ff8a3d;
    }

    .trustItem__icon.support {
        color: #ff8a3d;
    }

.trustItem__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 15px;
    opacity: .9;
    margin-top: -6px;
}

    .trustItem__text span {
        font-size: 14px;
        opacity: .75;
    }

    .trustItem__text strong {
        font-weight: 600;
        color: white;
        margin-top: -6px;
        text-shadow: 0 0 10px rgba(0,255,200,.35), 0 0 20px rgba(0,255,200,.15);
    }

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width:900px) {

    .lander {
        padding: 40px 16px;
    }

    .lander__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lander__title {
        font-size: 44px;
    }

    .buyBox {
        width: 100%;
    }

    .lander__trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 40px;
    }

    .lander__description {
        margin-bottom: 20px;
    }

    .lander__usp {
        margin-bottom: 24px;
    }
}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width:480px) {

    .lander__title {
        font-size: 32px;
    }

    .lander__description {
        font-size: 16px;
    }
}
