/* High-end Editorial CSS */
:root {
    --black: #000000;
    --offwhite: #F4F4F5;
    --accent: #38bdf8;
}

body {
    background-color: var(--black);
    color: var(--offwhite);
    overflow-x: hidden;
}

/* Hide scrollbar for a cleaner look */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Ambient glow following mouse */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    transition: width 0.3s, height 0.3s;
}

/* Make sure text elements stand out */
.reveal-text, .hero-line, .section-title, .reveal-p {
    opacity: 0;
    transform: translateY(40px);
}

.ai-card {
    will-change: transform, opacity;
}

/* Masking utilities */
.mask-image-gradient {
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
