/* ============================================
   SXFX AI BRIDGE - STYLES
   ============================================ */

.aibridge-page {
    position: relative;
    z-index: 10;
    padding-top: 80px;
    min-height: 100vh;
}

.aibridge-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.aibridge-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 9999px;
    color: #00e5ff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.aibridge-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: #00e5ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00e5ff;
}

.aibridge-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.text-cyan {
    color: #00e5ff;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.aibridge-tagline {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.aibridge-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary, #94a3b8);
    max-width: 760px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.aibridge-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-cyan {
    background: linear-gradient(135deg, #00e5ff 0%, #0077ff 100%);
    color: #000;
    font-weight: 700;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.5);
    color: #000;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Sections */
.aibridge-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.section-header h2 {
    font-size: 2.2rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: rgba(18, 19, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00e5ff;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.showcase-container {
    background: #090a0f;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.1);
    margin-top: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.showcase-container:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 229, 255, 0.15);
}

.showcase-header {
    background: #121318;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #232530;
}

.showcase-dots {
    display: flex;
    gap: 6px;
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2b2e3a;
}

.showcase-dot:nth-child(1) { background: #ef4444; }
.showcase-dot:nth-child(2) { background: #eab308; }
.showcase-dot:nth-child(3) { background: #22c55e; }

.showcase-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #94a3b8;
}

.showcase-body {
    padding: 0;
    background: #090a0f;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-image-wrapper {
    position: relative;
    width: 100%;
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-footer {
    padding: 1.25rem 2rem;
    background: #121318;
    border-top: 1px solid #232530;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

/* Materials Placeholder Container */
.materials-placeholder {
    border: 2px dashed rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.02);
}

.materials-placeholder h3 {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}
