* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 24px, rgba(0, 0, 0, 0.02) 25px, rgba(0, 0, 0, 0.02) 26px, transparent 27px),
        linear-gradient(rgba(0, 0, 0, 0.02) 24px, transparent 25px, transparent 26px, rgba(0, 0, 0, 0.02) 27px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}


.landing {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing h1 {
    font-size: 50px;
    font-weight: 300;
    letter-spacing: 10px;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    animation: fadeInUpSmall 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    opacity: 0;
}

.tagline {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #666;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUpSmall 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.industry-focus {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #888;
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUpSmall 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.cryptic-timer {
    margin-top: 70px;
    padding: 40px 30px;
    max-width: 800px;
    width: 100%;
    opacity: 0;
    animation: fadeInUpSmall 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

.matrix-loader {
    margin: 0 auto 50px auto;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.matrix-bar {
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.matrix-progress {
    height: 100%;
    background: #000;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.matrix-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.matrix-text {
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 9px;
    color: #000;
    letter-spacing: 3px;
    text-align: center;
    opacity: 0.3;
    user-select: none;
    font-weight: 300;
}

.timer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.timer-side {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-years-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.timer-years-label {
    font-size: 6px;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.6;
}

.timer-years-value {
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 32px;
    color: #333;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.2;
}

.timer-title {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.6;
}

.timer-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 25px;
    width: 100%;
    font-family: 'Courier New', 'Monaco', monospace;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.unit-label {
    font-size: 6px;
    color: #aaa;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
    opacity: 0.7;
}

.unit-value {
    font-size: 18px;
    color: #333;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
}

.timer-divider-line {
    width: 1px;
    min-height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
    opacity: 0.3;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 25px 20px 20px;
    font-size: 12px;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #f0f0f0;
    z-index: 1;
    opacity: 0;
    animation: fadeInUpSmall 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

.contact-email {
    margin-bottom: 16px;
}

.email-link {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.email-link:hover {
    color: #000;
    text-decoration: underline;
    transform: translateY(-1px);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 13px;
}

.social-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
}

.social-link:hover {
    color: #000;
    text-decoration: underline;
    transform: translateY(-1px);
}

a {
    cursor: pointer;
}

.separator {
    color: #999;
    margin: 0 4px;
    font-weight: 300;
}

.company-number {
    margin: 0 0 8px 0;
    font-size: 11px;
    opacity: 0.7;
    letter-spacing: 0.5px;
    color: #666;
}

.copyright {
    margin: 0;
    font-size: 11px;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.copyright a {
    color: inherit;
    text-decoration: none;
    margin-left: 8px;
    transition: opacity 0.3s ease;
}

.copyright a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        padding: 20px;
        padding-bottom: 140px;
    }
    
    .landing {
        padding-bottom: 20px;
    }
    
    .landing h1 {
        font-size: clamp(24px, 8vw, 50px);
        letter-spacing: 2px;
        text-align: center;
        width: 100%;
        word-wrap: break-word;
        margin-bottom: 15px;
    }
    
    .tagline {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .industry-focus {
        font-size: 12px;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .cryptic-timer {
        margin-top: 40px;
        padding: 25px 15px;
        max-width: 100%;
    }
    
    .matrix-loader {
        margin-bottom: 35px;
        max-width: 100%;
    }
    
    .matrix-bar {
        height: 1.5px;
    }
    
    .matrix-text {
        font-size: 7px;
        letter-spacing: 2px;
    }
    
    .timer-container {
        flex-direction: column;
        gap: 35px;
        width: 100%;
    }
    
    .timer-side {
        width: 100%;
        min-width: auto;
    }
    
    .timer-divider-line {
        width: 100%;
        height: 1px;
        min-height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
        margin: 0;
    }
    
    .timer-years-display {
        margin-bottom: 20px;
    }
    
    .timer-years-value {
        font-size: 36px;
    }
    
    .timer-years-label {
        font-size: 6px;
        letter-spacing: 1.5px;
    }
    
    .timer-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .timer-values {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px 18px;
        width: 100%;
    }
    
    .time-unit {
        min-width: 0;
    }
    
    .unit-label {
        font-size: 5px;
        letter-spacing: 0.5px;
    }
    
    .unit-value {
        font-size: 20px;
        letter-spacing: 0.5px;
        min-width: 40px;
    }
    
    footer {
        font-size: 10px;
        padding: 20px 15px 15px;
    }
    
    .contact-email {
        margin-bottom: 12px;
    }
    
    .email-link {
        font-size: 12px;
    }
    
    .social-links {
        font-size: 12px;
        margin-bottom: 15px;
        gap: 6px;
    }
    
    .company-number {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .copyright {
        font-size: 10px;
    }
}

