@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-primary: #000000;
    --bg-secondary: #050505;
    --bg-card: rgba(255, 255, 255, 0.022);
    --bg-card-hover: rgba(255, 255, 255, 0.04);
    --bg-elevated: rgba(255, 255, 255, 0.05);
    --bg-input: rgba(255, 255, 255, 0.03);

    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --border-active: rgba(255, 255, 255, 0.24);

    --accent: #ffffff;
    --accent-light: #e7e7e7;
    --accent-dark: #c9c9c9;
    --accent-glow: rgba(255, 255, 255, 0.09);
    --accent-subtle: rgba(255, 255, 255, 0.04);

    --red: #ffffff;
    --orange: #ffffff;
    --green: #ffffff;
    --purple: #ffffff;
    --teal: #ffffff;
    --amber: #ffffff;

    --icon-bright: #d0d0d0;
    --icon-mid: #999999;
    --icon-dim: #666666;

    --text-primary: #f4f4f4;
    --text-secondary: #8a8a8a;
    --text-muted: #565656;
    --text-dark: #333333;

    --metallic-gradient: linear-gradient(135deg, #1a1a1a 0%, #555555 50%, #1a1a1a 100%);

    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 14px;
    --radius-pill: 999px;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-accent: none;

    --font-main: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-sans: 'Manrope', sans-serif;
    --font-primary: 'Manrope', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    text-rendering: geometricPrecision;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: clip;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #090909;
}

::-webkit-scrollbar-thumb {
    background-color: #2f2f2f;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555555;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    outline: 0;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
    outline: 0;
    border: 0;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 24px;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

.fade-in {
    opacity: 0;
    transition: opacity 420ms var(--ease-out);
}

.fade-in.in-view {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 460ms var(--ease-out),
        transform 460ms var(--ease-out);
}

.fade-in-up.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.fade-in-left {
    opacity: 0;
    transform: translate3d(-28px, 0, 0);
    transition:
        opacity 460ms var(--ease-out),
        transform 460ms var(--ease-out);
}

.fade-in-left.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.fade-in-right {
    opacity: 0;
    transform: translate3d(28px, 0, 0);
    transition:
        opacity 460ms var(--ease-out),
        transform 460ms var(--ease-out);
}

.fade-in-right.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.975);
    transition:
        opacity 420ms var(--ease-out),
        transform 420ms var(--ease-out);
}

.scale-in.in-view {
    opacity: 1;
    transform: scale(1);
}

html,
body,
button,
input,
textarea,
select,
option,
a,
span,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6,
label,
small,
strong,
code,
pre,
table,
th,
td {
    font-family: var(--font-main) !important;
}

@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.84;
    }

    50% {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -160% center;
    }

    100% {
        background-position: 160% center;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes count-up {
    from {
        opacity: 0;
        transform: translate3d(0, 8px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes border-draw {
    0% {
        opacity: 0;
        transform: scaleX(0.96);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes grain {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes borderPulse {
    0%, 100% {
        border-color: var(--border-color);
    }

    50% {
        border-color: var(--border-hover);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}