/* Aurora wordmark — matches Vibe Code callout (violet / magenta / cyan), distinct from orbit teal logo */
.wl-vibe-wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(
        118deg,
        #c084fc 0%,
        #e879f9 22%,
        #f472b6 45%,
        #22d3ee 78%,
        #a78bfa 100%
    );
    background-size: 160% 160%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 24px rgba(192, 132, 252, 0.25));
}
.wl-vibe-wordmark--sm { font-size: 1.15rem; }
.wl-vibe-wordmark--md { font-size: 1.45rem; }
.wl-vibe-wordmark--lg { font-size: 1.85rem; }
.wl-vibe-wordmark__spark {
    font-size: 0.85em;
    opacity: 0.95;
    background: linear-gradient(135deg, #e879f9, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.35));
}
@supports not (background-clip: text) {
    .wl-vibe-wordmark {
        background: none;
        color: #e9d5ff;
        -webkit-text-fill-color: unset;
    }
}

.wl-brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.wl-brand-row--sm { gap: 8px; }
.wl-brand-row--lg { gap: 16px; }
