/* Custom styles beyond Tailwind utility classes */

/* Premium Brand Gradient */
.premium-gradient { 
    background: linear-gradient(135deg, #003ec7 0%, #0052ff 100%); 
}
.premium-gradient-text {
    background: linear-gradient(135deg, #003ec7 0%, #0052ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Base element styles for generated content */
.prose h1, .prose h2, .prose h3 {
    font-family: 'Manrope', sans-serif;
    color: #191c1e;
    font-weight: 700;
}
.prose h1 { font-size: 2.25rem; line-height: 2.5rem; margin-bottom: 2rem; }
.prose h2 { font-size: 1.5rem; line-height: 2rem; margin-top: 2rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.25rem; line-height: 1.75rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1rem; color: #434656; }
.prose ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; color: #434656; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: #003ec7; text-decoration: none; font-weight: 500; }
.prose a:hover { text-decoration: underline; color: #0052ff; }
.prose strong { font-weight: 600; color: #191c1e; }

/* Focus outlines for accessibility */
*:focus-visible {
    outline: 2px solid #0052ff;
    outline-offset: 2px;
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Waitlist form styles */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}
.toast-success { background-color: #005a3c; }
.toast-error { background-color: #ba1a1a; }
