/* Strategy Studio Specific Styles */

/* Strategy Studio Hero */
.studio-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 0, 0, 1) 100%);
    overflow: hidden;
}

.studio-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 150, 255, 0.2) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.studio-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 0 60px;
}

.studio-hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 100;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.studio-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.studio-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.studio-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Why Choose Section */
.why-choose {
    padding: 8rem 0;
    background: rgba(0, 0, 0, 0.5);
}

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

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

.reason-card.featured {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reason-card:hover::before {
    opacity: 1;
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.reason-number {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
    font-family: 'Inter', monospace;
}

.reason-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.reason-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.reason-highlight {
    margin-top: 1rem;
}

.highlight-text {
    background: linear-gradient(135deg, #00ff88, #0096ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Studio Features Section */
.studio-features {
    padding: 8rem 0;
}

.features-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 6px;
    gap: 6px;
    flex-wrap: wrap;
}

.feature-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 1rem;
}

.feature-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.feature-tab.active {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.feature-content {
    position: relative;
    min-height: 500px;
}

.feature-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
}

.feature-panel.active {
    display: grid;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-details h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-details p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Feature Visual Components */
.code-preview {
    width: 100%;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

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

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.code-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.code-content {
    padding: 1.5rem;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
}

.code-line {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.code-line.active-line {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.visual-builder {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.builder-node {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.builder-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    font-weight: bold;
}

.backtest-chart {
    width: 100%;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
}

.chart-header {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.chart-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.metric {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.chart-placeholder {
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 150, 255, 0.1) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.chart-placeholder::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    right: 10%;
    bottom: 20%;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 255, 136, 0.3) 50%, transparent 100%);
    border-radius: 2px;
}

.deployment-status {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.status-dot.active {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.monitoring-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 300px;
}

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

.metric-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.metric-value.positive {
    color: #00ff88;
}

/* Success Stories */
.success-stories {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.success-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.success-card:hover {
    transform: translateY(-3px);
}

.success-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.success-quote::before {
    content: '"';
    font-size: 3rem;
    color: rgba(0, 255, 136, 0.3);
    position: absolute;
    top: -0.5rem;
    left: -1rem;
    font-family: serif;
}

.success-author {
    margin-bottom: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.author-company {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.success-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .studio-hero-title {
        font-size: 2.5rem;
    }
    
    .feature-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-tab {
        width: 100%;
        text-align: center;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-builder {
        flex-direction: column;
        text-align: center;
    }
    
    .builder-arrow {
        transform: rotate(90deg);
    }
}