/* Extracted inline styles from /index.html (H5) */
body {
            background: #1a1d23;
            color: #ffffff;
            font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        .gradient-text {
            background: linear-gradient(135deg, #3B82F6 0%, #8b5cf6 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: 6rem;
            padding-bottom: 2rem;
            text-align: center;
            min-height: calc(100vh - 80px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .hero .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .hero p { font-size: 1.25rem; color: #9ca3af; max-width: 700px; margin: 0 auto 2rem; line-height: 1.7; }
        .hero .subtext { font-size: 1rem; color: #6b7280; max-width: 600px; margin: 0 auto 2rem; }

        /* Hero Logo */
        .hero-logo {
            margin-bottom: 1.5rem;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            text-align: center;
        }
        .hero-logo::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100vw;
            max-width: 1000px;
            height: 100vw;
            max-height: 1000px;
            background: radial-gradient(circle, rgba(16, 93, 164, 0.35) 0%, rgba(139, 92, 246, 0.15) 35%, transparent 65%);
            filter: blur(40px);
            animation: pulseRing 5s ease-in-out infinite;
            z-index: -1;
            will-change: opacity;
        }
        .hero-logo::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 130vw;
            max-width: 1300px;
            height: 130vw;
            max-height: 1300px;
            background: radial-gradient(circle, transparent 25%, rgba(59, 130, 246, 0.08) 45%, transparent 65%);
            filter: blur(60px);
            animation: pulseRingOuter 6s ease-in-out infinite 0.5s;
            z-index: -2;
            will-change: opacity;
        }
        @keyframes pulseRing {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.9; }
        }
        @keyframes pulseRingOuter {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }
        .hero-logo-img {
            height: 55vh;
            max-height: 500px;
            width: auto;
            margin: 0 auto;
            display: block;
            filter: drop-shadow(0 0 80px rgba(16, 93, 164, 0.7)) drop-shadow(0 0 150px rgba(59, 130, 246, 0.5));
            animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite alternate;
        }
        @media (max-width: 768px) {
            .hero-logo-img { height: 40vh; max-height: 350px; }
            .hero-logo::before { width: 400px; height: 400px; }
            .hero-logo::after { width: 500px; height: 500px; }
        }
        @keyframes logoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        @keyframes logoGlow {
            0% { filter: drop-shadow(0 0 60px rgba(16, 93, 164, 0.6)) drop-shadow(0 0 120px rgba(59, 130, 246, 0.4)); }
            100% { filter: drop-shadow(0 0 100px rgba(59, 130, 246, 0.8)) drop-shadow(0 0 180px rgba(139, 92, 246, 0.6)); }
        }
        .hero-tagline {
            font-size: clamp(0.9rem, 3vw, 1.75rem);
            font-weight: 600;
            background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 50%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 1rem auto 1.5rem;
            text-align: center;
            white-space: nowrap;
            line-height: 1.3;
            letter-spacing: -0.01em;
            padding: 0 1rem;
            animation: taglinePulse 2s ease-in-out infinite alternate;
        }
        @keyframes taglinePulse {
            0% {
                opacity: 0.85;
                filter: drop-shadow(0 0 15px rgba(147, 197, 253, 0.5));
            }
            100% {
                opacity: 1;
                filter: drop-shadow(0 0 35px rgba(96, 165, 250, 0.9));
            }
        }

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

        .stat-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .stat-box:hover { border-color: rgba(59, 130, 246, 0.4); transform: translateY(-2px); }
        .stat-value { font-size: 2rem; 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; }

        /* Platform Cards */
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 900px) { .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); transform: translateY(-3px); }

        .platform-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            font-size: 1.5rem;
        }
        .platform-icon.blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
        .platform-icon.purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
        .platform-icon.pink { background: rgba(236, 72, 153, 0.15); color: #ec4899; }

        .platform-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
        .platform-card .subtitle { color: #6b7280; font-size: 0.875rem; margin-bottom: 1rem; }
        .platform-card p { color: #9ca3af; font-size: 0.95rem; margin-bottom: 1rem; }
        .platform-card ul { list-style: none; padding: 0; margin: 0; }
        .platform-card li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.5rem 0;
            color: #d1d5db;
            font-size: 0.9rem;
        }
        .platform-card li i { color: #10b981; margin-top: 0.2rem; flex-shrink: 0; }
        .platform-card a { color: #8b5cf6; font-size: 0.9rem; display: inline-block; margin-top: 1rem; }
        .platform-card a:hover { text-decoration: underline; }

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

        .solution-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;
        }
        .solution-card:hover { border-color: rgba(59, 130, 246, 0.3); }
        .solution-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
        .solution-card > p { color: #9ca3af; margin-bottom: 1rem; }
        .solution-card ul { list-style: none; padding: 0; margin: 0; }
        .solution-card li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.4rem 0;
            color: #d1d5db;
            font-size: 0.9rem;
        }
        .solution-card li i { margin-top: 0.2rem; flex-shrink: 0; }

        /* Integrations */
        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 768px) { .integrations-grid { grid-template-columns: repeat(3, 1fr); } }

        .integration-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1rem;
            padding: 1.25rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .integration-box:hover { border-color: rgba(59, 130, 246, 0.4); transform: translateY(-2px); }
        .integration-box i { font-size: 2rem; margin-bottom: 0.5rem; }
        .integration-box p { font-size: 0.85rem; color: #fff; }

        /* Architecture Box */
        .arch-box {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1.5rem;
            padding: 2.5rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .arch-layer {
            background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.05));
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 0.75rem;
            padding: 1rem 1.5rem;
            margin-bottom: 0.75rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .arch-layer:last-child { margin-bottom: 0; }
        .arch-layer-name { font-weight: 600; display: flex; align-items: center; gap: 0.75rem; }
        .arch-layer-name i { color: #3b82f6; }
        .arch-layer-tech { color: #6b7280; font-size: 0.875rem; }

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

        .dev-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 1rem;
            padding: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
        }
        .dev-card:hover { border-color: rgba(59, 130, 246, 0.3); transform: translateY(-3px); }

        .dev-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }
        .dev-icon.indigo { background: rgba(99, 102, 241, 0.15); color: #818cf8; }
        .dev-icon.cyan { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
        .dev-icon.emerald { background: rgba(16, 185, 129, 0.15); color: #34d399; }

        .dev-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
        .dev-card .tag { font-size: 0.7rem; padding: 2px 8px; border-radius: 999px; margin-left: 0.5rem; }
        .dev-card .subtitle { font-size: 0.85rem; margin-bottom: 0.75rem; }
        .dev-card p { color: #9ca3af; font-size: 0.9rem; margin-bottom: 1rem; }
        .dev-card .link { font-size: 0.9rem; }

        /* CTA */
        .cta-section { text-align: center; }
        .cta-box {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 1.5rem;
            padding: 3rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .cta-box h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
        .cta-box p { color: #9ca3af; max-width: 550px; margin: 0 auto 2rem; font-size: 1.1rem; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* Hero buttons */
        .hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
