:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --font-mono: 'Share Tech Mono', monospace;
    --border-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-mono);
    height: 100vh;
    padding: 1rem;
    overflow: hidden;
}

.frame {
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
}

.frame::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 20px;
    height: 20px;
    border-top: 3px solid var(--text-color);
    border-left: 3px solid var(--text-color);
}

.frame::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 20px;
    height: 20px;
    border-bottom: 3px solid var(--text-color);
    border-right: 3px solid var(--text-color);
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 4rem;
}

.brand {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.contact-link a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.contact-link a:hover {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 0 5px;
}

/* Main Content */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.headline {
    font-size: 6vw;
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: -2px;
}

.founders-list {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    border-left: 2px solid #333;
    padding-left: 1rem;
}

.founders-list p {
    text-transform: uppercase;
}

/* Bottom Bar */
.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.status-display h2 {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    animation: blink 2s infinite;
}

.copyright {
    font-size: 0.8rem;
    color: #444;
}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

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

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff003c;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00f3ff;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(12px, 9999px, 56px, 0);
    }

    20% {
        clip: rect(105px, 9999px, 34px, 0);
    }

    40% {
        clip: rect(44px, 9999px, 12px, 0);
    }

    60% {
        clip: rect(88px, 9999px, 92px, 0);
    }

    80% {
        clip: rect(2px, 9999px, 66px, 0);
    }

    100% {
        clip: rect(123px, 9999px, 5px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

    20% {
        clip: rect(22px, 9999px, 15px, 0);
    }

    40% {
        clip: rect(98px, 9999px, 4px, 0);
    }

    60% {
        clip: rect(5px, 9999px, 66px, 0);
    }

    80% {
        clip: rect(44px, 9999px, 88px, 0);
    }

    100% {
        clip: rect(12px, 9999px, 33px, 0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 0.5rem;
    }

    .frame {
        padding: 1.5rem;
    }

    .headline {
        font-size: 3.5rem;
    }

    .top-bar {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.coming-soon {
    margin-top: 3rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 4px;
}
/* Background Logo */
.bg-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vh;
    height: 60vh;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    animation: revealLogo 3s ease-out forwards 1s;
}

.bg-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.3);
}

@keyframes revealLogo {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1);
    }
}
