:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --accent-color: rgba(255, 255, 255, 0.1);
    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#plexus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    background: linear-gradient(180deg, #FFFFFF 30%, #999999 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--text-secondary);
    opacity: 0.5;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    color: var(--text-secondary);
    font-weight: 400;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    max-width: 600px;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.9;
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.action-btn:hover {
    color: var(--text-primary);
    opacity: 1;
    transform: translateY(-2px);
}

footer {
    margin-top: auto;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.copyright {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content>* {
    animation: fadeIn 1.2s ease-out forwards;
}

header {
    animation-delay: 0.2s;
}

main {
    animation-delay: 0.6s;
}

footer {
    animation-delay: 1s;
}