:root {
    --primary: #4A6FDC;
    --secondary: #34D399;
    --dark: #121721;
    --darker: #0A0E14;
    --medium-dark: #1E293B;
    --light: #F8FAFC;
    --accent: #EC4899;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

header {
    background-color: var(--dark);
    color: var(--light);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    max-height: 33px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary);
}

.cta-button {
    background-color: var(--secondary);
    color: var(--dark);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #2EB885;
    transform: translateY(-2px);
}

/* Specific styling for platform download buttons */
.platform .cta-button {
    padding: 0.5rem 1.2rem; /* Reduced padding for download buttons */
    margin-bottom: 0.5rem; /* Add spacing between buttons */
    width: 100%;
    text-align: center;
}

/* Hide download button in nav on mobile */
@media (max-width: 768px) {
    nav .cta-button {
        display: none;
    }
}

/* Original hero section */
.hero {
    background-color: var(--dark);
    color: var(--light);
    padding: 6rem 2rem; /* This is currently quite tall */
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #CBD5E1;
}

/* Modified hero section - reduced vertical spacing */
.hero {
    background-color: var(--dark);
    color: var(--light);
    padding: 3rem 2rem; /* Reduced from 6rem to 3rem */
    text-align: center;
}

.hero h1 {
    font-size: 3rem; /* Slightly smaller font */
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem; /* Slightly smaller font */
    max-width: 800px;
    margin: 0 auto 1.5rem; /* Reduced from 2.5rem */
    color: #CBD5E1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.secondary-button {
    background-color: transparent;
    color: var(--light);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--light);
    display: inline-block;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.feature-section {
    padding: 4rem 0;
    background-color: var(--darker);
}

.feature-section:nth-child(even) {
    background-color: var(--dark);
}

.feature-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
    gap: 3rem;
}

.feature-image {
    width: 70%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.feature-text {
    width: 30%;
    text-align: left;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.1);
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.feature-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #CBD5E1;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--light);
}

.sub-features-section {
    padding: 8rem 2rem;
    background-color: var(--medium-dark);
}

.sub-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-feature {
    grid-column: span 1;
}

.sub-feature-video {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .video-feature {
        grid-column: span 1;
    }
}

.sub-feature {
    background-color: var(--dark);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sub-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

.sub-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.sub-feature p {
    color: #CBD5E1;
}

.sub-feature-image {
    width: 100%;
    height: 250px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.pricing {
    text-align: center;
    padding: 8rem 2rem;
    background-color: var(--darker);
}

.pricing h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.pricing p {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #CBD5E1;
}

.platforms {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform {
    background-color: var(--medium-dark);
    border-radius: 8px;
    padding: 2rem;
    width: 250px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

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

.platform h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.platform p {
    margin-bottom: 1.5rem;
    color: #CBD5E1;
}

footer {
    background-color: var(--darker);
    color: var(--light);
    padding: 4rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    max-height: 33px;
    width: auto;
}

footer p {
    margin-bottom: 1rem;
    color: #CBD5E1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    color: var(--light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

@media (max-width: 1024px) {
    .feature-content {
        flex-direction: column;
    }
    
    .feature-image, .feature-text {
        width: 100%;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .feature-image {
        margin-bottom: 2rem;
    }
    
    .video-feature {
        grid-column: 1 / -1;
    }
    
    .sub-features {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .sub-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-feature {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    } 
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button, .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .platforms {
        flex-direction: column;
        align-items: center;
    }
    
    .platform {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}