* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

a {
    color: #ffffff !important;
    text-decoration: none;
}

h1,
h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    letter-spacing: -0.05em;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: #000000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    height: 28px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #cccccc;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 4rem;
    position: relative;
}

.hero h1 {
    font-size: 20vw;
    line-height: 1;
}

.hero .letter {
    display: inline-block;
}

.hero p {
    font-size: 1.5rem;
    color: #cccccc;
    margin-top: 1rem;
}

/* ==================== SCROLL INDICATOR (MUCH HIGHER + SMOOTH) ==================== */
.scroll-indicator {
    position: absolute;
    bottom: 18vh;
    /* moved significantly higher up */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    opacity: 0;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.wheel {
    width: 4px;
    height: 11px;
    background: #ffffff;
    border-radius: 2px;
    animation: scrollWheel 2.5s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(13px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.6;
    }
}

.preview {
    position: fixed;
    top: 0;
    right: 0;
    width: 42vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111111;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    padding: 3rem;
    gap: 2rem;
}

.preview img {
    max-width: 85%;
    max-height: 55%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
}

.preview-desc {
    color: #aaaaaa;
    font-size: 1.05rem;
    text-align: center;
    max-width: 80%;
    line-height: 1.6;
}

/* Rest of your styles (works, cursor, footer, media queries) */
.works {
    padding: 8rem 4rem 15rem;
}

.works h2 {
    font-size: 3rem;
    margin-bottom: 5rem;
    color: #cccccc;
}

.works ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.works li {
    position: relative;
}

.project-number {
    position: absolute;
    left: -70px;
    top: 12px;
    font-size: 1.1rem;
    color: #555555;
    font-family: 'Clash Display', sans-serif;
}

.works a {
    font-size: 3.5rem;
    font-family: 'Clash Display', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    position: relative;
    padding-bottom: 12px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.works a:hover {
    transform: translateX(30px);
}

.works a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.works a:hover::after {
    width: 100%;
}

.tech-logos {
    display: inline-flex;
    gap: 16px;
    vertical-align: middle;
}

.tech-logos img {
    height: 32px;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.works a:hover .tech-logos img {
    transform: scale(1.12);
}

.verified {
    height: 36px;
    width: auto;
    margin-left: 8px;
}

footer {
    padding: 3rem 4rem 2rem;
    text-align: center;
    font-size: 1rem;
    color: #aaaaaa;
    border-top: 1px solid #222222;
}

#cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

#cursor-ring {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

#cursor-dot.hover,
#cursor-ring.hover {
    mix-blend-mode: difference;
}

#cursor-ring.hover {
    transform: translate(-50%, -50%) scale(1.6);
    border-width: 2px;
}

.no-cursor,
.no-cursor * {
    cursor: none !important;
}

@media (max-width: 767px) {
    nav {
        padding: 1.5rem 2rem;
    }

    .logo-icon {
        height: 24px;
    }

    .logo-text {
        font-size: 1.35rem;
    }

    .hero h1 {
        font-size: 15vw;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .works {
        padding: 4rem 2rem 12rem;
    }

    .works a {
        font-size: 2.6rem;
    }

    .tech-logos img {
        height: 26px;
    }

    .verified {
        height: 28px;
    }

    .project-number {
        left: -50px;
        font-size: 1rem;
    }

    footer {
        padding: 2rem 2rem 1.5rem;
        font-size: 0.95rem;
    }

    .preview {
        display: none;
    }

    .scroll-indicator {
        bottom: 14vh;
        gap: 8px;
    }

    .mouse {
        width: 22px;
        height: 36px;
    }

    .wheel {
        height: 9px;
    }
}