/* Extracted inline styles from /about.html (H5) */
body {
            background: #0B0D12;
            color: #ffffff;
            font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }
        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .gradient-text {
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section { padding: 5rem 0; position: relative; z-index: 1; }
        .section-alt { background: rgba(255, 255, 255, 0.02); }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

        /* Hero */
        .hero { padding-top: 10rem; padding-bottom: 4rem; position: relative; }
        .hero::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }
        .hero-content { max-width: 900px; margin: 0 auto; text-align: center; }
        .hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
        .hero .subtitle { font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: #60a5fa; max-width: 700px; margin: 0 auto 2rem; line-height: 1.5; font-weight: 600; }
        .hero p { font-size: 1.1rem; color: #9ca3af; line-height: 1.7; max-width: 700px; margin: 0 auto; }

        /* Stats */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        @media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

        .stat-box {
            text-align: center;
            padding: 1.5rem;
        }
        .stat-value { font-size: 2.5rem; font-weight: 800; color: #3b82f6; margin-bottom: 0.25rem; }
        .stat-label { font-size: 0.875rem; color: #6b7280; }

        /* Section Headers */
        .section-header { text-align: center; margin-bottom: 3rem; }
        .section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
        .section-header p { color: #9ca3af; max-width: 600px; margin: 0 auto; }

        /* Mission/Vision Cards */
        .mission-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        @media (max-width: 768px) { .mission-grid { grid-template-columns: 1fr; } }

        .mission-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1.5rem;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
        }
        .mission-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
        }
        .mission-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
        .mission-card h3 i { color: #3b82f6; }
        .mission-card p { color: #9ca3af; line-height: 1.7; }

        /* Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }

        .value-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .value-card:hover { border-color: rgba(59, 130, 246, 0.4); transform: translateY(-4px); }
        .value-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            font-size: 1.5rem;
            color: #3b82f6;
        }
        .value-card h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
        .value-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.5; }

        /* Platform Cards */
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 768px) { .platform-grid { grid-template-columns: 1fr; } }

        .platform-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        .platform-card:hover { border-color: rgba(59, 130, 246, 0.3); }
        .platform-card.core { border-top: 3px solid #3b82f6; }
        .platform-card.wallace { border-top: 3px solid #1d4ed8; }
        .platform-card.advisory { border-top: 3px solid #22d3ee; }

        .platform-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
        .platform-card h3 i { font-size: 1rem; }
        .platform-card.core h3 i { color: #3b82f6; }
        .platform-card.wallace h3 i { color: #1d4ed8; }
        .platform-card.advisory h3 i { color: #22d3ee; }
        .platform-card p { color: #9ca3af; font-size: 0.9375rem; margin-bottom: 1rem; }
        .platform-card ul { list-style: none; padding: 0; margin: 0; }
        .platform-card li { display: flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0; font-size: 0.875rem; color: #d1d5db; }
        .platform-card li i { color: #1d4ed8; font-size: 0.75rem; }

        /* Timeline */
        .timeline { max-width: 700px; margin: 0 auto; position: relative; }
        .timeline::before {
            content: "";
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #3b82f6, #1d4ed8);
        }
        .timeline-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }
        .timeline-dot {
            width: 50px;
            height: 50px;
            background: #0B0D12;
            border: 3px solid #3b82f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            z-index: 1;
        }
        .timeline-dot i { color: #3b82f6; }
        .timeline-content { padding-top: 0.5rem; }
        .timeline-year { font-size: 0.875rem; color: #3b82f6; font-weight: 600; margin-bottom: 0.25rem; }
        .timeline-title { font-weight: 700; margin-bottom: 0.25rem; }
        .timeline-desc { font-size: 0.875rem; color: #6b7280; }

        /* Team Grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        @media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

        .team-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .team-card:hover { border-color: rgba(59, 130, 246, 0.3); }
        .team-avatar {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(29, 78, 216, 0.2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            font-size: 2.5rem;
            color: #3b82f6;
        }
        .team-card h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
        .team-card .role { color: #3b82f6; font-size: 0.875rem; margin-bottom: 0.75rem; }
        .team-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.5; }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 1.5rem;
            padding: 4rem 2rem;
            text-align: center;
        }
        .cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
        .cta-section p { color: #9ca3af; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
