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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

/* Heading Font - Arial Rounded MT Bold or similar */
.hero-title,
.section-title,
.feature-title,
.footer-title,
.footer-subtitle,
.legal-header h1,
.legal-body h2 {
    font-family: 'Arial Rounded MT Bold', 'Arial Rounded MT', 'Arial', 'Helvetica Rounded', 'Helvetica Neue', 'Helvetica', sans-serif;
}

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

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e5e5;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.legal-date {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #666;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.legal-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #000;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
}

.legal-body h2:first-child {
    border-top: none;
    padding-top: 0;
}

.legal-body p {
    margin-bottom: 1rem;
    color: #333;
}

.legal-body ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-body li {
    margin-bottom: 0.5rem;
    color: #333;
}

.legal-body a {
    color: #000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-body a:hover {
    color: #666;
}

.legal-body strong {
    font-weight: 600;
    color: #000;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000;
}

.highlight {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.cta-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.store-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.button-text {
    display: flex;
    flex-direction: column;
}

.button-label {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
}

.button-title {
    font-size: 1rem;
    font-weight: 600;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-screenshot {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e5e5e5;
}

.hero-screenshot:hover {
    transform: scale(1.02);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #000;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: #f8f9fa;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot-item {
    text-align: center;
}

.screenshot {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border: 1px solid #e5e5e5;
}

.screenshot:hover {
    transform: scale(1.02);
}

.screenshot-caption {
    margin-top: 1rem;
    font-weight: 500;
    color: #666;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

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

.download .section-title {
    color: #fff;
    margin-bottom: 1.5rem;
}

.download-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #ccc;
}

.download .cta-buttons {
    flex-direction: row;
    justify-content: center;
    max-width: none;
}

.download .cta-button {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.download .cta-button:hover {
    background: transparent;
    color: #fff;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 60px 0 20px;
    border-top: 1px solid #e5e5e5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.footer-description {
    color: #666;
    line-height: 1.6;
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #000;
}

.footer-text {
    color: #666;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    color: #666;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .download .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Legal pages mobile styles */
    .legal-content {
        padding: 40px 0;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-body {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-body h2 {
        font-size: 1.25rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image,
.feature-card,
.screenshot-item {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

.screenshot-item:nth-child(2) { animation-delay: 0.1s; }
.screenshot-item:nth-child(3) { animation-delay: 0.2s; }

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.cta-button:focus,
.logo:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Loading states */
.cta-button.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Print styles */
@media print {
    .header,
    .cta-buttons,
    .footer {
        display: none;
    }
    
    .hero,
    .features,
    .screenshots,
    .download {
        padding: 20px 0;
    }
} 