/* ============================================================
   AlphaDesk — Crypto Intelligence Terminal
   Premium Dark Theme with Tactical Accents
   ============================================================ */

:root {
    --bg-primary: #06070b;
    --bg-secondary: #0d0f16;
    --bg-card: #141621;
    --bg-card-hover: #1a1d2b;
    --bg-elevated: #1f2232;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.14);
    --border-strong: rgba(255,255,255,0.2);
    --text-primary: #e8eaf0;
    --text-secondary: #8a8da0;
    --text-muted: #54576b;

    --accent-green: #00ff88;
    --accent-green-dim: rgba(0,255,136,0.12);
    --accent-red: #ff3b5c;
    --accent-red-dim: rgba(255,59,92,0.12);
    --accent-blue: #4d8dff;
    --accent-blue-dim: rgba(77,141,255,0.12);
    --accent-purple: #b967ff;
    --accent-purple-dim: rgba(185,103,255,0.12);
    --accent-orange: #ff9500;
    --accent-orange-dim: rgba(255,149,0,0.12);
    --accent-cyan: #00d9ff;
    --accent-cyan-dim: rgba(0,217,255,0.12);
    --accent-pink: #ff5fa2;
    --accent-pink-dim: rgba(255,95,162,0.12);
    --accent-yellow: #ffd600;
    --accent-yellow-dim: rgba(255,214,0,0.12);

    --gradient-hero: linear-gradient(135deg, #4d8dff 0%, #b967ff 40%, #00ff88 100%);
    --gradient-primary: linear-gradient(135deg, #4d8dff 0%, #b967ff 100%);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; }

/* ---- NAVBAR ---- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: rgba(6,7,11,0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(6,7,11,0.95);
    border-bottom-color: var(--border);
}
.nav-container {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 19px; font-weight: 700; letter-spacing: -0.5px;
}
.logo-icon {
    width: 30px; height: 30px; color: var(--accent-green);
    filter: drop-shadow(0 0 8px rgba(0,255,136,0.4));
}
.logo-accent {
    background: var(--gradient-hero);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-actions { display: flex; gap: 12px; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 20px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 600; font-family: var(--font-sans);
    border: none; cursor: pointer; transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-md); }
.btn-block { width: 100%; }
.btn-primary {
    background: var(--gradient-primary); color: #fff;
    box-shadow: 0 4px 20px rgba(77,141,255,0.25);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 30px rgba(77,141,255,0.4);
}
.btn-outline {
    background: transparent; color: var(--text-primary);
    border: 1px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--accent-blue); color: var(--accent-blue); }
.btn-glass {
    background: rgba(255,255,255,0.06);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.1); border-color: var(--border-hover); }

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 24px 60px;
    display: flex; flex-direction: column; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.glow {
    position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.35;
    animation: glowFloat 10s ease-in-out infinite;
}
.glow-1 { width: 600px; height: 600px; background: rgba(77,141,255,0.15); top: -150px; right: -100px; }
.glow-2 { width: 500px; height: 500px; background: rgba(185,103,255,0.12); bottom: -100px; left: -50px; animation-delay: -3s; }
.glow-3 { width: 400px; height: 400px; background: rgba(0,255,136,0.08); top: 30%; left: 40%; animation-delay: -5s; }

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 20px) scale(0.95); }
}

.hero-content {
    position: relative; z-index: 1;
    text-align: center; max-width: 820px;
    margin-bottom: 60px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px;
    background: rgba(0,255,136,0.08);
    border: 1px solid rgba(0,255,136,0.2);
    border-radius: 100px;
    font-size: 13px; font-weight: 500; color: var(--accent-green);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
    font-family: var(--font-mono);
}
.live-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--accent-green);
    box-shadow: 0 0 0 0 rgba(0,255,136,0.4);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.5); }
    50% { box-shadow: 0 0 0 10px rgba(0,255,136,0); }
}

.hero h1 {
    font-size: clamp(34px, 6.5vw, 76px);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    overflow-wrap: break-word;
    word-break: normal;
}
.hero h1 span { display: block; }
.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 18px; color: var(--text-secondary);
    max-width: 620px; margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 24px;
}
.hero-disclaimer {
    font-size: 12px; color: var(--text-muted);
    max-width: 520px; margin: 0 auto;
    font-family: var(--font-mono);
}
.hero-disclaimer strong { color: var(--text-secondary); }

.waitlist-form {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 10px;
    max-width: 480px; margin: 32px auto 12px;
    padding: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}
.waitlist-form input {
    flex: 1; min-width: 200px;
    padding: 10px 14px;
    background: transparent; border: none; outline: none;
    color: var(--text-primary);
    font-family: var(--font-sans); font-size: 14px;
}
.waitlist-form input::placeholder { color: var(--text-muted); }
.waitlist-form button { flex-shrink: 0; }
.waitlist-hint {
    width: 100%; text-align: center;
    font-size: 11px; color: var(--text-muted);
    padding: 4px 0 2px;
    font-family: var(--font-mono);
}
.waitlist-success {
    max-width: 480px; margin: 24px auto;
    padding: 16px;
    background: var(--accent-green-dim);
    border: 1px solid rgba(0,255,136,0.2);
    border-radius: var(--radius-md);
    color: var(--accent-green);
    font-weight: 600; text-align: center;
}

/* ---- LAUNCH URGENCY BANNER ---- */
.launch-urgency {
    display: inline-flex; align-items: center; gap: 12px;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(90deg, rgba(255,149,0,0.15), rgba(255,59,92,0.1));
    border: 1px solid rgba(255,149,0,0.3);
    border-radius: 100px;
    font-size: 13px; font-weight: 500;
    color: #ff9500;
    flex-wrap: wrap; justify-content: center;
    animation: urgencyPulse 3s ease-in-out infinite;
}
@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,149,0,0); }
    50% { box-shadow: 0 0 0 8px rgba(255,149,0,0.1); }
}
.urgency-fire { font-size: 16px; }
.launch-urgency code {
    background: rgba(255,149,0,0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-weight: 700;
    color: #ffa94d;
    font-size: 12px;
}
.urgency-countdown {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-red);
    font-weight: 600;
}

/* ---- SOCIAL PROOF TOAST ---- */
.social-toast {
    position: fixed;
    bottom: 24px; left: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    padding: 14px 36px 14px 14px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    max-width: 320px;
    z-index: 100;
    animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes toastSlideIn {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.toast-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gradient-hero);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; color: #fff;
    flex-shrink: 0;
}
.toast-content { flex: 1; min-width: 0; }
.toast-name {
    font-size: 13px; font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary);
}
.toast-action {
    font-size: 12px; color: var(--text-secondary);
    line-height: 1.3;
}
.toast-time {
    font-size: 10px; color: var(--text-muted);
    margin-top: 4px;
    font-family: var(--font-mono);
}
.toast-close {
    position: absolute; top: 8px; right: 10px;
    background: none; border: none;
    color: var(--text-muted);
    font-size: 16px; cursor: pointer;
    line-height: 1;
}
.toast-close:hover { color: var(--text-primary); }

@media (max-width: 600px) {
    .social-toast { left: 12px; right: 12px; max-width: none; bottom: 12px; }
}

/* ---- LOGIN MODAL ---- */
.login-modal {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}
.login-box {
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    width: 100%; max-width: 400px;
    position: relative;
    animation: slideUp 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.login-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none;
    font-size: 24px; color: var(--text-muted); cursor: pointer;
    line-height: 1;
}
.login-close:hover { color: var(--text-primary); }
.login-box h3 {
    font-size: 22px; font-weight: 700; margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.login-box > p {
    font-size: 14px; color: var(--text-secondary);
    margin-bottom: 24px;
}
.login-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.login-form input {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-sans); font-size: 14px;
    outline: none;
}
.login-form input:focus { border-color: var(--accent-blue); }
.login-divider {
    text-align: center; font-size: 12px;
    color: var(--text-muted);
    margin: 16px 0;
    font-family: var(--font-mono);
}
.login-footer {
    font-size: 11px; color: var(--text-muted);
    margin-top: 16px; text-align: center;
    font-family: var(--font-mono);
}

/* ---- HERO PREVIEW TERMINAL ---- */
.hero-preview {
    position: relative; z-index: 1;
    width: 100%; max-width: 860px; margin: 20px auto 0;
}
.terminal-frame {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 30px 80px -20px rgba(0,0,0,0.6),
        0 0 60px rgba(77,141,255,0.1);
}
.terminal-header {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.terminal-dots { display: flex; gap: 6px; }
.terminal-dots .dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dots .red { background: #ff5f56; }
.terminal-dots .yellow { background: #ffbd2e; }
.terminal-dots .green { background: #27c93f; }
.terminal-title {
    flex: 1;
    font-family: var(--font-mono); font-size: 12px; color: var(--text-muted);
    text-align: center;
}
.terminal-status {
    display: flex; align-items: center; gap: 6px;
    font-family: var(--font-mono); font-size: 11px;
    color: var(--accent-green); font-weight: 600;
    letter-spacing: 1px;
}

.terminal-body {
    height: 360px;
    overflow: hidden;
    position: relative;
}
.ticker-stream {
    display: flex; flex-direction: column; gap: 0;
    font-family: var(--font-mono);
}

.ticker-row {
    display: grid;
    grid-template-columns: 80px 140px 1fr 140px 100px;
    gap: 16px;
    padding: 10px 20px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    animation: slideIn 0.4s ease;
    align-items: center;
}
.ticker-time { color: var(--text-muted); font-size: 11px; }
.ticker-wallet { color: var(--accent-blue); }
.ticker-action { color: var(--text-secondary); }
.ticker-action.buy { color: var(--accent-green); }
.ticker-action.sell { color: var(--accent-red); }
.ticker-amount { font-weight: 600; text-align: right; }
.ticker-amount.buy { color: var(--accent-green); }
.ticker-amount.sell { color: var(--accent-red); }
.ticker-asset {
    background: var(--bg-elevated);
    padding: 3px 10px; border-radius: 4px;
    font-size: 11px; font-weight: 600;
    text-align: center;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- SOCIAL PROOF ---- */
.social-proof {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.proof-label {
    text-align: center;
    font-size: 12px; font-weight: 600; color: var(--text-muted);
    letter-spacing: 2.5px;
    margin-bottom: 32px;
    font-family: var(--font-mono);
}
.stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px; margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-value {
    font-size: 36px; font-weight: 800;
    font-family: var(--font-mono);
    background: var(--gradient-hero);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.stat-label {
    font-size: 12px; color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase; letter-spacing: 1px;
}

/* ---- SECTIONS ---- */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-secondary); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    color: var(--accent-green);
    background: var(--accent-green-dim);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    font-family: var(--font-mono);
}
.section-header h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800; letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.15;
}
.section-header p {
    font-size: 17px; color: var(--text-secondary);
    max-width: 560px; margin: 0 auto;
}

/* ---- FEATURES ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
}
.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
}
.feature-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(77,141,255,0.06) 0%, var(--bg-card) 50%);
}
.feature-icon-wrap { display: flex; margin-bottom: 20px; }
.feature-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon.blue { background: var(--accent-blue-dim); color: var(--accent-blue); }
.feature-icon.purple { background: var(--accent-purple-dim); color: var(--accent-purple); }
.feature-icon.green { background: var(--accent-green-dim); color: var(--accent-green); }
.feature-icon.orange { background: var(--accent-orange-dim); color: var(--accent-orange); }
.feature-icon.pink { background: var(--accent-pink-dim); color: var(--accent-pink); }
.feature-icon.cyan { background: var(--accent-cyan-dim); color: var(--accent-cyan); }
.feature-icon.yellow { background: var(--accent-yellow-dim); color: var(--accent-yellow); }
.feature-card h3 {
    font-size: 18px; font-weight: 700; margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.feature-card p {
    font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}
.feature-large h3 { font-size: 24px; margin-top: 8px; }
.feature-large p { font-size: 15px; margin-bottom: 24px; }

.feature-visual {
    display: flex; flex-direction: column; gap: 8px;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-mono);
    margin-top: auto;
}
.mini-alert {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px;
    padding: 6px 0;
}
.alert-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--accent-green);
    flex-shrink: 0;
}
.alert-time { color: var(--text-muted); min-width: 60px; font-size: 11px; }
.alert-text { color: var(--text-secondary); font-size: 12px; }
.alert-text strong { color: var(--accent-blue); }
.amount-green { color: var(--accent-green); font-weight: 600; }
.amount-red { color: var(--accent-red); font-weight: 600; }

/* ---- PRICING ---- */
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    max-width: 1100px; margin: 0 auto;
    align-items: stretch;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    display: flex; flex-direction: column;
}
.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.pricing-card.popular {
    border-color: var(--accent-blue);
    background: linear-gradient(180deg, rgba(77,141,255,0.08) 0%, var(--bg-card) 40%);
    box-shadow: 0 0 60px rgba(77,141,255,0.15);
    transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }

.popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 4px 18px; border-radius: 100px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.3px;
}
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 {
    font-size: 22px; font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.pricing-header p { font-size: 14px; color: var(--text-muted); }

.price {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 28px;
}
.price-currency { font-size: 22px; font-weight: 600; color: var(--text-secondary); }
.price-amount {
    font-size: 56px; font-weight: 800;
    font-family: var(--font-mono);
    letter-spacing: -2.5px; line-height: 1;
}
.price-period { font-size: 14px; color: var(--text-muted); margin-left: 4px; }

.price-features {
    list-style: none;
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 28px;
    flex: 1;
}
.price-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--text-secondary);
}
.price-features li.disabled { opacity: 0.4; }
.check { color: var(--accent-green); font-weight: 700; }
.cross { color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-q {
    width: 100%; padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between;
    background: none; border: none; cursor: pointer;
    font-size: 15px; font-weight: 600; color: var(--text-primary);
    font-family: var(--font-sans); text-align: left;
}
.faq-arrow {
    width: 20px; height: 20px; color: var(--text-muted);
    transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-a { max-height: 300px; }
.faq-a p {
    padding: 0 24px 20px;
    font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}
.faq-a strong { color: var(--text-primary); }

/* ---- CTA ---- */
.cta-section { padding: 60px 0 100px; }
.cta-card {
    position: relative; text-align: center;
    padding: 80px 40px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
}
.cta-glow {
    position: absolute; width: 700px; height: 700px;
    top: -350px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(77,141,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-card h2 {
    position: relative; z-index: 1;
    font-size: clamp(32px, 4.5vw, 48px); font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.cta-card p {
    position: relative; z-index: 1;
    font-size: 17px; color: var(--text-secondary);
    margin-bottom: 36px;
}
.cta-card .btn { position: relative; z-index: 1; }

/* ---- FOOTER ---- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}
.footer-main {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-desc {
    font-size: 14px; color: var(--text-muted);
    margin-top: 12px;
}
.footer-links h4 {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    font-size: 14px; color: var(--text-secondary);
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.disclaimer {
    margin-top: 10px;
    font-size: 11px;
    max-width: 700px; margin-left: auto; margin-right: auto;
    line-height: 1.6;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-large { grid-column: span 2; grid-row: span 1; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-4px); }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: 100px 16px 40px; }
    .hero h1 {
        font-size: clamp(28px, 8vw, 40px);
        letter-spacing: -1.2px;
        line-height: 1.1;
    }
    .hero-desc { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: stretch; max-width: 280px; margin: 0 auto 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-large { grid-column: span 1; }
    .footer-main { grid-template-columns: 1fr; }
    .ticker-row {
        grid-template-columns: 60px 100px 1fr 100px;
        gap: 8px;
        font-size: 11px;
    }
    .ticker-row .ticker-asset { display: none; }
}
