/* Custom Design System Utilities for Agis Tipiani */

/* The Glass & Gradient Rule */
.glass-effect {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.6);
    /* Ghost Border Fallback */
    border: 1px solid rgba(187, 201, 204, 0.15); 
}

/* Primary Hero Actions Gradient */
.signature-gradient {
    background: linear-gradient(135deg, #307ac0 0%, #d5e3f4 100%);
    color: #ffffff;
}

.signature-gradient:hover {
    background: linear-gradient(135deg, #2765a0 0%, #c4d7ec 100%);
}

/* The Layering Principle Shadows */
.ambient-shadow {
    box-shadow: 0 12px 48px rgba(48, 122, 192, 0.06);
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6, .font-headline {
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.02em;
}

body, p, span, a, label, .font-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}
