/* Project Page Specific Styles */

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.version {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #FFD700;
}

.btn-primary-small {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Technical */
.hero-tech {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.hero-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: neuralPulse 8s ease-in-out infinite;
}

.hero-tech-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.hero-tech-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tech-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Metrics Dashboard */
.metrics-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

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

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 1.5s ease;
}

.metric-card:hover::before {
    left: 100%;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.3);
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.metric-label {
    font-size: 0.9rem;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Architecture Section */
.architecture-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.architecture-diagram {
    max-width: 1000px;
    margin: 0 auto;
}

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

.layer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.layer-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-color: rgba(255, 215, 0, 0.3);
}

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

.layer-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.layer-title {
    flex: 1;
    margin-left: 1.5rem;
}

.layer-title h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.layer-tech {
    font-size: 0.9rem;
    color: #b8b8b8;
}

.layer-roi {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.layer-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.layer-details p {
    color: #b8b8b8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.layer-metrics {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.layer-metrics span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #FFD700;
}

/* Markets Section */
.markets-section {
    padding: 6rem 0;
}

.tam-breakdown {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.tam-chart-container {
    position: relative;
}

.market-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.market-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.market-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.market-card.healthcare {
    border-left: 4px solid #EF4444;
}

.market-card.enterprise {
    border-left: 4px solid #3B82F6;
}

.market-card.financial {
    border-left: 4px solid #10B981;
}

.market-card.government {
    border-left: 4px solid #8B5CF6;
}

.market-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.market-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.market-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.market-size {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFD700;
}

.market-opportunity p {
    font-size: 0.9rem;
    color: #b8b8b8;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.revenue-potential {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.tam-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.tam-summary > div {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tam-number,
.capture-number,
.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.tam-label,
.capture-label,
.value-label {
    color: #b8b8b8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Projections Section */
.projections-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.projections-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.chart-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.chart-container h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
}

.chart-container canvas {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    display: block;
}

.revenue-breakdown {
    grid-column: span 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.revenue-breakdown h3 {
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

.revenue-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.revenue-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

.revenue-source {
    color: #fff;
    font-weight: 500;
}

.revenue-percentage {
    color: #FFD700;
    font-weight: 600;
    text-align: center;
}

.revenue-amount {
    color: #10B981;
    font-weight: 700;
    text-align: right;
}

/* Investment Calculator */
.investment-calculator {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
}

.investment-calculator h3 {
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

.calculator-input {
    margin-bottom: 2rem;
}

.calculator-input label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.calculator-input input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
}

.calculation-results {
    min-height: 200px;
    color: #b8b8b8;
}

/* Demos Section */
.demos-section {
    padding: 6rem 0;
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.demo-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.demo-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

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

.demo-header h3 {
    color: #fff;
    font-size: 1.2rem;
}

.demo-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.demo-status.live {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    animation: pulse 2s infinite;
}

.demo-visualization {
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.demo-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-metrics .metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.demo-metrics .label {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.demo-metrics .value {
    color: #FFD700;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 3rem;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    display: block;
}

.cta-stat .stat-label {
    color: #b8b8b8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.btn-primary-large .btn-icon {
    margin-left: 1rem;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.btn-primary-large:hover .btn-icon {
    transform: translateX(4px);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-text {
    text-align: center;
    color: #b8b8b8;
}

.footer-text p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .projections-dashboard {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .revenue-breakdown {
        grid-column: span 1;
    }
    
    .chart-container {
        padding: 1.5rem;
    }
    
    .chart-wrapper {
        height: 250px;
    }
    
    .chart-container canvas {
        height: 100% !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-tech {
        padding: 6rem 0 3rem 0;
    }
    
    .hero-tech-title {
        font-size: 2rem;
    }
    
    .metrics-dashboard {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .projections-dashboard {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .chart-container {
        padding: 1rem;
    }
    
    .chart-container h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .chart-wrapper {
        height: 200px;
    }
    
    .chart-container canvas {
        height: 100% !important;
    }
    
    .revenue-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .market-cards {
        grid-template-columns: 1fr;
    }
    
    .tam-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .demos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .metrics-dashboard {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .chart-container {
        padding: 0.75rem;
    }
    
    .chart-container h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .chart-wrapper {
        height: 150px;
    }
    
    .chart-container canvas {
        height: 100% !important;
    }
    
    .revenue-breakdown {
        padding: 1rem;
    }
    
    .revenue-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}
    
    .layer-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .layer-title {
        margin-left: 0;
    }
    
    .layer-metrics {
        justify-content: center;
    }
    
    .tam-breakdown {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tam-summary {
        grid-template-columns: 1fr;
    }
    
    .projections-dashboard {
        grid-template-columns: 1fr;
    }
    
    .revenue-breakdown {
        grid-column: span 1;
    }
    
    .revenue-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .demos-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-tech-title {
        font-size: 1.8rem;
    }
    
    .metrics-dashboard {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        padding: 1.5rem 1rem;
    }
    
    .layer-card {
        padding: 1.5rem;
    }
    
    .market-cards {
        gap: 1rem;
    }
    
    .demo-card {
        padding: 1.5rem;
    }
    
    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}