::selection {
    background: #ffffff;
    color: #000000;
}

::-moz-selection {
    background: #ffffff;
    color: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    overscroll-behavior: none;
}

.hover-link {
    transition: color 0.3s ease;
}

.hover-link:hover {
    color: #ffffff !important;
}

.mono-tag {
    cursor: crosshair;
}

.focus-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: transform 0.1s linear, filter 0.1s linear, opacity 0.1s linear;
    will-change: transform, filter, opacity;
    padding-top: 120px;
    padding-bottom: 120px;
    scroll-margin-top: 80px;
}

#clients.focus-section,
#services.focus-section {
    justify-content: flex-start;
}

.hero-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.88;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0;
    color: white;
    white-space: nowrap;
    letter-spacing: -0.035em;
}

.hero-shell {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, max-content);
    justify-content: center;
    justify-items: stretch;
    text-align: center;
    gap: 1.75rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
}

.hero-rule {
    height: 1px;
    background: #222;
    width: 80px;
    justify-self: center;
}

.hero-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #888;
    max-width: 46ch;
    margin: 0;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.reveal-mask {
    display: block;
    overflow: hidden;
    padding: 0.25em 0;
    margin: -0.15em 0;
}

.reveal-text {
    display: block;
    transform: translateY(110%);
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    color: white;
}

.reveal-delay-1 {
    animation-delay: 0.1s;
}

.reveal-delay-2 {
    animation-delay: 0.2s;
}

.reveal-delay-3 {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

header {
    animation: headerSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(-100%);
}

@keyframes headerSlide {
    to {
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.3s ease, border 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.btn--primary::after {
    border-color: rgba(0, 0, 0, 0.2);
}

.btn:hover::after {
    animation: btnRipple 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes btnRipple {
    from {
        transform: translate(-50%, -50%) scale(0);
        border-width: 8px;
        opacity: 1;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        border-width: 0;
        opacity: 0;
    }
}

.btn--primary {
    background: white;
    color: black;
    border: 1px solid white;
}

.btn--primary:hover {
    background: #ccc;
    border-color: #ccc;
}

.btn--outline {
    border: 1px solid #333;
    color: #888;
    background: transparent;
}

.btn--outline:hover {
    border-color: white;
    color: white;
}

.section-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    line-height: 1;
    color: #fff;
}

.svc-list {
    border-top: 1px solid #1e1e1e;
}

.svc-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.25rem 1.5rem 2.25rem 2rem;
    border-bottom: 1px solid #1e1e1e;
    position: relative;
}

.svc-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.svc-row:hover::before {
    opacity: 1;
}

.svc-row>* {
    position: relative;
    z-index: 1;
}

.svc-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #555;
    width: 3rem;
    flex-shrink: 0;
    padding-top: 0.75rem;
}

.svc-body {
    flex: 1;
}

.svc-body h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 0.5rem;
}

.svc-body p {
    color: #888;
    font-weight: 300;
    max-width: 60ch;
    margin: 0;
}

.cta-slab {
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cta-slab:hover {
    background: #0d0d0d;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

.cta-slab h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1;
    color: #fff;
    margin: 0;
}

@media (max-width: 640px) {
    .svc-row {
        gap: 1rem;
        padding-right: 0;
    }

    .svc-num {
        width: 2rem;
    }

    .cta-slab {
        padding: 1.75rem;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: #333;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.loader {
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-bottom-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.client-list {
    border-top: 1px solid #1e1e1e;
}

.client-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-bottom: 1px solid #1e1e1e;
    position: relative;
    opacity: 0;
}

.client-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.client-row:hover::before {
    opacity: 1;
}

.client-row>* {
    position: relative;
    z-index: 1;
}

.client-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #555;
    width: 3rem;
    flex-shrink: 0;
}

.client-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid #333;
    background: #111;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-avatar i {
    font-size: 1.25rem;
}

.client-body {
    flex: 1;
    min-width: 0;
}

.client-body h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.client-body p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

.client-links {
    display: flex;
    gap: 1rem;
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .client-row {
        gap: 1rem;
        padding-right: 0;
        flex-wrap: wrap;
    }

    .client-num {
        width: 2rem;
    }

    .client-links {
        width: 100%;
        padding-left: 3rem;
    }
}

.mdi--twitch,
.ic--baseline-tiktok,
.ic--baseline-discord,
.ri--kick-fill {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    vertical-align: middle;
}

.mdi--twitch {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11.64 5.93h1.43v4.28h-1.43m3.93-4.28H17v4.28h-1.43M7 2L3.43 5.57v12.86h4.28V22l3.58-3.57h2.85L20.57 12V2m-1.43 9.29l-2.85 2.85h-2.86l-2.5 2.5v-2.5H7.71V3.43h11.43Z'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
}

.ic--baseline-tiktok {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M16.6 5.82s.51.5 0 0A4.28 4.28 0 0 1 15.54 3h-3.09v12.4a2.59 2.59 0 0 1-2.59 2.5c-1.42 0-2.6-1.16-2.6-2.6c0-1.72 1.66-3.01 3.37-2.48V9.66c-3.45-.46-6.47 2.22-6.47 5.64c0 3.33 2.76 5.7 5.69 5.7c3.14 0 5.69-2.55 5.69-5.7V9.01a7.35 7.35 0 0 0 4.3 1.38V7.3s-1.88.09-3.24-1.48'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
}

.ic--baseline-discord {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19.27 5.33C17.94 4.71 16.5 4.26 15 4a.1.1 0 0 0-.07.03c-.18.33-.39.76-.53 1.09a16.1 16.1 0 0 0-4.8 0c-.14-.34-.35-.76-.54-1.09c-.01-.02-.04-.03-.07-.03c-1.5.26-2.93.71-4.27 1.33c-.01 0-.02.01-.03.02c-2.72 4.07-3.47 8.03-3.1 11.95c0 .02.01.04.03.05c1.8 1.32 3.53 2.12 5.24 2.65c.03.01.06 0 .07-.02c.4-.55.76-1.13 1.07-1.74c.02-.04 0-.08-.04-.09c-.57-.22-1.11-.48-1.64-.78c-.04-.02-.04-.08-.01-.11c.11-.08.22-.17.33-.25c.02-.02.05-.02.07-.01c3.44 1.57 7.15 1.57 10.55 0c.02-.01.05-.01.07.01c.11.09.22.17.33.26c.04.03.04.09-.01.11c-.52.31-1.07.56-1.64.78c-.04.01-.05.06-.04.09c.32.61.68 1.19 1.07 1.74c.03.01.06.02.09.01c1.72-.53 3.45-1.33 5.25-2.65c.02-.01.03-.03.03-.05c.44-4.53-.73-8.46-3.1-11.95c-.01-.01-.02-.02-.04-.02M8.52 14.91c-1.03 0-1.89-.95-1.89-2.12s.84-2.12 1.89-2.12c1.06 0 1.9.96 1.89 2.12c0 1.17-.84 2.12-1.89 2.12m6.97 0c-1.03 0-1.89-.95-1.89-2.12s.84-2.12 1.89-2.12c1.06 0 1.9.96 1.89 2.12c0 1.17-.83 2.12-1.89 2.12'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
}

.ri--kick-fill {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M3 3h18v18H3zm7.564 2.536h-4.31v12.928h4.31V15.59H12v1.436h1.436v1.436h4.31v-4.309h-1.437v-1.436h-1.436v-1.436h1.436V9.845h1.436V5.536h-4.309v1.436H12V8.41h-1.436z'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
}

.about-body {
    max-width: 60ch;
    margin: 1.5rem auto 0;
    color: #888;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.7;
}

.review-avg {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.review-slide {
    border: 1px solid #222;
    padding: 2rem;
    width: 85vw;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: center;
    transition: border-color 0.3s ease;
}

@media (min-width: 768px) {
    .review-slide {
        width: 400px;
    }
}

.review-slide:hover {
    border-color: #444;
}

.review-author {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.to-top:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

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

    .to-top {
        transition: opacity 0.2s ease;
        transform: none;
    }

    .reveal-text {
        animation: none;
        transform: none;
    }

    .fade-in-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    header {
        animation: none;
        transform: none;
    }

    .focus-section {
        transition: none;
        transform: none;
        filter: none;
        opacity: 1;
    }

    .client-row {
        animation: none;
        opacity: 1;
    }

    .btn:hover::after {
        animation: none;
    }
}