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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #ffffff;
            color: #1a1a1a;
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #f0f0f0;
            z-index: 1000;
            padding: 20px 0;
        }

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

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #1a1a1a;
        }

        .cta-button {
            padding: 12px 28px;
            background: #1a1a1a;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #333;
            transform: translateY(-1px);
        }

        /* Hero Section */
        .hero {
            margin-top: 20px;
            padding: 120px 0 80px;
            text-align: center;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -2px;
        }

        .hero .tagline {
            font-size: 24px;
            color: #666;
            margin-bottom: 48px;
            font-weight: 400;
        }

        .hero-image {
            width: 100%;
            max-width: 1600px;
            margin: 60px auto 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        /* .hero-image svg {
            width: 100%;
            height: auto;
        } */

        .hero1 {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .hero-image1 {
            display: block;
            width: 100%;
            height: auto;
            /* Maintain aspect ratio */
        }

        .hero-content1 {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 1rem;
        }

        /* Product Section */
        .product-section {
            /* padding: 120px 0; */
            background: #fafafa;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 20px;
            color: #666;
            margin-bottom: 80px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 24px;
        }

        .feature-card h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .feature-card p {
            color: #666;
            font-size: 16px;
            line-height: 1.7;
        }

        /* Applications Section */
        .applications {
            padding: 120px 0;
        }

        .app-categories {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 80px;
        }

        .app-category h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 32px;
        }

        .app-list {
            list-style: none;
        }

        .app-item {
            padding: 24px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .app-item h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .app-item p {
            color: #666;
            font-size: 15px;
        }

        /* Team Section */
        .team {
            padding: 120px 0;
            background: #fafafa;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .team-member {
            text-align: center;
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: #e0e0e0;
            margin: 0 auto 20px;
        }

        .team-member h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .team-member p {
            color: #666;
            font-size: 14px;
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .cta-section p {
            font-size: 20px;
            color: #666;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .primary-cta {
            padding: 16px 40px;
            background: #1a1a1a;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .primary-cta:hover {
            background: #333;
            transform: translateY(-2px);
        }

        .secondary-cta {
            padding: 16px 40px;
            background: #fff;
            color: #1a1a1a;
            border: 2px solid #1a1a1a;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .secondary-cta:hover {
            background: #1a1a1a;
            color: #fff;
        }

        /* Footer */
        footer {
            padding: 60px 0;
            border-top: 1px solid #f0f0f0;
            text-align: center;
        }

        footer p {
            color: #999;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 42px;
            }

            .nav-links {
                display: none;
            }

            .app-categories {
                grid-template-columns: 1fr;
            }
        }


        /* Press & Media Section */
        .press-media-section {
            padding: 120px 0;
            background: #fafafa;
        }

        .media-tabs {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin: 40px 0 60px;
            flex-wrap: wrap;
        }

        .media-tab {
            padding: 10px 24px;
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 500;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .media-tab:hover {
            border-color: #1a1a1a;
            color: #1a1a1a;
        }

        .media-tab.active {
            background: #1a1a1a;
            color: #fff;
            border-color: #1a1a1a;
        }

        .media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 32px;
        }

        .media-card {
            background: #fff;
            border-radius: 12px;
            padding: 32px;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .media-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .media-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .media-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .media-badge.press {
            background: #e3f2fd;
            color: #1565c0;
        }

        .media-badge.news {
            background: #f3e5f5;
            color: #6a1b9a;
        }

        .media-badge.webinar {
            background: #e8f5e9;
            color: #2e7d32;
        }

        .media-date {
            font-size: 13px;
            color: #999;
        }

        .media-card h3 {
            font-size: 20px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 12px;
            color: #1a1a1a;
        }

        .media-card p {
            font-size: 15px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }

        .media-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #1a1a1a;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .media-link:hover {
            gap: 12px;
        }

        .youtube-link {
            color: #ff0000;
        }

        .youtube-link:hover {
            color: #cc0000;
        }

        /* Webinar Card Specific */
        .webinar-card {
            padding: 0;
            overflow: hidden;
        }

        .webinar-thumbnail {
            width: 100%;
            height: 200px;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .webinar-thumbnail svg {
            width: 100%;
            height: 100%;
        }

        .webinar-thumbnail:hover svg polygon {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

        .webinar-card .media-card-header,
        .webinar-card h3,
        .webinar-card p,
        .webinar-card .media-link {
            padding-left: 32px;
            padding-right: 32px;
        }

        .webinar-card .media-card-header {
            padding-top: 24px;
        }

        .webinar-card .media-link {
            padding-bottom: 32px;
            display: inline-flex;
        }

    </style>