/* Intelligent Architect - Futuristic Cellular Division Interface */

:root {
    /* Cellular Division Color Palette */
    --primary-color: #00D4AA;
    --secondary-color: #00B4D8;
    --accent-color: #0077B6;
    --neural-glow: #00F5FF;
    --cell-membrane: #90E0EF;
    --nucleus-core: #023E8A;
    --mitosis-purple: #7209B7;
    --division-cyan: #00F5FF;

    /* Dark futuristic theme */
    --bg-primary: #0A0E1A;
    --bg-secondary: #111827;
    --bg-accent: #1E293B;
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #64748B;

    /* Interactive elements */
    --border-color: #334155;
    --success-color: #00D4AA;
    --warning-color: #F59E0B;
    --error-color: #EF4444;

    /* Advanced shadows with glow effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 212, 170, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 212, 170, 0.15), 0 2px 4px -2px rgba(0, 212, 170, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 212, 170, 0.2), 0 4px 6px -4px rgba(0, 212, 170, 0.1);
    --neural-glow-shadow: 0 0 20px rgba(0, 245, 255, 0.3), 0 0 40px rgba(0, 245, 255, 0.2);
    --cell-glow: 0 0 30px rgba(0, 212, 170, 0.4), inset 0 0 30px rgba(0, 212, 170, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(114, 9, 183, 0.1) 0%, transparent 50%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Cellular Division Particle Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 212, 170, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(0, 245, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px;
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Futuristic Navigation with Neural Connections */
.navbar {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    border-image: linear-gradient(90deg, transparent, var(--primary-color), transparent) 1;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-content::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neural-glow), transparent);
    animation: neuralPulse 3s ease-in-out infinite;
}

@keyframes neuralPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.8);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: relative;
}

.nav-links::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1rem;
    width: calc(100% + 2rem);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--division-cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-links:hover::before {
    opacity: 0.3;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    border-radius: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    opacity: 1;
}

/* Cellular Division Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-secondary) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 212, 170, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 70% 70%, rgba(0, 245, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(114, 9, 183, 0.1) 0%, transparent 30%);
    animation: cellularDivision 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cellularDivision {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(0.9); }
    75% { transform: rotate(270deg) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(0, 212, 170, 0.5);
    background: linear-gradient(45deg, var(--primary-color), var(--neural-glow), var(--mitosis-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    line-height: 1.2;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-subtitle-block {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: subtleGlow 3s ease-in-out infinite alternate;
}

.hero-subtitle-block .hero-subtitle {
    color: white;
    margin: 0;
    font-weight: 600;
    text-align: center;
}

@keyframes subtleGlow {
    0% { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 0 20px rgba(37, 99, 235, 0.2); }
    100% { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 0 30px rgba(37, 99, 235, 0.4); }
}

/* Animated Oxymoron Card */
.oxymoron-card {
    display: inline-block;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem 3rem;
    margin: 2rem 0;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite, cardGlow 4s ease-in-out infinite alternate;
    box-shadow: 
        0 20px 40px rgba(0, 212, 170, 0.15),
        0 10px 20px rgba(0, 245, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.oxymoron-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--neural-glow), 
        var(--mitosis-purple), 
        var(--secondary-color));
    border-radius: 1.5rem;
    z-index: -1;
    animation: borderRotate 8s linear infinite;
}

.oxymoron-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 212, 170, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 245, 255, 0.15) 0%, transparent 50%);
    border-radius: 1.5rem;
    opacity: 0;
    animation: pulseOverlay 5s ease-in-out infinite;
}

.oxymoron-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.oxymoron-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.6);
    background: linear-gradient(45deg, var(--primary-color), var(--neural-glow));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite, textGlow 4s ease-in-out infinite alternate;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.oxymoron-subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
    animation: subtitleFloat 4s ease-in-out infinite;
    letter-spacing: 1px;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-8px) scale(1.02); }
    50% { transform: translateY(-5px) scale(1.01); }
    75% { transform: translateY(-10px) scale(1.03); }
}

@keyframes cardGlow {
    0% { box-shadow: 
        0 20px 40px rgba(0, 212, 170, 0.15),
        0 10px 20px rgba(0, 245, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); }
    100% { box-shadow: 
        0 30px 60px rgba(0, 212, 170, 0.25),
        0 15px 30px rgba(0, 245, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes textGlow {
    0% { text-shadow: 0 0 20px rgba(0, 212, 170, 0.6); }
    100% { text-shadow: 0 0 30px rgba(0, 212, 170, 0.9), 0 0 40px rgba(0, 245, 255, 0.6); }
}

@keyframes subtitleFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.9; }
    50% { transform: translateY(-3px); opacity: 1; }
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Cellular Division Interactive Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--cell-glow);
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 40px rgba(0, 212, 170, 0.6),
        0 20px 40px rgba(0, 212, 170, 0.2);
    background: linear-gradient(45deg, var(--secondary-color), var(--neural-glow));
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.8);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 212, 170, 0.1);
    color: var(--neural-glow);
    border-color: var(--neural-glow);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
}

/* Cellular Architecture Cards */
.card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 245, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.card:hover {
    box-shadow: var(--cell-glow);
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-color);
}

.card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
    position: relative;
    z-index: 2;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Architecture Feature Cards */
.architecture-card {
    position: relative;
    overflow: hidden;
}

.architecture-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--neural-glow), var(--mitosis-purple));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.architecture-card:hover::after {
    transform: scaleX(1);
}

/* Architecture Flow Visualization */
.architecture-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.flow-step {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(0, 212, 170, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
}

.flow-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--cell-glow);
}

.flow-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
}

.flow-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.flow-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
    animation: pulseArrow 2s ease-in-out infinite;
}

@keyframes pulseArrow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Cellular Metrics */
.cellular-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.metric-cell {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, rgba(30, 41, 59, 0.8) 70%);
    border: 2px solid rgba(0, 212, 170, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cellPulse 4s ease-in-out infinite;
}

.metric-cell:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: var(--cell-glow);
}

@keyframes cellPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 170, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 170, 0.6), inset 0 0 20px rgba(0, 212, 170, 0.1); }
}

.metric-nucleus {
    text-align: center;
    z-index: 2;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 212, 170, 0.5);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Evolution Timeline */
.evolution-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.evolution-phase {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    position: relative;
}

.phase-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(100, 116, 139, 0.5);
    border: 2px solid var(--border-color);
    margin-bottom: 1rem;
    transition: all 0.4s;
    position: relative;
}

.phase-marker.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.6);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.phase-content {
    text-align: center;
}

.phase-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.phase-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Status Indicators */
.status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-success {
    background-color: #dcfce7;
    color: #166534;
}

.status-warning {
    background-color: #fef3c7;
    color: #92400e;
}

.status-error {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgb(37 99 235 / 0.1);
}

/* Dashboard Layout */
.dashboard {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

.sidebar {
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    padding: 1rem;
}

.main-content {
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .dashboard {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Loading States */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 2rem; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.h-full { height: 100%; }

/* Analytics and Performance */
.analytics-panel {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

/* Architecture Page Styles */
.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.arch-title {
    color: #3b82f6;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.arch-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.arch-list li:last-child {
    border-bottom: none;
}

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

.level-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.level-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.level-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.level-title {
    color: #3b82f6;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.level-description {
    color: #cbd5e1;
    font-size: 0.9rem;
}

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

.workflow-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.step-title {
    color: #10b981;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #cbd5e1;
    font-size: 0.9rem;
}

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

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

.layer-title {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.layer-features {
    list-style: none;
    padding: 0;
}

.layer-features li {
    padding: 0.5rem 0;
    color: #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.layer-features li::before {
    content: '•';
    color: #f59e0b;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

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

.security-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-title {
    color: #ef4444;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.feature-list li {
    padding: 0.4rem 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.feature-list li::before {
    content: '✓';
    color: #10b981;
    position: absolute;
    left: 0;
    top: 0.4rem;
    font-weight: bold;
}

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

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-title {
    color: #8b5cf6;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-item {
    background: #8b5cf6;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}