:root {
    --text-primary: #000000;
    --text-secondary: #666666;
    --bg-primary: #ffffff;
    --accent: #007AFF;
    --btn-bg: #F5F5F7;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    /* More vibrant white to theme orange gradient */
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(243, 142, 31, 0.08) 40%, rgba(243, 142, 31, 0.25) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px 0;
    z-index: 100;
}

.navbar-container {
    justify-content: flex-start;
}

.logo {
    text-decoration: none;
    color: #f38e1f;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 60px;
}

.hero-container {
    width: 100%;
}

.content {
    flex: 0 0 500px;
}

.headline {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.actions {
    display: flex;
    gap: 16px;
}

.btn-app-store {
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: block;
    height: 44px;
}

.btn-app-store img {
    height: 100%;
}

.btn-app-store:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Visuals */
.visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.screenshot-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    /* Increased from 500px */
    display: flex;
    justify-content: flex-end;
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 40px;
    display: block;
}

/* Footer */
.footer {
    padding: 60px 0;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.footer-link {
    text-decoration: none;
    color: #f38e1f;
    /* Theme Orange */
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.footer-link:hover {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .navbar {
        position: relative;
        padding: 30px 0;
    }

    .navbar-container {
        justify-content: center;
    }

    .container {
        flex-direction: column;
        padding: 0 24px;
        text-align: center;
    }

    .hero {
        padding-top: 0;
    }

    .content {
        flex: none;
        width: 100%;
        margin-bottom: 60px;
    }

    .headline {
        font-size: 48px;
    }

    .actions {
        justify-content: center;
    }

    .visual {
        width: 100%;
        justify-content: center;
    }

    .screenshot-wrapper {
        justify-content: center;
    }

    .screenshot {
        width: 100%;
        max-width: 400px;
    }

    .footer {
        padding-top: 20px;
    }
}