/**
 * Landing Page Styles
 * 
 * World-class design optimized for conversion, SEO, and user experience
 * Color Palette: Professional blues with energetic accents
 */

/* CSS Variables for Consistent Theme */
:root {
    --primary-color: #2563eb;        /* Professional blue */
    --primary-dark: #1e40af;         /* Darker blue for depth */
    --primary-light: #3b82f6;        /* Lighter blue for hover */
    --accent-color: #8b5cf6;         /* Purple accent for energy */
    --accent-dark: #7c3aed;          /* Darker purple */
    --success-color: #10b981;        /* Green for positive actions */
    --text-primary: #1f2937;         /* Dark gray for main text */
    --text-secondary: #6b7280;       /* Medium gray for secondary text */
    --text-light: #9ca3af;           /* Light gray for subtle text */
    --bg-primary: #ffffff;           /* Pure white background */
    --bg-secondary: #f9fafb;         /* Light gray background */
    --bg-accent: #eff6ff;            /* Light blue background */
    --border-color: #e5e7eb;         /* Border color */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* General Landing Page Styles */
.js-landing-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

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

/* Hero Section - Modern Gradient with Depth */
.js-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 100px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.js-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.15;
}

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

.js-hero h1 {
    font-size: 3.5rem;
    margin: 0 0 24px 0;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.02em;
    color: #ffffff;
}

.js-hero-title {
    font-size: 1.625rem;
    margin: 0 0 12px 0;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.js-hero-subtitle {
    font-size: 1.25rem;
    margin: 0 0 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Buttons - Modern, High-Converting Design */
.js-cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 8px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.js-cta-primary {
    background-color: var(--bg-primary);
    color: var(--primary-color);
    font-weight: 700;
}

.js-cta-primary:hover {
    background-color: #f8fafc;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-dark);
}

.js-cta-primary:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.js-cta-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.js-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-2px);
}

/* Content Sections */
.js-landing-page section {
    padding: 80px 20px;
}

.js-landing-page section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin: 0 0 16px 0;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.js-landing-page section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    margin: 24px auto 40px;
    border-radius: 2px;
}

.js-landing-page section h3 {
    font-size: 1.5rem;
    margin: 0 0 16px 0;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.js-landing-page section p {
    font-size: 1.125rem;
    margin: 0 0 16px 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Statistics Section */
.js-statistics {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 60px 20px;
}

.js-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.js-stat-item {
    text-align: center;
}

.js-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    color: #ffffff;
}

.js-stat-label {
    font-size: 1.125rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
}

/* What This Is Section */
.js-what-this-is {
    background-color: var(--bg-secondary);
}

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

.js-feature {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.js-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.js-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.js-feature:hover::before {
    opacity: 1;
}

.js-feature h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.js-role-description {
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-primary);
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.js-role-description p {
    color: var(--text-primary);
    font-size: 1.125rem;
}

/* How It Works Section */
.js-how-it-works {
    background-color: var(--bg-primary);
}

.js-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.js-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-secondary);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.js-step:hover {
    background: var(--bg-primary);
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.js-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.js-step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0.2;
    z-index: -1;
}

.js-step h3 {
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.js-step p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Pricing Section */
.js-pricing {
    background-color: var(--bg-primary);
}

.js-pricing-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: -16px auto 48px;
    max-width: 600px;
}

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

.js-pricing-card {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
}

.js-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.js-pricing-featured {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.05);
}

.js-pricing-featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.js-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.js-pricing-header {
    margin-bottom: 32px;
}

.js-pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.js-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 8px;
}

.js-price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 8px;
    margin-right: 4px;
}

.js-price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.js-pricing-credits {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.js-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.js-pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--border-color);
}

.js-pricing-features li:last-child {
    border-bottom: none;
}

/* Who It's For Section */
.js-who-its-for {
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-secondary) 100%);
}

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

.js-audience {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.js-audience::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.js-audience:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.js-audience:hover::after {
    opacity: 1;
}

.js-audience h3 {
    color: var(--primary-color);
    font-size: 1.625rem;
    margin-bottom: 16px;
}

.js-audience p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Testimonials Section */
.js-testimonials {
    background-color: var(--bg-secondary);
}

.js-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.js-testimonial {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.js-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.js-testimonial-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.js-testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-style: italic;
}

.js-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.js-testimonial-author strong {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.js-testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Why Different Section */
.js-why-different {
    background-color: var(--bg-primary);
}

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

.js-comparison-item {
    padding: 36px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.js-comparison-item::before {
    content: '✗';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-light);
    font-weight: bold;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.js-comparison-item:hover {
    border-color: var(--accent-color);
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.js-comparison-item:hover::before {
    color: var(--accent-color);
    opacity: 0.6;
    transform: rotate(90deg);
}

.js-comparison-item h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.js-comparison-item p {
    color: var(--text-secondary);
}

.js-value-prop {
    margin-top: 64px;
    padding: 56px 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.js-value-prop::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.js-value-prop h3 {
    color: #ffffff;
    font-size: 2.25rem;
    margin-bottom: 24px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.js-value-prop p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.375rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Platform Features Section */
.js-features {
    background-color: var(--bg-secondary);
}

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

.js-feature-item {
    background: var(--bg-primary);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.js-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.js-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.js-feature-item h3 {
    color: var(--primary-color);
    font-size: 1.375rem;
    margin-bottom: 12px;
}

.js-feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* FAQ Section */
.js-faq {
    background-color: var(--bg-primary);
}

.js-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.js-faq-item {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.js-faq-question {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.js-faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Final CTA Section */
.js-final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.js-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.js-final-cta .js-container {
    position: relative;
    z-index: 1;
}

.js-final-cta h2 {
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.js-final-cta h2::after {
    background: rgba(255, 255, 255, 0.4);
}

.js-final-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.375rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.js-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .js-hero {
        padding: 60px 20px 80px;
    }
    
    .js-hero h1 {
        font-size: 2.25rem;
    }
    
    .js-hero-title {
        font-size: 1.375rem;
    }
    
    .js-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .js-landing-page section {
        padding: 60px 20px;
    }
    
    .js-landing-page section h2 {
        font-size: 2rem;
    }
    
    .js-landing-page section h3 {
        font-size: 1.375rem;
    }
    
    .js-landing-page section p {
        font-size: 1rem;
    }
    
    .js-content-grid,
    .js-steps,
    .js-stats-grid,
    .js-pricing-grid,
    .js-testimonials-grid,
    .js-audience-grid,
    .js-comparison,
    .js-features-grid,
    .js-faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .js-pricing-featured {
        transform: scale(1);
    }
    
    .js-pricing-featured:hover {
        transform: translateY(-6px);
    }
    
    .js-stat-number {
        font-size: 2.5rem;
    }
    
    .js-cta-button {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 8px auto;
        padding: 14px 32px;
    }
    
    .js-value-prop {
        padding: 40px 28px;
    }
    
    .js-value-prop h3 {
        font-size: 1.75rem;
    }
    
    .js-value-prop p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .js-hero {
        padding: 48px 20px 64px;
    }
    
    .js-hero h1 {
        font-size: 1.875rem;
    }
    
    .js-landing-page section {
        padding: 48px 20px;
    }
    
    .js-landing-page section h2 {
        font-size: 1.75rem;
    }
    
    .js-feature,
    .js-audience,
    .js-comparison-item {
        padding: 28px 24px;
    }
    
    .js-value-prop {
        padding: 32px 24px;
        margin-top: 48px;
    }
    
    .js-step {
        padding: 24px 20px;
    }
    
    .js-step-number {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
}

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

/* Focus Styles for Keyboard Navigation */
.js-cta-button:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .js-hero,
    .js-final-cta {
        background: white !important;
        color: black !important;
    }
    
    .js-cta-button {
        border: 2px solid black !important;
        color: black !important;
    }
}

/* ============================================
   NEW HOMEPAGE UX STYLES
   ============================================ */

/* Updated CSS Variables */
:root {
    --ink: #0B1020;
    --primary: #5B6CFF;
    --primary-dark: #4A55CC;
    --purple: #7C3AED;
}

/* Header Styles */
.header {
    background: white;
    border-bottom: 1px solid rgba(11,16,32,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.header .wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.3px;
}

.header .brand small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(11,16,32,0.5);
    letter-spacing: 0;
}

.header .menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.header .menu a {
    text-decoration: none;
    color: rgba(11,16,32,0.7);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.header .menu a:hover {
    color: var(--primary);
}

.header .actions {
    display: flex;
    gap: 12px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background: var(--primary);
    color: white;
}

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

.btn.ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(11,16,32,0.14);
}

.btn.ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Main Content Wrapper */
main {
    background: white;
}

/* Section Styles */
.section {
    padding: 80px 24px;
}

.wrap {
    max-width: 1320px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #F8F9FF 0%, #FEFCFF 100%);
    overflow: hidden;
    padding: 100px 24px 120px;
}

.hero .blob {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
    opacity: 0.6;
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink);
    margin: 0 0 24px 0;
    letter-spacing: -1.5px;
}

.h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.lead {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(11,16,32,0.7);
    margin: 0 0 32px 0;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.trustline {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(11,16,32,0.6);
}

.trust-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(91,108,255,0.08);
    color: rgba(11,16,32,0.7);
    border-radius: 20px;
}

/* Mock App Preview */
.mock {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(11,16,32,0.12);
    overflow: hidden;
}

.mock-top {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(91,108,255,0.08) 0%, rgba(124,58,237,0.08) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.chips {
    display: flex;
    gap: 8px;
}

.chip {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    background: white;
    border-radius: 12px;
    color: rgba(11,16,32,0.7);
}

/* Card Styles */
.card {
    background: white;
    border: 1px solid rgba(11,16,32,0.08);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(11,16,32,0.08);
    transform: translateY(-2px);
}

.card.big {
    padding: 32px;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 24px;
}

.grid.g2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid.g3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Feature Cards */
.feature {
    display: flex;
    gap: 16px;
}

.feature .icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(91,108,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 8px 0;
}

.muted {
    color: rgba(11,16,32,0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Stats Band */
.band {
    background: var(--ink);
    color: white;
    padding: 48px 24px;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat b {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat div {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Template Cards */
.card.template {
    cursor: pointer;
}

.card.template .thumb {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, rgba(91,108,255,0.12) 0%, rgba(124,58,237,0.08) 100%);
    border-radius: 8px;
    margin-bottom: 16px;
}

.card.template b {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.card.template span {
    display: block;
    font-size: 13px;
    color: rgba(11,16,32,0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .grid.g2,
    .grid.g3 {
        grid-template-columns: 1fr;
    }
    
    .header .menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .h1 {
        font-size: 2.5rem;
    }
    
    .h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 24px 80px;
    }
    
    .section {
        padding: 60px 24px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
    }
}
