* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
*::-webkit-scrollbar {
    display: none;
}
body {
    font-family:
        "Space Grotesk",
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif;
    overflow: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    color:#fff;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.header > div{
    flex:1;
}

.header-left{
    text-align: left;
}

.header-center{
    text-align: center;
    font-size:0.875em;
    letter-spacing: 0.05em;
    font-weight: 300;

}

.header-right{
    text-align: right;
}

.logo {
    color: #fff;
    font-size: 1.125rem;
    letter-spacing: 0.025em;
    font-weight: 700;
    margin: 0;
}

.glitch{
    position: relative;
    font-weight: bold;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch::before{
    animation: glitch-1 0.5s infinite;
    color: #0ff;
    z-index: -1;
}

.glitch::after{
    animation: glitch-2 0.5s infinite;
    color: #f0f;
    z-index: -2;
}

@keyframes glitch-1{
    0% {
        clip-path: inset(40% 0 61% 0);
        transform: translate(-2px, -2px);
        opacity: 0;
    }

    20% {
        clip-path: inset(92% 0 1% 0);
        transform: translate(2px, 2px);
        opacity: 1;
    }

    40% {
        clip-path: inset(43% 0 1% 0);
        transform: translate(-2px, 0);
        opacity: 1;
    }

    60% {
        clip-path: inset(25% 0 58% 0);
        transform: translate(2px, 0);
        opacity: 1;
    }

    80% {
        clip-path: inset(54% 0 7% 0);
        transform: translate(-1px, 0);
        opacity: 1;
    }

    100% {
        clip-path: inset(58% 0 43% 0);
        transform: translate(0);
        opacity: 0;
    }
}

@keyframes glitch-2{
    0% {
        clip-path: inset(65% 0 35% 0);
        transform: translate(2px, -2px);
        opacity: 0;
    }

    20% {
        clip-path: inset(31% 0 65% 0);
        transform: translate(-2px, 2px);
        opacity: 1;
    }

    40% {
        clip-path: inset(39% 0 25% 0);
        transform: translate(1px, 0);
        opacity: 1;
    }

    60% {
        clip-path: inset(85% 0 5% 0);
        transform: translate(-1px, 1px);
        opacity: 1;
    }

    80% {
        clip-path: inset(21% 0 14% 0);
        transform: translate(2px, -1px);
        opacity: 1;
    }

    100% {
        clip-path: inset(85% 0 5% 0);
        transform: translate(0);
        opacity: 0;
    }
}

.about-btn {
    color: #fff;
    border:none;
    background: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}
.email-btn {
    color: #fff;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    pointer-events: all;
    display: none;
}
.email-btn:hover {
    background: #ffffff1a;
    border-color: #fff9;
}
.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    pointer-events: all;
}
.social-link {
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background-color: rgb(255 255 255 / 0.1);
    border: 1px solid rgb(255 255 255 / 0.2);
    border-radius: 9999px;
}
.social-link:hover {
    transform: scale(1.1);
    background-color:rgb(255 255 255 / 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.social-link svg {
    stroke: currentColor;
}
.popup-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    background: #0000;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.popup-overlay.open {
    background: #000c;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 1;
    pointer-events: all;
}
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    background: #141414f2;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 90%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(-50%, -50%) scale(0.95);
}
.popup.open {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}
.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff1a;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.popup-close:hover {
    background: #fff3;
}
.popup-close svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
}
.popup-content {
    color: #fff;
}
.popup-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.popup-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fffc;
    margin-bottom: 0.75rem;
}
.popup-content a {
    color: #ffffffe6;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.popup-content a:hover {
    border-bottom-color: #ffffffb3;
}
.container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.parallax-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.parallax-layer.active {
    transform: scale(1);
}
.parallax-layer.inactive {
    transform: scale(1.05);
}
.video-section video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0000004d;
}
.video-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.video-title {
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0 1rem;
    display: none;
}
.play-button {
    position: relative;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff3;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 2px solid rgb(255 255 255 / 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.play-button:hover {
    background: #ffffff4d;
    transform: scale(1.0);
}
.play-button svg {
    width: 1.3rem;
    height: 1.3rem;
    color: #fff;
    fill: #fff;
    margin-left: 0.25rem;
}
@keyframes pulse-ring {
    from {
        transform: scale(.25);
        opacity: 0;
    }
    50%{
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}
.play-button:before {
    content: "";
    position: absolute;
    width: 5rem;
    height: 5rem;
    border: solid rgb(255 255 255 / 0.1) 2px;
    border-radius: 50%;
    animation: pulse-ring 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.loading-spinner {
    width: 5rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading-spinner svg {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.navigation-menu {
    position: fixed;
    right: 2rem;
    top: 50%;
    min-width: 320px;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.nav-item {
    text-align: right;
    transition: all 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
}
.nav-item.active {
    opacity: 1;
}
.nav-item.inactive {
    opacity: 0.4;
}
.nav-item.inactive:hover {
    opacity: 0.7;
}
.nav-item-content {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.75rem;
}
.nav-item-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px;
}
.nav-item.active .nav-item-title {
    font-size: 1.1rem;
    font-weight: 600;
}
.nav-item.inactive .nav-item-title {
    font-size: 0.95rem;
}
.nav-item-dot {
    border-radius: 50%;
    background: #fff;
    border:2px solid #FFF;
    transition: all 0.3s ease;
}
.nav-item.active .nav-item-dot {
    width: 0.75rem;
    height: 0.75rem;
}
.nav-item.inactive .nav-item-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: transparent;
}
.nav-counter {
    text-align: left;
    margin-top: 0.5rem;
}
.nav-counter-text {
    color: #fff9;
    font-size: 0.75rem;
    font-weight: 500;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000000f2;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.modal.open {
    display: flex;
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff1a;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.modal-close:hover {
    background: #fff3;
}
.modal-close svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}
.modal-content {
    width: 100%;
    max-width: 72rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.modal-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.modal-video-wrapper video {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px #00000080;
}
.modal-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.modal-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff1a;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.modal-nav-btn:hover:not(:disabled) {
    background: #fff3;
}
.modal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.modal-nav-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
}
.modal-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.modal-dot {
    border-radius: 9999px;
    background: #fff6;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}
.modal-dot:hover:not(.active) {
    background: #fff9;
}
.modal-dot.active {
    width: 2rem;
    height: 0.5rem;
    background: #fff;
}
.modal-dot.inactive {
    width: 0.5rem;
    height: 0.5rem;
}
@media (max-width: 1024px) {
    .logo {
        font-size: 1.25rem;
    }
    .video-title {
        font-size: 3rem;
    }
    .play-button {
        width: 4.5rem;
        height: 4.5rem;
    }
    .play-button svg {
        width: 1.75rem;
        height: 1.75rem;
    }
    .navigation-menu {
        right: 1rem;
        top: auto;
        bottom: 5rem;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        width: auto;
        transform: none;
    }
    .nav-item-content {
        flex-direction: row;
        gap: 0.5rem;
    }

    .nav-counter {
        text-align: right;
    }

    .modal-content {
        max-width: 90%;
    }
}
@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }
    .logo {
        font-size: 1.1rem;
    }
    .about-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    .footer {
        padding: 1.5rem;
    }
    .email-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    .social-links {
        gap: 1rem;
    }

    .popup {
        padding: 1.5rem;
        max-width: 90%;
    }
    .popup-content h2 {
        font-size: 1.25rem;
    }
    .popup-content p {
        font-size: 0.9rem;
    }
    .video-title {
        font-size: 2rem;
    }
    .video-content {
        gap: 1.5rem;
    }
    .play-button {
        width: 4rem;
        height: 4rem;
    }
    .play-button svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    .navigation-menu {
        right: 1rem;
        top: auto;
        bottom: 4rem;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        width: auto;
        transform: none;
    }
    .nav-item-content {
        flex-direction: row;
        gap: 0.5rem;
    }
    .nav-item-title {
        font-size: 0.7rem;
    }
    .nav-item.active .nav-item-title {
        font-size: 0.8rem;
    }
    .nav-counter {
        margin-top: 0;
    }
    .nav-counter-text {
        font-size: 0.65rem;
    }
    .modal-content {
        max-width: 95%;
        gap: 1.5rem;
    }
    .modal-close {
        width: 2.5rem;
        height: 2.5rem;
        top: 1rem;
        right: 1rem;
    }
    .modal-close svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    .modal-nav-btn {
        width: 2rem;
        height: 2rem;
    }
    .modal-nav-btn svg {
        width: 1rem;
        height: 1rem;
    }
    .modal-controls {
        gap: 0.75rem;
    }
    .modal-dots {
        gap: 0.4rem;
    }
    .modal-dot.active {
        width: 1.5rem;
        height: 0.4rem;
    }
    .modal-dot.inactive {
        width: 0.4rem;
        height: 0.4rem;
    }
}
@media (max-width: 480px) {
    .header {
        padding: 0.75rem 1rem;
    }
    .logo {
        font-size: 0.95rem;
    }
    .about-btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
    }
    .footer {
        padding: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .email-btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
        order: 2;
    }
    .social-links {
        gap: 0.75rem;
        order: 1;
        width: 100%;
        justify-content: center;
    }
    .social-link {
        
    }
    .popup {
        padding: 1.25rem;
        max-width: 95%;
    }
    .popup-close {
        width: 2rem;
        height: 2rem;
        top: 0.75rem;
        right: 0.75rem;
    }
    .popup-close svg {
        width: 1rem;
        height: 1rem;
    }
    .popup-content h2 {
        font-size: 1.1rem;
    }
    .popup-content p {
        font-size: 0.85rem;
    }
    .video-title {
        font-size: 1.5rem;
        letter-spacing: 0.05em;
    }
    .video-content {
        gap: 1.2rem;
    }
    .play-button {
        width: 3.5rem;
        height: 3.5rem;
    }
    .play-button svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    .loading-spinner {
        width: 3.5rem;
        height: 3.5rem;
    }
    .navigation-menu {
        right: 0.75rem;
        bottom: 1.5rem;
        gap: 0.75rem;
    }
    .nav-item-title {
        font-size: 0.6rem;
    }
    .nav-item.active .nav-item-title {
        font-size: 0.7rem;
    }
    .nav-item-dot {
        display: none;
    }
    .modal-content {
        max-width: 98%;
        padding: 0 0.5rem;
        gap: 1rem;
    }
    .modal-close {
        width: 2rem;
        height: 2rem;
        top: 0.75rem;
        right: 0.75rem;
    }
    .modal-close svg {
        width: 1rem;
        height: 1rem;
    }
    .modal-nav-btn {
        width: 1.75rem;
        height: 1.75rem;
    }
    .modal-nav-btn svg {
        width: 0.875rem;
        height: 0.875rem;
    }
    .modal-controls {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .modal-dots {
        gap: 0.3rem;
    }
    .modal-dot.active {
        width: 1rem;
        height: 0.3rem;
    }
    .modal-dot.inactive {
        width: 0.3rem;
        height: 0.3rem;
    }
}
