:root {
    --void: #03080d;
    --abyss: #070f17;
    --deep: #0c1a28;
    --panel: rgba(255, 255, 255, 0.038);
    --panel-h: rgba(0, 255, 179, 0.06);
    --border: rgba(255, 255, 255, 0.07);
    --border-h: rgba(0, 255, 179, 0.3);
    --mint: #098DCB;
    /**--mint: #00ffb3;**/
    --mint-dim: rgba(9, 141, 203, 0.14);
    /**--mint-dim: rgba(0, 255, 179, 0.14);**/
    --mint-glow: rgba(9, 141, 203, 0.07);
    /**--mint-glow: rgba(0, 255, 179, 0.07);**/
    --ember: #ff6b35;
    --ember-dim: rgba(255, 107, 53, 0.14);
    --crimson: #ff3366;
    --ice: rgba(190, 230, 255, 0.8);
    --txt: rgba(190, 230, 255, 0.82);
    --txt-muted: rgba(150, 190, 220, 0.45);
    --txt-head: #e8f4ff;
    --ff-h: "Orbitron", monospace;
    --ff-b: "Outfit", sans-serif;
    --ff-m: "Space Mono", monospace;
    --r: 12px;
    --r-lg: 22px;
    /**--glow-mint: 0 0 40px rgba(0, 255, 179, 0.18), 0 0 80px rgba(0, 255, 179, 0.08);**/
    --glow-mint: 0 0 40px rgba(9, 141, 203, 0.18), 0 0 80px rgba(9, 141, 203, 0.08);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--ff-b);
    background: var(--void);
    color: var(--txt);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(0deg, rgba(0, 255, 179, 0.022) 0 1px, transparent 1px 48px),
        repeating-linear-gradient(90deg, rgba(0, 255, 179, 0.018) 0 1px, transparent 1px 48px);
    background-size: 48px 48px;
}
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 9999;
    background: linear-gradient(90deg, transparent, var(--mint), transparent);
    animation: scan 7s linear infinite;
    opacity: 0.3;
}
@keyframes scan {
    0% {
        top: -2px;
    }
    100% {
        top: 100vh;
    }
}
.container {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
h1,
h2,
h3 {
    font-family: var(--ff-h);
    color: var(--txt-head);
    line-height: 1.1;
}
h1 {
    font-size: clamp(2rem, 6.5vw, 4.8rem);
    font-weight: 900;
}
h2 {
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 700;
}
h3 {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    font-weight: 600;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-m);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--mint);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--mint);
    flex-shrink: 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-h);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    text-decoration: none;
}
.btn-mint {
    background: var(--mint);
    color: var(--void);
    box-shadow: var(--glow-mint);
}
.btn-mint:hover {
    background: #0EA3E7;
    /**background: #33ffc4;**/
    box-shadow: 0 0 60px rgba(9, 141, 203, 0.4);
    /**box-shadow: 0 0 60px rgba(0, 255, 179, 0.4);**/
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--mint);
    border: 1px solid rgba(9, 141, 203, 0.35);
    /**border: 1px solid rgba(0, 255, 179, 0.35);**/
}
.btn-ghost:hover {
    border-color: var(--mint);
    background: var(--mint-glow);
    transform: translateY(-2px);
}
.btn-panel {
    background: var(--panel);
    color: var(--txt);
    border: 1px solid var(--border);
}
.btn-panel:hover {
    border-color: var(--border-h);
    background: var(--panel-h);
    transform: translateY(-2px);
}
.tag {
    display: inline-block;
    font-family: var(--ff-m);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    background: var(--mint-dim);
    color: var(--mint);
    border: 1px solid rgba(9, 141, 203, 0.18);
    /**border: 1px solid rgba(0, 255, 179, 0.18);**/
}
.tag.em {
    background: var(--ember-dim);
    color: var(--ember);
    border-color: rgba(255, 107, 53, 0.2);
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition:
        background 0.3s,
        backdrop-filter 0.3s;
}
.nav.solid {
    background: rgba(3, 8, 13, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.logo {
    font-family: var(--ff-h);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--txt-head);
    letter-spacing: 0.1em;
}
.logo span {
    color: var(--mint);
}
.nav-links {
    display: none;
    gap: 32px;
}
.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--txt-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--mint);
}
.nav-r {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-r .btn {
    font-size: 0.66rem;
    padding: 10px 20px;
}
.ham {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.ham span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--txt);
    transition: all 0.3s;
}
.mob {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(3, 8, 13, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    padding: 40px 32px;
    gap: 28px;
}
.mob.open {
    display: flex;
}
.mob a {
    font-family: var(--ff-h);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--txt);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.mob a:hover {
    color: var(--mint);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(130px);
}
.orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(9, 141, 203, 0.12) 0%, transparent 70%);
    /**background: radial-gradient(circle, rgba(0, 255, 179, 0.12) 0%, transparent 70%);**/
    top: -150px;
    right: -180px;
}
.orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.09) 0%, transparent 70%);
    bottom: -80px;
    left: -120px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}
.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(9, 141, 203, 0.06);
    /**background: rgba(0, 255, 179, 0.06);**/
    border: 1px solid rgba(9, 141, 203, 0.2);
    /**border: 1px solid rgba(0, 255, 179, 0.2);**/
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 28px;
    font-family: var(--ff-m);
    font-size: 0.66rem;
    color: var(--mint);
    letter-spacing: 0.1em;
    width: fit-content;
}
.blink-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}
.hero h1 {
    margin-bottom: 22px;
}
.hero h1 .ac {
    color: var(--mint);
    position: relative;
}
.hero h1 .ac::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--mint);
    opacity: 0.3;
    border-radius: 1px;
}
.hero-sub {
    color: var(--txt);
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 36px;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}
.h-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--border);
    gap: 1px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    max-width: 480px;
}
.hm {
    background: var(--panel);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hm-v {
    font-family: var(--ff-m);
    font-size: 1.1rem;
    color: var(--mint);
}
.hm-l {
    font-size: 0.68rem;
    color: var(--txt-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* TERMINAL */
.terminal {
    background: var(--abyss);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.t-bar {
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.td {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.td1 {
    background: #ff3366;
}
.td2 {
    background: #ffaa00;
}
.td3 {
    background: #00ff88;
}
.t-lbl {
    font-family: var(--ff-m);
    font-size: 0.62rem;
    color: var(--txt-muted);
    margin-left: auto;
}
.t-body {
    padding: 20px;
}
.tl {
    font-family: var(--ff-m);
    font-size: 0.7rem;
    margin-bottom: 9px;
    display: flex;
    gap: 10px;
    opacity: 0;
    animation: lineIn 0.3s ease forwards;
}
.tl:nth-child(1) {
    animation-delay: 0.2s;
}
.tl:nth-child(2) {
    animation-delay: 0.5s;
}
.tl:nth-child(3) {
    animation-delay: 0.8s;
}
.tl:nth-child(4) {
    animation-delay: 1.1s;
}
.tl:nth-child(5) {
    animation-delay: 1.4s;
}
.tl:nth-child(6) {
    animation-delay: 1.7s;
}
.tl:nth-child(7) {
    animation-delay: 2s;
}
.tl:nth-child(8) {
    animation-delay: 2.3s;
}
@keyframes lineIn {
    from {
        opacity: 0;
        transform: translateX(-6px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.tt {
    color: var(--txt-muted);
    flex-shrink: 0;
}
.ta {
    color: var(--mint);
}
.td-txt {
    color: var(--txt);
}
.tg {
    color: #00ffb3;
    font-weight: bold;
}
.tlo {
    color: var(--crimson);
}
.tn {
    color: var(--ember);
}
.t-foot {
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tf {
    font-family: var(--ff-m);
    font-size: 0.62rem;
}
.tf .lbl {
    color: var(--txt-muted);
    margin-bottom: 2px;
}
.tf .val {
    color: var(--mint);
}
.tf .val.neg {
    color: var(--crimson);
}
.tf .val.neu {
    color: var(--ember);
}

/* TICKER */
.ticker {
    background: var(--abyss);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 10px 0;
}
.tk-track {
    display: flex;
    width: max-content;
    animation: tkr 28s linear infinite;
}
@keyframes tkr {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.tk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
}
.tk-name {
    font-family: var(--ff-m);
    font-size: 0.66rem;
    color: var(--txt-muted);
}
.tk-val {
    font-family: var(--ff-m);
    font-size: 0.74rem;
    color: var(--txt-head);
}
.up {
    color: var(--mint);
}
.dn {
    color: var(--crimson);
}

/* WHY CHOOSE US */
.why {
    padding: 96px 0;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 56px;
}
.why-card {
    background: var(--abyss);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 30px;
    transition:
        border-color 0.25s,
        transform 0.25s,
        box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mint), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.why-card:hover {
    border-color: var(--border-h);
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(9, 141, 203, 0.07);
    /**box-shadow: 0 0 40px rgba(0, 255, 179, 0.07);**/
}
.why-card:hover::before {
    opacity: 1;
}
.why-ico {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    background: var(--mint-dim);
    border: 1px solid rgba(9, 141, 203, 0.12);
    /**border: 1px solid rgba(0, 255, 179, 0.12);**/
    color: var(--mint);
}
.why-ico.em {
    background: var(--ember-dim);
    border-color: rgba(255, 107, 53, 0.15);
    color: var(--ember);
}
.why-card h3 {
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.875rem;
    color: var(--txt-muted);
    line-height: 1.7;
}

/* HOW IT WORKS */
.how {
    padding: 96px 0;
    background: var(--abyss);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 56px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.step {
    background: var(--abyss);
    padding: 34px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    align-items: start;
    transition: background 0.25s;
}
.step:hover {
    background: var(--panel-h);
}
.step-num {
    font-family: var(--ff-h);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--mint);
    opacity: 0.35;
    line-height: 1;
}
.step:hover .step-num {
    opacity: 1;
}
.step-ico {
    font-size: 1.1rem;
    color: var(--mint);
    margin-bottom: 8px;
}
.step h3 {
    margin-bottom: 8px;
}
.step p {
    font-size: 0.875rem;
    color: var(--txt-muted);
    line-height: 1.65;
}
.step-connector {
    display: none;
}

/* FEATURES */
.features {
    padding: 96px 0;
}
.feat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 56px;
}
.fc {
    background: var(--abyss);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition:
        border-color 0.25s,
        box-shadow 0.25s,
        transform 0.25s;
}
.fc:hover {
    border-color: var(--border-h);
    box-shadow: 0 0 40px rgba(9, 141, 203, 0.06);
    /**box-shadow: 0 0 40px rgba(0, 255, 179, 0.06);**/
    transform: translateY(-3px);
}
.fc-ico {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 18px;
    background: var(--mint-dim);
    border: 1px solid rgba(9, 141, 203, 0.12);
    /**border: 1px solid rgba(0, 255, 179, 0.12);**/
    color: var(--mint);
}
.fc-ico.em {
    background: var(--ember-dim);
    border-color: rgba(255, 107, 53, 0.15);
    color: var(--ember);
}
.fc h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}
.fc p {
    font-size: 0.875rem;
    color: var(--txt-muted);
    line-height: 1.7;
}

/* TRADE FROM ANYWHERE */
.anywhere {
    padding: 96px 0;
}
.anywhere-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}
.anywhere-text h2 {
    margin-bottom: 16px;
}
.anywhere-text p {
    color: var(--txt-muted);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 28px;
}
.aw-list {
    margin-bottom: 32px;
}
.aw-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.875rem;
}
.aw-ico {
    color: var(--mint);
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
}
.aw-item p {
    color: var(--txt-muted);
    line-height: 1.6;
}
.aw-item strong {
    color: var(--txt-head);
    display: block;
    margin-bottom: 3px;
}
/* Device mockup */
.devices {
    position: relative;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}
.phone-mock {
    background: var(--abyss);
    border: 2px solid rgba(9, 141, 203, 0.2);
    /**border: 2px solid rgba(0, 255, 179, 0.2);**/
    border-radius: 28px;
    overflow: hidden;
    width: 200px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}
.phone-notch {
    width: 60px;
    height: 6px;
    background: var(--deep);
    border-radius: 3px;
    margin: 12px auto 0;
}
.phone-screen {
    padding: 14px;
}
.ps-header {
    font-family: var(--ff-m);
    font-size: 0.6rem;
    color: var(--txt-muted);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
}
.ps-val {
    font-family: var(--ff-h);
    font-size: 1.2rem;
    color: var(--mint);
    text-align: center;
    margin-bottom: 4px;
}
.ps-sub {
    font-family: var(--ff-m);
    font-size: 0.55rem;
    color: var(--txt-muted);
    text-align: center;
    margin-bottom: 12px;
}
.ps-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 50px;
}
.pb {
    flex: 1;
    border-radius: 2px 2px 0 0;
    background: rgba(9, 141, 203, 0.25);
    /**background: rgba(0, 255, 179, 0.25);**/
}
.pb.a {
    background: var(--mint);
    box-shadow: 0 0 8px rgba(9, 141, 203, 0.4);
    /**box-shadow: 0 0 8px rgba(0, 255, 179, 0.4);**/
}
.ps-acts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 12px;
}
.pa {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
    font-family: var(--ff-m);
    font-size: 0.5rem;
    color: var(--txt-muted);
}
.pa i {
    display: block;
    font-size: 0.8rem;
    color: var(--mint);
    margin-bottom: 4px;
}
.desktop-bar {
    background: var(--deep);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.db-ico {
    width: 30px;
    height: 30px;
    background: var(--mint-dim);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--mint);
    flex-shrink: 0;
}
.db-txt .ttl {
    font-family: var(--ff-m);
    font-size: 0.65rem;
    color: var(--txt-head);
}
.db-txt .sub {
    font-size: 0.6rem;
    color: var(--txt-muted);
    margin-top: 2px;
}
.db-val {
    margin-left: auto;
    font-family: var(--ff-m);
    font-size: 0.8rem;
    color: var(--mint);
}
.platform-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.pb-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    font-family: var(--ff-m);
    font-size: 0.62rem;
    color: var(--txt-muted);
    transition: border-color 0.2s;
}
.pb-badge:hover {
    border-color: rgba(9, 141, 203, 0.25);
    /**border-color: rgba(0, 255, 179, 0.25);**/
    color: var(--mint);
}
.pb-badge i {
    font-size: 0.9rem;
}

/* RECENT TRADES */
.recent {
    padding: 96px 0;
    background: var(--abyss);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.recent-table-wrap {
    margin-top: 48px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.rt-header {
    background: var(--deep);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rt-title {
    font-family: var(--ff-m);
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--txt-muted);
}
.rt-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-m);
    font-size: 0.62rem;
    color: var(--mint);
}
.rt-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    animation: blink 1.4s infinite;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th {
    font-family: var(--ff-m);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--txt-muted);
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}
td {
    padding: 13px 20px;
    font-family: var(--ff-m);
    font-size: 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
tr:last-child td {
    border-bottom: none;
}
tr:hover td {
    background: var(--panel);
}
.tr-pair {
    color: var(--txt-head);
    font-weight: 400;
}
.tr-time {
    color: var(--txt-muted);
}
.tr-dir-buy {
    color: var(--mint);
    background: var(--mint-dim);
    padding: 3px 9px;
    border-radius: 3px;
    border: 1px solid rgba(9, 141, 203, 0.18);
    /**border: 1px solid rgba(0, 255, 179, 0.18);**/
}
.tr-dir-sell {
    color: var(--ember);
    background: var(--ember-dim);
    padding: 3px 9px;
    border-radius: 3px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}
.tr-gain {
    color: var(--mint);
}
.tr-loss {
    color: var(--crimson);
}
.tr-mode {
    color: var(--txt-muted);
}
.tr-status {
    display: flex;
    align-items: center;
    gap: 6px;
}
.ts-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mint);
}
.ts-lbl {
    color: var(--txt-muted);
}

/* HEATMAP */
.heatmap {
    padding: 96px 0;
}
.hm-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    align-items: center;
}
.hm-tab {
    font-family: var(--ff-m);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--txt-muted);
    transition: all 0.2s;
}
.hm-tab.active {
    background: var(--panel-h);
    color: var(--mint);
    border-color: rgba(9, 141, 203, 0.3);
    /**border-color: rgba(0, 255, 179, 0.3);**/
}
.hm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}
.hm-cell {
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.hm-cell:hover {
    transform: scale(1.03);
    z-index: 2;
}
.hm-cell-name {
    font-family: var(--ff-h);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}
.hm-cell-chg {
    font-family: var(--ff-m);
    font-size: 0.75rem;
    font-weight: 700;
}
.hm-cell-vol {
    font-family: var(--ff-m);
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}
/* heat colors */
.h-ug {
    background: rgba(9, 141, 203, 0.28);
    /**background: rgba(0, 255, 179, 0.28);**/
    border: 1px solid rgba(9, 141, 203, 0.3);
    /**border: 1px solid rgba(0, 255, 179, 0.3);**/
} /* strong up */
.h-mg {
    background: rgba(0, 200, 140, 0.2);
    border: 1px solid rgba(0, 200, 140, 0.25);
} /* mid up */
.h-lg {
    background: rgba(0, 160, 110, 0.14);
    border: 1px solid rgba(0, 160, 110, 0.2);
} /* light up */
.h-ln {
    background: rgba(255, 107, 53, 0.13);
    border: 1px solid rgba(255, 107, 53, 0.18);
} /* light dn */
.h-mn {
    background: rgba(255, 60, 60, 0.2);
    border: 1px solid rgba(255, 60, 60, 0.25);
} /* mid dn */
.h-un {
    background: rgba(255, 20, 20, 0.28);
    border: 1px solid rgba(255, 20, 20, 0.3);
} /* strong dn */
.h-ug .hm-cell-chg {
    color: #00ffb3;
}
.h-mg .hm-cell-chg {
    color: #00cc8a;
}
.h-lg .hm-cell-chg {
    color: #00a870;
}
.h-ln .hm-cell-chg {
    color: #ff8055;
}
.h-mn .hm-cell-chg {
    color: #ff4040;
}
.h-un .hm-cell-chg {
    color: #ff2020;
}
.hm-legend {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.hm-legend-label {
    font-family: var(--ff-m);
    font-size: 0.58rem;
    color: var(--txt-muted);
    letter-spacing: 0.06em;
}
.hml-box {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* MODES SECTION */
.modes {
    padding: 96px 0;
    background: var(--abyss);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.modes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.modes-text h2 {
    margin-bottom: 16px;
}
.modes-text p {
    color: var(--txt-muted);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 28px;
}
.m-list {
    margin-bottom: 32px;
}
.m-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.875rem;
}
.m-ico {
    color: var(--mint);
    flex-shrink: 0;
    margin-top: 2px;
}
.modes-panel {
    background: var(--void);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.mp-head {
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    animation: blink 2s infinite;
}
.mp-lbl {
    font-family: var(--ff-m);
    font-size: 0.65rem;
    color: var(--txt-muted);
    letter-spacing: 0.08em;
}
.mode-row {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.2s;
    cursor: pointer;
}
.mode-row:hover {
    background: var(--panel);
}
.mode-row:last-child {
    border-bottom: none;
}
.mode-ind {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.mode-info {
    flex: 1;
}
.mode-name {
    font-family: var(--ff-m);
    font-size: 0.78rem;
    color: var(--txt-head);
}
.mode-desc {
    font-size: 0.7rem;
    color: var(--txt-muted);
    margin-top: 2px;
}
.mode-badge {
    font-family: var(--ff-m);
    font-size: 0.6rem;
    padding: 3px 10px;
    border-radius: 3px;
}
.badge-on {
    background: var(--mint-dim);
    border: 1px solid rgba(9, 141, 203, 0.2);
    /**border: 1px solid rgba(0, 255, 179, 0.2);**/
    color: var(--mint);
}
.badge-off {
    background: var(--panel);
    border: 1px solid var(--border);
    color: var(--txt-muted);
}
.mp-chart {
    padding: 18px 20px;
    border-top: 1px solid var(--border);
}
.mc-label {
    font-family: var(--ff-m);
    font-size: 0.58rem;
    color: var(--txt-muted);
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}
.mc-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 56px;
}
.mcb {
    flex: 1;
    border-radius: 2px 2px 0 0;
}
.mc-lx {
    display: flex;
    justify-content: space-between;
    font-family: var(--ff-m);
    font-size: 0.55rem;
    color: var(--txt-muted);
    margin-top: 5px;
}

/* TESTIMONIALS */
.testi {
    padding: 96px 0;
}
.tg {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}
.tc {
    background: var(--abyss);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 26px;
    position: relative;
    overflow: hidden;
}
.tc::before {
    content: '"';
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: var(--ff-h);
    font-size: 5rem;
    color: rgba(9, 141, 203, 0.05);
    /**color: rgba(0, 255, 179, 0.05);**/
    line-height: 1;
    pointer-events: none;
}
.tc-stars {
    color: var(--mint);
    font-size: 0.78rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.tc-txt {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--txt);
    margin-bottom: 20px;
}
.tc-foot {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tc-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-h);
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--void);
    flex-shrink: 0;
}
.av1 {
    background: var(--mint);
}
.av2 {
    background: var(--ember);
}
.av3 {
    background: #a78bff;
}
.av4 {
    background: #ffd700;
    color: #0a0800;
}
.tc-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--txt-head);
}
.tc-loc {
    font-family: var(--ff-m);
    font-size: 0.62rem;
    color: var(--txt-muted);
}
.tc-result {
    margin-left: auto;
    font-family: var(--ff-m);
    font-size: 0.62rem;
    color: var(--mint);
    background: var(--mint-dim);
    border: 1px solid rgba(9, 141, 203, 0.15);
    /**border: 1px solid rgba(0, 255, 179, 0.15);**/
    padding: 3px 9px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* CTA */
.cta {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(9, 141, 203, 0.06) 0%, transparent 65%);
    /**background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0, 255, 179, 0.06) 0%, transparent 65%);**/
}
.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(9, 141, 203, 0.03) 0 1px, transparent 1px 32px),
        repeating-linear-gradient(0deg, rgba(9, 141, 203, 0.03) 0 1px, transparent 1px 32px);
    /**background-image: repeating-linear-gradient(90deg, rgba(0, 255, 179, 0.03) 0 1px, transparent 1px 32px),
        repeating-linear-gradient(0deg, rgba(0, 255, 179, 0.03) 0 1px, transparent 1px 32px);**/
}
.cta-inner {
    position: relative;
    z-index: 2;
}
.cta-inner h2 {
    margin-bottom: 16px;
}
.cta-inner p {
    color: var(--txt-muted);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.75;
}
.cta-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 36px;
}
.cta-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--ff-m);
    font-size: 0.62rem;
    color: var(--txt-muted);
}
.cta-step i {
    color: var(--mint);
}
.cta-step-arrow {
    font-size: 0.7rem;
    color: var(--txt-muted);
}
.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* FOOTER */
.footer {
    background: var(--abyss);
    border-top: 1px solid var(--border);
    padding: 64px 0 28px;
}
.fg {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.fb p {
    font-family: var(--ff-b);
    font-size: 0.82rem;
    color: var(--txt-muted);
    max-width: 220px;
    line-height: 1.65;
    margin-top: 12px;
}
.fcol h4 {
    font-family: var(--ff-m);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--txt-muted);
    margin-bottom: 16px;
}
.fcol ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fcol ul li a {
    font-size: 0.85rem;
    color: rgba(190, 230, 255, 0.42);
    transition: color 0.2s;
}
.fcol ul li a:hover {
    color: var(--mint);
}
.footer-btm {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-btm .copy {
    font-family: var(--ff-m);
    font-size: 0.62rem;
    color: var(--txt-muted);
}
.disclaimer {
    font-family: var(--ff-m);
    font-size: 0.58rem;
    color: rgba(150, 190, 220, 0.18);
    max-width: 600px;
    line-height: 1.6;
}
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.soc-a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt-muted);
    font-size: 0.8rem;
    transition: all 0.2s;
}
.soc-a:hover {
    border-color: var(--mint);
    color: var(--mint);
}

/* SECTION HEAD */
.sh {
    text-align: center;
    margin-bottom: 4px;
}
.sh h2 {
    margin-bottom: 14px;
}
.sh p {
    color: var(--txt-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
}

/* REVEAL */
.rv {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.rv.in {
    opacity: 1;
    transform: none;
}
.d1 {
    transition-delay: 0.1s;
}
.d2 {
    transition-delay: 0.2s;
}
.d3 {
    transition-delay: 0.3s;
}
.d4 {
    transition-delay: 0.4s;
}

/* RESPONSIVE */
@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tg {
        grid-template-columns: 1fr 1fr;
    }
    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hm-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .ham {
        display: none;
    }
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .anywhere-grid {
        grid-template-columns: 1fr 1fr;
    }
    .modes-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fg {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    .steps {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .tg {
        grid-template-columns: repeat(4, 1fr);
    }
    .feat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hm-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
    .container {
        padding: 0 40px;
    }
}
