:root {
    --primary-hover: #5a4ad1;
    --bg-gradient: linear-gradient(135deg, #F5F3FF 0%, #E8E0FF 100%);
    --shadow-soft: 0 20px 40px -10px rgba(108, 92, 231, 0.2);
}

body {
    background: var(--bg-gradient);
    height: 100vh;
}

.page-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-section {
    display: flex;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
    justify-content: space-between;
    gap: 4rem;
    padding-top: 80px;
}

.content-container {
    flex: 1;
    max-width: 50%;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.features-list {
    list-style: none;
    margin-bottom: 3rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
}
#downloadBtn {
    text-decoration: none;
}
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(108, 92, 231, 0.4);
}

.primary-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(108, 92, 231, 0.6);
}

.download-icon {
    width: 20px;
    height: 20px;
}

.meta-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 1rem;
}

.dot {
    opacity: 0.5;
}

.visuals-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    overflow: visible;
    object-position: center;
}

/* Background Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .content-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        width: 100%;
    }

    .cta-group {
        align-items: center;
    }

    .meta-info {
        margin-left: 0;
        justify-content: center;
    }

    .visuals-container {
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
        min-height: auto;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        padding: 1rem;
    }

    .hero-section {
        gap: 1.5rem;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .visuals-container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 300px;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .page-wrapper {
        padding: 0.5rem;
    }

    .hero-section {
        padding-top: 90px;
        gap: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .visuals-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 1rem;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 250px;
        object-fit: contain;
    }

    .primary-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (min-width: 1025px) {
    body {
        height: 100vh;
        overflow: hidden;
    }
}