/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #0085d4;
    --text-light: #666666;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    width: 100%;
    max-width: 1200px;
}

.container {
    text-align: center;
    width: 100%;
}

.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-logo {
    color: #000000;
    width: clamp(44px, 8vw, 64px);
    height: clamp(44px, 8vw, 64px);
}

.block-logo .block {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Stagger animation for blocks */
.block-logo .block:nth-child(1) { animation-delay: 0.1s; }
.block-logo .block:nth-child(2) { animation-delay: 0.15s; }
.block-logo .block:nth-child(3) { animation-delay: 0.2s; }
.block-logo .block:nth-child(4) { animation-delay: 0.25s; }
.block-logo .block:nth-child(5) { animation-delay: 0.3s; }
.block-logo .block:nth-child(6) { animation-delay: 0.35s; }
.block-logo .block:nth-child(7) { animation-delay: 0.4s; }
.block-logo .block:nth-child(8) { animation-delay: 0.45s; }
.block-logo .block:nth-child(9) { animation-delay: 0.5s; }

h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    color: #999999;
}

.block-text {
    font-family: 'Space Grotesk', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #000000;
    display: inline-block;
    position: relative;
    font-variant-ligatures: none;
    text-transform: lowercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: 40px 20px;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
    }
    
    h1 {
        font-size: clamp(2rem, 10vw, 4rem);
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: clamp(1.75rem, 12vw, 3rem);
    }
}

/* Print styles */
@media print {
    body {
        background: white;
        color: black;
    }
}

