/* =========================================
   NOVENTRA
   Main Website Styles
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050816;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}


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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

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

    padding: 18px 6%;

    background: rgba(5, 8, 22, 0.78);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    z-index: 1000;
}

.logo {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: 3px;

    background: linear-gradient(
        135deg,
        #ffffff,
        #8b5cf6
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.navbar nav a {
    color: #a7b0c2;
    font-size: 14px;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #ffffff;
}


/* TON CONNECT */

#ton-connect {
    min-width: 150px;
}


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

.hero {
    min-height: 100vh;

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

    text-align: center;

    padding: 140px 25px 100px;

    position: relative;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(124, 58, 237, 0.24),
            transparent 35%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(59, 130, 246, 0.12),
            transparent 30%
        ),
        #050816;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;

    max-width: 900px;
}

.badge,
.section-label {
    display: inline-block;

    color: #a78bfa;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.5px;

    border: 1px solid rgba(139, 92, 246, 0.35);

    background: rgba(139, 92, 246, 0.07);

    padding: 9px 16px;

    border-radius: 50px;
}

.hero h1 {
    margin-top: 28px;
    margin-bottom: 25px;

    font-size: clamp(55px, 9vw, 100px);

    line-height: 1;

    letter-spacing: -4px;
}

.hero h1 span,
.section-title h2 span,
.locker-content h2 span {
    background: linear-gradient(
        135deg,
        #818cf8,
        #c084fc,
        #60a5fa
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 680px;

    margin: 0 auto 40px;

    color: #8f9bb0;

    font-size: 18px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;

    flex-wrap: wrap;
}


/* =========================================
   BUTTONS
========================================= */

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 25px;

    border: none;
    border-radius: 11px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #6366f1,
        #8b5cf6
    );

    font-weight: 800;

    cursor: pointer;

    transition: 0.3s;
}

.primary-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 40px rgba(99, 102, 241, 0.35);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 25px;

    border-radius: 11px;

    border: 1px solid rgba(255,255,255,0.12);

    color: #ffffff;

    background: rgba(255,255,255,0.03);

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.08);

    transform: translateY(-3px);
}


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

.section {
    max-width: 1150px;

    margin: auto;

    padding: 120px 25px;
}

.section-title {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    margin: 20px 0;
}

.section-title p {
    color: #8f9bb0;

    font-size: 17px;
}


/* =========================================
   CARDS
========================================= */

.cards {
    display: grid;

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

    gap: 20px;
}

.card {
    position: relative;

    padding: 35px 30px;

    min-height: 230px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.35s;
}

.card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(139,92,246,0.45);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.25);
}

.card-number {
    color: #8b5cf6;

    font-size: 13px;

    font-weight: 900;

    margin-bottom: 30px;
}

.card h3 {
    font-size: 23px;

    margin-bottom: 12px;
}

.card p {
    color: #8793a8;

    font-size: 15px;
}


/* =========================================
   TOKEN
========================================= */

.token-section {
    position: relative;
}

.token-grid {
    display: grid;

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

    gap: 20px;
}

.token-card {
    padding: 35px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(99,102,241,0.10),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.08);

    text-align: center;
}

.token-card span {
    display: block;

    color: #7f8ba1;

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.token-card strong {
    font-size: 24px;

    letter-spacing: 1px;
}


/* =========================================
   LP LOCKER
========================================= */

.locker-section {
    max-width: 900px;

    text-align: center;
}

.locker-content {
    padding: 65px 45px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124,58,237,0.18),
            transparent 55%
        ),
        rgba(255,255,255,0.025);

    border: 1px solid rgba(139,92,246,0.20);

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

.locker-content h2 {
    font-size: clamp(38px, 6vw, 60px);

    margin: 20px 0;
}

.locker-content > p {
    max-width: 650px;

    margin: 0 auto 35px;

    color: #8f9bb0;
}

.locker-status {
    display: grid;

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

    gap: 15px;

    max-width: 600px;

    margin: 0 auto 35px;
}

.locker-status div {
    padding: 20px;

    border-radius: 14px;

    background: rgba(255,255,255,0.035);

    border: 1px solid rgba(255,255,255,0.07);
}

.locker-status span {
    display: block;

    color: #758198;

    font-size: 11px;

    letter-spacing: 1.5px;

    margin-bottom: 7px;
}

.locker-status strong {
    font-size: 18px;
}


/* =========================================
   ROADMAP
========================================= */

.roadmap {
    display: grid;

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

    gap: 20px;
}

.roadmap-item {
    display: flex;

    gap: 22px;

    padding: 30px;

    border-radius: 18px;

    background: rgba(255,255,255,0.025);

    border: 1px solid rgba(255,255,255,0.07);

    transition: 0.3s;
}

.roadmap-item:hover {
    transform: translateY(-5px);

    border-color:
        rgba(139,92,246,0.35);
}

.roadmap-number {
    flex-shrink: 0;

    display: flex;

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

    width: 48px;
    height: 48px;

    border-radius: 12px;

    background: rgba(139,92,246,0.12);

    color: #a78bfa;

    font-weight: 900;
}

.roadmap-item h3 {
    margin-bottom: 8px;

    font-size: 20px;
}

.roadmap-item p {
    color: #8490a5;

    font-size: 14px;
}


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

footer {
    text-align: center;

    padding: 70px 25px 35px;

    border-top:
        1px solid rgba(255,255,255,0.07);

    background: #03050f;
}

.footer-logo {
    font-size: 24px;

    font-weight: 900;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

footer > p {
    color: #657187;

    font-size: 14px;
}

.footer-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;

    margin: 25px 0;
}

.footer-links a {
    color: #8994a8;

    font-size: 14px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

footer .copyright {
    margin-top: 30px;

    font-size: 12px;

    color: #4f5a6d;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .navbar {
        padding: 15px 20px;
    }

    .navbar nav {
        display: none;
    }

    .cards,
    .token-grid {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        letter-spacing: -2px;
    }
}


@media (max-width: 600px) {

    .hero {
        padding-top: 130px;
    }

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

    .section {
        padding: 90px 20px;
    }

    .locker-content {
        padding: 45px 20px;
    }

    .locker-status {
        grid-template-columns: 1fr;
    }

    .roadmap-item {
        padding: 24px;
    }
}/* =========================================
   WALLET STATUS
========================================= */

#wallet-info {
    display: none;
    margin-left: 12px;
}

.wallet-status {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
}

.wallet-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 10px rgba(34, 197, 94, 0.7);
}

.wallet-address {
    margin-top: 2px;

    color: #8f9bb0;

    font-size: 11px;
    font-family: monospace;
}
/* =========================================
   NOVENTRA WALLET PANEL
========================================= */

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

    padding: 9px 13px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.3s;

    max-width: 230px;
}

.wallet-panel:hover {
    border-color: rgba(139, 92, 246, 0.35);

    background: rgba(139, 92, 246, 0.06);
}

.wallet-panel-icon {
    width: 32px;
    height: 32px;

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

    border-radius: 9px;

    background: rgba(139, 92, 246, 0.12);

    color: #a78bfa;

    font-size: 17px;
}

.wallet-panel-content {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.wallet-panel-title {
    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.wallet-panel-subtitle {
    color: #718096;

    font-size: 10px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =========================================
   CONNECTED WALLET
========================================= */

.wallet-connected .wallet-panel {
    border-color: rgba(34, 197, 94, 0.25);

    background: rgba(34, 197, 94, 0.04);
}

.wallet-connected .wallet-panel-icon {
    color: #22c55e;

    background: rgba(34, 197, 94, 0.10);
}

.wallet-connected .wallet-panel-subtitle {
    color: #22c55e;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .wallet-panel {
        display: none;
    }

}
/* =========================================
   CONNECTED WALLET INFO
========================================= */

#wallet-info {
    display: none;
    align-items: center;
    gap: 9px;

    margin-left: 10px;
    padding: 7px 12px;

    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 12px;

    background: rgba(139, 92, 246, 0.06);

    transition: all 0.3s ease;
}

#wallet-info:hover {
    border-color: rgba(139, 92, 246, 0.5);

    background: rgba(139, 92, 246, 0.10);

    transform: translateY(-1px);
}

.wallet-status {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;
}

.wallet-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 8px rgba(34, 197, 94, 0.8);
}

.wallet-address {
    padding-left: 8px;

    border-left: 1px solid rgba(255,255,255,0.10);

    color: #9ca8bb;

    font-family: monospace;

    font-size: 10px;

    letter-spacing: 0.3px;
}


/* =========================================
   WALLET CONNECTED STATE
========================================= */

.wallet-connected #wallet-info {
    display: flex;

    border-color: rgba(34, 197, 94, 0.25);

    background: rgba(34, 197, 94, 0.05);
}

.wallet-connected #wallet-info:hover {
    border-color: rgba(34, 197, 94, 0.45);

    background: rgba(34, 197, 94, 0.08);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    #wallet-info {
        display: none !important;
    }

}
/* =========================================
   NOVENTRA LP LOCKER
========================================= */

.locker-dashboard {
    max-width: 850px;

    margin: 0 auto;

    padding: 30px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    border: 1px solid rgba(255,255,255,0.08);

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


/* HEADER */

.locker-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}

.locker-label {
    color: #8b5cf6;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.locker-header h3 {
    margin-top: 6px;

    font-size: 28px;
}

.locker-network {
    padding: 8px 14px;

    border-radius: 50px;

    color: #67e8f9;

    background: rgba(34,211,238,0.07);

    border: 1px solid rgba(34,211,238,0.18);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* CARD */

.locker-card {
    padding: 22px;

    margin-bottom: 15px;

    border-radius: 16px;

    background: rgba(255,255,255,0.025);

    border: 1px solid rgba(255,255,255,0.07);
}

.locker-card-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;

    color: #8994a8;

    font-size: 12px;
}

.locker-status-badge {
    padding: 5px 9px;

    border-radius: 50px;

    background: rgba(255,255,255,0.05);

    color: #68758b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* WALLET */

.locker-wallet,
.pool-placeholder {
    display: flex;

    align-items: center;

    gap: 15px;
}

.locker-wallet-icon,
.pool-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 13px;

    background: rgba(139,92,246,0.10);

    color: #a78bfa;

    font-size: 20px;

    font-weight: 900;
}

.locker-wallet strong,
.pool-placeholder strong {
    display: block;

    color: #ffffff;

    font-size: 15px;
}

.locker-wallet p,
.pool-placeholder p {
    margin-top: 4px;

    color: #69768b;

    font-size: 12px;
}


/* INPUT GRID */

.locker-grid {
    display: grid;

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

    gap: 15px;
}

.input-label {
    display: block;

    margin-bottom: 10px;

    color: #8994a8;

    font-size: 12px;
}


/* INPUT */

.locker-input {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 15px;

    border-radius: 11px;

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

    border: 1px solid rgba(255,255,255,0.07);
}

.locker-input:focus-within {
    border-color: rgba(139,92,246,0.45);
}

.locker-input input {
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: #ffffff;

    font-size: 15px;
}

.locker-input input::placeholder {
    color: #4e5a6e;
}

.locker-input span {
    color: #7f8ba1;

    font-size: 11px;

    font-weight: 800;
}


/* SELECT */

#lock-duration {
    width: 100%;

    padding: 14px;

    border-radius: 11px;

    outline: none;

    color: #ffffff;

    background: #0b1020;

    border: 1px solid rgba(255,255,255,0.07);

    cursor: pointer;
}

#lock-duration:focus {
    border-color: rgba(139,92,246,0.45);
}


/* ACTION */

.locker-action {
    width: 100%;

    margin-top: 5px;

    padding: 16px;

    border: none;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #6366f1,
            #8b5cf6
        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.3s;
}

.locker-action:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 40px rgba(99,102,241,0.25);
}

.locker-action:disabled {
    opacity: 0.6;

    cursor: not-allowed;

    transform: none;

    box-shadow: none;
}


/* NOTICE */

.locker-notice {
    display: flex;

    gap: 10px;

    margin-top: 18px;

    padding: 14px;

    border-radius: 12px;

    background: rgba(245,158,11,0.045);

    border: 1px solid rgba(245,158,11,0.10);
}

.locker-notice span {
    flex-shrink: 0;
}

.locker-notice p {
    color: #778398;

    font-size: 11px;

    line-height: 1.6;
}


/* MOBILE */

@media (max-width: 600px) {

    .locker-dashboard {
        padding: 18px;
    }

    .locker-header {
        align-items: flex-start;

        flex-direction: column;
    }

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

    .locker-card {
        padding: 18px;
    }

}