/* Trinity Antivirus - Main Styles */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #f8fafc;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    color: #0f172a;
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-outline:hover {
    background: #00d4ff;
    color: #0f172a;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00d4ff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #f8fafc;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    font-family: 'JetBrains Mono', monospace;
}

.stat-unit {
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: 600;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Threat Monitor */
.threat-monitor {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.monitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.monitor-header h3 {
    font-size: 1.25rem;
    color: #f8fafc;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #10b981;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.threat-list {
    min-height: 200px;
    margin-bottom: 1rem;
}

.threat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideIn 0.5s ease;
}

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

.threat-info {
    flex: 1;
}

.threat-name {
    font-size: 0.875rem;
    color: #f8fafc;
    font-weight: 500;
}

.threat-type {
    font-size: 0.75rem;
    color: #64748b;
}

.threat-status {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.threat-status.blocked {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.threat-status.quarantined {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.scan-progress {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    animation: progressGlow 2s infinite;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
    100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.5); }
}

.progress-text {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #0f172a;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.feature-description {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-specs {
    list-style: none;
}

.feature-specs li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Architecture Section */
.architecture {
    padding: 100px 0;
    background: #0f172a;
}

.architecture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-diagram {
    width: 100%;
    max-width: 500px;
}

.tech-stack h3 {
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.tech-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tech-item i {
    font-size: 1.25rem;
    color: #00d4ff;
}

.performance-metrics h3 {
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    font-family: 'JetBrains Mono', monospace;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    text-align: center;
}

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

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tech Section */
.tech-section {
    padding: 100px 0;
    background: #0f172a;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.tech-description {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tech-feature i {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-top: 0.25rem;
}

.feature-content h4 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #94a3b8;
    line-height: 1.5;
}

/* AI Visualization */
.ai-visualization {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.neural-network {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.network-layer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.neuron {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #64748b;
    position: relative;
    animation: neuronPulse 3s infinite;
}

.neuron.threat {
    background: #ef4444;
    animation-delay: 0.5s;
}

.neuron.safe {
    background: #10b981;
    animation-delay: 1s;
}

@keyframes neuronPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.ai-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.ai-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.ai-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    display: block;
    margin-bottom: 0.5rem;
}

.ai-stat .stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Architecture Section */
.architecture-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.architecture-layers {
    display: grid;
    gap: 2rem;
}

.layer-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.layer-card:hover {
    transform: translateX(10px);
    border-color: rgba(0, 212, 255, 0.3);
}

.layer-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.layer-card:hover::before {
    transform: scaleY(1);
}

.layer-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    font-family: 'JetBrains Mono', monospace;
    min-width: 80px;
}

.layer-content {
    flex: 1;
}

.layer-title {
    font-size: 1.5rem;
    color: #f8fafc;
    margin-bottom: 0.75rem;
}

.layer-description {
    color: #94a3b8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.layer-specs {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #cbd5e1;
}

.spec-item i {
    color: #00d4ff;
}

/* Integration Section */
.integration-section {
    padding: 100px 0;
    background: #0f172a;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.integration-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.integration-icon i {
    font-size: 2rem;
    color: #0f172a;
}

.integration-title {
    font-size: 1.5rem;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.integration-description {
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.integration-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.integration-stat {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.integration-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    display: block;
    margin-bottom: 0.25rem;
}

.integration-stat .stat-label {
    font-size: 0.75rem;
    color: #64748b;
}

/* Performance Section */
.performance-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.benchmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benchmark-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benchmark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benchmark-chart {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benchmark-title {
    font-size: 1.25rem;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.benchmark-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.benchmark-description {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Capabilities Section */
.capabilities-section {
    padding: 100px 0;
    background: #0f172a;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.capability-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.capability-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.capability-icon i {
    font-size: 1.5rem;
    color: #0f172a;
}

.capability-title {
    font-size: 1.5rem;
    color: #f8fafc;
    margin-bottom: 1.5rem;
}

.capability-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.capability-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.capability-stats .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00d4ff;
    display: block;
    margin-bottom: 0.25rem;
}

.capability-stats .stat-label {
    font-size: 0.75rem;
    color: #64748b;
}

.capability-features {
    list-style: none;
}

.capability-features li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.capability-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Management Section */
.management-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.management-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.console-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.console-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.console-title {
    font-weight: 600;
    color: #f8fafc;
}

.console-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #10b981;
}

.console-content {
    padding: 1.5rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.dashboard-card h4 {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.dashboard-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.25rem;
}

.dashboard-change {
    font-size: 0.75rem;
    color: #64748b;
}

.dashboard-change.positive {
    color: #10b981;
}

.threat-timeline {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-time {
    color: #64748b;
    min-width: 40px;
}

.timeline-event {
    flex: 1;
    color: #cbd5e1;
}

.timeline-status {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.timeline-status.blocked {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.timeline-status.quarantined {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.timeline-status.success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.management-features h3 {
    margin-bottom: 2rem;
    color: #f8fafc;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-top: 0.25rem;
}

.feature-item h4 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #94a3b8;
    line-height: 1.5;
}

/* Platform Section */
.platform-section {
    padding: 100px 0;
    background: #0f172a;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.platform-icon i {
    font-size: 2rem;
    color: #0f172a;
}

.platform-title {
    font-size: 1.5rem;
    color: #f8fafc;
    margin-bottom: 1.5rem;
}

.platform-versions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.version-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

.platform-features ul {
    list-style: none;
    text-align: left;
}

.platform-features li {
    padding: 0.5rem 0;
    color: #94a3b8;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.platform-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Deployment Section */
.deployment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.deployment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.deployment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.deployment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.deployment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.deployment-icon i {
    font-size: 2rem;
    color: #0f172a;
}

.deployment-title {
    font-size: 1.5rem;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.deployment-description {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.deployment-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.benefit-tag {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* Interactive Demo */
.interactive-demo {
    padding: 100px 0;
    background: #0f172a;
}

.demo-interface {
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f8fafc;
}

.dashboard-title i {
    color: #00d4ff;
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
}

.demo-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #cbd5e1;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.demo-btn:hover,
.demo-btn.active {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    color: #00d4ff;
}

.dashboard-content {
    padding: 2rem;
}

.dashboard-view {
    display: none;
}

.dashboard-view.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.status-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.status-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-card.protection {
    border-left: 4px solid #10b981;
}

.status-card.threats {
    border-left: 4px solid #ef4444;
}

.status-card.performance {
    border-left: 4px solid #00d4ff;
}

.status-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon i {
    font-size: 1.5rem;
    color: #00d4ff;
}

.status-info h3 {
    font-size: 1rem;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.status-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    display: block;
    margin-bottom: 0.5rem;
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-item {
    font-size: 0.75rem;
    color: #64748b;
}

.activity-section h3 {
    margin-bottom: 1rem;
    color: #f8fafc;
}

.activity-timeline {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-time {
    color: #64748b;
    min-width: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

.activity-content {
    flex: 1;
}

.activity-action {
    color: #f8fafc;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.activity-details {
    color: #94a3b8;
    font-size: 0.8rem;
}

.activity-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    min-width: 12px;
}

.activity-status.blocked {
    background: #ef4444;
}

.activity-status.suspicious {
    background: #f59e0b;
}

.activity-status.info {
    background: #00d4ff;
}

.activity-status.success {
    background: #10b981;
}

/* Threats View */
.threats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.threats-header h3 {
    color: #f8fafc;
}

.threat-filters {
    display: flex;
    gap: 1rem;
}

.filter-select {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #f8fafc;
    font-size: 0.875rem;
}

.threats-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: #f8fafc;
    font-size: 0.875rem;
}

.threat-entries {
    max-height: 400px;
    overflow-y: auto;
}

.threat-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    align-items: center;
}

.threat-row:last-child {
    border-bottom: none;
}

.threat-name {
    color: #f8fafc;
    font-weight: 500;
}

.threat-type {
    color: #94a3b8;
}

.threat-source {
    color: #cbd5e1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

.threat-action {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.threat-action.quarantined {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.threat-action.blocked {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.threat-action.terminated {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.threat-time {
    color: #64748b;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

/* Scans View */
.scan-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.scan-controls h3 {
    color: #f8fafc;
}

.scan-buttons {
    display: flex;
    gap: 1rem;
}

.scan-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scan-btn.primary {
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    color: #0f172a;
}

.scan-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.scan-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scan-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.scan-progress-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: none;
}

.scan-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.scan-progress-header h4 {
    color: #f8fafc;
}

.scan-status {
    color: #00d4ff;
    font-size: 0.875rem;
}

.scan-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.scan-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #94a3b8;
}

.scan-history h4 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.scan-history-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.history-item:last-child {
    border-bottom: none;
}

.history-info {
    flex: 1;
}

.history-type {
    color: #f8fafc;
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: block;
}

.history-result {
    color: #94a3b8;
    font-size: 0.875rem;
}

.history-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.history-time {
    color: #64748b;
    font-size: 0.75rem;
}

.history-duration {
    color: #64748b;
    font-size: 0.75rem;
}

/* Settings View */
.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.settings-section h3 {
    color: #f8fafc;
    margin-bottom: 1.5rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info {
    flex: 1;
}

.setting-name {
    color: #f8fafc;
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: block;
}

.setting-desc {
    color: #94a3b8;
    font-size: 0.875rem;
}

.toggle-switch {
    width: 50px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: #00d4ff;
}

.toggle-slider {
    width: 20px;
    height: 20px;
    background: #f8fafc;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(26px);
}

/* Screenshots Section */
.screenshots-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.screenshot-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.screenshot-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #64748b;
}

.screenshot-placeholder i {
    font-size: 3rem;
}

.screenshot-info {
    padding: 1.5rem;
}

.screenshot-info h3 {
    color: #f8fafc;
    margin-bottom: 0.75rem;
}

.screenshot-info p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Demo Request */
.demo-request {
    padding: 100px 0;
    background: #0f172a;
}

.demo-request-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-request-text h2 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.demo-request-text p {
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-benefits {
    list-style: none;
}

.demo-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #cbd5e1;
}

.demo-benefits i {
    color: #00d4ff;
}

.demo-request-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #f8fafc;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #f8fafc;
    font-size: 0.875rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Investment Sections */
.investment-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.investment-highlights {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.highlight-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    font-family: 'JetBrains Mono', monospace;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 0.875rem;
    color: #64748b;
}

.market-section {
    padding: 100px 0;
    background: #0f172a;
}

.market-content {
    display: grid;
    gap: 4rem;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.market-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.market-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.market-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.market-stat-card .stat-icon i {
    font-size: 1.5rem;
    color: #0f172a;
}

.market-stat-card .stat-content h3 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.market-stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    display: block;
}

.market-stat-card .stat-description {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
}

.market-drivers h3 {
    color: #f8fafc;
    margin-bottom: 2rem;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.driver-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.driver-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.driver-item i {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-top: 0.25rem;
}

.driver-content h4 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.driver-content p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
}

.advantage-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.advantage-comparison {
    margin-bottom: 4rem;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: #f8fafc;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    color: #f8fafc;
    font-weight: 500;
}

.trinity-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.875rem;
}

.trinity-feature i {
    color: #10b981;
}

.competitor-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-size: 0.875rem;
}

.competitor-feature i {
    color: #ef4444;
}

.competitor-feature i.fa-exclamation-circle {
    color: #f59e0b;
}

.advantage-points h3 {
    color: #f8fafc;
    margin-bottom: 2rem;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.point-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.point-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.point-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.875rem;
    min-width: 40px;
}

.point-content h4 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.point-content p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
}

.financial-section {
    padding: 100px 0;
    background: #0f172a;
}

.financial-content {
    display: grid;
    gap: 4rem;
}

.projection-chart {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.financial-metrics {
    margin-bottom: 3rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.metric-card h4 {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.metric-card .metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-card .metric-description {
    color: #64748b;
    font-size: 0.75rem;
}

.business-model h3 {
    color: #f8fafc;
    margin-bottom: 2rem;
}

.revenue-streams {
    display: grid;
    gap: 1.5rem;
}

.stream-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.stream-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stream-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-icon i {
    font-size: 1.25rem;
    color: #0f172a;
}

.stream-content {
    flex: 1;
}

.stream-content h4 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.stream-content p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
}

.stream-percentage {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00d4ff;
    min-width: 50px;
    text-align: center;
}

.roadmap-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 22px;
    top: 0;
    width: 18px;
    height: 18px;
    background: #64748b;
    border-radius: 50%;
    border: 3px solid #1e293b;
}

.timeline-item.completed .timeline-marker {
    background: #10b981;
}

.timeline-item.active .timeline-marker {
    background: #00d4ff;
    animation: pulse 2s infinite;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.timeline-period {
    font-size: 0.875rem;
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.timeline-content li {
    padding: 0.25rem 0;
    color: #94a3b8;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00d4ff;
}

.timeline-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
}

.timeline-status.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.timeline-status.active {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

.timeline-status.planned {
    background: rgba(100, 116, 139, 0.2);
    color: #64748b;
}

.investment-terms {
    padding: 100px 0;
    background: #0f172a;
}

.terms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.funding-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.funding-card h3 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.funding-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.funding-description {
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.funding-uses h4 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.use-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.use-item:last-child {
    border-bottom: none;
}

.use-percentage {
    font-weight: 700;
    color: #00d4ff;
    font-family: 'JetBrains Mono', monospace;
}

.use-description {
    color: #94a3b8;
    font-size: 0.875rem;
}

.investor-benefits h3 {
    color: #f8fafc;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-top: 0.25rem;
}

.benefit-content h4 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Contact Page Styles */
.contact-options {
    padding: 100px 0;
    background: #0f172a;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: #0f172a;
}

.contact-card h3 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #00d4ff;
}

.contact-link i {
    color: #00d4ff;
}

.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

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

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.form-header p {
    color: #94a3b8;
    font-size: 1.125rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
    min-width: 18px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #00d4ff;
    border-color: #00d4ff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #0f172a;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #00d4ff;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.office-locations {
    padding: 100px 0;
    background: #0f172a;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.location-icon i {
    font-size: 1.5rem;
    color: #0f172a;
}

.location-card h3 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.location-address {
    margin-bottom: 1.5rem;
}

.location-address p {
    color: #94a3b8;
    line-height: 1.6;
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-phone,
.location-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.location-phone:hover,
.location-email:hover {
    color: #00d4ff;
}

.location-phone i,
.location-email i {
    color: #00d4ff;
}

.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    color: #f8fafc;
    margin: 0;
    font-size: 1.125rem;
}

.faq-question i {
    color: #00d4ff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    background: #0a0f1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.875rem;
}

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

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.5);
}

/* Selection Styles */
::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #f8fafc;
}

/* Focus Styles */
*:focus {
    outline: 2px solid rgba(0, 212, 255, 0.5);
    outline-offset: 2px;
}

/* Smooth Transitions */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    animation: spin 1s linear infinite;
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Slide Up Animation */
.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glow Effect */
.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    }
}
