/* =====================================================
   Landing Page v2 — Premium Crypto Theme
   ===================================================== */

.landing-body {
    background: var(--bg);
    overflow-x: hidden;
    color: var(--text);
}

/* ════════════════════════════════════════
   LIVE PRICE TICKER BAR (top)
════════════════════════════════════════ */
.ticker-bar {
    background: linear-gradient(90deg, rgba(0,200,81,.08), rgba(31,111,235,.08), rgba(167,139,250,.08));
    border-bottom: 1px solid rgba(0,200,81,.18);
    overflow: hidden;
    padding: .55rem 0;
    position: relative;
}
.ticker-bar::before,
.ticker-bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.ticker-bar::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.ticker-bar::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.ticker-track {
    display: inline-flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
    padding-left: 100%;
}
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 600;
}
.t-sym   { color: var(--text-muted); font-weight: 700; }
.t-price { color: var(--text); font-variant-numeric: tabular-nums; }
.t-chg.up   { color: var(--green); }
.t-chg.down { color: var(--red); }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.landing-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(13,17,23,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.landing-logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}
.logo-glow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 8px rgba(0,200,81,.5));
}
.nav-links { display: flex; gap: 1.75rem; flex: 1; margin-left: 1rem; }
.nav-links a {
    color: var(--text-muted);
    font-size: .88rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: .6rem; margin-left: auto; }

/* ════════════════════════════════════════
   HERO V2 (gradient mesh + floating coins)
════════════════════════════════════════ */
.hero-v2 {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 2rem 0;
}

/* Gradient mesh background */
.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .6;
    animation: meshFloat 20s ease-in-out infinite;
}
.mesh-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #00c851 0%, transparent 70%);
    top: -10%; left: -10%;
    animation-delay: 0s;
}
.mesh-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #1f6feb 0%, transparent 70%);
    top: 10%; right: -15%;
    animation-delay: -7s;
}
.mesh-3 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, #a78bfa 0%, transparent 70%);
    bottom: -20%; left: 30%;
    animation-delay: -14s;
}
@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(40px, -40px) scale(1.1); }
    66%      { transform: translate(-30px, 30px) scale(.95); }
}
.mesh-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Floating crypto coin decorations */
.floating-coins {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.float-coin {
    position: absolute;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
    animation: coinFloat 6s ease-in-out infinite;
}
.coin-btc { top: 15%; right: 8%;  animation-delay: 0s; }
.coin-eth { bottom: 20%; left: 6%; animation-delay: -2s; }
.coin-sol { top: 55%; right: 18%; animation-delay: -4s; }
.coin-gen-1 { top: 70%; right: 5%;  animation-delay: -1s; }
.coin-gen-2 { top: 30%; left: 8%;  animation-delay: -3s; }
@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50%      { transform: translateY(-20px) rotate(8deg); }
}

@media (max-width: 1024px) {
    .float-coin { display: none; }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content { max-width: 600px; }

.hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1rem;
    background: rgba(0,200,81,.1);
    border: 1px solid rgba(0,200,81,.25);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulseDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--green);
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(1.3); }
}

.hero-title-v2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 1.5rem;
}
.gradient-text-1 {
    background: linear-gradient(135deg, #00c851 0%, #00c8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gradient-text-2 {
    background: linear-gradient(135deg, #fbb040 0%, #f7931a 50%, #ff4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-v2 {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}
.hero-subtitle-v2 strong { color: var(--text); font-weight: 700; }

.hero-cta-v2 {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1.75rem;
    background: linear-gradient(135deg, #00c851 0%, #00a843 100%);
    color: #000;
    font-size: .95rem;
    font-weight: 800;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 8px 24px rgba(0,200,81,.3), 0 0 0 1px rgba(0,200,81,.4) inset;
}
.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,200,81,.4), 0 0 0 1px rgba(0,200,81,.6) inset;
    color: #000;
}
.btn-cta-primary.btn-lg {
    padding: 1.05rem 2.25rem;
    font-size: 1rem;
}

.btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 1.5rem;
    background: rgba(255,255,255,.04);
    color: var(--text);
    font-size: .9rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.1);
    text-decoration: none;
    transition: all .15s;
}
.btn-cta-ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.2);
    color: var(--text);
}
.btn-cta-ghost.btn-lg { padding: 1.05rem 1.75rem; font-size: .95rem; }

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: .8rem;
    color: var(--text-muted);
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-weight: 500;
}

/* Hero visual / Trade Demo Card */
.hero-visual-v2 {
    position: relative;
    display: flex;
    justify-content: center;
}
.trade-demo-card {
    position: relative;
    background: linear-gradient(180deg, rgba(33,38,45,.95) 0%, rgba(22,27,34,.95) 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 1.25rem;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(0,200,81,.1);
    backdrop-filter: blur(12px);
}
.trade-demo-glow {
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,200,81,.4), rgba(0,200,255,.2), rgba(167,139,250,.3));
    z-index: -1;
    filter: blur(20px);
    opacity: .5;
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: .4; }
    50%      { opacity: .7; }
}

.td-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.td-pair {
    display: flex;
    align-items: center;
    gap: .65rem;
}
.td-coin-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(247,147,26,.4));
}
.td-pair-name { font-size: 1rem; font-weight: 800; }
.td-pair-sub { font-size: .7rem; color: var(--text-muted); }

.td-price { text-align: right; }
.td-price-val {
    font-size: 1.05rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.td-price-chg {
    font-size: .72rem;
    font-weight: 700;
    padding: .12rem .45rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: .15rem;
}
.td-price-chg.up   { background: rgba(0,200,81,.15); color: var(--green); }
.td-price-chg.down { background: rgba(255,68,68,.15); color: var(--red); }

.td-chart {
    background: rgba(0,0,0,.25);
    border-radius: 10px;
    padding: .5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}
.td-chart-svg {
    width: 100%;
    height: 100px;
    display: block;
}

.td-order { display: flex; flex-direction: column; gap: .5rem; }
.td-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    padding: .35rem 0;
}
.td-order-row span { color: var(--text-muted); }
.td-order-row strong { font-weight: 700; }

.td-order-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-top: .5rem;
}
.td-buy, .td-sell {
    padding: .7rem;
    border: none;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    transition: all .15s;
}
.td-buy {
    background: linear-gradient(135deg, #00c851, #00a843);
    color: #000;
    box-shadow: 0 4px 12px rgba(0,200,81,.3);
}
.td-buy:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,200,81,.4); }
.td-sell {
    background: linear-gradient(135deg, #ff4444, #cc3333);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255,68,68,.3);
}
.td-sell:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255,68,68,.4); }

/* ════════════════════════════════════════
   STATS COUNTER STRIP
════════════════════════════════════════ */
.stats-strip {
    background: linear-gradient(180deg, rgba(0,200,81,.04) 0%, transparent 100%);
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 2.5rem 0;
}
.stats-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-icon-v2 {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .85rem;
}
.stat-icon-v2.green  { background: rgba(0,200,81,.12); color: var(--green); box-shadow: 0 0 24px rgba(0,200,81,.15); }
.stat-icon-v2.blue   { background: rgba(31,111,235,.12); color: #60a5fa; box-shadow: 0 0 24px rgba(31,111,235,.15); }
.stat-icon-v2.orange { background: rgba(245,158,11,.12); color: #f59e0b; box-shadow: 0 0 24px rgba(245,158,11,.15); }
.stat-icon-v2.purple { background: rgba(167,139,250,.12); color: #a78bfa; box-shadow: 0 0 24px rgba(167,139,250,.15); }
.stat-num-v2 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: .35rem;
    background: linear-gradient(135deg, var(--text) 0%, rgba(255,255,255,.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}
.stat-label-v2 {
    font-size: .75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}

/* ════════════════════════════════════════
   COMMON SECTION HEADER
════════════════════════════════════════ */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}
.section-head-v2 {
    text-align: center;
    margin-bottom: 3rem;
}
.section-pre {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
    color: var(--green);
    margin-bottom: .75rem;
    padding: .25rem .85rem;
    background: rgba(0,200,81,.1);
    border-radius: 100px;
    border: 1px solid rgba(0,200,81,.2);
}
.section-title-v2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    margin-bottom: .75rem;
    line-height: 1.15;
    letter-spacing: -.02em;
}
.section-sub-v2 {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ════════════════════════════════════════
   LIVE CRYPTO CARDS
════════════════════════════════════════ */
.section-crypto-cards {
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.01) 100%);
}
.crypto-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.crypto-card {
    background: linear-gradient(180deg, rgba(33,38,45,.6) 0%, rgba(22,27,34,.8) 100%);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 1.4rem;
    transition: all .2s;
    position: relative;
    overflow: hidden;
}
.crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0;
    transition: opacity .2s;
}
.crypto-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,200,81,.3);
    box-shadow: 0 12px 40px rgba(0,200,81,.1);
}
.crypto-card:hover::before { opacity: 1; }

.cc-top {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1rem;
}
.cc-logo {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.cc-info { flex: 1; min-width: 0; }
.cc-symbol {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
}
.cc-name {
    font-size: .72rem;
    color: var(--text-muted);
}
.cc-rank {
    font-size: .68rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255,255,255,.05);
    padding: .15rem .5rem;
    border-radius: 100px;
}

.cc-price {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: .25rem;
    font-variant-numeric: tabular-nums;
}
.cc-change {
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: .85rem;
}
.cc-change.up   { color: var(--green); }
.cc-change.down { color: var(--red); }

.cc-spark {
    width: 100%;
    height: 36px;
    margin-bottom: 1rem;
    display: block;
}

.cc-trade-btn {
    display: block;
    text-align: center;
    padding: .65rem;
    background: rgba(0,200,81,.1);
    color: var(--green);
    border: 1px solid rgba(0,200,81,.25);
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .15s;
}
.cc-trade-btn:hover {
    background: rgba(0,200,81,.18);
    border-color: rgba(0,200,81,.4);
    color: var(--green);
}

/* ════════════════════════════════════════
   FEATURES V2
════════════════════════════════════════ */
.section-features-v2 {
    background: rgba(255,255,255,.01);
    position: relative;
}
.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
.feature-v2 {
    position: relative;
    background: rgba(33,38,45,.6);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all .2s;
    overflow: hidden;
}
.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, transparent 40%, rgba(0,200,81,.04) 60%, transparent 70%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}
.feature-glow.blue   { background: radial-gradient(circle at center, transparent 40%, rgba(31,111,235,.05) 60%, transparent 70%); }
.feature-glow.orange { background: radial-gradient(circle at center, transparent 40%, rgba(245,158,11,.05) 60%, transparent 70%); }
.feature-glow.purple { background: radial-gradient(circle at center, transparent 40%, rgba(167,139,250,.05) 60%, transparent 70%); }
.feature-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(0,200,81,.25);
}
.feature-v2:hover .feature-glow { opacity: 1; }

.feature-icon-v2 {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.feature-icon-v2.green  { background: linear-gradient(135deg, rgba(0,200,81,.18), rgba(0,200,81,.05)); color: var(--green); border: 1px solid rgba(0,200,81,.25); }
.feature-icon-v2.blue   { background: linear-gradient(135deg, rgba(31,111,235,.18), rgba(31,111,235,.05)); color: #60a5fa; border: 1px solid rgba(31,111,235,.25); }
.feature-icon-v2.orange { background: linear-gradient(135deg, rgba(245,158,11,.18), rgba(245,158,11,.05)); color: #f59e0b; border: 1px solid rgba(245,158,11,.25); }
.feature-icon-v2.purple { background: linear-gradient(135deg, rgba(167,139,250,.18), rgba(167,139,250,.05)); color: #a78bfa; border: 1px solid rgba(167,139,250,.25); }

.feature-v2 h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: .65rem;
    position: relative;
    z-index: 1;
}
.feature-v2 p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}
.feature-v2 p strong { color: var(--text); }

/* ════════════════════════════════════════
   HOW IT WORKS V2
════════════════════════════════════════ */
.section-how-v2 { position: relative; }
.steps-v2 {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 1.5rem;
}
.step-v2 {
    text-align: center;
    padding: 1rem;
}
.step-num-v2 {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00c851, #00c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .5rem;
    line-height: 1;
}
.step-v2 h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .5rem;
}
.step-v2 p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.step-line {
    width: 100%;
    min-width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,200,81,.4), transparent);
    margin-top: 2.2rem;
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.section-testimonials {
    background: linear-gradient(180deg, rgba(255,255,255,.01) 0%, transparent 100%);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: linear-gradient(180deg, rgba(33,38,45,.7) 0%, rgba(22,27,34,.8) 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all .2s;
}
.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0,200,81,.2);
}
.t-stars {
    color: #fbb040;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: .15em;
}
.t-quote {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.t-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.06);
}
.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: .85rem;
    flex-shrink: 0;
}
.t-name {
    font-size: .88rem;
    font-weight: 700;
}
.t-role {
    font-size: .72rem;
    color: var(--text-muted);
}

/* ════════════════════════════════════════
   CTA SECTION V2
════════════════════════════════════════ */
.section-cta-v2 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(0,200,81,.04) 100%);
    border-top: 1px solid rgba(255,255,255,.05);
}
.cta-bg-blob {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,81,.12) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: 0;
}
.section-cta-v2 .section-container {
    position: relative;
    z-index: 1;
}
.cta-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0,200,81,.18), rgba(0,200,81,.05));
    border: 1px solid rgba(0,200,81,.3);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 40px rgba(0,200,81,.2);
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -.02em;
}
.cta-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.cta-trust {
    font-size: .82rem;
    color: var(--text-muted);
}

.text-center { text-align: center; }

/* ════════════════════════════════════════
   FOOTER V2
════════════════════════════════════════ */
.landing-footer-v2 {
    background: linear-gradient(180deg, var(--sidebar) 0%, #0a0e13 100%);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 4rem 1.5rem 2rem;
}
.footer-container { max-width: 1280px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand-col { max-width: 320px; }
.footer-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.footer-tagline {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col-title {
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text);
    margin-bottom: .85rem;
}
.footer-col a {
    font-size: .82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .15s;
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-copy {
    font-size: .8rem;
    color: var(--text-muted);
}
.footer-disclaimer {
    font-size: .75rem;
    color: #f59e0b;
    background: rgba(245,158,11,.08);
    padding: .35rem .75rem;
    border-radius: 6px;
    border: 1px solid rgba(245,158,11,.2);
}

/* ════════════════════════════════════════
   AUTH PAGES (kept compatible)
════════════════════════════════════════ */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: radial-gradient(ellipse at top, rgba(0,200,81,.06), transparent 60%);
}
.auth-brand { margin-bottom: 1.5rem; }
.landing-logo .logo-triangle { color: var(--green); font-size: 1rem; }
.auth-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.auth-card-wide { max-width: 580px; }
.auth-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .35rem;
}
.auth-subtitle {
    font-size: .875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.auth-switch {
    text-align: center;
    margin-top: 1.25rem;
    font-size: .875rem;
    color: var(--text-muted);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 2rem; }
    .hero-visual-v2 { order: -1; }
    .trade-demo-card { max-width: 340px; }
    .steps-v2 { grid-template-columns: 1fr 1fr; }
    .step-line { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .stats-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .hero-title-v2 { font-size: 2.25rem; }
    .section-container { padding: 3.5rem 1rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .steps-v2 { grid-template-columns: 1fr; }
    .hero-cta-v2 { flex-direction: column; align-items: stretch; }
    .btn-cta-primary, .btn-cta-ghost { justify-content: center; }
}
