/* ==========================================================================
   THE METAFX - CYBER TERMINAL & HIGH-FREQ QUANT DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-base: #06070a;
    --bg-surface: #0c0e14;
    --bg-card: #10131c;
    --bg-card-hover: #151926;
    --border: #1a2030;
    --border-glow: #00f2ff33;

    --cyan: #00f2ff;
    --cyan-glow: rgba(0, 242, 255, 0.35);
    --green: #00e676;
    --green-glow: rgba(0, 230, 118, 0.3);
    --red: #ff1744;
    --red-glow: rgba(255, 23, 68, 0.3);
    --gold: #ffd600;
    --purple: #d500f9;

    --text-white: #f5f7fa;
    --text-muted: #8892b0;
    --text-dim: #495670;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

h1, h2, h3, h4, .price-font, .sym-title {
    font-family: 'Space Grotesk', monospace;
}

body {
    background-color: var(--bg-base);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 1. Quant Market News Ticker */
.news-ticker-bar {
    background: #020305;
    border-bottom: 1px solid var(--border);
    height: 36px;
    display: flex;
    align-items: center;
    font-size: 11px;
}
.news-tag {
    background: var(--cyan);
    color: #000;
    font-weight: 800;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}
.news-stream { flex: 1; overflow: hidden; white-space: nowrap; }
.news-track { display: inline-block; animation: marquee 35s linear infinite; }
.news-track span { margin-right: 45px; color: #a0aec0; }
.news-track span strong { color: var(--cyan); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* 2. Top Header */
.navbar {
    background: rgba(6, 7, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}
.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--cyan), #3b82f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--cyan-glow);
}
.brand-text .main-title { font-size: 17px; font-weight: 800; color: #fff; letter-spacing: 0.5px; }
.brand-text .sub-by { font-size: 9px; font-weight: 800; color: var(--cyan); letter-spacing: 2px; }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 700; transition: 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan); text-shadow: 0 0 10px var(--cyan-glow); }
.btn-analyst-pill {
    background: rgba(0, 242, 255, 0.1);
    color: var(--cyan) !important;
    border: 1px solid var(--cyan);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px !important;
}

.nav-auth { display: flex; gap: 12px; align-items: center; }
.user-pill { display: flex; align-items: center; gap: 8px; background: var(--bg-card); padding: 4px 10px; border-radius: 20px; border: 1px solid var(--border); font-size: 12px; }
.user-avatar { width: 22px; height: 22px; background: var(--cyan); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 10px; }
.tier-tag { font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 6px; }
.tier-tag.vip { background: var(--gold); color: #000; }
.tier-tag.free { background: #1e2538; color: #fff; }

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary { background: var(--cyan); color: #000; box-shadow: 0 0 20px var(--cyan-glow); }
.btn-primary:hover { background: #fff; transform: translateY(-2px); }
.btn-glass { background: rgba(16, 19, 28, 0.8); border: 1px solid var(--border); color: #fff; }
.btn-glass:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-outline { border-color: var(--border); color: #fff; }
.btn-outline:hover { background: var(--bg-surface); border-color: var(--cyan); }
.btn-ghost { color: var(--text-muted); }
.btn-ghost:hover { color: #fff; }
.btn-block { width: 100%; display: block; text-align: center; }
.btn-lg { padding: 14px 28px; font-size: 14px; }
.btn-sm { padding: 6px 14px; font-size: 11px; }

/* 3. Hero Terminal Section */
.hero-carousel-wrapper {
    position: relative;
    background: radial-gradient(circle at 50% 0%, #0d1527 0%, #06070a 80%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 30px 0;
}
.hero-slider { width: 100%; min-height: 480px; }
.hero-slide-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    min-height: 480px;
}

.pill-badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid var(--cyan);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.live-dot-pulse {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
    animation: pulse 1.2s infinite;
}
@keyframes pulse { 0% { opacity: 0.4; } 50% { opacity: 1; } 100% { opacity: 0.4; } }

.hero-heading {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.cyan-gradient {
    background: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-lead {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}
.hero-btn-group { display: flex; gap: 14px; margin-bottom: 30px; }

/* Hero Live Order Flow Simulation Card */
.trading-terminal-card {
    background: #0b0e17;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    position: relative;
}
.trading-terminal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.terminal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.pair-info-box { display: flex; align-items: center; gap: 12px; }
.symbol-circle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    background: rgba(255, 214, 0, 0.15);
    color: var(--gold);
    border: 1px solid var(--gold);
}
.trade-pill-buy {
    background: rgba(0, 230, 118, 0.15);
    color: var(--green);
    border: 1px solid var(--green);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
}

.terminal-chart-area {
    background: #070910;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}
.chart-canvas-sim { height: 90px; display: flex; align-items: flex-end; gap: 14px; position: relative; }
.candle { width: 10px; border-radius: 2px; }
.c-up { background: var(--green); box-shadow: 0 0 10px var(--green-glow); }
.c-down { background: var(--red); box-shadow: 0 0 10px var(--red-glow); }
.chart-target-line { position: absolute; top: 15px; left: 0; right: 0; border-top: 1px dashed var(--cyan); display: flex; justify-content: flex-end; }
.chart-target-line span { background: var(--cyan); color: #000; font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 2px; transform: translateY(-50%); }

.terminal-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
.t-stat { background: #070910; border: 1px solid var(--border); padding: 8px; border-radius: 6px; }
.t-stat small { font-size: 9px; color: var(--text-dim); display: block; font-weight: 800; }
.t-stat strong { font-size: 13px; font-family: monospace; }

/* 4. Stats Counter Strip */
.stats-counter-strip {
    background: #080a10;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.counter-item { display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--border); padding-right: 15px; }
.counter-item:last-child { border-right: none; }
.counter-ico { font-size: 22px; color: var(--cyan); }
.counter-info h3 { font-size: 24px; font-weight: 800; color: #fff; }
.counter-info p { font-size: 11px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; }

/* 5. Live Signals Row-Based Feed */
.signals-screener-section { padding: 45px 0; }
.screener-header-wrap { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 14px; }
.live-stream-tag { color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: 1px; }

.filter-pills-row { display: flex; gap: 8px; align-items: center; }
.pill-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: 0.2s;
}
.pill-btn:hover, .pill-btn.active {
    background: var(--cyan);
    color: #000;
    border-color: var(--cyan);
    box-shadow: 0 0 10px var(--cyan-glow);
}

/* Rows Table */
.signal-rows-wrapper {
    background: #0a0d16;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow-x: auto;
}
.signal-table-header {
    display: grid;
    grid-template-columns: 1.4fr 1.6fr 1.2fr 1.2fr 1.2fr 1.2fr 1.2fr 1.4fr;
    gap: 12px;
    padding: 14px 20px;
    background: #05070c;
    border-bottom: 1px solid var(--border);
    font-size: 10px;
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 1px;
}
.signal-row-item {
    display: grid;
    grid-template-columns: 1.4fr 1.6fr 1.2fr 1.2fr 1.2fr 1.2fr 1.2fr 1.4fr;
    gap: 12px;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(26, 32, 48, 0.6);
    transition: background 0.2s;
}
.signal-row-item:hover { background: #0e121e; }
.signal-row-item.buy-row { border-left: 3px solid var(--green); }
.signal-row-item.sell-row { border-left: 3px solid var(--red); }

.pair-sym { font-size: 15px; font-weight: 800; color: #fff; }
.pair-cat { font-size: 9px; color: var(--cyan); font-weight: 800; display: block; margin-top: 2px; }

.analyst-inline-profile { display: flex; align-items: center; gap: 8px; }
.analyst-dp-circle {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #141a29;
    color: var(--cyan);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}
.a-name { font-size: 12px; font-weight: 700; color: #fff; }
.a-badge { font-size: 8px; color: var(--green); font-weight: 800; display: block; }

.badge-direction { font-size: 10px; font-weight: 800; padding: 3px 6px; border-radius: 3px; }
.badge-direction.buy { background: rgba(0, 230, 118, 0.15); color: var(--green); border: 1px solid var(--green); }
.badge-direction.sell { background: rgba(255, 23, 68, 0.15); color: var(--red); border: 1px solid var(--red); }
.badge-timeframe { font-size: 10px; color: var(--text-dim); font-weight: 700; margin-left: 4px; }

.price-font { font-size: 14px; font-weight: 700; color: #fff; }
.sup-pip { font-size: 10px; vertical-align: super; opacity: 0.7; }
.text-danger { color: var(--red) !important; }
.text-success { color: var(--green) !important; }

.pill-trade-status {
    font-size: 9px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 3px;
    background: #070910;
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.pill-trade-status.status-active { color: var(--cyan); border-color: var(--cyan); background: rgba(0, 242, 255, 0.1); }
.pill-trade-status.status-hit_tp1, .pill-trade-status.status-hit_tp2 { color: var(--green); border-color: var(--green); }
.pill-trade-status.status-hit_sl { color: var(--red); border-color: var(--red); }

.btn-copy-trade {
    background: #0f1523;
    border: 1px solid var(--border);
    color: var(--cyan);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-copy-trade:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 10px var(--cyan-glow);
}
.btn-copy-trade.copied { background: var(--green) !important; color: #000 !important; border-color: var(--green) !important; }

/* Locked Rows */
.row-locked { background: rgba(5, 7, 12, 0.8); }
.blur-text { filter: blur(4px); opacity: 0.25; user-select: none; }

/* 6. Analysts Matrix Section */
.analysts-showcase-section { padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #070910; }
.section-center-head { text-align: center; margin-bottom: 35px; }
.sub-head-pill { font-size: 10px; font-weight: 800; color: var(--cyan); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; display: block; }
.section-center-head h2 { font-size: 32px; font-weight: 800; }
.section-center-head p { color: var(--text-muted); font-size: 14px; max-width: 550px; margin: auto; }

.analysts-grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.analyst-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.analyst-card-v2:hover { border-color: var(--cyan); }
.avatar-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #070910;
    color: var(--cyan);
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 0 15px var(--cyan-glow);
    margin-bottom: 14px;
}
.analyst-card-v2 h3 { font-size: 17px; font-weight: 800; }
.analyst-style-pill { font-size: 11px; font-weight: 700; color: var(--cyan); margin: 4px 0 10px; }
.analyst-bio { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 20px; min-height: 54px; }
.analyst-metrics-row { display: flex; justify-content: space-around; width: 100%; border-top: 1px solid var(--border); padding-top: 14px; }
.m-box strong { font-size: 16px; font-weight: 800; display: block; }
.m-box small { font-size: 9px; color: var(--text-dim); font-weight: 800; }

/* 7. Ecosystem & Pricing */
.ecosystem-section { padding: 50px 0; }
.ecosystem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.eco-card { background: var(--bg-card); border: 1px solid var(--border); padding: 20px; border-radius: 8px; }
.eco-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 6px; color: #fff; }
.eco-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.pricing-preview-section { padding: 50px 0; background: #070910; border-top: 1px solid var(--border); }
.pricing-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card-v2 { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 30px 24px; position: relative; display: flex; flex-direction: column; }
.featured-price { border-color: var(--cyan); box-shadow: 0 0 25px var(--cyan-glow); }
.pop-ribbon { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--cyan); color: #000; font-size: 9px; font-weight: 800; padding: 3px 10px; border-radius: 20px; }
.price-val { font-size: 34px; font-weight: 800; margin: 15px 0 6px; }
.price-val span { font-size: 12px; color: var(--text-muted); font-weight: normal; }
.pricing-feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 12px; color: #cbd5e1; margin-bottom: 25px; }

/* 8. Registration Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center; z-index: 9999; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal-card { background: #0b0e17; border: 1px solid var(--cyan); border-radius: 12px; max-width: 420px; width: 100%; padding: 35px 25px; text-align: center; position: relative; box-shadow: 0 0 30px var(--cyan-glow); }
.modal-close { position: absolute; top: 12px; right: 14px; background: transparent; border: none; color: var(--text-muted); font-size: 22px; cursor: pointer; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

.toast-popup { position: fixed; bottom: 25px; right: 25px; background: var(--cyan); color: #000; font-weight: 800; font-size: 12px; padding: 10px 18px; border-radius: 4px; box-shadow: 0 0 15px var(--cyan-glow); opacity: 0; transform: translateY(20px); transition: 0.3s; z-index: 10000; pointer-events: none; }
.toast-popup.show { opacity: 1; transform: translateY(0); }

/* 9. Footer */
.footer-nfx { background: #030406; border-top: 1px solid var(--border); padding-top: 50px; margin-top: auto; }
.footer-top-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-col p { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-top: 10px; }
.footer-links-col h4, .footer-risk-col h4 { font-size: 13px; font-weight: 800; margin-bottom: 14px; color: #fff; letter-spacing: 0.5px; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links-col a { color: var(--text-muted); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--cyan); }
.footer-risk-col p { font-size: 11px; color: var(--text-dim); line-height: 1.6; }
.risk-disclaimer-link { font-size: 11px; color: var(--cyan); text-decoration: none; font-weight: 700; }
.footer-bottom { border-top: 1px solid #0d111a; padding: 18px 0; text-align: center; font-size: 11px; color: var(--text-dim); }

/* Responsive Queries */
@media (max-width: 1024px) {
    .signal-table-header { display: none; }
    .signal-row-item { grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; }
    .hero-slide-grid, .stats-counter-grid, .analysts-grid-3col, .ecosystem-grid, .pricing-cards-grid, .footer-top-grid { grid-template-columns: 1fr; }
    .counter-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
}

/* ===================================================
   AUTHENTICATION PAGES (Login / Register Card Layout)
=================================================== */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 350px);
    padding: 60px 20px;
}

.auth-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    width: 100%;
    max-width: 440px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.auth-card h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
    text-align: center;
    color: #fff;
}

.auth-sub {
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    margin-bottom: 24px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input {
    background: #090e18;
    border: 1px solid var(--border);
    color: #fff;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.form-group input:focus {
    border-color: var(--primary);
}

.btn-auth-submit {
    padding: 13px !important;
    font-size: 14px !important;
    font-weight: 700;
    margin-top: 10px;
    border-radius: 8px !important;
}

.alert {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--red);
    color: #fca5a5;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
}

.auth-footer a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 700;
}

.auth-footer a:hover {
    text-decoration: underline;
}
/* ===================================================
   ROW-BASED INSTITUTIONAL SIGNAL FEED & 1-CLICK COPY
=================================================== */

.signal-rows-wrapper {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.signal-table-header {
    display: grid;
    grid-template-columns: 1.4fr 1.8fr 1.2fr 1.2fr 1.2fr 1.2fr 1.2fr 1.5fr;
    gap: 12px;
    padding: 14px 20px;
    background: #090e1a;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 0.8px;
}

.signal-rows-list {
    display: flex;
    flex-direction: column;
}

.signal-row-item {
    display: grid;
    grid-template-columns: 1.4fr 1.8fr 1.2fr 1.2fr 1.2fr 1.2fr 1.2fr 1.5fr;
    gap: 12px;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(30, 41, 59, 0.6);
    background: rgba(14, 20, 36, 0.4);
    transition: background 0.2s, transform 0.2s;
}

.signal-row-item:hover {
    background: rgba(23, 34, 61, 0.7);
}

.signal-row-item:last-child {
    border-bottom: none;
}

.signal-row-item.buy-row { border-left: 4px solid var(--green); }
.signal-row-item.sell-row { border-left: 4px solid var(--red); }

/* Column 1: Pair & Category */
.col-pair { display: flex; align-items: center; }
.pair-text-box { display: flex; flex-direction: column; }
.pair-sym { font-size: 15px; font-weight: 800; color: #fff; font-family: 'Space Grotesk', sans-serif; }
.pair-cat { font-size: 9px; color: var(--muted); font-weight: 700; background: #0b111e; padding: 2px 5px; border-radius: 4px; display: inline-block; width: max-content; margin-top: 2px; }

/* Column 2: Analyst Avatar & Small Name */
.col-analyst { display: flex; align-items: center; }
.analyst-inline-profile { display: flex; align-items: center; gap: 10px; }
.analyst-dp-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    border: 1.5px solid #60a5fa;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}
.analyst-meta-name { display: flex; flex-direction: column; }
.a-name { font-size: 13px; font-weight: 700; color: #f1f5f9; }
.a-badge { font-size: 9px; color: #38bdf8; font-weight: 800; letter-spacing: 0.5px; }

/* Column 3: Order Direction & Timeframe */
.col-type { display: flex; align-items: center; gap: 6px; }
.badge-direction {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 4px;
}
.badge-direction.buy { background: var(--green-glow); color: var(--green); border: 1px solid var(--green); }
.badge-direction.sell { background: var(--red-glow); color: var(--red); border: 1px solid var(--red); }
.badge-timeframe { font-size: 10px; font-weight: 700; color: var(--muted); background: #0c1424; padding: 2px 6px; border-radius: 4px; }

/* Columns 4, 5, 6: Prices */
.price-font { font-family: monospace; font-size: 13px; font-weight: 700; }
.row-mobile-label { display: none; font-size: 9px; color: var(--muted); font-weight: 700; }

/* Column 7: Status */
.pill-trade-status {
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    background: #0d1527;
    color: var(--muted);
    border: 1px solid var(--border);
    display: inline-block;
}
.pill-trade-status.status-active { color: #38bdf8; border-color: rgba(56, 189, 248, 0.4); background: rgba(56, 189, 248, 0.1); }
.pill-trade-status.status-hit_tp1, .pill-trade-status.status-hit_tp2, .pill-trade-status.status-hit_tp3 { color: var(--green); border-color: var(--green); }
.pill-trade-status.status-hit_sl { color: var(--red); border-color: var(--red); }

/* Column 8: 1-Click Copy Button */
.col-action { display: flex; justify-content: flex-end; }
.btn-copy-trade {
    background: #172554;
    border: 1px solid #1e40af;
    color: #93c5fd;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}
.btn-copy-trade:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}
.btn-copy-trade.copied {
    background: var(--green) !important;
    color: #000 !important;
    border-color: var(--green) !important;
}
.btn-require-auth {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.4);
    color: #fbbf24;
}
.btn-require-auth:hover {
    background: var(--gold);
    color: #000;
}

/* Locked Blurred Row */
.row-locked {
    position: relative;
    background: rgba(8, 12, 22, 0.6);
}
.blur-text {
    filter: blur(4px);
    opacity: 0.3;
    user-select: none;
}

/* ===================================================
   AUTHENTICATION REQUIRED MODAL POPUP
=================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 7, 13, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}
.modal-overlay.active {
    display: flex;
}
.modal-card {
    background: #0f172a;
    border: 1px solid var(--border);
    border-radius: 16px;
    max-width: 440px;
    width: 100%;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    animation: modalPop 0.25s ease-out;
}
@keyframes modalPop {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 24px;
    cursor: pointer;
}
.modal-close:hover { color: #fff; }
.modal-icon { font-size: 36px; margin-bottom: 12px; }
.modal-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; color: #fff; }
.modal-card p { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 24px; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }

/* Toast Notification */
.toast-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--green);
    color: #000;
    font-weight: 800;
    font-size: 13px;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
    z-index: 10000;
    pointer-events: none;
}
.toast-popup.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Table Adjustments */
@media (max-width: 900px) {
    .signal-table-header { display: none; }
    .signal-row-item {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 16px;
    }
    .row-mobile-label { display: inline-block; margin-right: 4px; }
    .col-action { grid-column: span 2; justify-content: stretch; }
    .col-action button { width: 100%; justify-content: center; }
}
/* ===================================================
   SUPERSCRIPT PIPS & FRACTION PRECISION STYLING
=================================================== */
.price-font {
    font-family: 'Space Grotesk', monospace;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.sup-pip {
    font-size: 10px;
    font-weight: 600;
    vertical-align: super;
    opacity: 0.85;
    margin-left: 1px;
}
/* Real TradingView Live Chart Container */
.real-chart-container {
    background: #080a10;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px var(--cyan-glow);
    overflow: hidden;
    position: relative;
}

.real-chart-topbar {
    background: #0c101a;
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pair-tag-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
}

.sym-name {
    color: #fff;
    letter-spacing: 0.5px;
}

.live-status-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    animation: pulse 1s infinite;
}

.chart-timeframe-badge {
    background: rgba(0, 242, 255, 0.1);
    color: var(--cyan);
    border: 1px solid var(--cyan);
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
}

.tradingview-widget-container iframe {
    pointer-events: none; /* smooth slide scroll without hijacking mouse drag */
}
/* ===================================================
   REVIEWS 20-CARDS INFINITE MARQUEE SCROLLER
=================================================== */
.reviews-marquee-section {
    padding: 60px 0;
    overflow: hidden;
    background: #040508;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    margin-top: 20px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollReviews 55s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-box-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, border-color 0.2s;
}

.review-box-card:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
}

.rev-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.rev-stars { font-size: 11px; }

.rev-gain-pill {
    background: rgba(0, 230, 118, 0.15);
    color: var(--green);
    border: 1px solid var(--green);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
}

.rev-text {
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 16px;
    min-height: 48px;
    font-style: italic;
}

.rev-user-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 10px;
}

.rev-avatar-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #141a29;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
}

.rev-user-meta strong {
    display: block;
    font-size: 12px;
    color: #fff;
}

.rev-user-meta small {
    font-size: 10px;
    color: var(--text-dim);
}

/* ===================================================
   UPDATED PRICING CARDS ($49 / $99 / $149)
=================================================== */
.pricing-preview-section {
    padding: 60px 0;
    background: #070910;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-price {
    border-color: var(--cyan);
    box-shadow: 0 0 30px var(--cyan-glow);
}

.pop-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
}

.save-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(213, 0, 249, 0.15);
    color: var(--purple);
    border: 1px solid var(--purple);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
}

.pricing-card-v2 h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.price-val {
    font-size: 38px;
    font-weight: 800;
    margin: 14px 0 6px;
    color: #fff;
}

.price-val span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: normal;
}

.price-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 36px;
}

.pricing-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    color: #cbd5e1;
    margin-bottom: 28px;
}
/* ===================================================
   STANDALONE PRICING PAGE STYLING
=================================================== */
.pricing-page-wrapper {
    padding: 60px 0 80px;
}

.plan-header {
    margin-bottom: 20px;
}

.p-check {
    color: var(--cyan);
    font-weight: 800;
    margin-right: 6px;
}

.p-cross {
    color: var(--red);
    font-weight: 800;
    margin-right: 6px;
}

.p-disabled {
    color: var(--text-dim) !important;
    text-decoration: line-through;
}

.plan-btn-wrap {
    margin-top: auto;
}

/* Pricing FAQ */
.pricing-faq-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 10px;
}

.faq-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.faq-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   THE METAFX - CLEAN INSTITUTIONAL QUANT DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-base: #07090e;
    --bg-surface: #0d111a;
    --bg-card: #111724;
    --bg-card-hover: #161e2e;
    --border: #1e2638;

    --cyan: #00f2ff;
    --cyan-glow: rgba(0, 242, 255, 0.25);
    --green: #00e676;
    --green-glow: rgba(0, 230, 118, 0.2);
    --red: #ff334b;
    --red-glow: rgba(255, 51, 75, 0.2);
    --gold: #ffc107;
    --purple: #d500f9;

    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.1px;
}

/* Headings use modern clean weights */
h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Numbers & Prices use clean monospaced font */
.price-val, .price-font, .sym-name, .counter-info h3 {
    font-family: 'Space Grotesk', monospace;
}

body {
    background-color: var(--bg-base);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    /* Soft, non-distracting background grid */
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 48px 48px;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 1. Ticker */
.news-ticker-bar {
    background: #040508;
    border-bottom: 1px solid var(--border);
    height: 36px;
    display: flex;
    align-items: center;
    font-size: 11px;
}
.news-tag {
    background: var(--cyan);
    color: #000;
    font-weight: 800;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 10px;
    letter-spacing: 1px;
}
.news-stream { flex: 1; overflow: hidden; white-space: nowrap; }
.news-track { display: inline-block; animation: marquee 35s linear infinite; }
.news-track span { margin-right: 45px; color: #94a3b8; }
.news-track span strong { color: var(--cyan); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* 2. Top Header */
.navbar {
    background: rgba(7, 9, 14, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo-box { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--cyan);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px var(--cyan-glow);
}
.brand-text .main-title { font-size: 16px; font-weight: 800; color: #fff; line-height: 1.1; }
.brand-text .sub-by { font-size: 9px; font-weight: 800; color: var(--cyan); letter-spacing: 1.5px; }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.btn-analyst-pill {
    background: rgba(0, 242, 255, 0.08);
    color: var(--cyan) !important;
    border: 1px solid rgba(0, 242, 255, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px !important;
}

.nav-auth { display: flex; gap: 12px; align-items: center; }
.user-pill { display: flex; align-items: center; gap: 8px; background: var(--bg-card); padding: 4px 10px; border-radius: 20px; border: 1px solid var(--border); font-size: 12px; }
.user-avatar { width: 22px; height: 22px; background: var(--cyan); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 10px; }
.tier-tag { font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 6px; }
.tier-tag.vip { background: var(--gold); color: #000; }
.tier-tag.free { background: #1e2538; color: #fff; }

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.btn-primary { background: var(--cyan); color: #000; box-shadow: 0 0 15px var(--cyan-glow); }
.btn-primary:hover { background: #fff; transform: translateY(-1px); }
.btn-glass { background: rgba(17, 23, 36, 0.8); border: 1px solid var(--border); color: #fff; }
.btn-glass:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-outline { border-color: var(--border); color: #fff; }
.btn-outline:hover { background: var(--bg-surface); border-color: #334155; }
.btn-ghost { color: var(--text-muted); }
.btn-ghost:hover { color: #fff; }
.btn-block { width: 100%; display: block; text-align: center; }
.btn-lg { padding: 13px 26px; font-size: 14px; }
.btn-sm { padding: 6px 14px; font-size: 11px; }

/* Section Headers */
.section-center-head { text-align: center; margin-bottom: 35px; }
.sub-head-pill {
    font-size: 10px;
    font-weight: 800;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
    background: rgba(0, 242, 255, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}
.section-center-head h2 { font-size: 30px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.section-center-head p { color: var(--text-muted); font-size: 14px; max-width: 580px; margin: auto; line-height: 1.5; }

/* ===================================================
   PRICING CARDS
=================================================== */
.pricing-page-wrapper {
    padding: 50px 0 70px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.pricing-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, border-color 0.2s;
}

.pricing-card-v2:hover {
    border-color: #2a364f;
    transform: translateY(-2px);
}

.featured-price {
    border-color: var(--cyan);
    box-shadow: 0 0 25px var(--cyan-glow);
}

.pop-ribbon {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: #000;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.save-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(213, 0, 249, 0.15);
    color: var(--purple);
    border: 1px solid var(--purple);
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.pricing-card-v2 h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.price-val {
    font-size: 36px;
    font-weight: 700;
    margin: 12px 0 6px;
    color: #fff;
}

.price-val span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: normal;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.price-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 38px;
}

.pricing-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.p-check { color: var(--cyan); font-weight: bold; margin-right: 6px; }
.p-cross { color: var(--red); font-weight: bold; margin-right: 6px; }
.p-disabled { color: var(--text-dim) !important; opacity: 0.6; }

.plan-btn-wrap { margin-top: auto; }

/* ===================================================
   ACCORDION FAQ SECTION
=================================================== */
.pricing-faq-section {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--border);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.active {
    border-color: var(--cyan);
}

.faq-question {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question:hover {
    color: var(--cyan);
}

.faq-arrow {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.25s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background: rgba(7, 9, 14, 0.4);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 12px 20px 18px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================================================
   FOOTER
=================================================== */
.footer-nfx { background: #040508; border-top: 1px solid var(--border); padding-top: 50px; margin-top: auto; }
.footer-top-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 800; }
.footer-logo strong { color: var(--cyan); }
.footer-brand-col p { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-top: 10px; }
.footer-links-col h4, .footer-risk-col h4 { font-size: 13px; font-weight: 800; margin-bottom: 14px; color: #fff; letter-spacing: 0.5px; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links-col a { color: var(--text-muted); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--cyan); }
.footer-risk-col p { font-size: 11px; color: var(--text-dim); line-height: 1.6; }
.risk-disclaimer-link { font-size: 11px; color: var(--cyan); text-decoration: none; font-weight: 700; }
.footer-bottom { border-top: 1px solid #0d111a; padding: 18px 0; text-align: center; font-size: 11px; color: var(--text-dim); }

/* Responsive */
@media (max-width: 900px) {
    .pricing-cards-grid, .footer-top-grid { grid-template-columns: 1fr; }
}
/* ===================================================
   RISK DISCLAIMER POPUP MODAL STYLING
=================================================== */
.disclaimer-modal-card {
    max-width: 650px !important;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow: hidden;
    border-color: var(--cyan) !important;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.25) !important;
    text-align: left !important;
}

.disclaimer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #06080e;
    border-bottom: 1px solid var(--border);
}

.disclaimer-title-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-title-box .warning-icon {
    font-size: 20px;
}

.disclaimer-title-box h3 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.disclaimer-body {
    padding: 24px;
    overflow-y: auto;
    background: #0b0e17;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

.disclaimer-body h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--cyan);
    margin: 16px 0 6px 0;
    letter-spacing: 0.5px;
}

.disclaimer-body h4:first-child {
    margin-top: 0;
}

.disclaimer-body p {
    margin-bottom: 12px;
}

.disclaimer-body p strong {
    color: #fff;
}

.disclaimer-footer {
    padding: 16px 24px;
    background: #06080e;
    border-top: 1px solid var(--border);
}

.disclaimer-footer button {
    padding: 12px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}
/* ===================================================
   STYLISH TERMINAL INPUT & TEXT FIELDS
=================================================== */
.terminal-box-styled {
    background: linear-gradient(180deg, #090c16 0%, #060810 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    margin-bottom: 35px;
}

.terminal-box-header {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.terminal-box-header h4 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px 0;
}

.terminal-box-header span {
    font-size: 12px;
    color: var(--text-muted);
}

.input-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.styled-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.styled-field-wrap label {
    font-size: 10px;
    font-weight: 800;
    color: var(--cyan);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.form-input-styled {
    width: 100%;
    background: #04060c;
    border: 1px solid #1a2236;
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.form-input-styled::placeholder {
    color: #475569;
    font-weight: 400;
}

.form-input-styled:hover {
    border-color: #2b395a;
}

.form-input-styled:focus {
    border-color: var(--cyan);
    background: #060914;
    box-shadow: 0 0 15px var(--cyan-glow);
}

.form-input-styled.font-mono {
    font-family: 'Space Grotesk', monospace;
    font-size: 14px;
    font-weight: 700;
}

.form-input-styled.input-danger:focus {
    border-color: var(--red);
    box-shadow: 0 0 15px var(--red-glow);
}

.form-input-styled.input-success:focus {
    border-color: var(--green);
    box-shadow: 0 0 15px var(--green-glow);
}

@media(max-width: 900px) {
    .input-grid-3 {
        grid-template-columns: 1fr;
    }
}
.nav-badge-alert {
    background: #ff1744;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 12px;
    margin-left: auto;
    box-shadow: 0 0 8px rgba(255, 23, 68, 0.4);
}
























