/* landing.css — landing page specific styles */
body {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    animation: fadeUp 1.2s ease-out;
}

.logo {
    font-family: 'DM Mono', monospace;
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.3em;
    text-transform: lowercase;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #e8e8e8 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-weight: 300;
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    color: #555;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    margin-bottom: 3rem;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: #444;
    letter-spacing: 0.08em;
}

.dot {
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.links {
    margin-top: 2.5rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    color: #555;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #e8e8e8;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
