/*
Theme Name: SEBS
Theme URI: https://sproutbean.dev
Description: Sproutbean Engineering Build System — Blocksy child theme (SEBS v1).
Author: Sproutbean
Template: blocksy
Version: 1.0.0
Text Domain: sebs
*/

/* ==================================================
   SEBS — GLOBAL FILM GRAIN + TECH GRID
   HTML-faithful, Blocksy-safe, light mode only
================================================== */

#sebs-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.04;

    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Technical Grid Texture */
#sebs-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;

    background-image:
        linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);

    background-size: 40px 40px;

    mask-image: linear-gradient(
        to bottom,
        black 10%,
        transparent 95%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        black 10%,
        transparent 95%
    );
}