
:root {
    --bg-deep: #030712;
    --bg-mid: #071220;
    --bg-elevated: #081A33;
    --blue: #2E8BFF;
    --blue-dim: #1c5fb3;
    --blue-soft: rgba(46,139,255,.14);
    --gold: #D8B35F;
    --gold-soft: rgba(216,179,95,.14);
    --white: #FFFFFF;
    --gray: #94A3B8;
    --gray-dim: #5D6B82;
    --border: rgba(255,255,255,.08);
    --border-2: rgba(255,255,255,.14);
    --radius: 18px;
    --radius-sm: 12px;
    --blur: 24px;
    --ease: cubic-bezier(.16,.8,.24,1);
    --font-display: 'Space Grotesk','Inter',-apple-system,sans-serif;
    --font-body: 'Inter',-apple-system,sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    background: radial-gradient(60% 50% at 82% 8%, rgba(46,139,255,.10), transparent 60%), radial-gradient(50% 40% at 10% 30%, rgba(216,179,95,.06), transparent 60%), linear-gradient(180deg,var(--bg-deep) 0%,var(--bg-mid) 45%,var(--bg-elevated) 100%);
    background-attachment: fixed;
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

img, svg {
    display: block;
    max-width: 100%;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 1px;
        background: var(--gold);
    }

.section {
    padding: 130px 0;
    position: relative;
}

.section-head {
    max-width: 640px;
    margin-bottom: 64px;
}

    .section-head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-head h2 {
        font-size: clamp(2rem,4vw,2.9rem);
        margin-bottom: 18px;
    }

    .section-head p {
        color: var(--gray);
        font-size: 1.05rem;
        max-width: 520px;
    }

    .section-head.center p {
        margin: 0 auto;
    }

.accent {
    background: linear-gradient(100deg,var(--blue) 10%,var(--gold) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gray {
    color: var(--gray);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: transform .35s var(--ease),box-shadow .35s var(--ease),background .35s var(--ease),border-color .35s var(--ease);
    white-space: nowrap;
}

    .btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

.btn-primary {
    background: linear-gradient(135deg,var(--blue),#1a63d6);
    color: #fff;
    box-shadow: 0 8px 30px rgba(46,139,255,.35);
}

    .btn-primary:hover {
        box-shadow: 0 12px 40px rgba(46,139,255,.5);
        transform: translateY(-2px);
    }

.btn-ghost {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border-2);
    color: var(--white);
    backdrop-filter: blur(var(--blur));
}

    .btn-ghost:hover {
        border-color: var(--gold);
        color: var(--gold);
        transform: translateY(-2px);
    }

.btn-sm {
    padding: 12px 22px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 20px 0;
    transition: background .4s var(--ease),padding .4s var(--ease),border-color .4s var(--ease);
    border-bottom: 1px solid transparent;
}

    .navbar.scrolled {
        background: rgba(3,7,18,.72);
        backdrop-filter: blur(var(--blur));
        padding: 14px 0;
        border-bottom-color: var(--border);
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -.01em;
    flex-shrink: 0;
}

.logo-mark {
    width: 30px;
    height: 30px;
    position: relative;
    flex-shrink: 0;
}

    .logo-mark svg {
        width: 100%;
        height: 100%;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

    .nav-links a {
        font-size: 14.5px;
        font-weight: 500;
        color: var(--gray);
        transition: color .25s var(--ease);
        position: relative;
    }

        .nav-links a:hover {
            color: var(--white);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

    .nav-toggle svg {
        width: 22px;
        height: 22px;
    }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(3,7,18,.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 24px 32px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
}

    .mobile-menu.open {
        transform: translateX(0);
    }

.mobile-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
    margin-top: 30px;
}

/* ---------- Wallet button ---------- */
.wallet-btn {
    position: relative;
}

.wallet-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3ddc84;
    display: none;
    box-shadow: 0 0 8px #3ddc84;
}

.wallet-btn.connected .wallet-dot {
    display: block;
}

.wallet-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 270px;
    background: rgba(8,14,28,.97);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    padding: 10px;
    backdrop-filter: blur(var(--blur));
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .3s var(--ease);
}

    .wallet-panel.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.wallet-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: background .2s;
}

    .wallet-option:hover {
        background: rgba(255,255,255,.05);
    }

    .wallet-option .wallet-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 700;
    }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .55;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.6rem,5.4vw,4.4rem);
    margin-bottom: 26px;
}

.hero-copy .lede {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 38px;
}

    .hero-copy .lede span {
        color: var(--white);
    }

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

    .hero-cta .btn {
        min-width: 180px;
    }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mini-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gray);
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: rgba(255,255,255,.02);
}

    .mini-badge svg {
        width: 13px;
        height: 13px;
        color: var(--gold);
        flex-shrink: 0;
    }

/* Orbital visual */
.orbit-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 480px;
    margin: 0 auto;
}

.orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%,-50%);
    clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
    background: linear-gradient(135deg,var(--blue),var(--gold));
    box-shadow: 0 0 70px rgba(46,139,255,.55),0 0 120px rgba(216,179,95,.25);
    animation: core-pulse 5s ease-in-out infinite;
}

@keyframes core-pulse {
    0%, 100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.18);
    }
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed var(--border-2);
    border-radius: 50%;
    transform: translate(-50%,-50%);
}

    .orbit-ring.r1 {
        width: 70%;
        height: 70%;
    }

    .orbit-ring.r2 {
        width: 100%;
        height: 100%;
    }

.orbit-spin {
    position: absolute;
    inset: 0;
    animation: spin 26s linear infinite;
}

    .orbit-spin.reverse {
        animation-direction: reverse;
        animation-duration: 34s;
    }

.orbit-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 100px;
    background: rgba(8,14,28,.85);
    border: 1px solid var(--border-2);
    backdrop-filter: blur(16px);
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
    animation: counter-spin 26s linear infinite;
}

.orbit-spin.reverse .orbit-node {
    animation-duration: 34s;
    animation-direction: reverse;
}

.orbit-node svg {
    width: 14px;
    height: 14px;
    color: var(--blue);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes counter-spin {
    to {
        transform: rotate(-360deg);
    }
}

.orbit-node.n1 {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-node.n2 {
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
}

.orbit-node.n3 {
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-node.n4 {
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}

.orbit-ring.r1 .orbit-node.n5 {
    top: 14%;
    right: 10%;
}

.orbit-ring.r1 .orbit-node.n6 {
    bottom: 14%;
    left: 10%;
}

/* ---------- Trust strip ---------- */
.trust-strip {
    padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 60px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: rgba(255,255,255,.02);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray);
}

    .trust-badge svg {
        width: 16px;
        height: 16px;
        color: var(--blue);
        flex-shrink: 0;
    }

.stats-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem,3.6vw,2.8rem);
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    color: var(--gray);
    font-size: 13.5px;
    margin-top: 6px;
    letter-spacing: .02em;
}

.stats-note {
    text-align: center;
    color: var(--gray-dim);
    font-size: 12px;
    margin-top: 26px;
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-copy p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 34px;
    max-width: 480px;
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-soft);
    border: 1px solid rgba(46,139,255,.25);
    color: var(--blue);
}

    .highlight-icon svg {
        width: 20px;
        height: 20px;
    }

.highlight-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.highlight-item p {
    color: var(--gray);
    font-size: 14.5px;
    max-width: none;
    margin: 0;
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-ring {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1/1;
    position: relative;
}

/* ---------- Ecosystem cards ---------- */
.eco-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.eco-card {
    padding: 34px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.025);
    backdrop-filter: blur(var(--blur));
    transition: transform .4s var(--ease),border-color .4s var(--ease),background .4s var(--ease);
    position: relative;
    overflow: hidden;
}

    .eco-card::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0;
        background: radial-gradient(220px 140px at var(--mx,50%) var(--my,0%),rgba(46,139,255,.14),transparent 70%);
        transition: opacity .4s;
        pointer-events: none;
    }

    .eco-card:hover::before {
        opacity: 1;
    }

    .eco-card:hover {
        transform: translateY(-6px);
        border-color: var(--border-2);
        background: rgba(255,255,255,.04);
    }

.eco-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: linear-gradient(135deg,var(--blue-soft),var(--gold-soft));
    border: 1px solid var(--border-2);
    color: var(--gold);
}

    .eco-icon svg {
        width: 23px;
        height: 23px;
    }

.eco-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.eco-card p {
    color: var(--gray);
    font-size: 14.5px;
}

/* ---------- Trading dashboard ---------- */
.dash {
    border-radius: var(--radius);
    border: 1px solid var(--border-2);
    background: rgba(255,255,255,.02);
    backdrop-filter: blur(var(--blur));
    overflow: hidden;
}

.dash-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
}

.dash-tab {
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray);
    transition: all .3s var(--ease);
}

    .dash-tab.active {
        background: linear-gradient(135deg,var(--blue),#1a63d6);
        color: #fff;
    }

.dash-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.dash-chart {
    padding: 30px;
    border-right: 1px solid var(--border);
}

.dash-chart-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 10px;
}

    .dash-chart-head .pair {
        font-family: var(--font-display);
        font-size: 22px;
        font-weight: 700;
    }

    .dash-chart-head .price {
        font-size: 18px;
        font-weight: 600;
    }

    .dash-chart-head .delta {
        font-size: 13px;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 100px;
    }

.delta.up {
    color: #3ddc84;
    background: rgba(61,220,132,.12);
}

.delta.down {
    color: #ff6767;
    background: rgba(255,103,103,.12);
}

.dash-chart svg {
    width: 100%;
    height: 220px;
    display: block;
}

.dash-side {
    padding: 26px;
}

.side-block {
    margin-bottom: 26px;
}

    .side-block h4 {
        font-size: 12.5px;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--gray-dim);
        margin-bottom: 14px;
    }

.book-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 5px 0;
    font-variant-numeric: tabular-nums;
}

    .book-row.ask {
        color: #ff6767;
    }

    .book-row.bid {
        color: #3ddc84;
    }

.trade-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

    .trade-toggle button {
        flex: 1;
        padding: 10px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 700;
        border: 1px solid var(--border-2);
    }

        .trade-toggle button.buy.active {
            background: rgba(61,220,132,.15);
            border-color: #3ddc84;
            color: #3ddc84;
        }

        .trade-toggle button.sell.active {
            background: rgba(255,103,103,.15);
            border-color: #ff6767;
            color: #ff6767;
        }

/* ---------- Roadmap ---------- */
.roadmap-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--border-2) transparent;
}

    .roadmap-track::-webkit-scrollbar {
        height: 5px;
    }

    .roadmap-track::-webkit-scrollbar-thumb {
        background: var(--border-2);
        border-radius: 10px;
    }

.road-card {
    min-width: 290px;
    scroll-snap-align: start;
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.02);
    backdrop-filter: blur(var(--blur));
    flex-shrink: 0;
}

.road-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}

    .road-status.done {
        background: rgba(61,220,132,.12);
        color: #3ddc84;
    }

    .road-status.progress {
        background: var(--blue-soft);
        color: var(--blue);
    }

    .road-status.upcoming {
        background: var(--gold-soft);
        color: var(--gold);
    }

    .road-status.future {
        background: rgba(255,255,255,.06);
        color: var(--gray);
    }

.road-card h3 {
    font-size: 19px;
    margin-bottom: 14px;
}

.road-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.road-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    color: var(--gray);
}

    .road-card li svg {
        width: 15px;
        height: 15px;
        color: var(--blue);
        flex-shrink: 0;
        margin-top: 2px;
    }

/* ---------- Airdrop ---------- */
.airdrop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.airdrop-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 34px 0 38px;
}

.airdrop-step {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

    .airdrop-step:last-child {
        border-bottom: none;
    }

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13.5px;
    flex-shrink: 0;
    color: var(--gold);
}

.airdrop-step h4 {
    font-size: 15.5px;
    margin-bottom: 3px;
}

.airdrop-step p {
    font-size: 13.5px;
    color: var(--gray);
    margin: 0;
}

.airdrop-visual {
    aspect-ratio: 1/1;
    max-width: 340px;
    margin: 0 auto;
    border-radius: 28px;
    position: relative;
    background: linear-gradient(160deg,rgba(46,139,255,.12),rgba(216,179,95,.08));
    border: 1px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .airdrop-visual .glyph {
        width: 150px;
        height: 150px;
        clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
        background: linear-gradient(135deg,var(--blue),var(--gold));
        opacity: .9;
        animation: float-y 6s ease-in-out infinite;
    }

@keyframes float-y {
    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-16px);
    }
}

/* ---------- Deposit / Withdraw ---------- */
.dw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

.dw-card {
    padding: 34px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.02);
    backdrop-filter: blur(var(--blur));
}

    .dw-card h3 {
        font-size: 20px;
        margin-bottom: 22px;
    }

.dw-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

    .dw-method:last-child {
        border-bottom: none;
    }

.dw-method-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 600;
}

    .dw-method-left svg {
        width: 19px;
        height: 19px;
        color: var(--blue);
    }

.dw-method-time {
    font-size: 12.5px;
    color: var(--gray);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

    .security-item svg {
        width: 19px;
        height: 19px;
        color: #3ddc84;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .security-item h4 {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .security-item p {
        font-size: 13.5px;
        color: var(--gray);
        margin: 0;
    }

.donut-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.donut {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(var(--blue) 0 90%, var(--gold) 90% 100%);
    position: relative;
}

    .donut::after {
        content: "";
        position: absolute;
        inset: 26px;
        border-radius: 50%;
        background: var(--bg-mid);
        box-shadow: inset 0 0 0 1px var(--border);
    }

.donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .donut-center span {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 15px;
    }

    .donut-center small {
        color: var(--gray);
        font-size: 10.5px;
    }

.donut-legend {
    display: flex;
    gap: 20px;
    font-size: 12.5px;
    color: var(--gray);
}

    .donut-legend span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

.legend-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.02);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

    .faq-q svg {
        width: 18px;
        height: 18px;
        color: var(--gray);
        flex-shrink: 0;
        transition: transform .35s var(--ease);
    }

.faq-item.open .faq-q svg {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

    .faq-a p {
        padding: 0 26px 22px;
        color: var(--gray);
        font-size: 14.5px;
        max-width: 640px;
    }

/* ---------- Community ---------- */
.community-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.community-card {
    padding: 28px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.02);
    text-align: center;
    transition: all .35s var(--ease);
}

    .community-card:hover {
        transform: translateY(-5px);
        border-color: var(--border-2);
        background: rgba(255,255,255,.04);
    }

    .community-card svg {
        width: 26px;
        height: 26px;
        margin: 0 auto 14px;
        color: var(--blue);
    }

    .community-card h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .community-card p {
        font-size: 12.5px;
        color: var(--gray);
    }

.newsletter {
    max-width: 640px;
    margin: 50px auto 0;
    padding: 34px;
    border-radius: var(--radius);
    border: 1px solid var(--border-2);
    background: rgba(255,255,255,.025);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

    .newsletter h3 {
        font-size: 18px;
    }

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

    .newsletter-form input {
        flex: 1;
        min-width: 220px;
        padding: 14px 18px;
        border-radius: 100px;
        border: 1px solid var(--border-2);
        background: rgba(255,255,255,.03);
        color: var(--white);
        font-size: 14px;
    }

        .newsletter-form input:focus {
            outline: 2px solid var(--blue);
            outline-offset: 2px;
        }

.newsletter-msg {
    font-size: 13px;
    color: #3ddc84;
    min-height: 16px;
}

/* ---------- Final CTA ---------- */
.final-cta {
    text-align: center;
    padding: 150px 0;
    position: relative;
}

    .final-cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle,rgba(46,139,255,.14),transparent 70%);
        pointer-events: none;
    }

    .final-cta h2 {
        font-size: clamp(2.2rem,5vw,3.6rem);
        max-width: 800px;
        margin: 0 auto 26px;
        position: relative;
    }

    .final-cta p {
        color: var(--gray);
        max-width: 520px;
        margin: 0 auto 44px;
        font-size: 1.05rem;
        position: relative;
    }

.final-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ---------- Footer ---------- */
footer {
    border-top: 1px solid var(--border);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 13.5px;
    max-width: 280px;
    margin-top: 16px;
}

.footer-col h5 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray-dim);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    color: var(--gray);
    transition: color .25s;
}

    .footer-col a:hover {
        color: var(--white);
    }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        border: 1px solid var(--border-2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .25s;
    }

        .footer-social a:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

    .footer-social svg {
        width: 16px;
        height: 16px;
    }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

    .footer-bottom p {
        font-size: 12.5px;
        color: var(--gray-dim);
    }

.disclaimer {
    max-width: 900px;
    font-size: 11.5px;
    color: var(--gray-dim);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ---------- Reveal ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease),transform .8s var(--ease);
}

    [data-reveal].in-view {
        opacity: 1;
        transform: translateY(0);
    }

[data-reveal-delay="1"] {
    transition-delay: .1s;
}

[data-reveal-delay="2"] {
    transition-delay: .2s;
}

[data-reveal-delay="3"] {
    transition-delay: .3s;
}

[data-reveal-delay="4"] {
    transition-delay: .4s;
}

[data-reveal-delay="5"] {
    transition-delay: .5s;
}

/* ---------- Cursor glow ---------- */
.cursor-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle,rgba(46,139,255,.08),transparent 70%);
    transform: translate(-50%,-50%);
    transition: opacity .3s;
    left: 0;
    top: 0;
}

.logo img {
    width: 200px;
}
/* ---------- Responsive ---------- */
@media (max-width:1080px) {
    .eco-grid {
        grid-template-columns: repeat(2,1fr);
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
}

@media (max-width:900px) {
    .logo img {
        width: 135px;
        margin-right: 10px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .orbit-wrap {
        max-width: 340px;
        margin-top: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }

    .airdrop-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .airdrop-visual {
        order: -1;
    }

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

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

    .dash-body {
        grid-template-columns: 1fr;
    }

    .dash-chart {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width:640px) {
    .section {
        padding: 90px 0;
    }

    .container {
        padding: 0 16px;
    }

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

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

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

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-cta .btn {
            width: 100%;
            min-width: unset;
        }

    .mobile-menu a {
        font-size: 22px;
    }

    .mobile-menu {
        padding: 20px 20px;
    }

    .dash-tabs {
        padding: 12px 16px;
    }

    .dash-tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    .dash-chart {
        padding: 16px;
    }

    .dash-side {
        padding: 16px;
    }

    .dw-card {
        padding: 24px;
    }

    .faq-q {
        padding: 18px 20px;
        font-size: 15px;
    }

    .newsletter {
        padding: 24px 20px;
    }

    .newsletter-form input {
        min-width: 160px;
    }

    .airdrop-steps {
        margin: 24px 0 30px;
    }

    .orbit-node {
        font-size: 10px;
        padding: 6px 10px;
    }

        .orbit-node svg {
            width: 12px;
            height: 12px;
        }

    .orbit-core {
        width: 80px;
        height: 80px;
    }

    .hero-copy .lede {
        font-size: 1rem;
    }

    .final-cta {
        padding: 90px 0;
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 12px;
    }

    .hero-copy h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: 90vh;
    }

    .orbit-wrap {
        max-width: 280px;
    }

    .community-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .community-card {
        padding: 20px 16px;
    }

        .community-card svg {
            width: 22px;
            height: 22px;
        }

    .stats-row {
        gap: 20px;
    }

    .stat-num {
        font-size: 1.6rem;
    }

    .trust-row {
        gap: 10px;
    }

    .trust-badge {
        font-size: 12px;
        padding: 8px 14px;
    }
}

.accent1 {
    background: linear-gradient(100deg, #ffffff 10%, var(--gold) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}