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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
}

.logo-icon {
   
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    gap: 2;
    align-items: center;
}

.btn-text {
    background-color: lab(100% 0 0 / .05);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4.5px 12px;
    margin: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.btn-text:hover {
    color: #c5c5c5;
}

.btn-primary {
    color: #0a0a0a;
    background-color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    
}

.btn-primary:hover {
    background-color:#c5c5c5 ;
}


.hero {
    padding: 160px 0 80px;
    text-align: center;
    background-image: url('bg-dark.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.announcement {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    padding: 4px 8px;
    margin-bottom: 32px;
    font-size: 14px;
}

.badge {
    background-color: #0c8c5e;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-actions img {
    width: 100%;
    max-width: 1080px;
    border-radius: 20px;
    height: 656px;
    display: block;
    margin: 0 auto;
}

.hero-form {
    margin-top: 2rem;
    padding: 0.25rem;
    max-width: 22.5rem;
    width: 100%;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.hero-input {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    height: 2rem;
    outline: none;
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 150%;
}

.hero-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hero-submit-btn {
    display: inline-flex;
    align-items: center;
    outline-offset: 2px;
    height: fit-content;
    justify-content: center;
    cursor: pointer;
    gap: 0.375rem;
    white-space: nowrap;
    border-radius: 9999px;
    font-weight: 500;
    flex-shrink: 0;
    transition: color 100ms, background-color 100ms;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    color: #0a0a0a;
    border: 1px solid #ffffff;
    font-size: 15px;
    padding: 4.5px 0.75rem;
}

.hero-submit-btn:hover {
    background-color: rgba(255, 255, 255, 0.85);
}

.hero-submit-btn:focus-visible {
    outline: 2px solid #6366f1;
}

.btn-primary-large {
    background: #ffffff;
    color: #0a0a0a;
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    
}

.btn-primary-large:hover {
    background-color: #c5c5c5;
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}

.btn-secondary-large:hover {
   background-color: #0a0a0a;
    
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
    padding: 48px 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .company-logos {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1.75rem 0.5rem;
        max-width: 64rem;
    }
}

.logo-item {
     
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 120px;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
}

.white-logo {
    filter: brightness(0) invert(1);
}

.larger-logo {
    transform: scale(3.0);
}



.intelligence-section {
    padding: 120px 0;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
    color:#ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.btn-secondary{
    color: #0a0a0a;
    background-color: white;
    padding: 8px 16px;
    
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-image-top {
    width: 100%;
   
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    
}

.feature-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-image-bottom {
    grid-column: 1 / -1;
    width: 100%;
   
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    
}

.feature-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.enterprise-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.enterprise-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.enterprise-text {
    flex: 1;
}

.section-title {
    display: flex;
    justify-content: left;
}
.section-subtitle{
    display: flex;
    justify-content: left;
    margin: 0 2px 10px 0;
}


.enterprise-badge {
    display: inline-block;
    
    color: #18e299;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.enterprise-card {  
    padding: 40px;
}


.enterprise-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

.customer-logos-enterprise {
    text-align: center;
    padding: 48px 0;
}

.logos-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.logos-row span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
}


.industry-section {
    padding: 120px 0;
}

.industry-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}

.industry-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}



.cta-section {
    padding: 120px 0;
    text-align: center;
}

.cta-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 48px;
}

.cta-actions img {
    margin-top: 48px;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}


.footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 32px;
}

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

.footer-column h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-security {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.security-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 600;
}

.badge-soc {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #ffffff;
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid,
    .enterprise-grid {
        grid-template-columns: 1fr;
    }
    
    .enterprise-header {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
