/* Base Styles */
body {
    font-feature-settings: "cv11", "ss01";
    background-color: #030303;
}

/* Grid Background - Container Aligned */
.grid-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    display: flex;
    justify-content: center;
}

.grid-inner {
    width: 100%;
    height: 100%;
    max-width: 80rem; /* max-w-7xl equivalent */
    display: flex;
    justify-content: space-between;
    padding: 0 1rem; /* match px-4 */
}

.grid-line-v {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
}

/* Utilities */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to bottom, #fff, #777);
}

.border-subtle {
    border-color: rgba(255, 255, 255, 0.03);
}

/* Font Classes */
.font-geist-mono {
    font-family: 'Geist Mono', monospace !important;
}

.font-geist {
    font-family: 'Geist', sans-serif !important;
}

.font-space-grotesk {
    font-family: 'Space Grotesk', sans-serif !important;
}

/* Solar Icon Fixes */
iconify-icon {
    display: inline-block;
    vertical-align: middle;
}

