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

body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f8 100%);
    color: #333333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

/* Hero Section */
.logoimg{
    max-width: 325px;
    width: 100%;
}

.hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 4rem 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 85, 221, 0.07);
    border-bottom: 1px solid rgba(0, 119, 255, 0.1);
    min-height: calc(100vh - 109px);
}


/* .hero > * {
    max-width: 1250px;
} */

.logo {
    margin-bottom: 1.5rem;
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.header-text {
    font-size: 3rem;
    line-height: 1.4;
    color: #333333;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(90deg, #0055dd, #0077ff, #0055dd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: textShine 5s ease-in-out infinite alternate;
    margin-top: 12px;
}
@keyframes textShine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.subheader-text {
    font-size: 1.5rem;
    color: #555555;
    font-weight: 400;
    max-width: 768px;
}

.logo-wrapper{
    margin: 0px;
}

/* CTA Section */
.cta-section {
    margin: 2rem 0;
}
.cta-section p {
    font-size: 0.8rem;
    color: #555555;
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.cta-button {
    background: linear-gradient(90deg, #0077ff 0%, #0055dd 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 85, 221, 0.3);
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 85, 221, 0.4);
}

.disclaimer {
    margin-top: 1rem;
    font-size: 12px;
    color: #666;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 4rem 0;
}

.feature {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333333;
}

.feature p {
    color: #666666;
}

/* Screenshot Section */
.screenshot {
    margin: 4rem 0;
    text-align: center;
}

.screenshot img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #ececec;
    padding: 1.5rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #0077ff;
}

.copyright {
    font-size: 14px;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero{
        padding: 4rem 2rem; 
    }
    .logoimg {
        max-width: 225px;
    }
    .header-text {
        font-size: 2rem;
    }
    
    .subheader-text {
        font-size: 1.2rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
} 