:root {
    --lp-background: #0f1115;
    --lp-card: #181b20;
    --lp-card-dark: #14171c;
    --lp-border: #292d34;

    --lp-gold: #d4af37;
    --lp-gold-light: #f2c94c;
    --lp-gold-soft: rgba(212, 175, 55, 0.12);

    --lp-text: #f5f5f5;
    --lp-muted: #969ca6;
    --lp-green: #22c55e;
    --lp-red: #ef4444;

    --lp-update-text: #6e747d;
    --lp-update-strong: #afb4bb;

    --lp-notice-text: #9ca2ab;

    --lp-sidebar-title: #656c76;
    --lp-navigation-border: rgba(255, 255, 255, 0.05);
    --lp-navigation-text: #9198a2;

    --lp-card-text: #a4aab2;

    --lp-highlight-title: #d9dce0;
    --lp-highlight-text: #858c95;

    --lp-data-border: rgba(255, 255, 255, 0.06);
    --lp-data-text: #808791;

    --lp-ai-title: #d6d9dd;
    --lp-ai-text: #848b95;

    --lp-community-text: #828994;

    --lp-button-text: #111317;
}


/* =========================
   LIGHT THEME
========================= */

html[data-theme="light"] {
    --lp-background: #fafafa;
    --lp-card: #ffffff;
    --lp-card-dark: #f5f6f7;
    --lp-border: #e0e3e7;

    --lp-gold: #d4af37;
    --lp-gold-light: #f2c94c;
    --lp-gold-soft: rgba(212, 175, 55, 0.12);

    --lp-text: #181a1f;
    --lp-muted: #6d737c;
    --lp-green: #22c55e;
    --lp-red: #ef4444;

    --lp-update-text: #7d848e;
    --lp-update-strong: #4f555d;

    --lp-notice-text: #606771;

    --lp-sidebar-title: #8a9099;
    --lp-navigation-border: rgba(24, 26, 31, 0.07);
    --lp-navigation-text: #6d737c;

    --lp-card-text: #555c66;

    --lp-highlight-title: #34383f;
    --lp-highlight-text: #6d737c;

    --lp-data-border: rgba(24, 26, 31, 0.08);
    --lp-data-text: #737a84;

    --lp-ai-title: #34383f;
    --lp-ai-text: #6d737c;

    --lp-community-text: #6d737c;

    --lp-button-text: #111317;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #d4af37 transparent;
}

/* Chrome, Edge, Safari */
html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        #f2c94c 0%,
        #d4af37 50%,
        #b88914 100%
    );
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #f6d96a 0%,
        #d4af37 50%,
        #a97d10 100%
    );
}

::selection {
    background: #FAF5E7;
    color: #111317;
}

::-moz-selection {
    background: #FAF5E7;
    color: #111317;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--lp-background);
    color: var(--lp-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}


/* =========================
   MAIN
========================= */

.lp-main {
    min-height: calc(100vh - 70px);
    padding: 58px 0 80px;
}

.lp-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


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

.lp-hero {
    max-width: 820px;
    padding: 15px 0 34px;
}

.lp-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--lp-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.lp-hero h1 {
    margin: 0;
    font-size: 39px;
    letter-spacing: -1.4px;
}

.lp-hero > p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--lp-muted);
    font-size: 14px;
    line-height: 1.8;
}

.lp-update {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    padding: 7px 10px;
    border: 1px solid var(--lp-border);
    border-radius: 6px;
    color: var(--lp-update-text);
    font-size: 9px;
}

.lp-update strong {
    color: var(--lp-update-strong);
}


/* =========================
   MAIN WARNING
========================= */

.lp-main-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 11px;
    background: rgba(212, 175, 55, 0.05);
}

.lp-notice-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--lp-gold-soft);
    color: var(--lp-gold);
    font-size: 14px;
    font-weight: 800;
}

.lp-main-notice strong {
    color: var(--lp-gold-light);
    font-size: 13px;
}

.lp-main-notice p {
    max-width: 850px;
    margin: 5px 0 0;
    color: var(--lp-notice-text);
    font-size: 11px;
    line-height: 1.7;
}


/* =========================
   LAYOUT
========================= */

.lp-layout {
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}


/* =========================
   SIDEBAR
========================= */

.lp-sidebar {
    position: sticky;
    top: 90px;
}

.lp-sidebar-card {
    padding: 18px;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    background: var(--lp-card);
}

.lp-sidebar-title {
    display: block;
    margin-bottom: 12px;
    color: var(--lp-sidebar-title);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 1px;
}

.lp-navigation {
    display: flex;
    flex-direction: column;
}

.lp-navigation a {
    padding: 9px 3px;
    border-top: 1px solid var(--lp-navigation-border);
    color: var(--lp-navigation-text);
    font-size: 10px;
    font-weight: 550;
    text-decoration: none;
    transition: 0.2s;
}

.lp-navigation a:hover {
    padding-left: 7px;
    color: var(--lp-gold);
}


/* =========================
   CONTENT
========================= */

.lp-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.lp-card {
    padding: 29px;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    background: var(--lp-card);
    scroll-margin-top: 95px;
}

.lp-section-number {
    display: block;
    margin-bottom: 6px;
    color: var(--lp-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.lp-card h2 {
    margin: 0 0 15px;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.lp-card > p {
    margin: 11px 0 0;
    color: var(--lp-card-text);
    font-size: 12px;
    line-height: 1.8;
}


/* =========================
   INVESTMENT HIGHLIGHT
========================= */

.lp-highlight {
    margin-top: 20px;
    padding: 17px;
    border-left: 2px solid var(--lp-gold);
    background: rgba(212, 175, 55, 0.035);
}

.lp-highlight strong {
    color: var(--lp-highlight-title);
    font-size: 11px;
}

.lp-highlight p {
    margin: 5px 0 0;
    color: var(--lp-highlight-text);
    font-size: 10px;
    line-height: 1.7;
}


/* =========================
   DATA NOTICE
========================= */

.lp-data-notice {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 22px;
}

.lp-data-notice > div {
    padding: 14px;
    border: 1px solid var(--lp-data-border);
    border-radius: 8px;
    background: var(--lp-card-dark);
}

.lp-data-notice span {
    display: block;
    margin-bottom: 6px;
    color: var(--lp-gold);
    font-size: 9px;
    font-weight: 750;
}

.lp-data-notice p {
    margin: 0;
    color: var(--lp-data-text);
    font-size: 9px;
    line-height: 1.65;
}


/* =========================
   AI
========================= */

.lp-ai-box {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 20px;
    padding: 17px;
    border: 1px solid rgba(212, 175, 55, 0.13);
    border-radius: 9px;
    background: rgba(212, 175, 55, 0.025);
}

.lp-ai-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--lp-gold-soft);
    color: var(--lp-gold);
}

.lp-ai-box strong {
    color: var(--lp-ai-title);
    font-size: 11px;
}

.lp-ai-box p {
    margin: 5px 0 0;
    color: var(--lp-ai-text);
    font-size: 9px;
    line-height: 1.7;
}


/* =========================
   COMMUNITY
========================= */

.lp-community-notice {
    margin-top: 19px;
    padding: 15px;
    border: 1px solid var(--lp-border);
    border-radius: 8px;
    background: var(--lp-card-dark);
}

.lp-community-notice span {
    color: var(--lp-gold);
    font-size: 9px;
    font-weight: 750;
}

.lp-community-notice p {
    margin: 5px 0 0;
    color: var(--lp-community-text);
    font-size: 9px;
    line-height: 1.7;
}


/* =========================
   CONTACT
========================= */

.lp-contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 28px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 14px;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(212, 175, 55, 0.11),
            transparent 38%
        ),
        var(--lp-card);
}

.lp-contact-card h2 {
    margin: 0;
    font-size: 20px;
}

.lp-contact-card p {
    max-width: 580px;
    margin: 6px 0 0;
    color: var(--lp-muted);
    font-size: 10px;
    line-height: 1.7;
}

.lp-contact-card > a {
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 7px;
    background: var(--lp-gold);
    color: var(--lp-button-text);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s;
}

.lp-contact-card > a:hover {
    background: var(--lp-gold-light);
}


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

@media (max-width: 900px) {

    .lp-layout {
        grid-template-columns: 1fr;
    }

    .lp-sidebar {
        display: none;
    }

    .lp-data-notice {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .lp-main {
        padding: 35px 0 55px;
    }

    .lp-container {
        width: calc(100% - 24px);
    }

    .lp-hero {
        padding-bottom: 27px;
    }

    .lp-hero h1 {
        font-size: 29px;
    }

    .lp-hero > p {
        font-size: 12px;
    }

    .lp-main-notice {
        padding: 16px;
    }

    .lp-card {
        padding: 21px 17px;
        border-radius: 12px;
    }

    .lp-card h2 {
        font-size: 18px;
    }

    .lp-contact-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        padding: 22px 18px;
    }

    .lp-contact-card > a {
        width: 100%;
        text-align: center;
    }

}