:root {
    --cyan: #00F0FF;
    --dark-bg: #050505;
    --text: #FFFFFF;
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Exo 2', sans-serif;
}

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

body {
    background-color: var(--dark-bg);
    color: var(--text);
    font-family: var(--font-body);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    user-select: none;
}

/* Speed Lines Background */
.speed-lines {
    position: absolute;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(90deg,
            transparent 0%,
            transparent 48%,
            rgba(0, 240, 255, 0.05) 50%,
            transparent 52%,
            transparent 100%);
    background-size: 200px 100%;
    animation: warpSpeed 0.5s linear infinite;
    transform: skewX(-20deg);
    z-index: 0;
    opacity: 0.15;
}

.vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 30%, #000 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    /* Reduced gap - Tight branding */
    padding: 40px;
}

/* Image Logo Optimization V2.3 */
.logo-wrapper {
    position: relative;
    width: 240px;
    /* Increased size */
    height: 240px;
    /* Increased size */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.rabbit-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.45));
    mix-blend-mode: screen;
}

/* Typography */
.brand-name {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 600;
    color: #FFF;
    letter-spacing: 6px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    font-style: italic;
    transform: skewX(-12deg);
    margin-bottom: 20px;
}

.dot {
    color: var(--cyan);
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--cyan);
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Status Badge */
.status-badge-wrapper {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.status-badge {
    border: 1px solid rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.03);
    padding: 10px 24px;
    border-radius: 2px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--cyan);
    animation: blink 1s infinite;
}

/* CTA */
.action-container {
    margin-top: 20px;
}

.contact-btn {
    display: inline-block;
    padding: 14px 45px;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-style: italic;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
    transform: translateY(-5px) scale(1.05);
}

.footer-badge-link {
    text-decoration: none;
    transition: transform 0.3s;
}

.footer-badge-link:hover {
    transform: scale(1.05);
}

.footer-badge {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.6;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
}

.powered-by {
    color: #888;
}

.parent-brand {
    color: #fff;
    font-weight: 700;
}

.webosentez-mini-logo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
}

.sq {
    width: 100%;
    height: 100%;
    border-radius: 1px;
}

.red {
    background: #E31E24;
}

.green {
    background: #00E0A3;
}

/* Animations */
@keyframes warpSpeed {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: -200px 0;
    }
}

@keyframes blink {
    50% {
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }

    .subtitle {
        font-size: 1.2rem;
        letter-spacing: 6px;
    }

    .container {
        gap: 20px;
        padding: 20px;
    }

    .logo-wrapper {
        width: 160px;
        height: 160px;
    }

    .footer-badge {
        margin-top: 40px;
    }
}