@import url(https://fonts.googleapis.com/css?family=Work+Sans:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

:root {
    --container-width: 1240px;

    --text-primary: #ffffff;
    --text-secondary: #e0d4df;
    --text-muted: #a89ca9;
    --text-inverse: #000000;

    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-tertiary: #2c2c2c;
    --bg-dark: #ffffff;

    --accent-primary: #e879f9;
    --accent-secondary: #f472b6;
    --accent-success: #34d399;
    --accent-warning: #fde047;
    --accent-danger: #f87171;

    --shadow-light: 0 1px 1px rgba(255, 255, 255, 0.04);
    --shadow-medium: 0 2px 4px rgba(255, 255, 255, 0.08);
    --shadow-strong: 0 6px 10px rgba(255, 255, 255, 0.12);

    --font-family: 'Work Sans', sans-serif;
    --font-size-xs: 13px;
    --font-size-sm: 15px;
    --font-size-base: 17px;
    --font-size-lg: 21px;
    --font-size-xl: 28px;
    --font-size-2xl: 36px;
    --font-size-3xl: 48px;

    --gap-xs: 4px;
    --gap-sm: 10px;
    --gap-md: 20px;
    --gap-lg: 30px;
    --gap-xl: 48px;
    --gap-2xl: 64px;

    --padding-xs: 4px;
    --padding-sm: 10px;
    --padding-md: 20px;
    --padding-lg: 30px;
    --padding-xl: 48px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition-fast: 160ms ease;
    --transition-normal: 300ms ease-in;
    --transition-slow: 500ms ease-out;
}

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
*::before,
*::after {
    display: inline-block;
}
html,
body {
    height: 100%;
    background: #121212;
    font-family: 'Work Sans', sans-serif;
    font-size: var(--font-size);
}
body {
    line-height: 1;
    scrollbar-gutter: stable;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
input,
button,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background-color: transparent;
}
input,
textarea {
    width: 100%;
}
label {
    display: inline-block;
}
button,
select,
option {
    cursor: pointer;
}
a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}
ul li {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

main {
    overflow-x: hidden;
}

.c-f59237de {
    background: #121212;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: 300ms ease-in;
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.c-07859e40 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.c-13d9a07b {
    position: absolute;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 21px;
    transition: 160ms ease;
    z-index: 9999;
}

.c-13d9a07b:hover {
    transform: scale(1.05);
}

.c-afec7e1b {
    font-size: 28px;
    background: linear-gradient(45deg, #e879f9, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c-2b8a2e9c {
    display: flex;
    align-items: center;
}

.c-574ffcf5 {
    display: flex;
    align-items: center;
    gap: 48px;
    background: #1e1e1e;
    padding: 10px 30px;
    border-radius: 32px;
    border: 1px solid #2c2c2c;
}

.c-69abc027 {
    color: #e0d4df;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 12px;
    transition: 160ms ease;
    position: relative;
    overflow: hidden;
}

.c-69abc027::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: 300ms ease-in;
}

.c-69abc027:hover::before {
    left: 100%;
}

.c-69abc027:hover {
    color: #e879f9;
    background: rgba(59, 130, 246, 0.05);
}

.header__menu-link--active {
    color: #e879f9;
    background: rgba(59, 130, 246, 0.1);
}

.header__theme-toggle {
    position: absolute;
    right: 20px;
    background: #1e1e1e;
    border: 1px solid #2c2c2c;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 160ms ease;
}

.header__theme-toggle:hover {
    background: #e879f9;
    color: #000000;
    transform: rotate(180deg);
}

.c-51ff4d9f {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: #1e1e1e;
    border: 1px solid #2c2c2c;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    transition: 160ms ease;
    position: absolute;
    right: 20px;
}

.c-51ff4d9f:hover {
    background: #e879f9;
    transform: scale(1.05);
}

.c-cdf6f6ca {
    width: 18px;
    height: 2px;
    background: #ffffff;
    margin: 2px 0;
    transition: 160ms ease;
    border-radius: 2px;
}

.c-51ff4d9f:hover .c-cdf6f6ca {
    background: #000000;
}

.header__burger--active {
    background: #e879f9;
}

.header__burger--active .c-cdf6f6ca {
    background: #000000;
}

.header__burger--active .c-cdf6f6ca:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.header__burger--active .c-cdf6f6ca:nth-child(2) {
    opacity: 0;
}

.header__burger--active .c-cdf6f6ca:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.c-d3447762 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: 300ms ease-in;
    z-index: 999;
}

.header__overlay--active {
    opacity: 1;
    visibility: visible;
}

.c-cec1c85e {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    transform: scale(0.9) translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: 300ms ease-in;
    z-index: 1000;
    overflow-y: auto;
    padding: 48px 20px;
}

.header__mobile-menu--active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.c-3f2f117a {
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
    padding: 30px 48px;
    border-radius: 32px;
    transition: 160ms ease;
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
    min-width: 250px;
    background: #1e1e1e;
    border: 1px solid #2c2c2c;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.header__mobile-menu--active .c-3f2f117a {
    opacity: 1;
    transform: translateY(0);
}

.c-3f2f117a:nth-child(1) {
    transition-delay: 0.1s;
}
.c-3f2f117a:nth-child(2) {
    transition-delay: 0.2s;
}
.c-3f2f117a:nth-child(3) {
    transition-delay: 0.3s;
}
.c-3f2f117a:nth-child(4) {
    transition-delay: 0.4s;
}
.c-3f2f117a:nth-child(5) {
    transition-delay: 0.5s;
}

.c-3f2f117a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: 300ms ease-in;
}

.c-3f2f117a:hover::before {
    left: 100%;
}

.c-3f2f117a:hover {
    color: #e879f9;
    background: rgba(59, 130, 246, 0.05);
    transform: scale(1.05);
    border-color: #e879f9;
}

.header__mobile-menu-link--active {
    color: #e879f9;
    background: rgba(59, 130, 246, 0.1);
    border-color: #e879f9;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.c-4f6c9c6e {
    background-color: #ffffff;
    color: #000000;
    padding: 48px 0;
}

.c-42e73301 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.c-e95a6b79 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.c-88043500 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-727d2fda {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 10px;
}

.c-727d2fda i {
    color: #e879f9;
    font-size: 28px;
}

.c-16b5819b {
    color: #a89ca9;
    line-height: 1.5;
    margin-bottom: 20px;
}

.c-c18fd810 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.c-c18fd810::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #e879f9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #a89ca9;
    transition: color 160ms ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-link:hover {
    color: #e879f9;
    transform: translateX(5px);
}

.footer-link i {
    font-size: 10px;
}

.c-9b6481eb {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.c-089c1eb1 {
    color: #e879f9;
    margin-top: 3px;
}

.c-fa9e7673 {
    color: #a89ca9;
    line-height: 1.5;
}

.c-0719e419 {
    margin-top: 10px;
}

.c-7ae607e0 {
    color: #a89ca9;
    line-height: 1.5;
    margin-bottom: 20px;
}

.c-d01be621 {
    display: flex;
    gap: 10px;
}

.c-ada641df {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 6px;
    color: #000000;
}

.c-ada641df::placeholder {
    color: #a89ca9;
}

.c-0f2547e6 {
    background-color: #e879f9;
    color: #000000;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background-color 160ms ease;
}

.c-0f2547e6:hover {
    background-color: #f472b6;
}

.c-0391c0e4 {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.c-a77a65f8 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #a89ca9;
    transition: all 160ms ease;
}

.c-a77a65f8:hover {
    background-color: #e879f9;
    color: #000000;
    transform: translateY(-3px);
}

.c-14c30942 {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.c-aba4a6a0 {
    color: #a89ca9;
    font-size: 15px;
}

.c-eef97b8a {
    display: flex;
    gap: 30px;
}

.c-e12abcb9 {
    color: #a89ca9;
    font-size: 15px;
    transition: color 160ms ease;
}

.c-e12abcb9:hover {
    color: #e879f9;
}

.c-2d814cc0 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Work Sans', sans-serif;
    color: #ffffff;
    background-color: #121212;
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.04);
    line-height: 1.6;
    font-size: 17px;
}

.c-2d814cc0 h1,
.c-2d814cc0 h2,
.c-2d814cc0 h3,
.c-2d814cc0 h4 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.c-2d814cc0 h1 {
    font-size: 48px;
}

.c-2d814cc0 h2 {
    font-size: 36px;
}

.c-2d814cc0 h3 {
    font-size: 28px;
}

.c-2d814cc0 h4 {
    font-size: 21px;
}

.c-2d814cc0 p,
.c-2d814cc0 li {
    color: #e0d4df;
    font-size: 17px;
}

.c-2d814cc0 ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.c-2d814cc0 ul li {
    margin-bottom: 0.5rem;
}

.c-2d814cc0 a {
    color: #e879f9;
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

.c-2d814cc0 a:hover {
    color: #f472b6;
}

.c-2d814cc0 strong {
    color: #ffffff;
    font-weight: 600;
}

.c-2d814cc0 code {
    background-color: #2c2c2c;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .c-574ffcf5 {
        gap: 20px;
        padding: 4px 20px;
    }

    .c-69abc027 {
        padding: 4px 10px;
        font-size: 15px;
    }

    .c-13d9a07b {
        position: static;
    }

    .header__theme-toggle {
        position: static;
        margin-left: 20px;
    }

    .c-07859e40 {
        justify-content: space-between;
    }
    .c-2b8a2e9c,
    .header__theme-toggle {
        display: none;
    }

    .c-51ff4d9f {
        display: flex;
    }

    .c-07859e40 {
        justify-content: space-between;
        padding: 20px;
    }

    .c-13d9a07b {
        position: static;
        transform: translateX(0);
    }

    .c-574ffcf5 {
        display: none;
    }
}
@media (max-width: 480px) {
    .c-3f2f117a {
        font-size: 28px;
        min-width: 200px;
        padding: 20px 30px;
    }

    .c-cec1c85e {
        gap: 30px;
        padding: 30px 10px;
    }
}
@media (max-width: 768px) {
    .c-14c30942 {
        flex-direction: column;
    }

    .c-eef97b8a {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .c-2d814cc0 {
        padding: 1rem;
        font-size: 15px;
    }

    .c-2d814cc0 h1 {
        font-size: 36px;
    }

    .c-2d814cc0 h2 {
        font-size: 28px;
    }

    .c-2d814cc0 h3 {
        font-size: 21px;
    }
}
