/* 
 * AI Memory SDK — New Branding System (Logo & Wordmark)
 * This file centralizes the new logo system to ensure desktop/mobile consistency.
 */

:root {
    --logo-font-main: 'Syne', sans-serif;
    --logo-font-mono: 'JetBrains Mono', monospace;
    --logo-text-color: #eeeeff;
    --logo-accent-color: #4f6fff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-mark {
    flex-shrink: 0;
    line-height: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
}

.logo-wordmark {
    font-family: var(--logo-font-main);
    font-size: 19px;
    font-weight: 800;
    color: var(--logo-text-color);
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.logo-tagline {
    font-family: var(--logo-font-mono);
    font-size: 9.5px;
    font-weight: 400;
    color: var(--logo-accent-color);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    line-height: 1;
    margin-top: 2px;
}

/* Footer Variant (Pattern B) */
.logo-footer {
    gap: 10px;
}

.logo-footer .logo-wordmark {
    font-size: 16px;
}

.logo-footer .logo-tagline {
    display: none;
}

/* Auth Page Variant (Pattern C) */
.logo-auth {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    margin-bottom: 32px;
}

.logo-auth .logo-text {
    align-items: center;
    text-align: center;
}

.logo-auth .logo-wordmark {
    font-size: 24px;
}

.logo-auth .logo-tagline {
    font-size: 11px;
    display: block;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .logo-wordmark {
        font-size: 17px;
    }

    .logo-tagline {
        display: none;
    }
}