body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #080a10; /* Deeper black background */
    color: #d8d8f0; /* Slightly less bright text */
    line-height: 1.6;
    overflow-x: hidden;
    text-align: left; /* Default to left align */
}

.container {
    width: 80%;
    max-width: 1200px; /* Consider adjusting if too wide for left align */
    margin-left: 6vw; /* Align to left with some padding */
    margin-right: auto;
    padding: 20px;
}

header {
    position: relative;
    background: linear-gradient(120deg, #0c0e18 0%, #131525 80%, #1a1135 100%);
    color: #fff;
    min-height: 135px;
    overflow: hidden;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    /* box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.4); */
    padding-bottom: 20px;
}

/* Tech-style background light spots */
header::before {
    content: '';
    position: absolute;
    left: 30vw;
    top: 10px;
    width: 300px;
    height: 200px;
    background: radial-gradient(circle at 60% 40%, #a777e3cc 0%, transparent 70%);
    filter: blur(36px);
    z-index: 1;
    pointer-events: none;
}
header::after {
    content: '';
    position: absolute;
    left: 60vw;
    top: 60px;
    width: 220px;
    height: 120px;
    background: radial-gradient(circle at 80% 20%, #6e8efbcc 0%, transparent 80%);
    filter: blur(30px);
    z-index: 1;
    pointer-events: none;
}

/* Logo aligned left, partially shown */
header .logo-svg {
    position: absolute;
    left: -10px; /* Changed from -5px to -10px */
    top: 35px;
    height: 90px;
    width: auto;
    z-index: 2;
    margin: 0;
    /* box-shadow: 0 0 32px 0 rgba(106, 90, 205, 0.15); */
    filter: drop-shadow(0 0 15px rgba(167, 119, 227, 0.5));
    animation: fadeInLogo 1s ease-out forwards;
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

header .tagline {
    position: relative;
    z-index: 3;
    font-size: 1.6em;
    opacity: 0.93;
    color: #e2e0f7;
    margin-left: 220px; /* Adjusted for potentially narrower container or logo shift */
    margin-top: 35px;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 16px rgba(138, 110, 234, 0.2), 0 1px 0 #0c0e18;
    text-align: left;
    font-family: 'Georgia', serif; /* Use serif font */
    font-style: italic;
}

main {
    padding: 0 0 60px 0;
    background: linear-gradient(120deg, #0c0e18 0%, #131525 100%); /* Deeper background */
    min-height: 600px;
}

section {
    padding: 50px 0 40px 0;
    /* text-align: left; Removed, let container/elements handle */
    /* max-width: 1100px; Removed, let container handle */
    /* margin: 0 auto; Removed for left alignment */
    position: relative;
    z-index: 2;
    /* width: 90%; Removed, let container handle */
}

#hero h2 {
    font-size: 2.7em;
    color: #a8abff;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-shadow: 0 0 18px rgba(110, 142, 251, 0.4), 0 2px 0 #0c0e18;
    font-family: 'Georgia', serif;
    line-height: 1.3;
    text-align: left;
}

#hero .subtitle {
    font-size: 1.2em;
    color: #9f9fb3; /* Deeper text color */
    margin-bottom: 32px;
    margin-left: 0; /* Already good for left align within its block */
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.coming-soon {
    display: inline-block;
    background: linear-gradient(90deg, #5a78e2 10%, #8a63c9 90%); /* Deeper gradient */
    color: #fff;
    padding: 14px 32px;
    font-size: 1.6em;
    font-weight: bold;
    border-radius: 40px;
    margin: 25px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 20px rgba(90, 120, 226, 0.3);
    filter: brightness(1.05);
    animation: glow-pulse 3s infinite alternate;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none; /* Ensure no underline for anchor */
    cursor: pointer; /* Ensure pointer cursor */
}

@keyframes glow-pulse {
    0% { filter: brightness(1.1) drop-shadow(0 0 8px #6e8efb99); }
    100% { filter: brightness(1.25) drop-shadow(0 0 18px #a777e3cc); }
}

#hero p:not(.subtitle):not(.coming-soon) {
    font-size: 1.1em;
    color: #666;
    margin-left: 0; /* Changed from auto */
    margin-right: auto;
    text-align: left;
}

#features-overview {
    background: linear-gradient(120deg, #0f1220 0%, #151828 100%);
    margin-top: 80px; /* Increased spacing from above */
    padding: 60px 0; /* Increased internal spacing */
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.5);
    width: 100%;
    border-top: 1px solid rgba(90, 120, 226, 0.08);
    border-bottom: 1px solid rgba(90, 120, 226, 0.08);
}

#features-overview h3 {
    font-size: 1.8em;
    color: #9691e4;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(150, 145, 228, 0.25);
    letter-spacing: 0.02em;
    font-weight: 600;
    font-family: 'Georgia', serif; /* Use serif font */
    text-align: left; /* Changed from center */
}

#features-overview ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Changed from center */
    gap: 40px; /* Increased spacing */
    /* max-width: 1100px; Removed, container handles */
    /* margin: 0 auto; Removed */
    position: relative;
}

#features-overview ul li {
    flex-basis: 300px; /* Increased width */
    padding: 35px;
    background: linear-gradient(145deg, #121624 0%, #0d0f1c 100%);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), inset 0 1px 0px rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(90, 120, 226, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

/* Triangle layout - First card moved up */
#features-overview ul li:first-child {
    transform: translateY(-20px);
}

/* Triangle layout - Third card moved up */
#features-overview ul li:last-child {
    transform: translateY(-20px);
}

/* Middle card moved down */
#features-overview ul li:nth-child(2) {
    transform: translateY(10px);
}

#features-overview ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25), inset 0 1px 0px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(114, 137, 218, 0.3);
}

.feature-icon {
    font-size: 1.8em;
    color: #8a63c9;
    margin-bottom: 18px;
    text-shadow: 0 0 15px rgba(138, 99, 201, 0.4);
    display: inline-block;
}

#features-overview ul li strong {
    display: block;
    font-size: 1.2em;
    color: #7a88cc;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 8px rgba(106, 122, 194, 0.25);
    font-weight: 600;
    font-family: 'Georgia', serif; /* Use serif font */
}

#features-overview ul li p {
    color: #8c8ca0; /* Deeper color */
    line-height: 1.6;
    margin: 0;
    font-size: 0.95em;
}

#subscribe {
    color: #fff;
    padding: 70px 0 80px 0; /* Increased top/bottom padding */
    margin: 80px 0 0 0; /* Increased spacing from above */
    /* box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.5); */
    /* border-top: 1px solid rgba(90, 120, 226, 0.08); */
    width: 100%;
}

#subscribe h2 {
    font-size: 2em;
    color: #a8abff;
    margin-bottom: 15px;
    text-align: left;
}

#subscribe p {
    margin-bottom: 25px;
    color: #9f9fb3;
    max-width: 500px;
    text-align: left;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #5a78e2 10%, #8a63c9 90%); /* Example: Purple gradient */
    color: #fff;
    padding: 16px 35px; /* Slightly larger padding */
    font-size: 1.3em; /* Slightly smaller font than .coming-soon */
    font-weight: bold;
    border-radius: 40px;
    margin: 30px 0 20px 0; /* Adjusted margin */
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(90, 120, 226, 0.3);
    text-decoration: none; /* Ensure no underline for anchor */
    cursor: pointer; /* Ensure pointer cursor */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-button:hover {
    filter: brightness(1.15);
    box-shadow: 0 10px 25px rgba(90, 120, 226, 0.4);
}

footer {
    background: #080a10;
    color: #5d5d77;
    text-align: left;
    padding: 30px 0;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(90, 120, 226, 0.05);
    margin-top: 0; /* Ensure no spacing from above */
}

footer p {
    margin: 0;
    opacity: 0.87;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header .logo-svg {
        height: 40px;
    }

    #hero h2 {
        font-size: 2.2em;
    }

    #hero .subtitle {
        font-size: 1.1em;
    }

    .coming-soon {
        font-size: 1.5em;
        padding: 12px 25px;
    }

    #features-overview ul li {
        flex-basis: calc(50% - 30px);
        margin: 15px;
    }

    #subscribe h2 {
        font-size: 1.8em;
    }

    #subscribe p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    header .logo-svg {
        height: 30px;
    }

    #hero h2 {
        font-size: 1.8em;
    }

    #hero .subtitle {
        font-size: 1em;
    }

    .coming-soon {
        font-size: 1.2em;
        padding: 10px 20px;
    }

    #features-overview ul li {
        flex-basis: 100%;
        margin: 10px 0;
    }

    #subscribe h2 {
        font-size: 1.6em;
    }

    #subscribe p {
        font-size: 0.9em;
    }
}
