   
:root {
    --bg: #050816;
    --bg2: #080B1A;
    --bg3: #0C1226;
    --ink: #E7ECFA;
    --muted: #8C93AD;
    --muted-dim: #5C6485;
    --electric: #3E7BFA;
    --purple: #8B5CF6;
    --cyan: #26E0D9;
    --line: rgba(231,236,250,0.08);
    --glass: rgba(255,255,255,0.035);
    --glass-brd: rgba(255,255,255,0.09);
    --radius: 18px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter',sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk',sans-serif;
    letter-spacing: -0.02em;
}

.mono {
    font-family: 'JetBrains Mono',monospace;
}

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

::selection {
    background: var(--electric);
    color: #fff;
}

/* background layers */
.bg-fixed {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(60% 45% at 78% 8%, rgba(139,92,246,0.16), transparent 60%), radial-gradient(50% 40% at 15% 20%, rgba(62,123,250,0.14), transparent 60%), radial-gradient(70% 50% at 50% 100%, rgba(38,224,217,0.07), transparent 60%), var(--bg);
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

section {
    position: relative;
    z-index: 2;
}
/* nav */
header {
    background: #ffffff;
    border-bottom: 1px solid #eef2f6;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    color: #0a0a0a;
    flex-shrink: 0;
}

    .logo svg {
        width: 32px;
        height: 32px;
    }

.navlinks {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .navlinks a {
        text-decoration: none;
        color: #4a5568;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.2s;
    }

        .navlinks a:hover {
            color: #3E7BFA;
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid #e2e8f0;
}

    .btn-ghost:hover {
        background: #f7fafc;
        color: #000;
        border-color: #cbd5e0;
    }

.btn-primary {
    background: #3E7BFA;
    color: white;
}

    .btn-primary:hover {
        background: #2563eb;
    }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #1a202c;
    border-radius: 6px;
    transition: background 0.2s;
}

    .mobile-toggle:hover {
        background: #f7fafc;
    }

    .mobile-toggle svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 20px 24px;
    background: white;
    border-top: 1px solid #eef2f6;
    gap: 12px;
    border-radius: 0 0 12px 12px;
}

    .mobile-menu.show {
        display: flex;
    }

    .mobile-menu a {
        text-decoration: none;
        color: #000;
        font-size: 16px;
        font-weight: 500;
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
        transition: color 0.2s;
    }

        .mobile-menu a:hover {
            color: #3E7BFA;
        }

        .mobile-menu a:last-of-type {
            border-bottom: none;
        }

.mm-ctas {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    margin-top: 4px;
    border-top: 1px solid #f1f5f9;
    flex-wrap: wrap;
}

    .mm-ctas .btn {
        flex: 1;
        text-align: center;
        min-width: 120px;
    }

/* Mobile responsive */
@media (max-width: 768px) {
    .navlinks {
        display: none;
    }

    .nav-cta .btn-ghost {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* Desktop - hide mobile menu */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}
/* hero */
.hero {
    padding: 90px 0 120px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono',monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--cyan);
    border: 1px solid rgba(38,224,217,0.25);
    background: rgba(38,224,217,0.06);
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 26px;
}

    .eyebrow .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--cyan);
        box-shadow: 0 0 8px var(--cyan);
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}

.hero h1 {
    font-size: clamp(38px,5.2vw,64px);
    font-weight: 700;
    line-height: 1.05;
    background: linear-gradient(180deg,#fff, #C9D2F0 65%, #8B93AD);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 24px;
}

    .hero h1 .grad {
        background: linear-gradient(100deg,var(--electric),var(--cyan) 55%, var(--purple));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero p.lead {
    font-size: 17.5px;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 38px;
}

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

.hero-stats {
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
}

.stat {
    border-left: 1px solid var(--line);
    padding-left: 16px;
}

    .stat .num {
        font-family: 'Space Grotesk',sans-serif;
        font-size: 26px;
        font-weight: 700;
        background: linear-gradient(100deg,#fff,var(--cyan));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .stat .lbl {
        font-size: 12.5px;
        color: var(--muted-dim);
        color: var(--muted);
        margin-top: 2px;
    }

/* hero visual: pipeline/ledger illustration */
.hero-visual {
    position: relative;
    height: 480px;
}

.hv-card {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(62,123,250,0.08), rgba(139,92,246,0.06));
    border: 1px solid var(--glass-brd);
    box-shadow: 0 40px 100px -40px rgba(62,123,250,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}

.hv-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.35), transparent 70%);
    filter: blur(30px);
    top: -60px;
    right: -60px;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%,100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(20px) scale(1.05);
    }
}

@keyframes floatY {
    0%,100% {
        transform: translateY(0);
    }

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

#float-cube-1 {
    animation: floatY 5s ease-in-out infinite;
    transform-origin: 20px 26px;
}

#float-cube-2 {
    animation: floatY 6.5s ease-in-out infinite 0.4s;
    transform-origin: 16px 18px;
}

/* trusted logos */
.trust {
    padding: 50px 0 70px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-label {
    font-family: 'JetBrains Mono',monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--muted-dim);
    color: var(--muted);
    text-align: center;
    margin-bottom: 36px;
    text-transform: uppercase;
}

.trust-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.55;
}

    .trust-row .item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 15px;
        color: var(--muted);
    }

/* section heading pattern */
.section-pad {
    padding: 50px 0;
}

.eyebrow-2 {
    font-family: 'JetBrains Mono',monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--electric);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.sec-title {
    font-size: clamp(28px,3.4vw,42px);
    font-weight: 700;
    max-width: 640px;
    margin-bottom: 18px;
}

.sec-sub {
    color: var(--muted);
    font-size: 16px;
    max-width: 560px;
}

.sec-head {
    margin-bottom: 60px;
}

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

        .sec-head.center .sec-title, .sec-head.center .sec-sub {
            margin-left: auto;
            margin-right: auto;
        }

/* glass card base */
.glass {
    background: var(--glass);
    border: 1px solid var(--glass-brd);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.grad-border {
    position: relative;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(140deg, rgba(62,123,250,0.35), rgba(139,92,246,0.12) 40%, rgba(38,224,217,0.25));
}

    .grad-border > .inner {
        background: #080B1AEE;
        border-radius: calc(var(--radius) - 1px);
        height: 100%;
    }

/* about split */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.timeline {
    margin-top: 34px;
}

.tl-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

    .tl-item:first-child {
        border-top: none;
    }

.tl-marker {
    font-family: 'JetBrains Mono',monospace;
    color: var(--cyan);
    font-size: 13px;
    min-width: 70px;
    padding-top: 2px;
}

.tl-text h4 {
    font-size: 15.5px;
    margin-bottom: 4px;
}

.tl-text p {
    font-size: 14px;
    color: var(--muted);
}

/* comparison cards (why forex fails vs fyntix) */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.compare-col {
    border-radius: var(--radius);
    padding: 34px;
}

    .compare-col.old {
        background: rgba(255,255,255,0.02);
        border: 1px solid var(--line);
    }

    .compare-col.new {
        background: linear-gradient(160deg, rgba(62,123,250,0.08), rgba(139,92,246,0.05));
        border: 1px solid rgba(62,123,250,0.25);
    }

    .compare-col h3 {
        font-size: 19px;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

.compare-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    font-size: 14.5px;
}

    .compare-row:first-of-type {
        border-top: none;
    }

    .compare-row .k {
        color: var(--muted);
    }

    .compare-row .v {
        font-weight: 600;
        text-align: right;
        max-width: 60%;
    }

.old .v {
    color: #C9899B;
}

.new .v {
    color: var(--cyan);
}

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

.feat-card {
    padding: 32px 28px;
    border-radius: var(--radius);
    transition: transform .3s, border-color .3s;
}

    .feat-card:hover {
        transform: translateY(-6px);
        border-color: rgba(62,123,250,0.4);
    }

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(62,123,250,0.18), rgba(139,92,246,0.14));
    margin-bottom: 20px;
    border: 1px solid rgba(62,123,250,0.25);
}

.feat-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 14px;
    color: var(--muted);
}

/* architecture pipeline */
.pipeline {
    overflow-x: auto;
    padding: 20px 0 10px;
}

.pipeline-track {
    display: flex;
    gap: 0;
    min-width: 920px;
    position: relative;
    padding-top: 10px;
}

.pipe-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 8px;
}

    .pipe-node::before {
        content: '';
        position: absolute;
        top: 29px;
        left: -50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, rgba(62,123,250,0.5), rgba(38,224,217,0.5));
        z-index: 0;
    }

    .pipe-node:first-child::before {
        display: none;
    }

.pipe-dot {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg,#0C1226,#080B1A);
    border: 1px solid rgba(62,123,250,0.4);
    box-shadow: 0 0 24px -4px rgba(62,123,250,0.35);
    z-index: 1;
    margin-bottom: 14px;
}

.pipe-node .idx {
    font-family: 'JetBrains Mono',monospace;
    font-size: 11px;
    color: var(--cyan);
    margin-bottom: 6px;
}

.pipe-node h5 {
    font-size: 13.5px;
    margin-bottom: 4px;
}

.pipe-node p {
    font-size: 12px;
    color: var(--muted);
    max-width: 120px;
}

/* security */
.security-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.shield-visual {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sec-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    background: var(--glass);
    border: 1px solid var(--glass-brd);
}

    .sec-item svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        color: var(--cyan);
        margin-top: 2px;
    }

    .sec-item h4 {
        font-size: 14.5px;
        margin-bottom: 4px;
    }

    .sec-item p {
        font-size: 13px;
        color: var(--muted);
    }

/* ecosystem */
.eco-wrap {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

/* roadmap */
.roadmap-track {
    display: flex;
    position: relative;
    padding: 40px 0;
    overflow-x: auto;
}

.roadmap-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric), var(--purple), var(--cyan), transparent);
}

.rm-item {
    flex: 1;
    min-width: 220px;
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.rm-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--cyan);
    margin: 0 auto 22px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(38,224,217,0.1);
}

.rm-date {
    font-family: 'JetBrains Mono',monospace;
    font-size: 12px;
    color: var(--cyan);
    margin-bottom: 8px;
}

.rm-item h4 {
    font-size: 15.5px;
    margin-bottom: 8px;
    background: #2196F3;
    border-radius: 12px;
}

.rm-item p {
    font-size: 13px;
    color: var(--muted);
}

/* token utility */
.token-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.token-card {
    padding: 26px 22px;
    border-radius: 16px;
    text-align: center;
}

    .token-card .ticon {
        width: 40px;
        height: 40px;
        margin: 0 auto 16px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(62,123,250,0.2), rgba(38,224,217,0.14));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .token-card h4 {
        font-size: 14.5px;
        margin-bottom: 8px;
    }

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

.token-note {
    margin-top: 36px;
    padding: 20px 24px;
    border-radius: 14px;
    background: rgba(255,196,0,0.05);
    border: 1px solid rgba(255,196,0,0.18);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

    .token-note svg {
        flex-shrink: 0;
        color: #FFC400;
        width: 20px;
        height: 20px;
        margin-top: 1px;
    }

    .token-note p {
        font-size: 13px;
        color: var(--muted);
    }

/* stats band */
.stats-band {
    padding: 90px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.sband-item {
    text-align: center;
    padding: 20px;
}

    .sband-item .num {
        font-family: 'Space Grotesk',sans-serif;
        font-size: 38px;
        font-weight: 700;
        background: linear-gradient(120deg,#fff,var(--cyan));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .sband-item .lbl {
        font-size: 13px;
        color: var(--muted);
        margin-top: 8px;
    }

    .sband-item .tag {
        font-family: 'JetBrains Mono',monospace;
        font-size: 10px;
        color: var(--muted-dim);
        color: var(--muted);
        opacity: .6;
        letter-spacing: .06em;
        margin-top: 2px;
        text-transform: uppercase;
    }

/* faq */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 4px;
    background: none;
    border: none;
    color: var(--ink);
    font-family: 'Space Grotesk',sans-serif;
    font-size: 16.5px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

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

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

    .faq-a p {
        padding: 0 4px 24px;
        color: var(--muted);
        font-size: 14.5px;
        max-width: 640px;
    }

/* cta band */
.cta-band {
    padding: 110px 0;
    text-align: center;
}

.cta-card {
    border-radius: 28px;
    padding: 70px 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(62,123,250,0.12), rgba(139,92,246,0.10));
    border: 1px solid rgba(62,123,250,0.25);
}

    .cta-card h2 {
        font-size: clamp(28px,3.6vw,44px);
        margin-bottom: 18px;
    }

    .cta-card p {
        color: var(--muted);
        max-width: 520px;
        margin: 0 auto 36px;
        font-size: 16px;
    }

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.foot-brand p {
    color: var(--muted);
    font-size: 13.5px;
    margin: 16px 0 22px;
    max-width: 260px;
}

.foot-col h5 {
    font-size: 13px;
    color: var(--muted-dim);
    color: #B7BDD3;
    margin-bottom: 18px;
    letter-spacing: .03em;
}

.foot-col a {
    display: block;
    font-size: 14px;
    color: var(--muted);
    padding: 6px 0;
    transition: color .2s;
}

    .foot-col a:hover {
        color: var(--ink);
    }

.foot-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

    .foot-social a {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: var(--glass);
        border: 1px solid var(--glass-brd);
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

.newsletter {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

    .newsletter input {
        flex: 1;
        padding: 11px 14px;
        border-radius: 10px;
        background: rgba(255,255,255,0.04);
        border: 1px solid var(--glass-brd);
        color: var(--ink);
        font-size: 13.5px;
    }

        .newsletter input::placeholder {
            color: var(--muted-dim);
            color: #6B7290;
        }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted-dim);
    color: #6B7290;
    flex-wrap: wrap;
    gap: 14px;
}

    .foot-bottom .legal-links {
        display: flex;
        gap: 22px;
    }

/* photo slots — drop a licensed image in via <img> and this becomes the frame.
     Until then it renders as a finished abstract graphic, not a broken box. */
.photo-slot {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-brd);
    background: radial-gradient(60% 80% at 20% 20%, rgba(62,123,250,0.20), transparent 60%), radial-gradient(50% 70% at 85% 75%, rgba(38,224,217,0.16), transparent 60%), linear-gradient(160deg,#0C1226,#080B1A);
}

    .photo-slot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: relative;
        z-index: 1;
    }

    .photo-slot .ph-grid {
        position: absolute;
        inset: 0;
        opacity: 0.5;
        background-image: linear-gradient(rgba(62,123,250,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(62,123,250,0.08) 1px, transparent 1px);
        background-size: 34px 34px;
    }

    .photo-slot .ph-icon {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.5;
    }

        .photo-slot .ph-icon svg {
            width: 64px;
            height: 64px;
            color: #3E7BFA;
        }

.photo-banner {
    aspect-ratio: 21/8;
}

.photo-square {
    aspect-ratio: 1/1;
}

/* world map */
.worldmap-wrap {
    position: relative;
    padding: 30px 0;
}

.wm-dot {
    animation: wmPulse 2.6s ease-in-out infinite;
}

@keyframes wmPulse {
    0%,100% {
        opacity: 0.35;
        r: 2.2;
    }

    50% {
        opacity: 1;
        r: 3.4;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* counter */
.counted {
    font-variant-numeric: tabular-nums;
}
.logo a .logo-img {
    width: 150px
}
.logo .footer-logo {
    width: 150px;
}
@media (max-width:980px) {
    .logo a .logo-img {
        width: 100px;
    }
    .stat {
        padding-left: 0px;
    }

    .sec-list {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: nowrap;
    }

    .wrap {
        padding: 0 24px;
    }

    .section-pad {
        padding: 80px 0;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-grid, .about-grid, .security-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero-visual {
        height: 320px;
        order: -1;
    }

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

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

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

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

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

    .navlinks {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .cta-card {
        padding: 56px 26px;
    }
}
@media (max-width:640px) {
    .wrap {
        padding: 0 20px;
    }

    nav {
        padding: 16px 20px;
    }

    .section-pad {
        padding: 64px 0;
    }

    .hero {
        padding: 130px 0 60px;
    }

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

    .hero-stats {
        gap: 22px;
    }

    .hero-ctas {
        width: 100%;
    }

        .hero-ctas .btn {
            flex: 1;
            justify-content: center;
        }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .compare-col {
        padding: 26px 20px;
    }

    .compare-row {
        flex-direction: column;
        gap: 4px;
    }

        .compare-row .v {
            text-align: left;
            max-width: 100%;
        }

    .sec-title {
        font-size: clamp(24px,7vw,32px);
    }

    .cta-card h2 {
        font-size: clamp(24px,7vw,30px);
    }

    .foot-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .roadmap-track {
        padding: 30px 0;
    }

    .pipeline-track {
        min-width: 760px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
 