:root {
    --blue: #2563EB;
    --orange: #F97316;
    --green: #22C55E;
    --bg: #050505;
}

body {
    background-color: var(--bg);
    color: white;
    font-family: 'Syne', sans-serif;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    overflow-x: hidden;
}

/* Typography Fixes */
h3 { font-size: 1.5rem !important; font-weight: 800 !important; color: white !important; }
p { font-size: 1.1rem !important; line-height: 1.7 !important; color: #d4d4d8 !important; }

/* The Glass Engine */
.glass-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glow Stroke Engine */
.border-gradient-container {
    position: relative;
    border-radius: 2rem;
    padding: 2rem;
    background: #050505;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.border-gradient-container:hover {
    transform: translateY(-5px);
    border: 2px solid transparent;
    background-image: linear-gradient(#050505, #050505), linear-gradient(to right, var(--blue), var(--orange), var(--green));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 25px -5px rgba(37, 99, 235, 0.3);
}

/* Kinetic Elements */
.gradient-text {
    background: linear-gradient(to right, var(--blue), var(--orange), var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% auto;
    animation: textGradient 8s linear infinite;
}

@keyframes textGradient { to { background-position: 300% center; } }

/* Interactive Components */
.btn-primary {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: var(--blue) !important;
    color: white !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    font-weight: 900 !important;
    padding: 1.25rem 2.5rem !important;
    border-radius: 1rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1d4ed8 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4) !important;
}

/* Utility */
.noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.07;
    pointer-events: none;
    z-index: -1;
}