* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

:root {
    --bg-color: #FFF9F6;      
    --text-main: #3C2F2F;     
    --text-muted: #7C6E6E;    
    --accent-pill: #F3EBE6;   
    --font-family: 'Fredoka', system-ui, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.4;
}

.site-header {
    width: 100%;
    padding: 1.5rem 2rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 600;
}

.pill-btn {
    text-decoration: none;
    color: var(--text-main);
    background-color: var(--accent-pill);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
}

.pill-btn:hover {
    background-color: #EDE3DC;
}

.main-layout {
    width: 100%;
    padding: 7.5rem 1.5rem 3rem 1.5rem; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-text-section {
    margin-bottom: 1.5rem;
}

.main-heading {
    font-size: 1.5rem;
    font-weight: 200;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.cta-section {
    width: 100%;
}

.store-buttons-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.store-badge-link {
    display: inline-block;
    height: 40px; 
}

.badge-svg {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.play-store-tweak {
    transform: scale(1.13); 
}

.showcase-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-wrapper {
    width: auto;
    max-width: 80%; 
    display: flex;
    justify-content: center;
}

.mockup-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.site-footer {
    padding: 3rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(60, 47, 47, 0.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--text-main);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
}

@media (min-width: 768px) {
    body {
        overflow: hidden; 
    }

    .main-layout {
        height: calc(100vh - 70px); 
        padding: 5rem 2rem 1rem 2rem; 
        overflow: hidden;
    }

    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 80px;
        height: 100%;
    }

    .hero-content-left {
        flex: 1.1; 
        text-align: left;
        align-items: flex-start;
    }

    .main-heading {
        font-size:2rem;
    }

    .store-buttons-container {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }

    .store-badge-link {
        height: 45px; 
    }

    .showcase-section {
        flex: 1;
        height: 100%;
    }

    .app-name{
        font-size: 3.5rem;
        font-weight: 500;
        line-height: 1.15;
        margin-bottom: 1.25rem;
        letter-spacing: -0.02em;
    }

    .mockup-wrapper {
        max-width: none;
    }

    .mockup-wrapper img {
        width: auto;
        height: auto;
        max-height: 70vh;
    }

    .site-footer {
        height: 70px;
        padding: 1rem; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-links {
        margin-bottom: 0.25rem;
    }
}