/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

/* === CUSTOM ANIMATIONS === */
@keyframes reveal {
    0% { transform: scaleX(0); transform-origin: left; }
    100% { transform: scaleX(1); transform-origin: left; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* === EFFECTS === */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    z-index: 100;
}

.gradient-mesh {
    background-color: #f9f9f9;
    background-image: 
        radial-gradient(at 0% 0%, hsla(215, 100%, 50%, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(215, 100%, 50%, 0.05) 0px, transparent 50%);
}

.text-stroke {
    -webkit-text-stroke: 1px currentColor;
    color: transparent;
}

/* === MODULE STYLES === */

.prose h1 { @apply text-4xl font-display font-bold mb-8 text-primary; }
.prose h2 { @apply text-3xl font-display font-bold mb-6 mt-12 text-primary; }
.prose p { @apply text-xl text-gray-600 mb-6 leading-relaxed; }
.prose ul { @apply list-disc pl-6 mb-8 space-y-3 text-gray-600 text-lg; }
.prose strong { @apply text-primary font-bold; }

/* Scroll animation trigger */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom button hover effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
}

.btn-shine:hover::after {
    left: 100%;
    top: 100%;
}
