@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('assets/fonts/Manrope/Manrope-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Material Symbols Rounded';
    font-style: normal;
    font-weight: 100 700;
    font-display: block;
    src: url('assets/icons/Material_Symbols_Rounded/MaterialSymbolsRounded-VariableFont_FILL,GRAD,opsz,wght.ttf') format('truetype');
}

.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal !important;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    font-variant-ligatures: discretionary-ligatures;
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    font-family: 'Inter', sans-serif;
}

.bg-deep {
    background: linear-gradient(135deg, #e8003f 0%, #6600aa 50%, #003fb1 100%);
}

.bg-deep::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

@keyframes pulse-cyan {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.animate-pulse-cyan {
    animation: pulse-cyan 3s ease-in-out infinite;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-up-1 { animation: fade-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s both; }
.fade-up-2 { animation: fade-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.25s both; }
.fade-up-3 { animation: fade-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both; }
.fade-up-4 { animation: fade-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.55s both; }

.contact-link:hover .icon-wrap {
    background: rgba(0, 212, 232, 0.2);
}
