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

body {
    font-family: 'Wix Madefor Text', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
}

a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 14px 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 14px 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px) saturate(160%);
}

.header__inner::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 999px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 40%,
            rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo-text {
    font-size: 20px;
    letter-spacing: 1.8px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.header__logo-text-small {
    font-size: 11px;
    opacity: 0.55;
    margin-top: 2px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.header__menu-toggle {
    display: none;
    position: relative;
    width: 34px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.header__menu-toggle span {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.2s ease;
    border-radius: 2px;
    transform-origin: center;
}

.header__menu-toggle span:nth-child(1) {
    top: 4px;
}

.header__menu-toggle span:nth-child(2) {
    top: 11px;
}

.header__menu-toggle span:nth-child(3) {
    top: 18px;
}

.header__menu-close {
    position: absolute;
    top: calc(24px + env(safe-area-inset-top));
    right: 24px;
    width: 34px;
    height: 34px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.header__menu-close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform-origin: center;
}

.header__menu-close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.header__menu-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.header__menu {
    display: block;
}

.header__menu--mobile {
    display: none;
}

.header__menu ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header__menu li {
    margin: 0;
    padding: 0;
}

.header__menu a {
    font-size: 12.5px;
    letter-spacing: 0.3px;
    opacity: 0.75;
    transition: opacity 0.3s ease;
    display: block;
}

.header__menu a:hover {
    opacity: 1;
}

.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px;
    overflow: hidden;
    background-color: #000;
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 2;
}

.hero .container {
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    padding: 0 20px;
    will-change: transform;
}

.hero__title {
    font-size: 50px;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 640px;
    margin: 0 auto 32px;
}

.hero__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__button {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #000;
    padding: 15px 34px;
    font-size: 15px;
    font-family: 'Wix Madefor Text', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    display: inline-block;
}

.hero__button:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.hero__button--secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.85);
    box-shadow: none;
}

.hero__button--secondary:hover {
    background: rgba(255, 255, 255, 0.06);
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    animation: scrollPulse 1.6s ease-in-out infinite;
    z-index: 3;
    pointer-events: auto;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.hero__scroll:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin-top: -2px;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.35;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.85;
        transform: translateX(-50%) translateY(-6px);
    }
}

.footer {
    padding: 80px 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__logo-text {
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.footer__logo-text-small {
    font-size: 11px;
    opacity: 0.55;
    margin-top: 0;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.footer__email {
    font-size: 14px;
    display: block;
    margin-bottom: 16px;
}

.footer__links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__link {
    font-size: 13px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer__link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .header__menu-toggle {
        display: flex;
    }

    .header__inner {
        padding: 14px 20px;
        border-radius: 999px;
    }

    .header__menu--desktop {
        display: none;
    }

    .header__menu--mobile {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        border: none;
        transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
        z-index: 1000;
        padding: calc(90px + env(safe-area-inset-top)) 30px 30px;
        margin: 0;
        overflow-y: auto;
        display: block;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
    }

    .header__menu--mobile.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .header__menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .header__menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header__menu a {
        display: block;
        padding: 18px 0;
        font-size: 15px;
        width: 100%;
        opacity: 0.9;
    }

    .header__menu a:hover {
        opacity: 1;
        padding-left: 8px;
    }

    .hero {
        max-height: none;
        padding-top: 100px;
    }

    .hero__inner {
        flex-direction: column;
        align-items: center;
    }

    .hero__content {
        max-width: none;
        text-align: center;
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__button {
        padding: 12px 22px;
        font-size: 14px;
    }

    .footer__content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header__inner {
        padding: 12px 16px;
        border-radius: 999px;
    }

    .header__logo-text {
        font-size: 18px;
    }

    .header__logo-text-small {
        font-size: 11px;
    }

    .header__menu--mobile {
        width: 100%;
        inset: 0;
        height: 100dvh;
        transform: translateX(100%);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .header__menu--mobile.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .hero {
        min-height: 70vh;
        padding-top: 100px;
    }

    .hero__title {
        font-size: 22px;
    }
}