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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
    text-decoration: none;
}

.logo-text {
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-login {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-login:hover {
    color: #1a1a1a;
}

.nav-signup {
    background: #1a1a1a;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.nav-signup:hover {
    background: #333;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #e5e5e5;
}

.btn-secondary:hover {
    border-color: #1a1a1a;
    transform: translateY(-1px);
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.badge {
    background: #f0f9ff;
    color: #0369a1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.badge-link {
    color: #0369a1;
    text-decoration: none;
    font-weight: 500;
}

.badge-link:hover {
    text-decoration: underline;
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

/* Developer Section */
.developer-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.developer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.dev-feature {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dev-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.language-tabs {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.language-tab {
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-tab.active {
    background: #1a1a1a;
    color: white;
}

.language-tab:hover {
    background: #e0e0e0;
}

.language-tab.active:hover {
    background: #333;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: white;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin: 64px 0;
}

.trust-stat {
    text-align: center;
}

.trust-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.trust-stat-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 16px;
}

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

.compliance {
    text-align: center;
    margin: 64px 0;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.compliance-badge {
    background: #f0f0f0;
    color: #666;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.testimonials {
    margin-top: 80px;
}

.testimonials-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

.testimonial blockquote {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #666;
    font-size: 14px;
}

/* Waitlist Section */
.waitlist {
    background: #f8fafc;
    padding: 80px 0;
    text-align: center;
}

.waitlist .section-title {
    color: #1a1a1a;
    margin-bottom: 16px;
}

.waitlist .section-subtitle {
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#getWaitlistContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

#getWaitlistContainer form {
    width: 100%;
    text-align: center;
}

#getWaitlistContainer input[type="email"] {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 16px auto;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
}

#getWaitlistContainer button {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 12px 24px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

#getWaitlistContainer button:hover {
    background: #374151;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta .btn-primary {
    background: white;
    color: #1a1a1a;
}

.cta .btn-primary:hover {
    background: #f0f0f0;
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: #666;
}

.cta .btn-secondary:hover {
    border-color: white;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #1a1a1a;
}

.newsletter {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-button {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-button:hover {
    background: #333;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 32px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.legal-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: #1a1a1a;
}

/* Audience Selector */
.audience-selector {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.audience-btn {
    padding: 12px 24px;
    border: 2px solid #e5e5e5;
    background: white;
    color: #666;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.audience-btn:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.audience-btn.active {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

/* Use Case Animation */
.use-case-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.use-case-fade.active {
    opacity: 1;
    transform: translateY(0);
}

/* Blog */
.blog-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

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

.blog-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e5e5e5;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-title-link:hover {
    color: #3b82f6;
}

.blog-meta {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.blog-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.blog-tag:hover {
    background: #c7d2fe;
}

.blog-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-card-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post-cta {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    margin-top: 48px;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.blog-post-cta h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.blog-post-cta p {
    color: #666;
    margin-bottom: 24px;
    font-size: 16px;
}

.blog-post-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-post-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

/* Blog Post Content Styling */
.dev-feature {
    line-height: 1.7;
}

.dev-feature h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 48px 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e5e5;
}

.dev-feature h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 32px 0 16px 0;
}

.dev-feature p {
    margin-bottom: 20px;
    color: #444;
}

.dev-feature ul, .dev-feature ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.dev-feature li {
    margin-bottom: 8px;
    color: #444;
}

.dev-feature code {
    background: #f1f5f9;
    color: #e11d48;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
}

.dev-feature pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 24px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
    border: 1px solid #334155;
}

.dev-feature pre code {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    line-height: 1.5;
}

.dev-feature strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .developer-features {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter {
        flex-direction: column;
    }
    
    .blog-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-card-actions {
        flex-direction: column;
    }
    
    .blog-card-actions .btn {
        flex: none;
        min-width: auto;
    }
    
    .blog-post-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-post-actions .btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .dev-feature h2 {
        font-size: 24px;
        margin: 32px 0 20px 0;
    }
    
    .dev-feature h3 {
        font-size: 20px;
        margin: 24px 0 12px 0;
    }
    
    .dev-feature pre {
        padding: 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 36px;
    }
}
