
.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;
    opacity: 0;
    margin-left: 9rem;
    animation: motoSlideIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
    font-family: 'Space Mono';
}

.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;
}

.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 2s forwards;
    pointer-events: none;
}

.topography {
    position: absolute;
    width: 200%;
    height: 200%;
    background:
        linear-gradient(var(--bg) 0%, transparent 100%),
        radial-gradient(var(--border-splash) 1px, transparent 0px);
    background-size: 15px 15px;
    background-position: center;
    transform-origin: center;
}

.scan-shadow {
    position: absolute;
    top: -200%;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(to bottom, var(--bg) 50%, 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 path {fill: var(--fg);opacity: 1;}
.fade-out { opacity: 0; transition: opacity 0.5s ease-out; }
