/* ═══════════════════════════════════════════
   ProxasLab — Design System
   ═══════════════════════════════════════════ */

:root {
    --bg-primary: #09090b;
    --bg-secondary: #0c0c0f;
    --bg-tertiary: #111114;
    --bg-card: #131316;
    --bg-card-hover: #18181c;
    --border: #1e1e24;
    --border-hover: #2a2a32;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-tertiary: #71717a;
    --accent-blue: #3b82f6;
    --accent-blue-dim: rgba(59, 130, 246, 0.12);
    --accent-purple: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --gradient-main: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    --gradient-text: linear-gradient(135deg, #60a5fa, #a78bfa, #22d3ee);
    --gradient-card: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(139,92,246,0.05));
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ── Cursor Glow ── */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ── Noise ── */
.noise {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-blue);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
    border-bottom: 1px solid var(--border);
}

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

.mobile-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 8px 0;
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: flex; }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    font-family: var(--font-sans);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    background: #4f8ff7;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: var(--bg-tertiary);
}

.btn-outline {
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-outline:hover {
    background: var(--accent-blue-dim);
    border-color: var(--accent-blue);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #2be072;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
}

.btn-discord {
    background: #5865F2;
    color: white;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.25);
}

.btn-discord:hover {
    background: #6b76f5;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
    transform: translateY(-1px);
}

.btn.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── Hero ── */
.hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.15);
    top: -100px;
    left: 20%;
    animation: float 20s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.12);
    top: 100px;
    right: 10%;
    animation: float 25s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.1);
    bottom: 0;
    left: 40%;
    animation: float 18s ease-in-out infinite 5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 15px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 1rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

/* ── Terminal ── */
.terminal-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 7px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.terminal-body {
    padding: 24px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 2;
}

.terminal-line {
    opacity: 0;
    transform: translateY(8px);
    animation: terminalIn 0.4s forwards;
}

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

.t-prompt { color: var(--accent-blue); margin-right: 8px; }
.t-cmd { color: var(--text-primary); }
.t-success { color: var(--accent-green); margin-right: 8px; }
.t-info { color: var(--accent-cyan); margin-right: 8px; }
.t-text { color: var(--text-secondary); }
.t-highlight { color: var(--accent-purple); }

/* ── Sections ── */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    background: var(--accent-blue-dim);
    color: var(--accent-blue);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ── Product Cards ── */
.product-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .product-cards { grid-template-columns: 1fr; }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all var(--transition);
}

.product-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.product-icon svg {
    width: 32px;
    height: 32px;
}

.proxa-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}

.trading-icon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.discord-icon {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
}

.product-cards.three-col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .product-cards.three-col { grid-template-columns: 1fr; }
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.product-tagline {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.product-card > p:nth-of-type(2) {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-blue);
}

/* ── Proxa Comparison (compact) ── */
.proxa-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 40px;
}

@media (max-width: 600px) {
    .proxa-comparison { grid-template-columns: 1fr; }
}

.comparison-col {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.comparison-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.comparison-col.them {
    background: var(--bg-tertiary);
}

.comparison-col.them h4 {
    color: var(--text-tertiary);
}

.comparison-col.us-col {
    background: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(139,92,246,0.05));
    border-color: rgba(59,130,246,0.3);
}

.comparison-col.us-col h4 {
    color: var(--accent-blue);
}

.comparison-col ul {
    list-style: none;
}

.comparison-col li {
    padding: 6px 0;
    font-size: 0.85rem;
    padding-left: 22px;
    position: relative;
}

.comparison-col li.bad {
    color: var(--text-tertiary);
}

.comparison-col li.bad::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 0.75rem;
}

.comparison-col li.good {
    color: var(--text-secondary);
}

.comparison-col li.good::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.8rem;
}

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

/* ── Comparison Table ── */
.comparison-table {
    margin-bottom: 80px;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

thead {
    background: var(--bg-tertiary);
}

th {
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

td {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(30, 30, 36, 0.5);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(59, 130, 246, 0.02);
}

.competitor {
    color: var(--text-tertiary);
}

.us {
    color: var(--accent-blue);
    font-weight: 500;
}

th.us {
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
}

/* ── Feature Grid ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .feature-grid { grid-template-columns: 1fr; }
}

.feature-item {
    padding: 32px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: var(--accent-blue);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ── Bot Showcase ── */
.bot-showcase {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
}

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

.bot-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.bot-logo {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-logo svg { width: 28px; height: 28px; }

.whatsapp-bg {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.discord-bg {
    background: rgba(88, 101, 242, 0.15);
    color: #5865F2;
}

.bot-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.bot-subtitle {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

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

@media (max-width: 600px) {
    .bot-features-grid { grid-template-columns: repeat(2, 1fr); }
}

.bot-feature {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.bot-feature:hover {
    border-color: #25D366;
    transform: translateY(-2px);
}

.bf-icon {
    width: 32px;
    height: 32px;
    color: #25D366;
    margin-bottom: 10px;
}

.bf-icon svg { width: 100%; height: 100%; }

.bot-feature h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.bot-feature p {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.4;
}

/* ── Chat Mockup ── */
.chat-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.chat-header-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #075E54;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.chat-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.chat-status {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

.chat-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #0b141a;
    min-height: 320px;
}

.chat-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    line-height: 1.5;
}

.chat-msg.sent {
    align-self: flex-end;
    background: #005c4b;
    border-bottom-right-radius: 2px;
}

.chat-msg.received {
    align-self: flex-start;
    background: #1f2c34;
    border-bottom-left-radius: 2px;
    color: var(--text-secondary);
}

.chat-msg.received strong {
    color: var(--text-primary);
}

.chat-verse-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.verse-card-text {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.verse-card-ref {
    font-size: 0.75rem;
    color: var(--accent-blue);
    font-weight: 600;
}

/* ── Discord Showcase ── */
.discord-showcase {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.discord-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.discord-desc code {
    background: rgba(88, 101, 242, 0.15);
    color: #5865F2;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.discord-commands {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.cmd {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.cmd:hover {
    border-color: #5865F2;
}

.cmd code {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #5865F2;
    white-space: nowrap;
}

.cmd span {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ── Download Section ── */
.download-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .download-cards { grid-template-columns: 1fr; }
}

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    text-align: center;
    transition: all var(--transition);
}

.download-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dl-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--accent-blue);
}

.dl-icon svg {
    width: 100%;
    height: 100%;
}

.download-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.dl-reqs {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.dl-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.dl-btn {
    font-size: 0.8rem !important;
}

.dl-version {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* ── Trading Phases ── */
.trading-phases {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.phase {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    transition: all var(--transition);
}

.phase:hover {
    border-color: var(--accent-purple);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.15);
}

.phase-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-purple);
    font-weight: 600;
    margin-bottom: 12px;
}

.phase-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.phase-content p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}

.phase-arrow {
    color: var(--text-tertiary);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .phase-arrow { display: none; }
    .phase { max-width: 100%; }
}

/* ── Trading Features ── */
.trading-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.tf-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.tf-card:hover {
    border-color: var(--border-hover);
}

.tf-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tf-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ── Pricing ── */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

@media (max-width: 768px) {
    .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(139,92,246,0.05));
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-tier {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ── CTA Block ── */
.cta-block {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-main);
}

.cta-block h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-block p {
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-note {
    font-size: 0.75rem;
    color: var(--text-tertiary) !important;
}

/* ── Footer ── */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 12px;
    max-width: 280px;
}

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

.footer-links h5 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

/* ── Animations ── */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}
