/* 
    FASTMOVE LOGISTICS - KINETIC COMING SOON
    Theme: Speed / Motion / Efficiency
*/

:root {
    --primary: #FFD700; /* Vivid Yellow */
    --black: #0A0A0A;
    --dark-grey: #1C1C1C;
    --white: #FFFFFF;
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    height: 100vh;
}

.kinetic-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.motion-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('im/motion-bg.png') no-repeat center center/cover;
    filter: brightness(0.5);
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.4));
    z-index: 2;
}

/* Content Box - Compact and Balanced */
.content-box {
    position: relative;
    z-index: 10;
    max-width: 600px;
    width: 90%;
    background: var(--dark-grey);
    padding: 60px 50px;
    border-top: 5px solid var(--primary);
    border-radius: 4px; /* Sharp industrial corners */
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

header .logo {
    font-family: 'Krona One', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
}

header .move {
    color: var(--primary);
}

.tagline {
    font-size: 0.8rem;
    letter-spacing: 10px;
    font-weight: 700;
    margin-top: 10px;
    opacity: 0.7;
    margin-left: 10px;
}

.velocity-line {
    width: 100px;
    height: 4px;
    background: var(--primary);
    margin: 40px auto;
    position: relative;
}

h1 {
    font-weight: 900;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 25px;
    font-style: italic;
}

h1 .accent {
    color: var(--primary);
}

p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.track-info {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 215, 0, 0.1);
    padding: 12px 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
}

footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-strip {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.separator {
    color: var(--primary);
}

.copy {
    font-size: 0.7rem;
    opacity: 0.4;
    letter-spacing: 1px;
}

/* Animations */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

.animate-slide {
    animation: slide 2s infinite ease-in-out;
}

@keyframes slide {
    0% { width: 0; left: -50px; }
    50% { width: 100px; left: 0; }
    100% { width: 0; left: 50px; }
}

@media (max-width: 768px) {
    .content-box { padding: 40px 20px; }
    h1 { font-size: 2.2rem; }
    header .logo { font-size: 2rem; }
    .contact-strip { flex-direction: column; gap: 10px; }
    .separator { display: none; }
}
