
.logo-container {
    position: fixed;
    top: 43.7%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-content {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    display: flex;
}

@font-face { font-family: 'Monorama'; src: url('/fonts/Monorama.ttf') format('ttf') }

.main-group { -webkit-mask-image: linear-gradient(to left, white 0%, white 86%, white 10%, transparent 100%); mask-image: linear-gradient(to left, white 0%, white 86%, white 10%, transparent 100%); }
.element { -webkit-mask-image: linear-gradient(to left, white 50%, #00000000 100%); mask-image: linear-gradient(to left, white 50%, #00000000 100%); }

.divider {
    position: absolute;
    color: var(--fg);
    font-size: 2.5rem;
    font-family: 'DM Sans';
    font-weight: 100;
    margin-top: -1px;
    opacity: 0;
    left: 27%;
    animation: dividerAppear 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.main-text {
    position: relative;
    display: inline-block;
    color: var(--fg);
    font-size: 2rem;
    font-weight: 100;
    letter-spacing: 3px;
    transform: translateX(0);
    opacity: 0;
    margin-left: 9rem;
    animation: motoSlideIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
    font-family: 'Space Mono';
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: scan 1s cubic-bezier(0.33, 1, 0.33, 1) 1s forwards;
    opacity: 0;
}

.topography-container {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    animation: topographyFadeIn 0.80s forwards;
}

.topography {
    position: absolute;
    width: 200%;
    height: 200%;
    background:
        linear-gradient(var(--bg) 0%, transparent 100%),
        repeating-linear-gradient(45deg,
            var(--border-splash) 0px,
            var(--border-splash) 0.5px,
            transparent 0.5px,
            transparent 20px);
    animation: scanMove 10s linear infinite;
}

.scan-shadow {
    position: absolute;
    top: -200%;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(to bottom, var(--bg) 70%, transparent 100%);
    opacity: 1;
    pointer-events: none;
    z-index: 10;
    transform-origin: top center;
    transform: translateY(0);
    animation: shadowScale 3s ease forwards;
    animation-delay: 1s;
    z-index: 0;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 40px;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: 
    fadeInScale 3s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards,
    moveLogoLeft 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.logo path {fill: var(--fg);opacity: 1;}

.divider.exit { animation: dividerDisappear 0.2s ease-in-out forwards; }
.main-text.exit { animation: motoSlideOut 0.6s ease-in-out forwards; }
