html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    flex-direction: column;
    margin: 0;
    padding-top: 52px;
    box-sizing: border-box;
    background-color: white;
    color: rgb(32, 33, 36);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

main {
    flex-grow: 1;
}

h1, h2, h3 {
    margin: 0;
}

a {
    text-decoration: none;
    color: #0366d6;
}

a:hover {
    cursor: pointer;
    text-decoration: none;
}

.hero-section {
    background: #ffffff;
    padding: 100px 24px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-logo-and-text {
    font-size: 60px;
    font-weight: 600;
    color: rgb(32, 33, 36);
    margin: 0 0 30px 0;
    text-align: center;
    background: linear-gradient(45deg, rgba(142, 197, 252, 1.000) 0.000%, rgba(141, 211, 255, 1.000) 25.000%, rgba(161, 216, 255, 1.000) 50.000%, rgba(193, 210, 255, 1.000) 75.000%, rgba(224, 195, 255, 1.000) 100.000%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all 300ms ease;
    cursor: pointer;
        filter: drop-shadow(0 2px 4px rgba(120, 115, 245, 0.3));

}

.nav-left h1 {
    font-size: 25px;
    font-weight: 600;
    color: rgb(32, 33, 36);
    margin: 0;
    text-align: left;
    background: linear-gradient(45deg, rgba(142, 197, 252, 1.000) 0.000%, rgba(141, 211, 255, 1.000) 25.000%, rgba(161, 216, 255, 1.000) 50.000%, rgba(193, 210, 255, 1.000) 75.000%, rgba(224, 195, 255, 1.000) 100.000%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.nav-left h1 svg {
    width: 45px !important;
    height: 45px !important;
    flex-shrink: 0;
    fill: #5DADE2 !important;
    color: #5DADE2 !important;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(120, 115, 245, 0.3));
}

.hero-subtitle {
    font-size: 24px;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background-color: #dbeafe;
    color: #0366d6;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 40px;
    margin-bottom: 40px;
}

.hero-cta:hover {
    background: #0255b3;
}

.live-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: #475569;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0366d6;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    color: #64748b;
    font-weight: 500;
}

.preview-section {
    background: #ffffff;
    padding: 80px 24px;
    position: relative;
    border-top: 1px solid rgb(230, 230, 230);
}

.preview-content {
    max-width: 1200px;
    margin: 0 auto;
}

.preview-header {
    text-align: center;
    margin-bottom: 60px;
}

.preview-title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
    color: rgb(32, 33, 36);
}

.preview-subtitle {
    font-size: 20px;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.product-card {
    border: 1px solid rgb(230, 230, 230);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: white;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(3, 102, 214, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    border-color: #0366d6;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    background-color: #dbeafe;
}

.product-name {
    font-size: 22px;
    font-weight: 700;
    color: #191919;
    position: relative;
    z-index: 2;
}

.product-description {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 14px;
    color: #475569;
}

.product-features li::before {
    content: '✓';
    color: #0366d6;
    font-weight: 600;
    font-size: 16px;
}

.product-link {
    color: #0366d6;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.product-link::after {
    content: ' →';
    transition: transform 0.3s ease;
}

.features-section {
    padding: 100px 24px;
    border-top: 1px solid rgb(230, 230, 230);
    background: #f8f9fa;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgb(230, 230, 230);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 102, 214, 0.02), rgba(120, 115, 245, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: #0366d6;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background-color: #dbeafe;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #0366d6;
    font-size: 28px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    color: rgb(32, 33, 36);
}

.feature-description {
    color: #475569;
    line-height: 1.7;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.ecosystem-section {
    background: #ffffff;
    padding: 100px 24px;
    border-top: 1px solid rgb(230, 230, 230);
}

.ecosystem-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ecosystem-title {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
    color: rgb(32, 33, 36);
}

.ecosystem-subtitle {
    font-size: 20px;
    color: #475569;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.ecosystem-card {
    background: white;
    border: 1px solid rgb(230, 230, 230);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 102, 214, 0.02), rgba(120, 115, 245, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ecosystem-card:hover::before {
    opacity: 1;
}

.ecosystem-card:hover {
    border-color: #0366d6;
}

.ecosystem-icon {
    width: 60px;
    height: 60px;
    background-color: #dbeafe;
    border-radius: 16px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    position: relative;
    z-index: 2;
}

.ecosystem-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: rgb(32, 33, 36);
    position: relative;
    z-index: 2;
}

.ecosystem-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.cta-section {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 100px 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%230366d6" stop-opacity="0.1"/><stop offset="100%" stop-color="%230366d6" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="200" fill="url(%23b)"/><circle cx="900" cy="200" r="150" fill="url(%23b)"/><circle cx="500" cy="800" r="180" fill="url(%23b)"/></svg>') no-repeat;
    background-size: cover;
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: #5f6368;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    color: #5f6368;
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: 12px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-white {
    background: white;
    color: #191919;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    background: #f8f9fa;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer {
    background: #f8f9fa;
    color: rgb(32, 33, 36);
    padding: 60px 24px 32px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgb(32, 33, 36);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #5f6368;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.footer-link:hover {
    color: #0366d6;
}

.footer-bottom {
    border-top: 1px solid rgb(230, 230, 230);
    padding-top: 24px;
    text-align: center;
}

.footer-copyright {
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-logo-and-text {
        font-size: 48px;
        flex-direction: column;
        gap: 8px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .preview-title,
    .ecosystem-title,
    .cta-title {
        font-size: 28px;
    }

    .preview-subtitle,
    .ecosystem-subtitle,
    .cta-subtitle {
        font-size: 16px;
    }

    .products-grid,
    .features-grid,
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .live-stats {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dropdown-menu {
        position: fixed;
        top: 60px;
        left: 16px;
        right: 16px;
        transform: none;
        min-width: auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .app-shelf {
        position: fixed;
        top: 60px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}
