/* Architecture Detail Pages Stylesheet */

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

:root {
    --ge-blue: #005eb8;
    --ge-dark-blue: #003d82;
    --ge-light-blue: #0078d4;
    --ge-accent: #00a8e1;
    --anthropic-orange: #d97757;
    --white: #ffffff;
    --gray: #64748b;
    --light-gray: #f1f5f9;
    --dark-gray: #1e293b;
    --dark-bg: #0a0e27;
    --success: #10b981;
    --warning: #f59e0b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 100%);
    min-height: 100vh;
}

/* Navigation */
.nav {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-ge {
    color: var(--ge-accent);
}

.logo-divider {
    color: var(--gray);
    font-weight: 300;
}

.logo-anthropic {
    color: var(--anthropic-orange);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--ge-accent);
}

/* Hero */
.hero {
    padding: 80px 40px 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 94, 184, 0.1) 0%, rgba(217, 119, 87, 0.1) 100%);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    font-weight: 400;
}

.hero-gov h1 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-api h1 {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-code h1 {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-enterprise h1 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--ge-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--anthropic-orange);
}

/* Sections */
.section {
    margin: 40px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--ge-accent);
    border-bottom: 2px solid var(--ge-accent);
    padding-bottom: 15px;
}

.section h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: var(--white);
}

.section h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--gray);
}

/* Key Highlight */
.key-highlight {
    background: rgba(0, 168, 225, 0.1);
    border-left: 4px solid var(--ge-accent);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.key-highlight h3 {
    margin-top: 0;
    color: var(--ge-accent);
}

.key-highlight ul {
    list-style: none;
    margin: 15px 0;
}

.key-highlight li {
    padding: 8px 0;
    font-size: 1.1rem;
}

.status-current {
    color: var(--success);
}

.status-progress {
    color: var(--warning);
}

/* Feature Lists */
.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0 10px 35px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Grids */
.capabilities-grid,
.benefits-grid,
.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.capability-card,
.benefit-card,
.model-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
}

.capability-card:hover,
.benefit-card:hover,
.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 225, 0.2);
    border-color: var(--ge-accent);
}

.capability-card h4,
.benefit-card h3,
.model-card h3 {
    margin-top: 0;
    color: var(--ge-accent);
}

.model-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 168, 225, 0.2);
    color: var(--ge-accent);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--ge-blue) 0%, var(--anthropic-orange) 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
    border: none;
    padding: 0;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--ge-blue);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Architecture Cards */
.arch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.arch-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.arch-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.arch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 168, 225, 0.3);
    border-color: var(--ge-accent);
    background: rgba(255, 255, 255, 0.12);
}

.arch-card h3 {
    font-size: 1.6rem;
    margin: 15px 0 10px;
    color: var(--white);
}

.arch-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
}

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

.arch-card ul li {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-gov {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: rgba(0, 168, 225, 0.15);
}

.comparison-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--ge-accent);
    border-bottom: 2px solid var(--ge-accent);
    font-size: 1.05rem;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Highlight Boxes */
.highlight-box {
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid;
    margin: 25px 0;
}

.highlight-box.blue {
    background: rgba(59, 130, 246, 0.12);
    border-color: #3b82f6;
}

.highlight-box.green {
    background: rgba(16, 185, 129, 0.12);
    border-color: var(--success);
}

.highlight-box h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--white);
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.highlight-box ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--ge-accent);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px;
    color: var(--gray);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .capabilities-grid,
    .benefits-grid,
    .models-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 20px;
    }

    .section {
        padding: 20px;
    }

    .cta-box {
        padding: 30px 20px;
    }
}
