@font-face {
    src: url('../fonts/Inter_18pt-Medium.ttf');
    font-family: 'Inter-Medium';
}
@font-face {
    src: url('../fonts/Inter_18pt-Bold.ttf');
    font-family: 'Inter-Bold';
}
@font-face {
    src: url('../fonts/Inter_18pt-Black.ttf');
    font-family: 'Inter-Black';
}
@font-face {
    src: url('../fonts/Inter_18pt-Regular.ttf');
    font-family: 'Inter-Regular';
}
@font-face {
    src: url('../fonts/Inter_18pt-SemiBold.ttf');
    font-family: 'Inter-SemiBold';
}
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
    border: none;
    box-sizing: border-box;
    font-family: 'Inter-Medium';
    transition-property: color, background-color, background, border-color, opacity, transform, box-shadow, filter, text-shadow;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}
html {
    scroll-behavior: smooth;
}
/* .swiper-button-next,  .swiper-button-prev {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */
a {
    text-decoration: none;
    color: var(--black);
}
img, video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
:root {
    /* Palette: ink, violet family, amber (cool accent uses brand purple, not teal) */
    --c-ink: #0c1222;
    --c-violet: #5b21b6;
    --c-violet-deep: #1e0b3a;
    --c-teal: #7c3aed;
    --c-amber: #f59e0b;

    --black: var(--c-ink);
    --white: #fff;
    --purpleDark: var(--c-violet-deep);
    --brandGray: #7c3aed;
    --brandGrayBold: var(--c-violet);
    --gray: rgba(12, 18, 34, 0.58);
    --accent: var(--c-amber);
    --accentLight: #fcd34d;
    --accentDeep: var(--c-teal);
    --surface: #f5f3ff;

    --grad-veil: linear-gradient(145deg, rgba(30, 11, 58, 0.94) 0%, rgba(91, 33, 182, 0.55) 42%, rgba(124, 58, 237, 0.48) 100%);
    --grad-cta: linear-gradient(108deg, #f59e0b 0%, #ea580c 48%, #fbbf24 100%);
    --grad-cta-cool: linear-gradient(108deg, #5b21b6 0%, #6d28d9 50%, #7c3aed 100%);
    --grad-surface: linear-gradient(165deg, #faf5ff 0%, #ede9fe 42%, #fffbeb 100%);
    --grad-band: linear-gradient(120deg, #1e0b3a 0%, #6d28d9 45%, #5b21b6 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
    --grad-shine: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);

    --radius: 14px;
    --radiusSm: 10px;
    --shadow: 0 4px 24px rgba(30, 11, 58, 0.12);
    --shadowHover: 0 12px 40px rgba(91, 33, 182, 0.18);
    --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.25);
}
:root {
    --forteen: 14px;
    --sixteen: 16px;
    --eighteen: 18px;
    --twenty: 20px;
    --fontTwentyTwo: 22px;
    --twofour: 24px;
    --titleFont: 40px;
}
.wrapper {
    max-width: 1620px;
    width: 100%;
    padding: 0 48px;
    margin: 0 auto;
}
.sto_ {
    width: 100%;
}
.error-border {
    border-color: red !important;
}
.full_wrapper {
    max-width: 1900px;
    width: 99%;
    margin: 0 auto;
    padding: 0 48px;
}
.d_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body{
    background: var(--grad-surface);
    background-attachment: fixed;
    color: var(--black);
}
body, html{
    overflow-x: hidden;
}

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

@keyframes grad-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes border-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.25); }
    50% { box-shadow: 0 0 32px 2px rgba(124, 58, 237, 0.22); }
}

@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
