/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.nav-cta {
    color: var(--primary) !important;
    font-weight: 600 !important;
    background: rgba(108,99,255,.12);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(108,99,255,.3);
    transition: background .2s, border-color .2s !important;
}
.nav-cta:hover {
    background: rgba(108,99,255,.22) !important;
    border-color: var(--primary) !important;
}

/* ══════════════════════════════════════════
   TICKER TAPE
══════════════════════════════════════════ */
.ticker-wrap {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    overflow: hidden;
    background: rgba(255,255,255,.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .45rem 0;
    z-index: 10;
}

.ticker {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scroll-left 32s linear infinite;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.tick {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
}
.tick.up   { color: #4ade80; }
.tick.down { color: #f87171; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 9rem 6% 5rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: fixed;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(108,99,255,.1) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    z-index: -1;
}

.hero-content { grid-column: 1; }

/* mock card */
.hero-card {
    grid-column: 2;
    background: var(--bg-card);
    border: 1px solid rgba(108,99,255,.35);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(108,99,255,.1);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108,99,255,.18), transparent 70%);
    pointer-events: none;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.card-live {
    font-size: .72rem;
    font-weight: 600;
    color: #4ade80;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%,100% { opacity:1; }
    50%      { opacity:.45; }
}

.card-total {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: .45rem;
}

.card-cents { font-size: 1.4rem; color: var(--text-muted); }

.card-change {
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
}
.card-change.up { color: #4ade80; }

/* market rows (replaces bars in hero card) */
.market-rows { display: flex; flex-direction: column; gap: 0; margin-top: .5rem; }

.mrow {
    display: flex; justify-content: space-between; align-items: center;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.mrow:last-child { border-bottom: none; }

.mrow-left { display: flex; align-items: center; gap: .7rem; }
.mrow-icon { font-size: 1.15rem; }
.mrow-name { font-size: .88rem; font-weight: 600; }
.mrow-sub  { font-size: .7rem; color: var(--text-muted); margin-top: .05rem; }

.mrow-right { text-align: right; }
.mrow-price { font-size: .92rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.mrow-change { font-size: .72rem; font-weight: 600; margin-top: .1rem; }
.mrow-change.up   { color: #4ade80; }
.mrow-change.down { color: #f87171; }

.card-footer-note {
    font-size: .68rem; color: var(--text-muted);
    text-align: center; margin-top: 1rem; padding-top: .75rem;
    border-top: 1px solid rgba(255,255,255,.05);
}

.asset-count {
    font-size: .72rem; font-weight: 700;
    color: var(--accent-color, var(--primary));
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: .4rem;
}

.card-bars { display: flex; flex-direction: column; gap: .85rem; }

.bar-item {
    display: grid;
    grid-template-columns: 60px 1fr 36px;
    align-items: center;
    gap: .75rem;
}

.bar-label { font-size: .78rem; color: var(--text-muted); font-weight: 500; }

.bar-track {
    height: 7px;
    background: rgba(255,255,255,.07);
    border-radius: 99px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 99px;
    animation: grow-bar .9s ease-out both;
}

@keyframes grow-bar {
    from { width: 0 !important; }
}

.bar-pct { font-size: .75rem; color: var(--text-muted); text-align: right; font-weight: 600; }

/* ══════════════════════════════════════════
   ASSET SECTION
══════════════════════════════════════════ */
.assets-section {
    padding: 6rem 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.asset-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    border-top: 3px solid var(--accent-color, var(--primary));
    transition: transform .25s, box-shadow .25s;
}

.asset-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.asset-icon { font-size: 2rem; margin-bottom: 1rem; }

.asset-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }

.asset-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.7; margin-bottom: 1rem; }

.asset-tags { display: flex; flex-wrap: wrap; gap: .4rem; }

.asset-tags span {
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .65rem;
    border-radius: 6px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--text-muted);
}

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how-section {
    padding: 6rem 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.step-num {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .75rem;
    line-height: 1;
}

.step-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .45rem; }
.step-body p  { color: var(--text-muted); font-size: .85rem; line-height: 1.7; }

.step-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-section {
    padding: 4rem 6%;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.cta-box {
    background: linear-gradient(135deg, rgba(108,99,255,.18), rgba(67,203,255,.1));
    border: 1px solid rgba(108,99,255,.35);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    text-align: center;
}

.cta-box h2 { font-size: 1.9rem; font-weight: 700; margin-bottom: .75rem; }
.cta-box p  { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 8rem;
        text-align: center;
    }
    .hero-buttons { justify-content: center; }
    .hero-card { grid-column: 1; max-width: 420px; margin: 0 auto; }
    .step-arrow { display: none; }
}
