:root {
    --bg-color: #010101;
    --bg-secondary: #252520;
    --text-primary: #e8e8e3;
    --text-secondary: #c4c4be;
    --text-tertiary: #8a8a85;
    --ash: #4a4a45;
    --charcoal: #2e2e2a;
    --bone: #2a2a25;
    --accent: #6a6a65;
    
    --font-primary: 'Inter', sans-serif;
    
    --transition-slow: 1.2s ease;
    --transition-medium: 0.8s ease;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-weight: 300;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    line-height: 1.6;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
}

.content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    line-height: 1.3;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.6s forwards;
}

.title-word {
    display: inline-block;
    position: relative;
}

.title-word:nth-child(1) {
    letter-spacing: 0.08em;
    transform: translateX(-1px);
}

.title-word:nth-child(2) {
    letter-spacing: 0.06em;
    transform: translateX(2px);
    opacity: 0.92;
}

.title-word:nth-child(3) {
    letter-spacing: 0.04em;
    transform: translateX(-2px);
    opacity: 0.88;
}

.subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--text-tertiary);
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.description {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease 1.8s forwards;
}

.description-secondary {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 300;
    line-height: 2;
    color: var(--text-tertiary);
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 1s ease 2.1s forwards;
}

.footer {
    margin-top: auto;
    padding-top: 3rem;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease 2.4s forwards;
}

.footer-text {
    font-size: clamp(0.8rem, 1.2vw, 0.875rem);
    color: var(--text-tertiary);
    letter-spacing: 0.05em;
    font-weight: 300;
}

.paths-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}

.path-svg {
    width: 100%;
    height: 100%;
}

.path-line {
    fill: none;
    stroke: #e8e8e3;
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0.6;
    animation: drawPath 4s ease-in-out forwards;
}

.path-1 {
    animation-delay: 3s;
}

.path-2 {
    animation-delay: 3.5s;
}

.path-3 {
    animation-delay: 4s;
}

.path-4 {
    animation-delay: 4.5s;
}

.path-5 {
    animation-delay: 5s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem 2rem;
    }
    
    .main {
        gap: 3rem;
    }
    
    .title-word {
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .paths-overlay {
        opacity: 0.1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem 1.5rem;
    }
    
    .title {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    
    .subtitle {
        margin-bottom: 2rem;
    }
    
    .divider {
        margin-bottom: 2rem;
    }
}