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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section - Matching app's gradient */
.hero {
    background: linear-gradient(to bottom right, #2563eb, #4338ca, #7c3aed);
    padding: 8rem 1rem 5rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Pattern overlay like in the app */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDE2YzAtMi4yMSAxLjc5LTQgNC00czQgMS43OSA0IDQtMS43OSA0LTQgNC00LTEuNzktNC00em0wIDI0YzAtMi4yMSAxLjc5LTQgNC00czQgMS43OSA0IDQtMS43OSA0LTQgNC00LTEuNzktNC00ek0xMiA0MGMwLTIuMjEgMS43OS00IDQtNHM0IDEuNzkgNCA0LTEuNzkgNC00IDQtNC0xLjc5LTQtNHptMC0yNGMwLTIuMjEgMS43OS00IDQtNHM0IDEuNzkgNCA0LTEuNzkgNC00IDQtNC0xLjc5LTQtNHoiLz48L2c+PC9nPjwvc3ZnPg==');
    opacity: 0.2;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.logo {
    height: 6rem;
    width: auto;
    margin: 0 auto 3rem;
    display: block;
}

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

.hero-highlight {
    background: linear-gradient(to right, #fcd34d, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #bfdbfe;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: #f97316;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cta-button:hover {
    background: #ea580c;
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cta-button.secondary {
    background: white;
    color: #2563eb;
}

.cta-button.secondary:hover {
    background: #f3f4f6;
    transform: scale(1.02);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 40rem;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Features Section */
.features {
    background: linear-gradient(to bottom, #f9fafb, white);
    padding: 5rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-card.reverse {
    flex-direction: row-reverse;
}

.screenshot-placeholder {
    border-radius: 0.75rem;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    flex: 2;
}

.screenshot-container {
    border-radius: 1rem;
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

.feature-content {
    flex: 1;
}

.blue-gradient {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.green-gradient {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.purple-gradient {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.orange-gradient {
    background: linear-gradient(to bottom right, #f97316, #ef4444);
}

.placeholder-filename {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.placeholder-label {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* About Hero */
.about-hero {
    padding: 6rem 1rem 5rem;
}

.about-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    background: white;
    padding: 5rem 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom right, #1f2937, #111827);
    color: white;
    padding: 3.75rem 1rem 2.5rem;
}

.footer-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 37.5rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-info {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 4rem;
    }

    .logo {
        height: 4rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .email-input {
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.125rem;
    }

    .features {
        padding: 3.75rem 1rem;
    }

    .feature-card {
        flex-direction: column;
        padding: 2rem;
    }

    .feature-card.reverse {
        flex-direction: column;
    }

    .screenshot-placeholder,
    .screenshot-container {
        flex: none;
        width: 100%;
        height: 250px;
    }

    .footer-cta h3 {
        font-size: 1.5rem;
    }

    .footer-cta p {
        font-size: 1rem;
    }

    .about-hero {
        padding: 5rem 1rem 4rem;
    }

    .about-hero .hero-title {
        font-size: 2.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-photo {
        width: 150px;
        height: 150px;
    }

    .team-member h3 {
        font-size: 1.5rem;
    }

    .team-bio {
        font-size: 1rem;
    }

    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .screenshot-placeholder,
    .screenshot-container {
        height: 200px;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .about-hero {
        padding: 4rem 1rem 3rem;
    }

    .about-hero .hero-title {
        font-size: 2rem;
    }

    .about-hero .hero-subtitle {
        font-size: 1.125rem;
    }
}
