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

.body {
        font-family: 'Inter', sans-serif;
    background-color: lab(2.42579 -0.165291 -0.470081);
    color: #fff;
}

.header {
background: rgba(255, 255, 255, 0);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5.1px);
-webkit-backdrop-filter: blur(5.1px);
    padding: 0 24px;
    position: fixed;
    top: 0px;
    left: 10px;
    right: 10px;
    z-index: 1000;
}


.header-container {
    max-width: 60%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: lab(100 0 0);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    padding: 8px;
}

.nav-link:hover {
 /* From https://css.glass */
background: rgba(255, 255, 255, 0.08);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
padding:8px
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-link {
    color: lab(100 0 0);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    background: rgba(255, 255, 255, 0.08);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
padding:8px
}

.contact-link:hover {
    color: #fff;
}

.btn-start {
    background-color: #fff;
    color: #0f1117;
    padding: 8px 16px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-start:hover {
    background-color: #e5e5e5;
}


.container-1 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
    gap: 64px;
}

.bg-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 120px 20px 20px 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 50px;
    margin-bottom: 40px;
}

.badge-new {
    background: lab(51.3415 -41.5657 15.3527);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-text {
    font-size: 14px;
    color: white;
}

.badge-arrow {
    color: white;
}

.hero-title {
        font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: lab(100 0 0);
}

.hero-subtitle {
    font-size: 18px;
    color: lab(100 0 0);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
border-radius: 32px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
border: 1px solid rgba(255, 255, 255, 0.23);
}

.email-input {
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    width: 250px;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);


}
.email-input::placeholder {
    color: lab(100 0 0);
}

/* For older browsers */
.email-input::-webkit-input-placeholder {
    color: lab(100 0 0);
}

.email-input::-moz-placeholder {
    color: lab(100 0 0);
}

.email-input:-ms-input-placeholder {
    color: lab(100 0 0);
}

.btn-start-now {
    background: #1a1a1a;
    color: black;
    border: none;
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-right: 8px;
    border-radius: 32px;
    background-color:  #ffff;
}

.btn-start-now:hover {
    background-color:  #ffff;
}
.container-2 {
    background-color: lab(2.42579 -0.165291 -0.470081);
    padding: 60px 20px;
}

.logos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px 20px;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 100%;
}

.logo-item img {
    max-height: 30px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.logo-item img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 20px 10px;
    }

    .logo-item {
        height: 40px;
        max-width: 120px;
    }

    .logo-item img {
        max-height: 20px;
    }
}



.container-3 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
    padding: 80px 20px;
    background-color:     lab(2.42579 -0.165291 -0.470081);
}

.container-3-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 70%;
    gap: 16px;
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: lab(100 0 0);
}

.section-subtitle {
    font-size: 16px;
    color: lab(100 0 0 / 0.7);
    max-width: 40.5rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    width: 100%;
    margin-bottom: 24px;
}

.feature-card {
    background: #0a0c10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 12px;
    font-weight: 600;
    color: lab(79.9844 -59.6292 22.5096);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color:lab(100 0 0 / 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 75%;
}

.feature-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.assistant-section {
    background: #0a0c10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.assistant-title {
    font-size: 24px;
    font-weight: 600;
    color:    lab(100 0 0 );
    margin-bottom: 12px;
}

.assistant-description {
    font-size: 16px;
    color: lab(100 0 0 / 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.assistant-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .container-3-inner {
        max-width: 100%;
    }
}
.container-4-outer{
    background-color: #0f1117;
    width: 100%;
}
.container-4 {
    background-color: #0f1117;
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.enterprise-text {
    max-width: 600px;
}

.enterprise-label {
    font-size: 12px;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.enterprise-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.btn-enterprise {
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-enterprise:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.enterprise-feature {
    display: flex;
    flex-direction: column;
}

.feature-icon {
    margin-bottom: 16px;
}

.enterprise-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.enterprise-feature-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.customer-story-card {
    background-image: url('assets/anthropic.svg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    margin-bottom: 48px;
    min-height: 350px;
    position: relative;
    cursor: pointer;
}

.story-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    z-index: 1;
    max-width: 50%;
    background: linear-gradient(90deg, rgba(10, 12, 16, 0.95) 0%, rgba(10, 12, 16, 0.7) 70%, transparent 100%);
}

.story-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.story-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.story-link {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    margin-bottom: auto;
}

.story-link:hover {
    text-decoration: underline;
}

.story-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 150px;
    line-height: 1.4;
}

.story-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enterprise-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.enterprise-logo-item img {
    height: 24px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(2);
    transition: opacity 0.2s;
    cursor: pointer;
}

.enterprise-logo-item img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .enterprise-header {
        flex-direction: column;
        gap: 24px;
    }

    .enterprise-features {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .customer-story-card {
        flex-direction: column;
    }

    .story-image {
        min-height: 200px;
    }

    .enterprise-logos {
        flex-wrap: wrap;
        gap: 30px;
    }

    .story-stats {
        flex-direction: column;
        gap: 24px;
    }
}





.container-5 {
    background-color:  lab(2.42579 -0.165291 -0.470081);
    padding: 80px 20px;
    overflow: hidden;
}

.container-5-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.customers-label {
    font-size: 12px;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
}

.customers-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.customers-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Hide radio inputs */
.carousel-input {
    display: none;
}

.carousel-wrapper {
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    padding-left: calc((100% - 1100px) / 2);
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    width: max-content;
}

.carousel-card {
    flex: 0 0 320px;
    background:  lab(2.42579 -0.165291 -0.470081);;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
    min-width: 400px;
    min-height:400px ;
    max-height: 400px;
    max-width: 400px;
}

.carousel-card:hover {
    transform: translateY(-4px);
}

.card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.card-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.card-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    padding: 20px;
    padding-bottom: 8px;
}

.card-link {
    display: flex;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    padding: 0 20px 20px;
    gap: 4px;
    align-items: center;
    justify-content: flex-start; /* or center if you want it centered */
}

.card-link:hover {
    color:#18E299
}

/* Carousel slide positions - adjusted for overflow effect */
#slide1:checked ~ .carousel-wrapper .carousel-track {
    transform: translateX(0);
}

#slide2:checked ~ .carousel-wrapper .carousel-track {
    transform: translateX(calc(-344px * 3)); /* card width + gap * 3 cards */
}

#slide3:checked ~ .carousel-wrapper .carousel-track {
    transform: translateX(calc(-344px * 5)); /* card width + gap * 5 cards */
}

/* Arrow Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

/* Dynamic arrow states based on current slide */
#slide1:checked ~ .carousel-controls .carousel-prev {
    opacity: 0.3;
    pointer-events: none;
}

#slide3:checked ~ .carousel-controls .carousel-next {
    opacity: 0.3;
    pointer-events: none;
}

/* Dots - hidden since we only use arrows */
.carousel-dots {
    display: none;
}

@media (max-width: 1200px) {
    .carousel-wrapper {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .carousel-card {
        flex: 0 0 280px;
    }
    
    .carousel-wrapper {
        padding-left: 20px;
    }
    
    .customers-title {
        font-size: 28px;
    }
    
    #slide2:checked ~ .carousel-wrapper .carousel-track {
        transform: translateX(calc(-304px * 2));
    }
    
    #slide3:checked ~ .carousel-wrapper .carousel-track {
        transform: translateX(calc(-304px * 4));
    }
}



.container-6 {
    background-color: lab(2.42579 -0.165291 -0.470081);
    padding: 80px 20px;
}

.cta-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

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

.btn-cta-primary {
    background-color: #fff;
    color: #0f1117;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

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

.btn-cta-secondary {
    background-color: transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-features {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    background:  lab(2.42579 -0.165291 -0.470081);;
    border-radius: 16px;
    overflow: hidden;
}

.cta-feature {
    flex: 1;
    padding: 40px;
    text-align: center;
}

.cta-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.cta-icon {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cta-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.cta-feature-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.cta-feature-link {
    font-size: 14px;
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
}

.cta-feature-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
    }
    
    .cta-divider {
        width: 100%;
        height: 1px;
    }
}


.footer {
    background-color:  lab(2.42579 -0.165291 -0.470081);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    padding-top: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}


.footer-logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.social-link:hover {
    color: #fff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-column-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

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

.footer-link:hover {
    color: #fff;
}

.footer-security {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.3;
}

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

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.status-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-theme {
    display: flex;
    gap: 8px;
}

.theme-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.theme-btn:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
}

.theme-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

.mintlify-icon{
    height: auto;
    width: auto;
}