:root {
    --background: #0a0a0a;
    --foreground: #ffffff;
    --card: rgba(26, 26, 26, 0.5);
    --card-border: rgba(255, 255, 255, 0.1);
    --muted-foreground: #999999;
    --accent: #FF6A00;
    --shadow-color: rgba(255, 106, 0, 0.4);
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-last {
    color: var(--foreground);
    font-weight: 300;
}

.logo-level {
    color: var(--accent);
}

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

.nav-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--foreground);
}

.cta-button-outline {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--foreground);
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button-outline:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--foreground);
}


/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    max-width: 500px;
    margin-bottom: 2rem;
}

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

.cta-button-primary {
    background: var(--accent);
    color: var(--foreground);
    padding: 1rem 2rem;
    border-radius: 99px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.cta-button-secondary {
    background: var(--card);
    border: 1px solid var(--card-border);
    color: var(--foreground);
    padding: 1rem 2rem;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    border-color: var(--foreground);
}

.hero-image img {
    width: 100%;
    border-radius: 2rem;
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* General Section Styling */
section {
    padding: 6rem 0;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--muted-foreground);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 3rem auto;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* Download Section */
.download .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-content h2 {
    text-align: left;
}
.download-content .section-subtitle {
    text-align: left;
    margin-left: 0;
}
.download-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.download-buttons a img {
    height: 50px;
}
.download-image img {
     width: 100%;
    border-radius: 2rem;
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}


/* Pro Section */
.pro-section {
    background: var(--card);
    border-radius: 2rem;
}
.pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.pro-card {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 1.5rem;
}
.pro-card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.pro-section .cta-button-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted-foreground);
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--foreground);
}


/* Responsive */
@media (max-width: 768px) {
    .nav-links, .cta-button-outline {
        display: none;
    }
    .hero .container, .download .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p, .download-content .section-subtitle {
        margin: 0 auto 2rem auto;
    }
    .hero-buttons, .download-buttons {
        justify-content: center;
    }
     .download-content h2 {
        text-align: center;
    }
    .hero-image {
        grid-row: 1;
    }
    .pro-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}
