/* PANKAJ PRIME - Professional Trading Platform Styles */
/* Design System: Dark theme with electric accents, inspired by Guardeer Prime */

/* CSS Variables */
:root {
    /* Colors - Dark Theme */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: #151520;
    --bg-hover: #1f1f2e;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    --text-accent: #00d4ff;
    
    /* Accent Colors */
    --accent-primary: #00d4ff;
    --accent-secondary: #7c3aed;
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-danger: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-glow: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    --gradient-hero: linear-gradient(180deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    
    /* Typography */
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
    --shadow-glow-purple: 0 0 30px rgba(124, 58, 237, 0.3);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    animation: pulse 2s infinite;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: var(--space-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

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

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.play-icon {
    font-size: 0.75rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-4xl)) var(--space-xl) var(--space-4xl);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 10s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-success);
    top: 50%;
    left: 30%;
    animation-delay: -2.5s;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    margin-bottom: var(--space-lg);
}

.badge-icon {
    color: var(--accent-warning);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

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

.outline-text {
    -webkit-text-stroke: 2px var(--text-primary);
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 1rem;
    color: var(--accent-primary);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Chart */
.hero-chart {
    position: relative;
}

.chart-container {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.prime-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.05em;
}

.timeframes {
    display: flex;
    gap: var(--space-xs);
}

.tf-btn {
    padding: var(--space-xs) var(--space-sm);
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.tf-btn:hover,
.tf-btn.active {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-primary);
}

.chart-body {
    height: 300px;
    position: relative;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.chart-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-md);
}

.price-tag {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.volume-profile {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 100px;
}

.vp-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    opacity: 0.7;
}

.chart-footer {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.metric {
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.metric-value {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.metric-value.positive {
    color: var(--accent-success);
}

/* Trust Section */
.trust-section {
    padding: var(--space-3xl) var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.trust-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition-normal);
}

.trust-logo:hover {
    opacity: 1;
    color: var(--text-primary);
}

/* Features Section */
.features {
    padding: var(--space-4xl) var(--space-xl);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Feature Blocks */
.feature-block {
    max-width: 1400px;
    margin: 0 auto var(--space-4xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-content {
    padding: var(--space-xl);
}

.feature-header {
    margin-bottom: var(--space-lg);
}

.prime-indicator {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.feature-title {
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.feature-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.feature-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.check {
    color: var(--accent-success);
    font-weight: 700;
}

.feature-actions {
    display: flex;
    gap: var(--space-md);
}

/* Feature Visuals */
.feature-visual {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.feature-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0.5;
    pointer-events: none;
}

/* Heatmap Demo */
.heatmap-demo {
    position: relative;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.heat-cell {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.heat-cell.high {
    background: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.heat-cell.medium {
    background: rgba(0, 212, 255, 0.4);
}

.heat-cell.low {
    background: rgba(0, 212, 255, 0.1);
}

.heatmap-legend {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

.dot.high {
    background: var(--accent-primary);
}

.dot.medium {
    background: rgba(0, 212, 255, 0.5);
}

.dot.low {
    background: rgba(0, 212, 255, 0.2);
}

/* Volume Profile Demo */
.volume-profile-demo {
    position: relative;
}

.vp-chart {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.vp-bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: var(--space-sm);
    height: 200px;
}

.vp-bar-item {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    opacity: 0.6;
    transition: var(--transition-normal);
}

.vp-bar-item.highlight {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.vp-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.vp-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
}

.vp-label.highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

.vp-stats {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.vp-stat-label {
    display: block;
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.vp-stat-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Footprint Demo */
.footprint-demo {
    position: relative;
}

.fp-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.fp-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
}

.fp-row.highlight .fp-cell {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--accent-primary);
}

.fp-cell {
    padding: var(--space-sm);
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fp-cell.buy {
    color: var(--accent-success);
    background: rgba(16, 185, 129, 0.1);
}

.fp-cell.sell {
    color: var(--accent-danger);
    background: rgba(239, 68, 68, 0.1);
}

.fp-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.fp-legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.fp-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-sm);
}

.fp-dot.buy {
    background: var(--accent-success);
}

.fp-dot.sell {
    background: var(--accent-danger);
}

.fp-dot.neutral {
    background: var(--text-muted);
}

/* DOM Demo */
.dom-demo {
    position: relative;
}

.dom-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.dom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.dom-side {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.dom-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.dom-row:hover,
.dom-row.highlight {
    background: rgba(255, 255, 255, 0.05);
}

.bids .dom-row {
    direction: rtl;
}

.bids .dom-row > * {
    direction: ltr;
}

.dom-size {
    color: var(--text-muted);
}

.dom-price {
    font-weight: 600;
    color: var(--text-primary);
}

.dom-sum {
    color: var(--text-secondary);
}

.dom-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spread {
    font-size: 0.625rem;
    color: var(--text-muted);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
}

.dom-stats {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.dom-stat-label {
    display: block;
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.dom-stat-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dom-stat-value.bullish {
    color: var(--accent-success);
}

/* Flow Demo */
.flow-demo {
    position: relative;
}

.flow-bubbles {
    height: 200px;
    position: relative;
    margin-bottom: var(--space-lg);
}

.flow-bubble {
    position: absolute;
    border-radius: 50%;
    transition: var(--transition-normal);
    animation: pulse-bubble 3s infinite ease-in-out;
}

.flow-bubble.buy {
    background: rgba(16, 185, 129, 0.6);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.flow-bubble.sell {
    background: rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.flow-bubble.large {
    width: 60px;
    height: 60px;
}

.flow-bubble.medium {
    width: 40px;
    height: 40px;
}

.flow-bubble.small {
    width: 24px;
    height: 24px;
}

.flow-stats {
    display: flex;
    justify-content: space-around;
}

.flow-stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.flow-arrow {
    font-size: 1.5rem;
    font-weight: 700;
}

.flow-arrow.up {
    color: var(--accent-success);
}

.flow-arrow.down {
    color: var(--accent-danger);
}

.flow-label {
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.flow-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Bubbles Demo */
.bubbles-demo {
    position: relative;
}

.bubbles-chart {
    height: 200px;
    position: relative;
    margin-bottom: var(--space-lg);
}

.bubble-item {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.7;
    animation: float-bubble 4s infinite ease-in-out;
}

.bubble-item.large {
    width: 50px;
    height: 50px;
}

.bubble-item.medium {
    width: 35px;
    height: 35px;
}

.bubble-item.small {
    width: 20px;
    height: 20px;
}

.bubbles-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.bubble-legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.bubble-dot {
    border-radius: 50%;
    background: var(--gradient-primary);
}

.bubble-dot.large {
    width: 20px;
    height: 20px;
}

.bubble-dot.medium {
    width: 14px;
    height: 14px;
}

.bubble-dot.small {
    width: 10px;
    height: 10px;
}

/* CVD Demo */
.cvd-demo {
    position: relative;
}

.cvd-chart {
    height: 200px;
    position: relative;
    margin-bottom: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cvd-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.cvd-area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.2) 0%, transparent 100%);
}

.cvd-points {
    position: absolute;
    inset: 0;
}

.cvd-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.cvd-metrics {
    display: flex;
    justify-content: space-around;
}

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

.cvd-label {
    display: block;
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.cvd-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cvd-value.positive {
    color: var(--accent-success);
}

/* News Demo */
.news-demo {
    position: relative;
}

.news-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.news-item {
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 3px solid transparent;
    transition: var(--transition-normal);
}

.news-item.high-impact {
    border-left-color: var(--accent-danger);
}

.news-item.medium-impact {
    border-left-color: var(--accent-warning);
}

.news-time {
    font-size: 0.625rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.news-source {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: var(--space-xs);
}

.news-title {
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.news-tags {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.tag {
    padding: 2px 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    color: var(--accent-primary);
}

.news-sentiment {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-sentiment.bullish {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-success);
}

.news-sentiment.bearish {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-danger);
}

.news-summary {
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.summary-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.summary-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.summary-metrics {
    display: flex;
    gap: var(--space-lg);
}

.summary-metric {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.summary-metric .label {
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.summary-metric .value {
    font-size: 0.875rem;
    font-weight: 600;
}

.summary-metric .value.bullish {
    color: var(--accent-success);
}

/* Pricing Section */
.pricing {
    padding: var(--space-4xl) var(--space-xl);
    background: var(--bg-secondary);
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.pricing-price {
    margin-bottom: var(--space-sm);
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features .check {
    color: var(--accent-success);
}

.pricing-features .x {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: var(--space-4xl) var(--space-xl);
    text-align: center;
    background: var(--gradient-hero);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* Footer */
.footer {
    padding: var(--space-4xl) var(--space-xl) var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

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

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -20px); }
    50% { transform: translate(0, -40px); }
    75% { transform: translate(-20px, -20px); }
}

@keyframes pulse-bubble {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes float-bubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .feature-block {
        grid-template-columns: 1fr;
    }
    
    .feature-block.reverse {
        direction: ltr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .trust-logos {
        gap: var(--space-xl);
    }
    
    .feature-actions {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}