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

        .gradient-text {
            background: linear-gradient(135deg, #3B82F6 0%, #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: 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(29, 78, 216, 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(29, 78, 216, 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: linear-gradient(135deg, rgba(15, 20, 30, 0.7), rgba(15, 20, 30, 0.4));
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(96, 165, 250, 0.1);
            border-radius: 14px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .stat-box:hover { border-color: rgba(96, 165, 250, 0.4); transform: translateY(-2px); }
        .stat-value {
            font-size: 2rem; font-weight: 800; margin-bottom: 0.25rem;
            background: linear-gradient(135deg, #3B82F6, #60a5fa, #93c5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .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: linear-gradient(135deg, rgba(15, 20, 30, 0.8), rgba(15, 20, 30, 0.5));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(96, 165, 250, 0.12);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .platform-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--card-color, #3b82f6), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .platform-card:hover {
            border-color: rgba(96, 165, 250, 0.4);
            transform: translateY(-6px) !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.08);
        }
        .platform-card:hover::before { opacity: 1; }
        .platform-card:hover h3 { color: #93c5fd; }

        .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.green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
        .platform-icon.pink { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }

        .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: #1d4ed8; margin-top: 0.2rem; flex-shrink: 0; }
        .platform-card a { color: #1d4ed8; 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: linear-gradient(135deg, rgba(15, 20, 30, 0.8), rgba(15, 20, 30, 0.5));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(96, 165, 250, 0.12);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .solution-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #3b82f6, transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .solution-card:hover {
            border-color: rgba(96, 165, 250, 0.4);
            transform: translateY(-4px) !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.08);
        }
        .solution-card:hover::before { opacity: 1; }
        .solution-card:hover h3 { color: #93c5fd; }
        .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: linear-gradient(135deg, rgba(15, 20, 30, 0.7), rgba(15, 20, 30, 0.4));
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(96, 165, 250, 0.1);
            border-radius: 14px;
            padding: 1.25rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .integration-box:hover {
            border-color: rgba(96, 165, 250, 0.4);
            transform: translateY(-4px) !important;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(59, 130, 246, 0.06);
        }
        .integration-box i { font-size: 2rem; margin-bottom: 0.5rem; }
        .integration-box p { font-size: 0.85rem; color: #fff; }

        /* Architecture Box */
        .arch-box {
            background: linear-gradient(135deg, rgba(15, 20, 30, 0.8), rgba(15, 20, 30, 0.5));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(96, 165, 250, 0.15);
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .arch-layer {
            background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 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: linear-gradient(135deg, rgba(15, 20, 30, 0.8), rgba(15, 20, 30, 0.5));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(96, 165, 250, 0.12);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: block;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }
        .dev-card:hover {
            border-color: rgba(96, 165, 250, 0.4);
            transform: translateY(-6px) !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.08);
        }

        .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(29, 78, 216, 0.15); color: #3b82f6; }

        .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(29, 78, 216, 0.04));
            border: 1px solid rgba(59, 130, 246, 0.25);
            border-radius: 20px;
            padding: 3.5rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.18), transparent 60%);
            pointer-events: none;
        }
        .cta-box > * { position: relative; z-index: 1; }
        .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: 12px; justify-content: center; flex-wrap: wrap; }
        @media (max-width: 480px) { .cta-buttons { flex-direction: column; align-items: stretch; } .cta-buttons .ts-btn { width: 100%; justify-content: center; text-align: center; } }

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

/* MOBILE: Hide hero glow animations */
@media (max-width: 768px) {
  .hero-logo::before,
  .hero-logo::after {
    display: none !important;
    content: none !important;
  }
  .hero-logo-img {
    animation: none !important;
    filter: drop-shadow(0 0 40px rgba(16, 93, 164, 0.5)) !important;
  }
}

/* MOBILE: Completely remove ALL hero glow effects */
@media (max-width: 768px) {
  .hero-logo::before,
  .hero-logo::after {
    display: none !important;
    visibility: hidden !important;
    content: none !important;
    opacity: 0 !important;
    background: none !important;
  }
  .hero-logo-img {
    animation: none !important;
    filter: none !important;
  }
  .hero-tagline {
    animation: none !important;
    filter: none !important;
  }
}

/* Vendor SVG icons in integration boxes */
.integration-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.integration-box svg {
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}
.integration-box p {
    margin-bottom: 0;
}


/* Section eyebrow labels */
.section-header .eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 0.75rem;
}

/* Per-product card colors */
.platform-card:nth-child(1) { --card-color: #3b82f6; }
.platform-card:nth-child(1) .platform-icon { background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.08)) !important; color: #60a5fa !important; }
.platform-card:nth-child(2) { --card-color: #10b981; }
.platform-card:nth-child(2) .platform-icon { background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.08)) !important; color: #34d399 !important; }
.platform-card:nth-child(2):hover { border-color: rgba(16, 185, 129, 0.35); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(16, 185, 129, 0.08); }
.platform-card:nth-child(2):hover h3 { color: #6ee7b7 !important; }
.platform-card:nth-child(3) { --card-color: #8b5cf6; }
.platform-card:nth-child(3) .platform-icon { background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.08)) !important; color: #a78bfa !important; }
.platform-card:nth-child(3):hover { border-color: rgba(139, 92, 246, 0.35); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(139, 92, 246, 0.08); }
.platform-card:nth-child(3):hover h3 { color: #c4b5fd !important; }

/* Card heading transitions */
.solution-card h3 { transition: color 0.3s; }
.platform-card h3 { transition: color 0.3s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .platform-card, .solution-card, .dev-card, .integration-box { transition: border-color 0.2s, box-shadow 0.2s; }
    .platform-card:hover, .solution-card:hover, .dev-card:hover { transform: none; }
}
