/* =========================================
   REPLICORE — styles.css (v3 exact-match)
   Extracted values from live Framer site
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #1977F7;
    --blue2: #002BFF;
    /* rgb(0, 43, 255) — exact from framer */
    --cyan: #27BAFF;
    --bg: #000000;
    --hero-glow-top: rgb(0, 2, 16);
    --hero-glow-bottom: rgb(0, 43, 255);
    --card: #0d1117;
    --border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --muted: #9ca3af;
    --green: #22c55e;
    --red: #ef4444;
    --font-inter: 'Inter', sans-serif;
    --font-arch: 'Archivo', sans-serif;
    --font-hero: 'Sora', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #1a1a2e;
    border-radius: 3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ═══════════════════ NAVBAR ═══════════════════*/
/* Navbar — pill style on scroll */
.navbar {
    --nav-progress: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: calc(16px - 6px * var(--nav-progress)) 20px;
    transition: padding .4s ease;
}

.navbar.scrolled {
    padding: 12px 20px 0;
}

/* Inner pill container — matches reference: slim dark capsule */
.navbar.scrolled .nav-wrap {
    background: #0a0a0f;
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
    padding-top: 1px;
    padding-bottom: 1px;
}

/* Logo inside scrolled pill — readable size */
.navbar.scrolled .logo-img {
    height: 74px;
    transform: scale(1.16);
    transform-origin: left center;
}

/* Nav links tighter inside pill */
.navbar.scrolled .nav-links {
    gap: 28px;
}

/* Nav links white inside pill */
.navbar.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

.navbar.scrolled .nav-links a:hover {
    color: #fff;
}

/* CTA becomes solid blue pill inside scrolled navbar */
.navbar.scrolled .btn-nav {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    justify-content: center;
    white-space: nowrap;
    transition: background .2s;
}

.navbar.scrolled .btn-nav:hover {
    background: #1d4fd8;
}


.nav-wrap {
    display: flex;
    align-items: center;
    position: relative;
    max-width: calc(1400px - 540px * var(--nav-progress));
    margin: 0 auto;
    padding: calc(20px - 12px * var(--nav-progress)) calc(40px - 24px * var(--nav-progress));
    border-radius: calc(18px + 82px * var(--nav-progress));
    background: rgba(10, 10, 15, calc(0.92 * var(--nav-progress)));
    border: 1px solid rgba(255, 255, 255, calc(0.12 * var(--nav-progress)));
    box-shadow: 0 2px 20px rgba(0, 0, 0, calc(0.7 * var(--nav-progress)));
    backdrop-filter: blur(calc(24px * var(--nav-progress))) saturate(calc(100% + 60% * var(--nav-progress)));
    -webkit-backdrop-filter: blur(calc(24px * var(--nav-progress))) saturate(calc(100% + 60% * var(--nav-progress)));
    transition:
        max-width .35s ease,
        padding .35s ease,
        border-radius .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        backdrop-filter .35s ease;
}

.nav-logo {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: calc(154px - 68px * var(--nav-progress));
    width: auto;
    display: block;
    mix-blend-mode: normal;
    filter: none;
    transition: height .35s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: calc(40px - 12px * var(--nav-progress));
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: gap .35s ease;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    font-weight: 400;
    transition: color .2s;
}

.nav-links a:hover {
    color: #fff;
}

/* Nav CTA — exact match: white bg, rounded, dark text */
.btn-nav {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ffffff;
    color: #000;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s, transform .2s;
    border: none;
}

.btn-nav:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 12px 32px 24px;
    background: rgba(0, 0, 0, .95);
    border-bottom: 1px solid var(--border);
}

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

.mobile-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
}

.mobile-menu .btn-nav {
    align-self: flex-start;
    margin-left: 0;
    margin-top: 8px;
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue2);
    color: #fff;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    padding: 13px 26px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0, 43, 255, .4);
}

.btn-primary:hover {
    background: #0020cc;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(0, 43, 255, .55);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
}

.btn-ghost-icon {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    padding-top: 80px;
    background: #00010a;
}

/* ─── Animated background ─── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Base: BLACK on top, vivid electric blue at the bottom — sharp cutoff upward */
.hbg-base {
    position: absolute;
    inset: 0;
    /* Pure black at top 0%, transitions to vivid blue at bottom */
    background: linear-gradient(180deg,
            #000000 0%,
            #000318 35%,
            #000a3a 55%,
            #001077 70%,
            #001ecc 85%,
            #001aff 100%);
}

/* Radial glow — positioned at the BOTTOM of the hero */
.hbg-radial {
    position: absolute;
    width: 100%;
    height: 600px;
    bottom: -60px;
    top: auto;
    left: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 80%,
            rgba(0, 110, 255, 0.5) 0%,
            rgba(0, 60, 200, 0.25) 40%,
            transparent 70%);
    filter: blur(10px);
}

/* Fade at the TOP — soft transition from black page header down into blue */
.hbg-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
}

/* hbg-conic is now unused — hidden */
.hbg-conic {
    display: none;
}

/* vertical column guides */
.hero-cols {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    justify-content: space-evenly;
    pointer-events: none;
}

.hero-col {
    width: 1px;
    background: rgba(255, 255, 255, 0.07);
    height: 100%;
    position: relative;
    overflow: visible;
}

/* Comet/trail particle — shooting star shape with long gradient tail */
.hero-particle {
    position: absolute;
    width: 1.5px;
    height: 160px;
    /* longer comet tail */
    left: -0.5px;
    border-radius: 1px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 56, 255, 0.06) 30%,
            rgba(28, 88, 255, 0.42) 75%,
            rgba(255, 255, 255, 0.95) 100%);
    filter: blur(0.5px);
    box-shadow: 0 0 3px 1px rgba(28, 88, 255, 0.3), 0 0 8px 2px rgba(0, 56, 255, 0.14);
    animation: cometDrift linear infinite;
    opacity: 0;
}

@keyframes cometDrift {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    5% {
        opacity: 1;
    }

    90% {
        opacity: 0.85;
    }

    100% {
        opacity: 0;
        transform: translateY(var(--drift, 700px));
    }
}

/* Hero text content */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 196px 32px 0;
    /* big gap below header */
    width: 100%;
}

/* Hero H1 */
.hero-title {
    font-family: var(--font-inter);
    font-size: 62px;
    font-weight: 857;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-top: 42px;
    margin-bottom: 28px;
    color: #fff;
    max-width: 800px;
}

/* "All In One" mark — no border, just semi-transparent blue bg */
mark.pill-box {
    display: inline;
    background: rgba(43, 152, 207, 0.33);
    border-radius: 24px;
    padding: 4px 18px;
    color: inherit;
    font-style: normal;
    border: none;
    outline: none;
    text-decoration: none;
    -webkit-text-decoration: none;
}

.hero-sub {
    max-width: none;
    white-space: nowrap;
    font-size: 17px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    margin-bottom: 36px;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .hero-sub {
        max-width: 540px;
        white-space: normal;
    }
}

#heroSubTool {
    color: #fff;
    font-weight: 600;
    margin-left: 6px;
}

.hero-sub-caret {
    display: inline-block;
    width: 2px;
    height: 1.15em;
    margin-left: 6px;
    background: rgba(255, 255, 255, 0.85);
    vertical-align: -0.15em;
    animation: heroCaretBlink 0.9s steps(1, end) infinite;
}

@keyframes heroCaretBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 98px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Perspective tilt wrapper — JS controls rotateX via CSS var ── */
.hero-mockup-wrap {
    width: 100%;
    max-width: 1040px;
    perspective: 1200px;
    position: relative;
    z-index: 3;
    top: 40px;
    margin-bottom: -150px;
    /* Start tilted; JS animates --tilt toward 0 on scroll */
    --tilt: 14deg;
    transform-style: preserve-3d;
}

.hero-mockup {
    width: 100%;
    transform: rotateX(var(--tilt, 14deg));
    transform-origin: 50% 0%;
    transition: transform 0.05s linear;
    will-change: transform;
}

.mockup-frame {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .04),
        0 40px 100px rgba(0, 0, 0, .8),
        0 0 60px rgba(0, 43, 255, .25);
}

.mockup-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(45, 96, 255, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(126, 167, 255, 0.4),
        inset 0 16px 28px rgba(20, 64, 182, 0.14);
}

.hero-dashboard-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 34%;
    transform: scale(1);
    transform-origin: center center;
    display: block;
    filter: saturate(1.03) contrast(1.03);
}

/* Hide previous synthetic mockup blocks, replaced by real dashboard screenshot */
.mockup-frame .mockup-bar,
.mockup-frame .mockup-body {
    display: none;
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .02);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: 12px;
}

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .5px;
}

.mockup-search {
    flex: 1;
    max-width: 360px;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: 12px;
    color: var(--muted);
}

.mockup-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.engine-badge {
    background: rgba(34, 197, 94, .12);
    color: #4ade80;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(34, 197, 94, .2);
}

.avatar-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fb923c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.mockup-body {
    display: flex;
    min-height: 360px;
}

.mockup-sidebar {
    width: 180px;
    padding: 12px 8px;
    border-right: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.side-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 7px;
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: background .2s, color .2s;
}

.side-item:hover {
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .8);
}

.side-item.active {
    background: rgba(0, 43, 255, .15);
    color: var(--cyan);
}

.side-elite {
    margin-top: auto;
    padding: 10px;
    background: rgba(0, 43, 255, .08);
    border-radius: 8px;
    border: 1px solid rgba(0, 43, 255, .2);
}

.elite-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 4px;
    letter-spacing: .5px;
}

.elite-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 8px;
    line-height: 1.4;
}

.elite-bar {
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--blue2), var(--cyan));
}

.mockup-main {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.app-header-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-page-icon {
    font-size: 20px;
}

.app-page-title {
    font-size: 14px;
    font-weight: 700;
}

.app-page-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

.deploy-btn {
    margin-left: auto;
    background: rgba(0, 43, 255, .2);
    border: 1px solid rgba(0, 43, 255, .4);
    color: var(--cyan);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 7px;
    cursor: pointer;
}

.app-section-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-right-label {
    margin-left: auto;
}

.symbols-row {
    display: flex;
    gap: 8px;
}

.symbol-card {
    flex: 1;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 8px 10px;
}

.sym-name {
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.sym-pnl {
    font-size: 10px;
    font-weight: 600;
}

.sym-pnl.pos {
    color: #4ade80;
}

.sym-pnl.neg {
    color: #f87171;
}

.sym-tf {
    font-size: 10px;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 4px;
}

.sym-price {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.sym-spark {
    height: 3px;
    border-radius: 2px;
    opacity: .8;
}

.engine-panel {
    width: 160px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 10px;
}

.engine-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .6px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, .6);
}

.engine-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 4px;
}

.engine-pct {
    color: var(--cyan);
    font-weight: 700;
}

.engine-progress {
    height: 4px;
    background: rgba(255, 255, 255, .06);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.engine-progress>div {
    height: 100%;
    border-radius: 2px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

.check-item.done {
    color: rgba(255, 255, 255, .25);
    text-decoration: line-through;
}

.check-item.muted {
    opacity: .3;
}

.cb.checked {
    color: var(--cyan);
}

.copiers-table {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
    overflow: hidden;
}

.ct-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 7px 12px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .5px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.ct-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 9px 12px;
    font-size: 12px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.ct-row:last-child {
    border-bottom: none;
}

.ct-account {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ct-badge {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--blue2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.follower-badge {
    background: rgba(0, 43, 255, .3);
}

.role-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px;
}

.role-badge.master {
    background: rgba(0, 43, 255, .2);
    color: var(--cyan);
    border: 1px solid rgba(0, 43, 255, .3);
}

.role-badge.follower {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .4);
    border: 1px solid rgba(255, 255, 255, .08);
}

.ct-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.dot-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
}

.toggle-on {
    width: 32px;
    height: 18px;
    border-radius: 100px;
    background: var(--blue2);
    position: relative;
}

.toggle-on::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
}

/* ═══════════════════ SECTION GLOBALS ═══════════════════ */
.sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 16px;
}

.sec-badge-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    /* Softer, darker muted blue — not neon */
    background: rgba(30, 50, 120, 0.7);
    border: 1px solid rgba(80, 100, 200, 0.35);
    color: rgba(180, 200, 255, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Section headings — Inter 500 ~46px for main titles */
.sec-title {
    font-family: var(--font-inter);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 500;
    letter-spacing: -0.92px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.sec-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 400;
}

/* ═══════════════════ FEATURES ═══════════════════ */
.features-section {
    padding: 220px 0 80px;
}

.features-section .sec-badge,
.features-section .sec-title,
.features-section .sec-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.features-section .sec-badge {
    display: flex;
    width: fit-content;
    justify-content: center;
}

.features-section .sec-sub {
    max-width: 760px;
}

.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    margin-bottom: 48px;
}

.feat-card {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}

.feat-card:hover {
    border-color: rgba(0, 43, 255, .3);
    transform: translateY(-3px);
}

.feat-card.tall {
    grid-row: span 2;
    grid-column: 1;
}

.feat-card-mock {
    min-height: 220px;
    padding: 18px;
    background: rgba(255, 255, 255, .015);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    position: relative;
    overflow: hidden;
}

.feat-card-mock.centered-mock {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}

.refresh-icon {
    margin-left: auto;
    color: rgba(255, 255, 255, .3);
    cursor: pointer;
}

.mock-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-line {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
}

.mock-line.small {
    font-size: 11px;
}

.mock-line.muted {
    color: rgba(255, 255, 255, .35);
    font-size: 11px;
    line-height: 1.5;
}

.mock-line.thin {
    height: 8px;
    background: rgba(255, 255, 255, .07);
    border-radius: 4px;
}

.mock-line.thin.short {
    width: 60%;
}

.mock-separator {
    height: 1px;
    background: rgba(255, 255, 255, .06);
    margin: 4px 0;
}

.mock-float {
    position: absolute;
    bottom: 60px;
    right: 16px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 100px;
    padding: 4px 10px 4px 4px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.float-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
}

.blue-av {
    background: var(--blue2);
}

.orange-av {
    background: #f97316;
}

.mock-generating {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gen-btn {
    background: var(--blue2);
    color: #fff;
    border: none;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    cursor: pointer;
}

.float-2 {
    background: rgba(249, 115, 22, .12);
    border: 1px solid rgba(249, 115, 22, .25);
    border-radius: 100px;
    padding: 3px 8px 3px 3px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.multi-nodes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.top-nodes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.node-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 100px;
    padding: 4px 10px;
    font-size: 11px;
}

.node-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-main {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 43, 255, .2);
    border: 1px solid rgba(0, 43, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-card-body {
    padding: 20px 22px 24px;
}

.feat-card-body h3 {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feat-card-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.65;
}

.features-cta {
    text-align: center;
    margin-bottom: 56px;
}

/* ═══════════════════ STICKY APP SCROLL ═══════════════════ */
.sync-scroll-section {
    margin: 36px 0 24px;
    padding: 72px 0;
    background: #e5e7eb;
    border-radius: 28px;
    color: #05070e;
}

.sync-scroll-wrap {
    position: relative;
    min-height: 350vh;
}

.sync-pin-wrap {
    position: sticky;
    top: 124px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sync-section-head {
    text-align: center;
    margin-bottom: 34px;
}

.sync-section-title {
    font-family: var(--font-inter);
    font-size: clamp(38px, 4.6vw, 66px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
}

.sync-section-sub {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 690px;
    margin: 0 auto;
}

.sync-frame-stage {
    width: 100%;
    height: clamp(280px, 54vh, 640px);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #030712;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.sync-text-stage {
    --sync-step-height: clamp(124px, 16vh, 190px);
    height: var(--sync-step-height);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
}

.sync-text-track {
    width: 100%;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.sync-step {
    min-height: var(--sync-step-height);
    height: var(--sync-step-height);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.35;
    transform: scale(0.94);
    transition: opacity .3s ease, transform .3s ease;
}

.sync-step.is-active {
    opacity: 1;
    transform: scale(1);
}

.sync-title {
    font-family: var(--font-inter);
    font-size: clamp(46px, 7.8vw, 68px);
    letter-spacing: -0.03em;
    line-height: 1.06;
    font-weight: 700;
    color: #05070e;
}

.sync-title span {
    color: #41c56b;
}

.sync-scroll-section--dark {
    margin: 0;
    padding: 120px 0 100px;
    background: transparent;
    border-radius: 0;
    color: #ffffff;
}

.sync-scroll-section--dark .sync-title {
    color: #ffffff;
}

.sync-video-frame {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
}

/* ═══════════════════ ABOUT PAGE ═══════════════════ */
.about-main {
    background: #000;
    color: #fff;
    min-height: 100vh;
}

.about-hero {
    position: relative;
    padding: 180px 0 96px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(78% 78% at 50% 100%, rgba(0, 43, 255, 0.42), rgba(0, 43, 255, 0) 62%),
        linear-gradient(180deg, #02050f 0%, #000000 100%);
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.about-hero .sec-badge {
    display: inline-flex;
    margin: 0 auto 18px;
}

.about-hero .sec-title {
    margin-bottom: 18px;
}

.about-hero .sec-sub {
    margin-bottom: 0;
}

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

.about-heading {
    font-family: var(--font-arch);
    font-size: clamp(34px, 4.2vw, 52px);
    letter-spacing: -0.03em;
    line-height: 1.06;
    margin-bottom: 12px;
}

.about-sub {
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.roadmap-timeline {
    position: relative;
    display: grid;
    gap: 26px;
    padding: 24px 0 18px;
}

.roadmap-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(39, 186, 255, 0.55), rgba(39, 186, 255, 0.4));
}

.roadmap-timeline::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 35%;
    width: 4px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(125, 201, 255, 0.9), rgba(39, 186, 255, 0.65));
    box-shadow: 0 0 14px rgba(39, 186, 255, 0.9), 0 0 28px rgba(39, 186, 255, 0.55);
    pointer-events: none;
}

.roadmap-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
    align-items: center;
    min-height: 136px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
    transition-delay: var(--item-delay, 0s);
}

.roadmap-item--left {
    transform: translateX(-34px);
}

.roadmap-item--right {
    transform: translateX(34px);
}

.roadmap-item.is-visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.roadmap-item .roadmap-card {
    background: linear-gradient(180deg, rgba(13, 21, 43, 0.9), rgba(7, 11, 24, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 18px 20px;
}

.roadmap-item--done .roadmap-card {
    border-color: rgba(39, 186, 255, 0.8);
    box-shadow: 0 0 0 1px rgba(39, 186, 255, 0.38) inset;
    animation: roadmapDoneGlow 2.8s ease-in-out infinite;
}

.roadmap-item--left .roadmap-card {
    grid-column: 1;
}

.roadmap-item--right .roadmap-card {
    grid-column: 3;
}

.roadmap-node {
    grid-column: 2;
    justify-self: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(125, 201, 255, 0.86);
    background: #07112a;
    box-shadow: 0 0 0 6px rgba(39, 186, 255, 0.12);
}

.roadmap-item--done .roadmap-node {
    border-color: rgba(39, 186, 255, 0.95);
    box-shadow: 0 0 0 6px rgba(39, 186, 255, 0.2);
}

.roadmap-phase {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(25, 119, 247, 0.16);
    border: 1px solid rgba(39, 186, 255, 0.35);
    color: #7dc9ff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    margin-bottom: 12px;
}

.roadmap-item--upcoming .roadmap-phase {
    background: rgba(39, 186, 255, 0.13);
    border-color: rgba(39, 186, 255, 0.28);
    color: rgba(186, 228, 255, 0.9);
}

@keyframes roadmapDoneGlow {
    0%,
    100% {
        border-color: rgba(39, 186, 255, 0.78);
        box-shadow: 0 0 0 1px rgba(39, 186, 255, 0.28) inset, 0 0 12px rgba(39, 186, 255, 0.24);
    }

    50% {
        border-color: rgba(125, 201, 255, 0.98);
        box-shadow: 0 0 0 1px rgba(125, 201, 255, 0.52) inset, 0 0 34px rgba(39, 186, 255, 0.45);
    }
}

.roadmap-card h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 8px;
    font-family: var(--font-arch);
}

.roadmap-card p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.7;
}

.about-panel {
    background: #0a0f1f;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 22px 24px;
    display: grid;
    gap: 12px;
}

.about-panel p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    font-size: 15px;
}

.stage-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.stage-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 500;
}

.stage-pill.active {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(74, 222, 128, 0.45);
    color: #7df7ad;
}

.about-team-section {
    padding-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.team-card {
    background: linear-gradient(180deg, rgba(12, 18, 38, 0.95), rgba(8, 12, 24, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
}

.team-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 14px;
}

.team-card h3 {
    font-size: 20px;
    font-family: var(--font-arch);
    margin-bottom: 8px;
    line-height: 1.2;
}

.team-card p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.7;
}

.about-footer-cta {
    padding: 18px 0 90px;
}

.about-footer-cta .container {
    text-align: center;
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 142px 0 74px;
    }

    .roadmap-timeline::before {
        left: 18px;
        transform: none;
    }

    .roadmap-timeline::after {
        left: 18px;
        transform: translateX(-50%);
    }

    .roadmap-item {
        grid-template-columns: 36px minmax(0, 1fr);
        min-height: auto;
    }

    .roadmap-item--left,
    .roadmap-item--right {
        transform: translateY(22px);
    }

    .roadmap-item.is-visible {
        transform: translateY(0);
    }

    .roadmap-item .roadmap-card,
    .roadmap-item--left .roadmap-card,
    .roadmap-item--right .roadmap-card {
        grid-column: 2;
    }

    .roadmap-node {
        grid-column: 1;
    }

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

    .about-heading {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .roadmap-item .roadmap-card {
        padding: 16px;
    }

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

    .about-heading {
        font-size: 34px;
    }
}

/* ═══════════════════ SHOWCASE ACCORDIONS ═══════════════════ */
.showcase-section {
    padding: 100px 0;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.showcase-row-reverse {
    /* Explicit ordering for alternating rows:
       text on the right, visual on the left */
}

.showcase-row-reverse .showcase-left {
    order: 2;
}

.showcase-row-reverse .showcase-right {
    order: 1;
}

/* Section tag pill — Trade Copier, Risk Manager etc. */
.show-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    border-radius: 8px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2b5dff;
    box-shadow: 0 0 8px rgba(43, 93, 255, 0.78);
    flex-shrink: 0;
}

/* Accordion section headings — ARCHIVO 700 48px -1.44px (exact) */
.show-heading {
    font-family: var(--font-arch);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.44px;
    line-height: 1.1;
    margin-bottom: 32px;
}

.show-accordions {
    display: flex;
    flex-direction: column;
}

.show-acc {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
}

.show-acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    cursor: pointer;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    transition: color .2s;
}

.show-acc-head:hover {
    color: rgba(255, 255, 255, .75);
}

.acc-icon {
    font-size: 20px;
    color: rgba(255, 255, 255, .4);
    font-weight: 300;
    min-width: 20px;
    text-align: center;
}

.show-acc-body {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    transition: max-height .4s var(--ease), padding .4s;
    padding: 0 4px;
}

.show-acc.open .show-acc-body {
    max-height: 200px;
    padding: 0 4px 18px;
}

.show-acc.open .acc-icon {
    color: #fff;
}

/* Visual panels */
.show-visual {
    background: transparent;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.show-anim {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
    background: #000;
}

.chart-visual .show-anim {
    height: 420px;
}

.chart-visual {
    padding: 0;
    background: transparent;
}

.trade-inner-shell {
    border: none;
    border-radius: 12px;
    padding: 0;
    height: 320px;
    overflow: hidden;
    background: transparent;
}

.chart-visual .trade-anim {
    height: 320px;
    margin-top: 0;
}

.trade-inner-shell .trade-anim {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.risk-chart-visual .show-anim {
    height: 430px;
}

.risk-chart-visual {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.risk-inner-shell {
    border: none;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    background: transparent;
}

.risk-chart-visual .risk-anim {
    height: 300px;
}

.journal-visual .show-anim {
    height: 500px;
}

.propfirm-visual .show-anim {
    height: 336px;
}

.chart-card {
    padding: 20px;
}

.chart-header {
    margin-bottom: 14px;
}

.chart-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
}

.chart-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
}

.chart-body {
    width: 100%;
}

.bar-chart,
.line-chart-svg {
    width: 100%;
    height: 130px;
    display: block;
}

.overlay-card {
    position: absolute;
    background: rgba(10, 15, 25, .92);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 10px 14px;
    backdrop-filter: blur(8px);
}

.top-left-card {
    top: 14px;
    left: 14px;
}

.top-right-card {
    top: 14px;
    right: 14px;
}

.ol-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 4px;
}

.ol-val {
    font-size: 18px;
    font-weight: 700;
}

.ol-val.green-val {
    color: #4ade80;
}

.prop-stats {
    display: flex;
    flex-direction: column;
}

.ps-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
}

.ps-row:last-child {
    border-bottom: none;
}

.ps-good {
    color: #4ade80;
    font-weight: 600;
}

.ps-prog {
    color: var(--cyan);
    font-weight: 600;
}

/* ═══════════════════ STEPS ═══════════════════ */
.steps-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    text-align: center;
}

.steps-tagline {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.4px;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 52px;
}

.steps-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 620px;
    margin: 0 auto;
}

.step-card {
    width: 100%;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    padding: 20px 22px;
    text-align: left;
    position: relative;
    transition: border-color .3s, transform .3s;
}

.step-card:hover {
    border-color: rgba(0, 43, 255, .3);
    transform: translateY(-2px);
}

.step-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.step-icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blue-circle {
    background: var(--blue2);
}

.step-name {
    font-size: 15px;
    font-weight: 600;
}

.step-done {
    font-size: 16px;
    margin-left: auto;
}

.step-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 12px;
    line-height: 1.6;
}

.step-visual {
    margin-top: 8px;
}

.step-num-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gauge-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-mini-visual {
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
}

.mini-chart-wrap {
    position: relative;
}

.mini-label {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 6px;
}

.mini-sub {
    color: #64748b;
    font-weight: 400;
    margin-left: 4px;
}

.curve-visual {
    overflow: hidden;
    border-radius: 8px;
}

/* Desktop stack-merge effect:
   cards progressively pin to the same top position while scrolling */
@media (min-width: 769px) {
    .steps-stack {
        align-items: stretch;
    }

    .step-card {
        position: sticky;
        top: 110px;
    }

    .step-card:nth-child(1) {
        z-index: 4;
    }

    .step-card:nth-child(2) {
        z-index: 5;
    }

    .step-card:nth-child(3) {
        z-index: 6;
    }

    .step-card:nth-child(4) {
        z-index: 7;
    }
}

/* ═══════════════════ PRICING ═══════════════════ */
.pricing-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    text-align: center;
}

.pricing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 100px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 48px;
}

.ptoggle-btn {
    padding: 8px 28px;
    border-radius: 100px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background: none;
    color: rgba(255, 255, 255, .5);
    transition: background .2s, color .2s;
}

.ptoggle-btn.active {
    background: var(--blue2);
    color: #fff;
}

.pricing-wrap {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.price-col {
    padding: 32px 28px;
    border-right: 1px solid rgba(255, 255, 255, .07);
    text-align: left;
    transition: background .2s;
}

.price-col:last-child {
    border-right: none;
}

.price-col:hover {
    background: rgba(0, 43, 255, .04);
}

.plan-icon-wrap {
    margin-bottom: 12px;
}

.plan-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 43, 255, .15);
    border: 1px solid rgba(0, 43, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .8);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 12px;
}

.plan-price sup {
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
}

.plan-price .amount {
    font-family: var(--font-inter);
    font-size: 46px;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.plan-per {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin-left: 2px;
}

.plan-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 24px;
    line-height: 1.5;
}

.plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.plan-feats li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

.pf-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue2);
    flex-shrink: 0;
}

.btn-start-selected {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: none;
    background: var(--blue2);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.btn-start-selected:hover {
    background: #0020cc;
    transform: translateY(-1px);
}

.btn-start-plain {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    background: none;
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s;
}

.btn-start-plain:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-1px);
}

/* ═══════════════════ BROKERS ═══════════════════ */
.brokers-section {
    padding: 80px 0;
}

.brokers-card {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 22px;
    padding: 72px 48px;
    text-align: center;
}

/* ═══════════════════ FAQ ═══════════════════ */
.faq-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    text-align: center;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.faq-item {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item.open {
    border-color: rgba(0, 43, 255, .35);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    gap: 20px;
}

.faq-q:hover {
    background: rgba(255, 255, 255, .015);
}

.faq-icon {
    font-size: 22px;
    color: rgba(255, 255, 255, .35);
    font-weight: 300;
    flex-shrink: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.75;
    transition: max-height .4s var(--ease), padding .4s;
    padding: 0 22px;
}

.faq-item.open .faq-a {
    max-height: 720px;
    padding: 0 22px 22px;
}

/* ═══════════════════ CTA ═══════════════════ */
.cta-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    text-align: center;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #000 0%, #030308 100%);
}

.footer-wrap {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 100px;
    padding-bottom: 80px;
}

.footer-brand .nav-logo {
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    max-width: 240px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.footer-logo-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-logo-strip img {
    height: 18px;
    width: auto;
    object-fit: contain;
    opacity: 0.75;
    filter: grayscale(0.1) brightness(1.1);
}

.newsletter-label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--text);
    font-size: 13px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.newsletter-input:focus {
    border-color: rgba(0, 43, 255, .5);
}

.newsletter-btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    background: var(--blue2);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
}

.newsletter-btn:hover {
    background: #0020cc;
}

.newsletter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
}

.newsletter-check input {
    accent-color: var(--blue2);
}

.footer-links-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.footer-col-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s;
}

.footer-col a:hover {
    color: rgba(255, 255, 255, .8);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: background .2s, color .2s;
}

.social-ico:hover {
    background: rgba(0, 43, 255, .2);
    color: var(--cyan);
}

/* ═══════════════════ SCROLL REVEAL ═══════════════════ */
.reveal,
.reveal-pair {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible,
.reveal-pair.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .35s;
}

.delay-step1 {
    transition-delay: .12s;
}

.delay-step2 {
    transition-delay: .24s;
}

.animate-up {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp .7s var(--ease) forwards;
}

.animate-up.delay-1 {
    animation-delay: .12s;
}

.animate-up.delay-2 {
    animation-delay: .24s;
}

.animate-up.delay-3 {
    animation-delay: .4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feat-card.tall {
        grid-row: auto;
        grid-column: auto;
    }

    .footer-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .pricing-wrap {
        grid-template-columns: 1fr;
    }

    .price-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .price-col:last-child {
        border-bottom: none;
    }

    .show-heading {
        font-size: 36px;
    }

    .hero-mockup-wrap {
        top: 24px;
        margin-bottom: -110px;
    }

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

    .sync-scroll-wrap {
        min-height: 320vh;
    }

    .sync-pin-wrap {
        top: 112px;
    }

    .sync-frame-stage {
        height: clamp(260px, 48vh, 520px);
    }

    .sync-section-title {
        font-size: clamp(34px, 5vw, 52px);
    }

    .sync-section-sub {
        font-size: 16px;
    }

    .sync-text-stage {
        --sync-step-height: clamp(112px, 15vh, 172px);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .show-anim {
        height: 320px;
    }

    .chart-visual .show-anim {
        height: 320px;
    }

    .chart-visual .trade-anim {
        height: 320px;
    }

    .risk-chart-visual .show-anim {
        height: 380px;
    }

    .risk-chart-visual {
        padding: 0;
    }

    .risk-chart-visual .risk-anim {
        height: 270px;
    }

    .risk-inner-shell {
        padding: 0;
    }

    .journal-visual .show-anim {
        height: 420px;
    }

    .propfirm-visual .show-anim {
        height: 300px;
    }

    .showcase-row-reverse {
        /* On mobile keep content order consistent: text first, then visual */
    }

    .showcase-row-reverse .showcase-left {
        order: 1;
    }

    .showcase-row-reverse .showcase-right {
        order: 2;
    }

    .step-card {
        position: relative;
        top: auto;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: -1px;
        margin-top: 24px;
    }

    .hero-mockup-wrap {
        top: 6px;
        margin-bottom: -56px;
    }

    .hero-dashboard-shot {
        object-position: center 38%;
        transform: scale(1.02);
    }

    .show-heading {
        font-size: 30px;
    }

    .symbols-row {
        flex-wrap: wrap;
    }

    .engine-panel {
        display: none;
    }

    .mockup-sidebar {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .show-anim {
        height: 290px;
    }

    .chart-visual .show-anim {
        height: 320px;
    }

    .chart-visual .trade-anim {
        height: 300px;
        margin-top: 0;
    }

    .trade-inner-shell {
        height: 300px;
    }

    .risk-chart-visual .show-anim {
        height: 310px;
    }

    .risk-chart-visual {
        padding: 0;
    }

    .risk-chart-visual .risk-anim {
        height: 240px;
    }

    .risk-inner-shell {
        padding: 0;
    }

    .journal-visual .show-anim {
        height: 360px;
    }

    .propfirm-visual .show-anim {
        height: 274px;
    }

    .nav-wrap {
        padding: 16px 20px;
    }

    .brokers-card {
        padding: 40px 24px;
    }

    .sec-title {
        font-size: 28px;
    }

    .sync-scroll-section {
        margin: 24px 0 16px;
        padding: 44px 0;
        border-radius: 18px;
    }

    .sync-scroll-wrap {
        min-height: 270vh;
    }

    .sync-section-head {
        margin-bottom: 12px;
    }

    .sync-section-title {
        font-size: clamp(30px, 9vw, 40px);
    }

    .sync-section-sub {
        font-size: 16px;
    }

    .sync-frame-stage {
        height: clamp(220px, 42vh, 400px);
        border-radius: 22px;
    }

    .sync-pin-wrap {
        top: 86px;
        gap: 14px;
    }

    .sync-text-stage {
        --sync-step-height: 128px;
        padding: 0 6px;
    }

    .sync-title {
        font-size: clamp(32px, 11vw, 46px);
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions>* {
        width: 100%;
        justify-content: center;
    }

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

    .hero-title {
        font-size: 32px;
    }
}

/* ═══════════════════ ALTERNATING FEATURE ROWS ═══════════════════ */
.feat-rows {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 64px;
    margin-bottom: 64px;
}

.feat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Reverse: visual on left, text on right */
.feat-row--rev {
    direction: rtl;
}

.feat-row--rev>* {
    direction: ltr;
}

.feat-row-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feat-row-tag {
    display: inline-block;
    background: rgba(25, 119, 247, 0.15);
    border: 1px solid rgba(25, 119, 247, 0.3);
    color: #27BAFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    width: fit-content;
}

.feat-row-text h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

.feat-row-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
}

/* Visual side card */
.feat-visual-card {
    background: rgba(13, 17, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .04) inset;
}

.fvc-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .06em;
}

.fvc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.fvc-dot.green {
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
}

.fvc-dot.blue {
    background: #27BAFF;
    box-shadow: 0 0 6px #27BAFF;
}

.fvc-dot.purple {
    background: #a78bfa;
    box-shadow: 0 0 6px #a78bfa;
}

.fvc-dot.red {
    background: #f87171;
    box-shadow: 0 0 6px #f87171;
}

/* Trade replication rows */
.fvc-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fvc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .04);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
}

.fvc-sym {
    font-weight: 700;
    color: #fff;
    width: 28px;
}

.fvc-side {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.fvc-side.buy {
    background: rgba(34, 197, 94, .15);
    color: #4ade80;
}

.fvc-side.sell {
    background: rgba(239, 68, 68, .15);
    color: #f87171;
}

.fvc-qty {
    color: rgba(255, 255, 255, .5);
    flex: 1;
}

.fvc-status.ok {
    color: #4ade80;
    font-size: 12px;
}

.fvc-status.pulse {
    color: #27BAFF;
    font-size: 12px;
    animation: blink 1.2s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

.fvc-footer {
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    text-align: right;
}

/* Risk bars */
.fvc-risk-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fvc-risk-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
}

.fvc-risk-row span:first-child {
    width: 90px;
    flex-shrink: 0;
}

.fvc-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .08);
    border-radius: 3px;
    overflow: hidden;
}

.fvc-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width .6s ease;
}

.fvc-pct {
    width: 36px;
    text-align: right;
    font-weight: 700;
    color: #27BAFF;
}

/* Account chips */
.fvc-accounts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fvc-acc-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
}

.fvc-acc-chip.active {
    background: rgba(25, 119, 247, .12);
    border-color: rgba(25, 119, 247, .3);
    color: #fff;
}

.fvc-acc-chip em {
    color: rgba(255, 255, 255, .35);
    font-style: normal;
}

.fvc-acc-chip.new {
    color: rgba(255, 255, 255, .35);
    border-style: dashed;
    cursor: pointer;
}

/* Compliance */
.fvc-compliance {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fvc-comp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.fvc-comp-k {
    color: rgba(255, 255, 255, .5);
}

.fvc-comp-v.safe {
    color: #4ade80;
    font-weight: 600;
}

.fvc-comp-v.warn {
    color: #fbbf24;
    font-weight: 600;
}

/* Responsive feature rows */
@media (max-width: 768px) {
    .feat-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feat-row--rev {
        direction: ltr;
    }

    .feat-row-text h3 {
        font-size: 24px;
    }
}

/* ═══════════════════ BETA SIGNUP FORM ═══════════════════ */
.beta-form-wrap {
    max-width: 580px;
    margin: 56px auto 0;
}

.beta-form {
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, .5);
}

.bf-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bf-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.bf-req {
    color: #27BAFF;
}

.bf-input {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    color: #fff;
    font-family: var(--font-inter);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}

.bf-input::placeholder {
    color: rgba(255, 255, 255, .25);
}

.bf-input:focus {
    border-color: rgba(25, 119, 247, .6);
    box-shadow: 0 0 0 3px rgba(25, 119, 247, .12);
}

/* Discord/Twitter selector */
.bf-handle-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.bf-select-wrap {
    position: relative;
    flex-shrink: 0;
}

.bf-select-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .2s;
    height: 100%;
}

.platform-logo {
    width: 16px;
    height: 16px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: #fff;
    flex-shrink: 0;
}

.bf-select-btn:hover {
    border-color: rgba(255, 255, 255, .25);
}

.bf-chevron {
    font-size: 10px;
    opacity: .5;
}

.bf-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 2px;
    z-index: 100;
    min-width: 140px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .6);
}

.bf-dropdown.open {
    display: flex;
}

.bf-dd-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    transition: background .15s;
}

.bf-dd-opt .platform-logo {
    width: 14px;
    height: 14px;
}

.bf-dd-opt:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.bf-handle-input {
    flex: 1;
}

.bf-submit {
    background: linear-gradient(135deg, #1977F7 0%, #002BFF 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(0, 43, 255, .4);
    font-family: var(--font-inter);
    width: 100%;
    letter-spacing: .01em;
    margin-top: 8px;
}

.bf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 43, 255, .55);
}

.bf-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    margin-top: -8px;
}

/* Success state */
.beta-success {
    text-align: center;
    padding: 60px 40px;
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
}

.bs-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
    box-shadow: 0 0 32px rgba(34, 197, 94, .3);
}

.beta-success h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.beta-success p {
    color: rgba(255, 255, 255, .5);
}

@media (max-width: 600px) {
    .beta-form {
        padding: 32px 24px;
    }

    .bf-handle-row {
        flex-direction: column;
    }
}

/* ═══════════════════ FEATURES BENTO GRID ═══════════════════ */
.features-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 58px;
    margin-bottom: 56px;
}

.feature-tile {
    background: #090d18;
    border: none;
    border-radius: 28px;
    padding: 28px;
    min-height: 322px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .22s ease, background .22s ease;
}

.feature-tile:hover {
    transform: translateY(-4px);
    background: #0b1120;
}

.feature-tile-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(12, 32, 74, 0.62);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: transform .26s var(--ease), box-shadow .26s var(--ease), filter .26s var(--ease);
}

.feature-tile:hover .feature-tile-icon {
    transform: translateY(-1px) scale(1.08) rotate(4deg);
    box-shadow: 0 0 22px rgba(39, 186, 255, 0.26);
    filter: saturate(1.15);
}

.feature-tile h3 {
    margin: 0;
    font-size: 22px;
    font-size: clamp(18px, 1.05vw, 22px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
}

.feature-tile p {
    margin: 0;
    font-size: 16px;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.62);
}

.feature-lines {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 44px;
    margin-top: 58px;
    margin-bottom: 56px;
}

.feature-line {
    padding: 22px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-line h3 {
    font-size: 29px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #fff;
}

.feature-line p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
}

.feat-bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-top: 60px;
    margin-bottom: 56px;
    align-items: start;
}

/* Column wrappers (center & right) */
.fb-col {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* Base card */
.fb-card {
    background: rgba(12, 18, 32, 0.82);
    border: none;
    border-radius: 24px;
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: none;
    box-shadow: none;
    min-height: 0;
    height: 100%;
}

.fb-card:hover {
    border: none;
    box-shadow: none;
}

/* Slight alternate background accent for last card */
.fb-card--dark {
    background: rgba(12, 18, 32, 0.82);
}

.fb-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: rgba(25, 119, 247, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fb-card h3 {
    font-size: 18px;
    letter-spacing: -0.35px;
    line-height: 1.28;
    font-weight: 600;
    color: #fff;
}

.fb-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.58;
}

.fb-card-repl h3,
.fb-card-risk h3,
.fb-card-multi h3,
.fb-card-prop h3,
.fb-card-journal h3,
.fb-card-support h3 {
    font-size: 18px;
    letter-spacing: -0.35px;
    line-height: 1.28;
}

.fb-card-repl p,
.fb-card-risk p,
.fb-card-multi p,
.fb-card-prop p,
.fb-card-journal p,
.fb-card-support p {
    font-size: 15px;
    line-height: 1.58;
}

.fb-card-repl,
.fb-card-risk,
.fb-card-multi,
.fb-card-prop,
.fb-card-journal,
.fb-card-support {
    min-height: 348px;
}

/* Stats row at bottom of tall card */
.fb-badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fb-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 4px 12px;
}

.fb-stat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.fb-stat-dot.green {
    background: #22c55e;
    box-shadow: 0 0 5px #22c55e;
}

.fb-stat-dot.blue {
    background: #27BAFF;
    box-shadow: 0 0 5px #27BAFF;
}

@media (max-width: 900px) {
    .features-grid-clean {
        grid-template-columns: 1fr 1fr;
    }

    .feature-tile {
        min-height: 286px;
        padding: 24px 22px;
    }

    .feature-tile h3 {
        font-size: clamp(17px, 2.2vw, 21px);
    }

    .feature-tile p {
        font-size: 14px;
    }

    .feature-lines {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-line h3 {
        font-size: 24px;
    }

    .feat-bento {
        grid-template-columns: 1fr 1fr;
    }

    .fb-col {
        grid-template-rows: unset;
    }

    .fb-col:first-child {
        grid-column: 1 / -1;
    }

    .fb-card h3,
    .fb-card-repl h3,
    .fb-card-risk h3,
    .fb-card-multi h3,
    .fb-card-prop h3,
    .fb-card-journal h3,
    .fb-card-support h3 {
        font-size: 17px;
    }

    .fb-card p,
    .fb-card-repl p,
    .fb-card-risk p,
    .fb-card-multi p,
    .fb-card-prop p,
    .fb-card-journal p,
    .fb-card-support p {
        font-size: 14px;
    }

    .fb-card-repl,
    .fb-card-risk,
    .fb-card-multi,
    .fb-card-prop,
    .fb-card-journal,
    .fb-card-support {
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .features-grid-clean {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-tile {
        min-height: auto;
        padding: 22px 20px;
    }

    .feature-tile-icon {
        width: 52px;
        height: 52px;
    }

    .feat-bento {
        grid-template-columns: 1fr;
    }

    .fb-card h3,
    .fb-card-repl h3,
    .fb-card-risk h3,
    .fb-card-multi h3,
    .fb-card-prop h3,
    .fb-card-journal h3,
    .fb-card-support h3 {
        font-size: 16px;
    }

    .fb-card p,
    .fb-card-repl p,
    .fb-card-risk p,
    .fb-card-multi p,
    .fb-card-prop p,
    .fb-card-journal p,
    .fb-card-support p {
        font-size: 14px;
    }

    .fb-card-repl,
    .fb-card-risk,
    .fb-card-multi,
    .fb-card-prop,
    .fb-card-journal,
    .fb-card-support {
        min-height: 0;
    }
}

/* ═══════════════════ BROKER LOGOS ═══════════════════ */
.brokers-section {
    padding: 80px 0 100px;
    text-align: center;
}

.broker-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 56px;
    padding: 40px 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
}

.broker-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s, filter 0.2s;
    filter: grayscale(0.2) brightness(1.1);
}

.broker-logo-item:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1.2);
}

.broker-logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.broker-logo-item img[alt="NinjaTrader"] {
    height: 52px;
}

.broker-logo-item img[alt="TradingView"] {
    height: 48px;
}

@media (max-width: 600px) {
    .broker-logos {
        gap: 32px;
        padding: 28px;
    }

    .broker-logo-item img {
        height: 30px;
    }

    .broker-logo-item img[alt="NinjaTrader"] {
        height: 40px;
    }

    .broker-logo-item img[alt="TradingView"] {
        height: 36px;
    }
}

/* ═══════════════════ TOOLS SPOTLIGHT ═══════════════════ */
.tools-spotlight-section {
    padding: 0 0 110px;
}

.tools-spotlight-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(95, 150, 255, 0.24);
    background: #070b17;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-bg {
    position: absolute;
    inset: -20%;
    pointer-events: none;
    background:
        radial-gradient(560px circle at var(--mx, 50%) var(--my, 45%), rgba(90, 155, 255, 0.48), rgba(22, 35, 84, 0.2) 35%, rgba(6, 10, 22, 0) 64%),
        radial-gradient(900px circle at 20% 24%, rgba(62, 120, 255, 0.25), transparent 58%),
        radial-gradient(900px circle at 82% 70%, rgba(24, 86, 255, 0.2), transparent 55%),
        linear-gradient(140deg, #08122b 0%, #0b1d46 36%, #0a1735 60%, #070b17 100%);
    filter: saturate(1.08) contrast(1.04);
    transform: translate3d(0, 0, 0) scale(1.03);
    transition: background-position .22s ease, filter .22s ease;
}

.tools-spotlight-card:hover .spotlight-bg {
    filter: saturate(1.2) contrast(1.08);
}

.spotlight-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    padding: 52px 28px;
}

.spotlight-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(111, 206, 255, 0.55);
    color: #d8ecff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.spotlight-content h3 {
    margin: 0 0 16px;
    font-size: clamp(34px, 4.1vw, 60px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #fff;
}

.spotlight-content p {
    margin: 0 auto;
    max-width: 700px;
    font-size: clamp(14px, 1.05vw, 18px);
    line-height: 1.5;
    color: rgba(229, 240, 255, 0.86);
}

.spotlight-actions {
    margin-top: 26px;
}

.spotlight-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 12px;
    background: linear-gradient(90deg, #0f3af2 0%, #2b67ff 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s ease, filter .2s ease;
}

.spotlight-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

@media (max-width: 900px) {
    .tools-spotlight-card {
        min-height: 310px;
    }

    .spotlight-content {
        padding: 40px 22px;
    }
}
