:root {
    --bg-color: #0e0e0e;
    --text-main: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #ffffff;
    --accent-text: #0e0e0e;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --site-width: 1200px;
    --site-padding: 60px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 100% 0%, rgba(40, 44, 52, 0.4) 0%, transparent 40%), radial-gradient(circle at 0% 100%, rgba(30, 30, 30, 0.3) 0%, transparent 40%), radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

p,
h1,
a,
span,
h2,
h3,
h4,
h5,
h6 {
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, var(--bg-color) 0%, rgba(14, 14, 14, 0) 100%);
}

.container {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 var(--site-padding);
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--text-main);
}

.logo-icon {
    width: auto;
    height: 37px;
    filter: brightness(0) invert(1);
}

.contact-top {
    display: flex;
    gap: 30px;
}

.contact-top a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-top a:hover {
    color: var(--text-main);
}

main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 1100px;
    margin-top: 60px;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.sub-headline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 45px;
    max-width: 650px;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 100px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.03), 0 4px 20px rgba(0, 0, 0, 0.3);
    color: var(--text-secondary);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    color: var(--text-main);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1), 0 0 15px rgba(255, 255, 255, 0.1), 0 10px 40px rgba(0, 0, 0, 0.4);
}

.btn-primary svg,
.btn-secondary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
    opacity: 0.7;
}

.btn-primary:hover svg,
.btn-secondary:hover svg {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

.clients-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.clients-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

.client-logo {
    height: 59px;
    width: auto;
    filter: grayscale(1) brightness(10);
    opacity: 0.3;
    transition: var(--transition);
    flex-shrink: 0;
    padding-right: 100px;
}

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

    100% {
        transform: translate3d(-33.3333%, 0, 0);
    }
}

@media (max-width:900px) {
    :root {
        --site-padding: 40px;
    }

    .header-container {
        padding-top: 45px;
    }

    .contact-top {
        display: none;
    }

    h1 {
        letter-spacing: -1px;
    }

    .cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 50px;
    }

    .hero-content {
        margin-top: 120px;
    }

    header {
        background: linear-gradient(to bottom, var(--bg-color) 60%, rgba(14, 14, 14, 0) 100%);
    }
}