/* MediBilling Tech Design Styles */
:root {
    --indigo-accent: #4338CA;
    --soft-periwinkle: #E0E7FF;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

.glass-card, .glass-panel {
    background: rgba(224, 231, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    user-select: none;
}

/* Bento Grid Responsive */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .bento-grid {
        gap: 16px;
    }
}

/* Mobile Friendly Touch Targets & Typography */
@media (max-width: 640px) {
    h1.text-headline-xl {
        font-size: 28px !important;
        line-height: 36px !important;
    }
    h2.text-headline-lg {
        font-size: 24px !important;
        line-height: 30px !important;
    }
    h3.text-headline-md {
        font-size: 20px !important;
        line-height: 26px !important;
    }
}

img {
    max-width: 100%;
    height: auto;
}
