/* Shared company wordmark — dashboard style */
.ft-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    max-width: 100%;
    padding: 9px 16px 9px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1c1c1c 0%, #0f0f0f 100%);
    border: 1px solid rgba(212, 255, 51, 0.22);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: inherit;
    line-height: 1;
    vertical-align: middle;
}
.ft-brand-chip:hover {
    text-decoration: none;
    color: inherit;
}
.ft-brand-signal {
    flex-shrink: 0;
    width: 24px;
    height: 20px;
    display: inline-flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3px;
    padding: 0 1px;
}
.ft-brand-signal i {
    display: block;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #e8ff7a, #d4ff33);
    box-shadow: 0 0 8px rgba(212, 255, 51, 0.35);
}
.ft-brand-signal i:nth-child(1) { height: 8px; }
.ft-brand-signal i:nth-child(2) { height: 13px; }
.ft-brand-signal i:nth-child(3) { height: 19px; }

.ft-brand-word {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    min-width: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ft-brand-a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .01em;
}
.ft-brand-b {
    color: #d4ff33;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.01em;
}

/* Auth pages — slightly larger presence */
.ua-brand .ft-brand-chip {
    padding: 11px 18px 11px 13px;
    gap: 12px;
}
.ua-brand .ft-brand-a,
.ua-brand .ft-brand-b {
    font-size: 20px;
}
.ua-brand .ft-brand-signal {
    width: 26px;
    height: 22px;
}
.ua-brand .ft-brand-signal i:nth-child(1) { height: 9px; }
.ua-brand .ft-brand-signal i:nth-child(2) { height: 14px; }
.ua-brand .ft-brand-signal i:nth-child(3) { height: 21px; }

@media (max-width: 380px) {
    .ft-brand-a, .ft-brand-b { font-size: 16px; }
    .ua-brand .ft-brand-a,
    .ua-brand .ft-brand-b { font-size: 18px; }
}
