/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Gabarito', sans-serif;
    background-color: #000c3f;
    color: white;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1800px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 48px 80px;
    position: relative;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 92px;
}

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

.logo img {
    height: 40px;
    border-radius: 10px;
}

.app-store-badge {
    display: flex;
    transition: opacity 0.2s ease;
}

.app-store-badge:hover {
    opacity: 0.8;
}

.app-store-badge img {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    max-width: 520px;
    margin: 0 auto 76px;
    letter-spacing: -0.02em;
}

.hero-image {
    max-width: 951px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 951px;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 120px;
    text-align: center;
}

.footer-text {
    font-size: 16px;
    line-height: 1.25;
    color: #8987a7;
    max-width: 720px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 40px 60px;
    }

    .hero-title {
        font-size: 36px;
        max-width: 480px;
    }

    .hero-image {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 32px 24px;
    }

    .header {
        margin-bottom: 60px;
    }

    .hero-title {
        font-size: 28px;
        max-width: 100%;
        margin-bottom: 48px;
    }

    .hero-image {
        max-width: 100%;
    }

    .footer {
        padding-top: 80px;
    }

    .footer-text {
        font-size: 14px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 24px 16px;
    }

    .header {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-text {
        font-size: 12px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible {
    outline: 2px solid white;
    outline-offset: 4px;
    border-radius: 4px;
}